
    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_b0287cdfc3cb7dafffe6d591.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_77690dbe6b643f09cead6c74.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_85f2a234cafc7eb87a0f91a8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.002930;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_ad2b7d4b21532275e13a98cb.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.106934;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_e66f13ac43408e9ed414b7c0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.895996;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_2aee990da7d1e4fa39a3d6a8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.895996;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_f82e07eb6b7d0ebcd653e47a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.783691;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_585f0cff9a86f4747b7cbfd4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.870605;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_4bb7ad85c0aff529261acf00.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.861816;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_2ce75932032f6d25a19c246e.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_f4a04867c939cd0c4ea7005f.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_2b368a1585cf62a8f335c280.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.142090;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_0f545bf2b823398bb9af7c16.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.936523;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_a3e1505045b9d44a17a478fb.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.954102;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_e9d12f4660ccff22aa11c61a.woff2')format("woff");}.fff{font-family:fff;line-height:0.954102;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_62bf309f6be3938cd637f0ba.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.002930;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_3e4b6d2a71197d543dadcdb4.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.923340;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m17{transform:matrix(0.000000,-0.249907,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249907,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249907,0.250000,0.000000,0,0);}
.md{transform:matrix(0.000000,-0.250158,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250158,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250158,0.250000,0.000000,0,0);}
.mf{transform:matrix(0.000000,-0.249406,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249406,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249406,0.250000,0.000000,0,0);}
.m15{transform:matrix(0.000000,-0.250213,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250213,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250213,0.250000,0.000000,0,0);}
.m26{transform:matrix(0.000000,-0.250031,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250031,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250031,0.250000,0.000000,0,0);}
.m11{transform:matrix(0.064715,-0.240946,0.241520,0.064561,0,0);-ms-transform:matrix(0.064715,-0.240946,0.241520,0.064561,0,0);-webkit-transform:matrix(0.064715,-0.240946,0.241520,0.064561,0,0);}
.m1d{transform:matrix(0.164974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164974,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.185213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185213,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.185228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185228,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.185456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185456,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.190609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190609,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.190782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190782,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.192660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192660,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.193517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193517,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.194975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194975,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.237104,0.000000,-0.079026,0.237181,0,0);-ms-transform:matrix(0.237104,0.000000,-0.079026,0.237181,0,0);-webkit-transform:matrix(0.237104,0.000000,-0.079026,0.237181,0,0);}
.m1f{transform:matrix(0.239845,0.000000,-0.079940,0.236874,0,0);-ms-transform:matrix(0.239845,0.000000,-0.079940,0.236874,0,0);-webkit-transform:matrix(0.239845,0.000000,-0.079940,0.236874,0,0);}
.m10{transform:matrix(0.242018,0.064694,-0.064848,0.241443,0,0);-ms-transform:matrix(0.242018,0.064694,-0.064848,0.241443,0,0);-webkit-transform:matrix(0.242018,0.064694,-0.064848,0.241443,0,0);}
.m5{transform:matrix(0.242364,0.000000,-0.080780,0.236590,0,0);-ms-transform:matrix(0.242364,0.000000,-0.080780,0.236590,0,0);-webkit-transform:matrix(0.242364,0.000000,-0.080780,0.236590,0,0);}
.m24{transform:matrix(0.243123,0.000000,-0.081033,0.236503,0,0);-ms-transform:matrix(0.243123,0.000000,-0.081033,0.236503,0,0);-webkit-transform:matrix(0.243123,0.000000,-0.081033,0.236503,0,0);}
.m2{transform:matrix(0.244466,0.000000,-0.081480,0.236349,0,0);-ms-transform:matrix(0.244466,0.000000,-0.081480,0.236349,0,0);-webkit-transform:matrix(0.244466,0.000000,-0.081480,0.236349,0,0);}
.m13{transform:matrix(0.245970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245970,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.245989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245989,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.246293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246293,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.247561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247561,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.249787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249787,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249842,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.249969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249969,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.250093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250093,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.250595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250595,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.253136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253136,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.253366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253366,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.255860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255860,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.256101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256101,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.256998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256998,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.258585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258585,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.258934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258934,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.265806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265806,0.000000,0.000000,0.250000,0,0);}
.v27{vertical-align:-98.563170px;}
.v7{vertical-align:-85.380000px;}
.v19{vertical-align:-75.802546px;}
.v20{vertical-align:-71.683176px;}
.v24{vertical-align:-64.695193px;}
.vc{vertical-align:-44.640000px;}
.v21{vertical-align:-43.280408px;}
.v22{vertical-align:-41.251639px;}
.v5{vertical-align:-40.075915px;}
.v23{vertical-align:-38.321195px;}
.v1f{vertical-align:-35.841588px;}
.v17{vertical-align:-32.180326px;}
.v4{vertical-align:-29.520000px;}
.v18{vertical-align:-28.127989px;}
.v8{vertical-align:-26.640000px;}
.v6{vertical-align:-23.160000px;}
.v1c{vertical-align:-17.162841px;}
.v28{vertical-align:-14.400000px;}
.v25{vertical-align:-12.398034px;}
.v1b{vertical-align:-9.296539px;}
.v15{vertical-align:-7.366611px;}
.v1a{vertical-align:-6.197692px;}
.v3{vertical-align:-3.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:3.600000px;}
.v2a{vertical-align:14.400000px;}
.v2{vertical-align:20.160000px;}
.v9{vertical-align:22.320000px;}
.v29{vertical-align:26.640000px;}
.v26{vertical-align:32.450028px;}
.vb{vertical-align:36.000000px;}
.ve{vertical-align:54.000000px;}
.v2b{vertical-align:57.900000px;}
.vf{vertical-align:58.916706px;}
.v2c{vertical-align:68.112000px;}
.v16{vertical-align:73.180445px;}
.vd{vertical-align:74.880000px;}
.va{vertical-align:82.080000px;}
.v1d{vertical-align:107.524764px;}
.v1e{vertical-align:113.385653px;}
.v10{vertical-align:117.833903px;}
.v11{vertical-align:176.751099px;}
.v12{vertical-align:230.758530px;}
.v13{vertical-align:289.675727px;}
.v14{vertical-align:348.592923px;}
.ls3c{letter-spacing:-2.480051px;}
.ls3b{letter-spacing:-2.258618px;}
.ls10{letter-spacing:-1.785166px;}
.lsb{letter-spacing:-1.692000px;}
.ls2b{letter-spacing:-1.386451px;}
.ls2a{letter-spacing:-1.265010px;}
.ls7b{letter-spacing:-0.798000px;}
.ls7f{letter-spacing:-0.302400px;}
.ls75{letter-spacing:-0.288000px;}
.ls7d{letter-spacing:-0.229800px;}
.ls80{letter-spacing:-0.191400px;}
.ls74{letter-spacing:-0.144000px;}
.ls29{letter-spacing:-0.061800px;}
.ls83{letter-spacing:-0.058320px;}
.ls8{letter-spacing:-0.036000px;}
.ls7c{letter-spacing:-0.010080px;}
.ls1{letter-spacing:0.000000px;}
.ls7e{letter-spacing:0.000726px;}
.ls46{letter-spacing:0.004556px;}
.ls40{letter-spacing:0.004793px;}
.ls41{letter-spacing:0.004822px;}
.ls34{letter-spacing:0.007708px;}
.ls30{letter-spacing:0.008008px;}
.ls32{letter-spacing:0.008668px;}
.ls33{letter-spacing:0.010631px;}
.ls76{letter-spacing:0.011820px;}
.ls42{letter-spacing:0.013609px;}
.ls44{letter-spacing:0.026744px;}
.ls0{letter-spacing:0.037440px;}
.ls31{letter-spacing:0.038234px;}
.ls37{letter-spacing:0.058996px;}
.ls15{letter-spacing:0.072000px;}
.ls3a{letter-spacing:0.079083px;}
.ls77{letter-spacing:0.093000px;}
.ls7a{letter-spacing:0.098496px;}
.ls12{letter-spacing:0.104400px;}
.ls79{letter-spacing:0.142560px;}
.ls6f{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.175800px;}
.lsd{letter-spacing:0.180000px;}
.ls70{letter-spacing:0.196800px;}
.ls7{letter-spacing:0.216000px;}
.ls9{letter-spacing:0.220800px;}
.ls2{letter-spacing:0.238200px;}
.lsc{letter-spacing:0.241200px;}
.ls13{letter-spacing:0.288000px;}
.ls3e{letter-spacing:0.582685px;}
.ls38{letter-spacing:0.595813px;}
.ls36{letter-spacing:0.659080px;}
.ls39{letter-spacing:0.806649px;}
.ls3d{letter-spacing:1.347579px;}
.ls3f{letter-spacing:1.505745px;}
.ls1f{letter-spacing:3.360000px;}
.ls71{letter-spacing:3.407760px;}
.ls25{letter-spacing:5.608800px;}
.ls26{letter-spacing:5.760000px;}
.ls1d{letter-spacing:6.343200px;}
.ls22{letter-spacing:6.372000px;}
.ls72{letter-spacing:19.247760px;}
.ls23{letter-spacing:20.880000px;}
.ls4d{letter-spacing:21.262852px;}
.ls21{letter-spacing:24.444000px;}
.ls63{letter-spacing:26.705330px;}
.ls19{letter-spacing:27.305280px;}
.ls1a{letter-spacing:28.145280px;}
.ls20{letter-spacing:28.303200px;}
.ls1c{letter-spacing:30.924000px;}
.ls81{letter-spacing:31.896288px;}
.ls82{letter-spacing:32.616288px;}
.ls1b{letter-spacing:36.583200px;}
.ls27{letter-spacing:36.720000px;}
.ls2d{letter-spacing:41.524800px;}
.ls5{letter-spacing:67.378176px;}
.ls6{letter-spacing:67.491360px;}
.ls28{letter-spacing:68.364000px;}
.ls58{letter-spacing:83.675456px;}
.ls62{letter-spacing:87.706057px;}
.ls52{letter-spacing:87.816534px;}
.ls50{letter-spacing:90.581658px;}
.ls51{letter-spacing:103.644487px;}
.ls65{letter-spacing:113.705361px;}
.ls61{letter-spacing:113.908697px;}
.ls3{letter-spacing:119.865600px;}
.ls4{letter-spacing:119.916000px;}
.ls1e{letter-spacing:124.783200px;}
.ls4f{letter-spacing:126.051529px;}
.ls17{letter-spacing:132.832394px;}
.lse{letter-spacing:139.794520px;}
.ls84{letter-spacing:156.901680px;}
.ls64{letter-spacing:158.570316px;}
.ls53{letter-spacing:161.712097px;}
.ls4b{letter-spacing:164.381873px;}
.ls4e{letter-spacing:167.528393px;}
.ls2c{letter-spacing:173.053368px;}
.ls2f{letter-spacing:197.594146px;}
.ls18{letter-spacing:200.605991px;}
.ls78{letter-spacing:209.590560px;}
.ls5d{letter-spacing:215.899742px;}
.ls5a{letter-spacing:218.926731px;}
.ls35{letter-spacing:253.011262px;}
.ls2e{letter-spacing:253.122024px;}
.ls5b{letter-spacing:264.912165px;}
.ls24{letter-spacing:269.424000px;}
.ls55{letter-spacing:282.805472px;}
.ls57{letter-spacing:303.503862px;}
.ls60{letter-spacing:303.999142px;}
.lsf{letter-spacing:319.752544px;}
.ls11{letter-spacing:325.852345px;}
.ls5c{letter-spacing:357.965042px;}
.ls73{letter-spacing:374.387760px;}
.ls6c{letter-spacing:411.096000px;}
.ls5e{letter-spacing:416.634099px;}
.ls4c{letter-spacing:435.268706px;}
.ls45{letter-spacing:435.946611px;}
.ls5f{letter-spacing:445.997068px;}
.ls6e{letter-spacing:466.080000px;}
.ls69{letter-spacing:481.231680px;}
.ls67{letter-spacing:484.553760px;}
.ls6b{letter-spacing:486.407520px;}
.ls14{letter-spacing:489.431520px;}
.ls66{letter-spacing:494.065440px;}
.ls16{letter-spacing:511.884904px;}
.ls6d{letter-spacing:521.687760px;}
.ls68{letter-spacing:561.336000px;}
.ls6a{letter-spacing:580.056000px;}
.ls4a{letter-spacing:581.541893px;}
.ls56{letter-spacing:910.870087px;}
.ls43{letter-spacing:982.338954px;}
.ls49{letter-spacing:1007.837391px;}
.ls59{letter-spacing:1325.101830px;}
.ls48{letter-spacing:1460.286043px;}
.ls47{letter-spacing:1473.834884px;}
.ls54{letter-spacing:1510.329967px;}
.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;}
}
.ws13{word-spacing:-261.857666px;}
.ws60{word-spacing:-51.729465px;}
.ws19{word-spacing:-44.820000px;}
.ws4c{word-spacing:-40.141643px;}
.ws4f{word-spacing:-35.500525px;}
.ws2{word-spacing:-32.576544px;}
.ws6d{word-spacing:-29.939760px;}
.ws69{word-spacing:-29.880000px;}
.ws2d{word-spacing:-29.029815px;}
.wsc{word-spacing:-27.415440px;}
.ws18{word-spacing:-27.206784px;}
.ws4{word-spacing:-27.174240px;}
.ws0{word-spacing:-26.621280px;}
.ws5f{word-spacing:-26.358490px;}
.wsb{word-spacing:-25.482240px;}
.ws7{word-spacing:-24.440544px;}
.ws6{word-spacing:-24.408000px;}
.ws8{word-spacing:-24.372000px;}
.ws14{word-spacing:-21.674304px;}
.ws16{word-spacing:-21.641760px;}
.ws1a{word-spacing:-20.376000px;}
.ws38{word-spacing:-19.059063px;}
.ws94{word-spacing:-19.038240px;}
.ws36{word-spacing:-19.019521px;}
.ws17{word-spacing:-18.061920px;}
.ws7a{word-spacing:-18.000000px;}
.ws1c{word-spacing:-17.999391px;}
.ws1e{word-spacing:-17.827944px;}
.ws28{word-spacing:-16.643842px;}
.ws29{word-spacing:-16.633299px;}
.ws9{word-spacing:-16.272000px;}
.ws3b{word-spacing:-14.804034px;}
.ws15{word-spacing:-14.482080px;}
.ws7b{word-spacing:-14.328000px;}
.ws70{word-spacing:-14.064000px;}
.ws31{word-spacing:-13.621113px;}
.ws21{word-spacing:-13.570549px;}
.wsa6{word-spacing:-13.505760px;}
.ws71{word-spacing:-13.464000px;}
.ws34{word-spacing:-13.306402px;}
.ws35{word-spacing:-13.295057px;}
.wsa2{word-spacing:-13.095475px;}
.wsa3{word-spacing:-13.093850px;}
.ws30{word-spacing:-11.948499px;}
.ws2f{word-spacing:-11.923916px;}
.ws2b{word-spacing:-11.921957px;}
.ws37{word-spacing:-11.902029px;}
.ws3a{word-spacing:-11.103136px;}
.ws3c{word-spacing:-9.621090px;}
.ws2c{word-spacing:-7.748291px;}
.ws91{word-spacing:-2.101680px;}
.ws1{word-spacing:0.000000px;}
.wsf{word-spacing:7.077827px;}
.ws11{word-spacing:8.367715px;}
.wsd{word-spacing:8.509632px;}
.ws54{word-spacing:14.307623px;}
.ws51{word-spacing:14.366299px;}
.ws52{word-spacing:14.367496px;}
.ws55{word-spacing:14.427369px;}
.ws3d{word-spacing:14.981633px;}
.ws3e{word-spacing:14.982899px;}
.ws62{word-spacing:17.998260px;}
.ws65{word-spacing:18.003873px;}
.ws57{word-spacing:19.981581px;}
.ws44{word-spacing:21.129849px;}
.ws2e{word-spacing:22.637047px;}
.ws66{word-spacing:29.487356px;}
.ws63{word-spacing:29.848024px;}
.ws12{word-spacing:35.813821px;}
.wse{word-spacing:37.466019px;}
.ws10{word-spacing:37.916931px;}
.ws3{word-spacing:41.045400px;}
.ws4e{word-spacing:44.786766px;}
.ws1f{word-spacing:45.663602px;}
.ws1d{word-spacing:47.285011px;}
.ws5c{word-spacing:49.913491px;}
.ws47{word-spacing:50.010277px;}
.ws5d{word-spacing:50.369739px;}
.ws32{word-spacing:55.567998px;}
.ws22{word-spacing:55.678912px;}
.ws53{word-spacing:61.355815px;}
.ws2a{word-spacing:71.662374px;}
.ws5b{word-spacing:85.592057px;}
.ws59{word-spacing:87.508297px;}
.ws4a{word-spacing:87.638899px;}
.ws27{word-spacing:91.150677px;}
.ws49{word-spacing:92.282019px;}
.ws64{word-spacing:94.518744px;}
.ws9b{word-spacing:96.564480px;}
.ws26{word-spacing:97.091494px;}
.ws25{word-spacing:97.140592px;}
.ws20{word-spacing:98.103767px;}
.ws58{word-spacing:105.601863px;}
.ws96{word-spacing:109.524480px;}
.ws33{word-spacing:120.341871px;}
.ws23{word-spacing:120.452785px;}
.wsa9{word-spacing:128.512560px;}
.ws3f{word-spacing:138.659813px;}
.ws9c{word-spacing:146.791800px;}
.ws9e{word-spacing:152.565504px;}
.ws99{word-spacing:152.670480px;}
.wsa5{word-spacing:157.492560px;}
.ws24{word-spacing:158.414477px;}
.ws97{word-spacing:159.751800px;}
.ws9f{word-spacing:159.791040px;}
.ws40{word-spacing:167.125637px;}
.ws41{word-spacing:167.505519px;}
.wsa4{word-spacing:172.315920px;}
.ws92{word-spacing:177.975600px;}
.ws98{word-spacing:182.371800px;}
.wsa0{word-spacing:182.411040px;}
.wsa1{word-spacing:191.973928px;}
.wsa8{word-spacing:196.072560px;}
.ws9d{word-spacing:203.251800px;}
.ws68{word-spacing:203.848800px;}
.wsa7{word-spacing:210.955920px;}
.ws93{word-spacing:238.829880px;}
.ws61{word-spacing:311.735796px;}
.ws8a{word-spacing:337.045920px;}
.ws7f{word-spacing:342.505920px;}
.ws56{word-spacing:343.174873px;}
.ws4d{word-spacing:354.521593px;}
.wsa{word-spacing:356.699328px;}
.ws8e{word-spacing:357.925920px;}
.ws82{word-spacing:364.856160px;}
.ws87{word-spacing:378.511920px;}
.ws5{word-spacing:380.044320px;}
.ws8c{word-spacing:380.073408px;}
.ws95{word-spacing:380.448480px;}
.ws83{word-spacing:389.311920px;}
.ws7c{word-spacing:395.910840px;}
.ws85{word-spacing:400.111800px;}
.ws90{word-spacing:401.156160px;}
.ws9a{word-spacing:409.301760px;}
.ws80{word-spacing:410.911800px;}
.ws88{word-spacing:411.975600px;}
.ws7d{word-spacing:431.010960px;}
.ws77{word-spacing:447.043440px;}
.ws79{word-spacing:449.448000px;}
.ws75{word-spacing:452.256000px;}
.ws6f{word-spacing:452.616000px;}
.ws7e{word-spacing:458.625840px;}
.ws89{word-spacing:478.365840px;}
.ws1b{word-spacing:483.840000px;}
.ws84{word-spacing:487.361760px;}
.ws81{word-spacing:501.825840px;}
.ws8d{word-spacing:507.101760px;}
.ws67{word-spacing:511.234656px;}
.ws50{word-spacing:518.508816px;}
.ws8b{word-spacing:521.448480px;}
.ws5e{word-spacing:521.735943px;}
.ws86{word-spacing:530.561760px;}
.ws8f{word-spacing:550.301760px;}
.ws73{word-spacing:552.768000px;}
.ws39{word-spacing:554.655936px;}
.ws6a{word-spacing:555.996000px;}
.ws78{word-spacing:592.716000px;}
.ws76{word-spacing:599.112000px;}
.ws6b{word-spacing:617.112000px;}
.ws6e{word-spacing:619.999392px;}
.ws6c{word-spacing:634.896000px;}
.ws74{word-spacing:653.112000px;}
.ws5a{word-spacing:666.244176px;}
.ws72{word-spacing:672.480000px;}
.ws42{word-spacing:1001.748519px;}
.ws45{word-spacing:1027.862305px;}
.ws48{word-spacing:1082.944344px;}
.ws46{word-spacing:1106.457436px;}
.ws43{word-spacing:1413.593700px;}
.ws4b{word-spacing:1523.012305px;}
._48{margin-left:-4920.196704px;}
._70{margin-left:-2969.782656px;}
._41{margin-left:-1778.283199px;}
._39{margin-left:-1334.334051px;}
._32{margin-left:-1156.762356px;}
._43{margin-left:-1145.254346px;}
._3b{margin-left:-701.391578px;}
._1e{margin-left:-610.437562px;}
._35{margin-left:-449.543352px;}
._2e{margin-left:-429.986833px;}
._27{margin-left:-65.448000px;}
._28{margin-left:-58.248000px;}
._26{margin-left:-14.293852px;}
._2a{margin-left:-12.826080px;}
._a{margin-left:-11.791440px;}
._10{margin-left:-10.126944px;}
._2{margin-left:-8.658288px;}
._20{margin-left:-6.894000px;}
._4{margin-left:-5.428320px;}
._5{margin-left:-4.309200px;}
._1{margin-left:-2.499120px;}
._0{margin-left:-1.345680px;}
._3{width:1.030320px;}
._6{width:2.486400px;}
._21{width:3.832320px;}
._14{width:12.882638px;}
._1f{width:14.740848px;}
._29{width:16.344000px;}
._3f{width:25.224144px;}
._c{width:26.958240px;}
._42{width:37.939973px;}
._3a{width:39.268980px;}
._15{width:41.839025px;}
._17{width:51.057793px;}
._33{width:52.311301px;}
._23{width:55.338489px;}
._13{width:58.149153px;}
._5f{width:81.350304px;}
._60{width:85.730282px;}
._62{width:92.124517px;}
._52{width:97.892456px;}
._3d{width:101.335791px;}
._3e{width:102.941697px;}
._5d{width:119.445631px;}
._5e{width:123.159234px;}
._4d{width:125.944642px;}
._34{width:128.342749px;}
._1c{width:145.221846px;}
._f{width:148.376592px;}
._25{width:149.656436px;}
._2c{width:152.362814px;}
._4c{width:155.060877px;}
._1d{width:156.596925px;}
._1a{width:159.124721px;}
._24{width:163.560939px;}
._16{width:166.174206px;}
._1b{width:174.670662px;}
._5a{width:177.250856px;}
._2d{width:182.492265px;}
._30{width:184.775688px;}
._5c{width:191.907530px;}
._5b{width:194.909498px;}
._36{width:200.586235px;}
._46{width:201.742704px;}
._2f{width:204.351406px;}
._6e{width:208.972713px;}
._7{width:211.787280px;}
._6f{width:213.959173px;}
._31{width:215.432987px;}
._6d{width:229.415520px;}
._4e{width:240.668410px;}
._38{width:242.761212px;}
._55{width:258.763555px;}
._11{width:276.208477px;}
._51{width:279.167618px;}
._19{width:281.090849px;}
._64{width:287.801009px;}
._53{width:299.848397px;}
._4f{width:303.350537px;}
._65{width:314.569344px;}
._54{width:317.498953px;}
._59{width:319.652570px;}
._4a{width:321.166248px;}
._58{width:323.026768px;}
._18{width:333.884873px;}
._63{width:337.075753px;}
._12{width:340.030719px;}
._47{width:345.109632px;}
._8{width:354.253920px;}
._56{width:365.696706px;}
._22{width:375.319917px;}
._66{width:382.524240px;}
._45{width:410.715161px;}
._50{width:421.653377px;}
._57{width:447.962186px;}
._3c{width:457.077283px;}
._44{width:462.733905px;}
._2b{width:509.737043px;}
._49{width:520.857549px;}
._67{width:531.437760px;}
._71{width:537.989760px;}
._6a{width:561.336000px;}
._9{width:576.234336px;}
._6c{width:580.056000px;}
._68{width:615.600000px;}
._4b{width:622.178141px;}
._6b{width:688.752000px;}
._69{width:742.956624px;}
._61{width:822.164732px;}
._37{width:870.075385px;}
._b{width:1215.156000px;}
._40{width:1459.990382px;}
._e{width:1816.455360px;}
._d{width:2219.223360px;}
.fc8{color:transparent;}
.fc7{color:rgb(0,0,255);}
.fc5{color:rgb(255,0,0);}
.fc2{color:rgb(146,208,80);}
.fc6{color:rgb(211,211,211);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(217,217,217);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(37,8,252);}
.fs22{font-size:34.284473px;}
.fs2f{font-size:34.608236px;}
.fs2d{font-size:39.939339px;}
.fs2b{font-size:47.449949px;}
.fs2a{font-size:47.608115px;}
.fs46{font-size:52.375402px;}
.fs45{font-size:52.381899px;}
.fs41{font-size:52.560000px;}
.fs42{font-size:52.704000px;}
.fs36{font-size:52.721849px;}
.fs21{font-size:52.752021px;}
.fs24{font-size:52.760690px;}
.fs25{font-size:52.869466px;}
.fs23{font-size:52.877623px;}
.fs2e{font-size:53.251919px;}
.fs2c{font-size:53.271763px;}
.fs32{font-size:55.751580px;}
.fs27{font-size:58.827686px;}
.fs26{font-size:58.877886px;}
.fs47{font-size:59.760000px;}
.fs1a{font-size:61.955130px;}
.fs30{font-size:63.483594px;}
.fs16{font-size:64.080000px;}
.fs12{font-size:64.497317px;}
.fsa{font-size:68.395207px;}
.fs3d{font-size:70.883068px;}
.fs8{font-size:72.000000px;}
.fs11{font-size:72.144000px;}
.fs3a{font-size:72.446659px;}
.fsf{font-size:73.156113px;}
.fs20{font-size:73.598667px;}
.fs1f{font-size:73.645318px;}
.fs29{font-size:76.078084px;}
.fs28{font-size:76.236251px;}
.fs17{font-size:79.200000px;}
.fs10{font-size:79.920000px;}
.fs43{font-size:84.240000px;}
.fs44{font-size:84.384000px;}
.fs37{font-size:91.249527px;}
.fs2{font-size:95.760000px;}
.fs7{font-size:95.904000px;}
.fs38{font-size:96.305775px;}
.fs33{font-size:96.731676px;}
.fs1c{font-size:104.254800px;}
.fs19{font-size:107.222248px;}
.fs9{font-size:108.000000px;}
.fs6{font-size:108.144000px;}
.fs1e{font-size:110.914167px;}
.fs13{font-size:111.569535px;}
.fs14{font-size:117.893535px;}
.fsb{font-size:118.189336px;}
.fs34{font-size:119.408843px;}
.fs3{font-size:120.240000px;}
.fs5{font-size:120.384000px;}
.fs3e{font-size:122.488448px;}
.fsc{font-size:125.015550px;}
.fs3b{font-size:125.190389px;}
.fse{font-size:126.389770px;}
.fs31{font-size:126.509205px;}
.fs3f{font-size:129.478764px;}
.fs1b{font-size:136.461120px;}
.fs35{font-size:137.658748px;}
.fs18{font-size:140.345269px;}
.fs40{font-size:144.000000px;}
.fs4{font-size:144.144000px;}
.fs1d{font-size:145.226117px;}
.fs3c{font-size:160.445624px;}
.fs39{font-size:163.984852px;}
.fs15{font-size:167.467512px;}
.fsd{font-size:177.421433px;}
.fs48{font-size:180.000000px;}
.fs0{font-size:192.240000px;}
.fs1{font-size:192.384000px;}
.y0{bottom:0.000000px;}
.yc5{bottom:4.513297px;}
.y8a{bottom:5.719674px;}
.y9d{bottom:6.247554px;}
.y10e{bottom:6.311726px;}
.y40{bottom:6.513591px;}
.y53{bottom:7.018949px;}
.y45{bottom:7.444104px;}
.y72{bottom:7.816497px;}
.yf0{bottom:9.058177px;}
.y69{bottom:9.108095px;}
.yfd{bottom:9.129461px;}
.y73{bottom:10.271384px;}
.y4d{bottom:10.711009px;}
.yae{bottom:10.730490px;}
.y11c{bottom:10.756317px;}
.yef{bottom:10.905562px;}
.y114{bottom:10.993588px;}
.yee{bottom:13.110515px;}
.y8e{bottom:13.638593px;}
.y6c{bottom:13.714528px;}
.y67{bottom:14.104898px;}
.y6f{bottom:14.650006px;}
.y103{bottom:15.046704px;}
.y47{bottom:15.102934px;}
.y19{bottom:15.120000px;}
.y6d{bottom:15.621004px;}
.y37{bottom:16.020000px;}
.y68{bottom:16.065630px;}
.y6a{bottom:16.065667px;}
.y119{bottom:16.468290px;}
.y10d{bottom:16.568281px;}
.y95{bottom:16.644572px;}
.y70{bottom:16.644574px;}
.y111{bottom:16.831560px;}
.y9c{bottom:17.042501px;}
.y160{bottom:18.159064px;}
.y81{bottom:18.245080px;}
.y11e{bottom:18.693736px;}
.y4c{bottom:18.967410px;}
.y4e{bottom:18.967411px;}
.yc3{bottom:19.677890px;}
.ya6{bottom:20.374071px;}
.y169{bottom:22.500000px;}
.y173{bottom:22.536000px;}
.y7d{bottom:23.031728px;}
.y8c{bottom:24.876914px;}
.y82{bottom:26.350237px;}
.y4a{bottom:27.772210px;}
.ya1{bottom:27.836943px;}
.y9b{bottom:28.818271px;}
.yc2{bottom:28.825108px;}
.y7e{bottom:29.378856px;}
.y52{bottom:29.943732px;}
.y56{bottom:29.943737px;}
.yed{bottom:30.392548px;}
.y44{bottom:30.706909px;}
.yde{bottom:32.299530px;}
.ydd{bottom:32.359116px;}
.yec{bottom:34.504479px;}
.y11b{bottom:34.865301px;}
.y157{bottom:35.284057px;}
.y112{bottom:35.634386px;}
.ycc{bottom:36.828612px;}
.yd1{bottom:36.888199px;}
.y58{bottom:37.132488px;}
.y54{bottom:37.132493px;}
.y59{bottom:37.132495px;}
.y57{bottom:37.132496px;}
.yaf{bottom:37.736944px;}
.y10c{bottom:38.264840px;}
.y48{bottom:38.365729px;}
.y49{bottom:38.365741px;}
.y42{bottom:38.365743px;}
.y46{bottom:38.365744px;}
.y74{bottom:38.502423px;}
.ye5{bottom:38.556816px;}
.yda{bottom:38.616401px;}
.ye4{bottom:38.616402px;}
.y9a{bottom:40.594040px;}
.y120{bottom:42.802716px;}
.y11f{bottom:42.802720px;}
.yb4{bottom:43.351855px;}
.y117{bottom:43.746891px;}
.y116{bottom:43.746894px;}
.y163{bottom:45.324000px;}
.y32{bottom:45.360000px;}
.yfa{bottom:46.098143px;}
.y158{bottom:46.373817px;}
.ya7{bottom:48.191343px;}
.yf7{bottom:49.310361px;}
.yf6{bottom:50.381100px;}
.yd5{bottom:50.654223px;}
.y99{bottom:51.388496px;}
.y10b{bottom:55.114895px;}
.yeb{bottom:56.673148px;}
.yd9{bottom:56.911507px;}
.y41{bottom:57.262284px;}
.y11a{bottom:58.009915px;}
.yea{bottom:58.043781px;}
.y113{bottom:58.682998px;}
.y7{bottom:59.148000px;}
.y96{bottom:59.940000px;}
.yf3{bottom:61.201202px;}
.y1d{bottom:61.596000px;}
.ydc{bottom:61.917348px;}
.ya0{bottom:62.182922px;}
.y102{bottom:62.835488px;}
.y98{bottom:63.164266px;}
.y118{bottom:63.721888px;}
.y110{bottom:64.596788px;}
.y16d{bottom:65.700000px;}
.y11d{bottom:65.947334px;}
.ycb{bottom:66.446431px;}
.y75{bottom:66.733583px;}
.y115{bottom:66.795506px;}
.y29{bottom:66.960000px;}
.y50{bottom:67.068000px;}
.y13c{bottom:67.680000px;}
.yc6{bottom:67.797028px;}
.yc0{bottom:68.135402px;}
.ye3{bottom:68.174634px;}
.y80{bottom:68.220000px;}
.y55{bottom:69.113975px;}
.yb3{bottom:69.765660px;}
.y43{bottom:72.222051px;}
.y83{bottom:73.505969px;}
.yf1{bottom:74.160000px;}
.y97{bottom:74.940036px;}
.yd4{bottom:75.862153px;}
.y10a{bottom:76.078842px;}
.yb6{bottom:77.400000px;}
.y1c{bottom:79.164000px;}
.ye9{bottom:79.676122px;}
.ycd{bottom:80.391236px;}
.yc8{bottom:80.391242px;}
.y13d{bottom:80.424000px;}
.y13a{bottom:80.460000px;}
.y137{bottom:80.490000px;}
.y12e{bottom:80.535000px;}
.y125{bottom:80.565000px;}
.y149{bottom:80.850000px;}
.y141{bottom:81.000000px;}
.y65{bottom:81.468000px;}
.ye8{bottom:82.119443px;}
.ye2{bottom:82.119445px;}
.y35{bottom:84.744000px;}
.yfc{bottom:85.264658px;}
.y6{bottom:87.228000px;}
.y36{bottom:87.480000px;}
.yd0{bottom:87.899971px;}
.y4f{bottom:88.704000px;}
.y164{bottom:88.815000px;}
.y16e{bottom:88.845000px;}
.y22{bottom:89.100000px;}
.yf2{bottom:89.547615px;}
.yd8{bottom:89.628172px;}
.ydb{bottom:90.402896px;}
.y101{bottom:91.181902px;}
.y154{bottom:91.584000px;}
.y3e{bottom:91.944000px;}
.y139{bottom:92.520000px;}
.yca{bottom:94.931979px;}
.y76{bottom:94.964745px;}
.ye1{bottom:96.660182px;}
.y9f{bottom:97.510215px;}
.y109{bottom:97.775401px;}
.y159{bottom:98.805004px;}
.ybb{bottom:99.582085px;}
.y1b{bottom:100.764000px;}
.y162{bottom:102.060000px;}
.ye7{bottom:102.619502px;}
.y64{bottom:103.104000px;}
.y108{bottom:103.241807px;}
.y31{bottom:104.220000px;}
.y2d{bottom:104.250000px;}
.y21{bottom:104.325000px;}
.ybd{bottom:104.940613px;}
.ya9{bottom:105.480000px;}
.yf5{bottom:107.468409px;}
.y123{bottom:107.565000px;}
.y153{bottom:108.576000px;}
.y156{bottom:109.800000px;}
.y10f{bottom:111.239990px;}
.yfb{bottom:112.145849px;}
.y5{bottom:116.028000px;}
.ycf{bottom:116.325925px;}
.y34{bottom:117.144000px;}
.y100{bottom:118.063093px;}
.yd7{bottom:118.113720px;}
.y136{bottom:118.440000px;}
.yd3{bottom:119.305596px;}
.y107{bottom:119.415605px;}
.y84{bottom:120.663585px;}
.y30{bottom:120.960000px;}
.y8b{bottom:122.170820px;}
.y77{bottom:123.198362px;}
.yc9{bottom:123.834679px;}
.y106{bottom:124.938366px;}
.ye0{bottom:125.562882px;}
.y3d{bottom:127.944000px;}
.yac{bottom:128.208180px;}
.yff{bottom:128.263293px;}
.y71{bottom:128.879949px;}
.yc1{bottom:131.034314px;}
.y9e{bottom:131.859138px;}
.ybc{bottom:133.391844px;}
.yb7{bottom:134.273838px;}
.y51{bottom:136.439990px;}
.yba{bottom:136.537067px;}
.y165{bottom:136.770000px;}
.y16f{bottom:136.800000px;}
.yd2{bottom:140.759136px;}
.y78{bottom:141.609985px;}
.y134{bottom:144.360000px;}
.y16c{bottom:144.720000px;}
.y4{bottom:144.828000px;}
.yce{bottom:145.288219px;}
.y105{bottom:146.578570px;}
.ye6{bottom:146.956834px;}
.yd6{bottom:147.016420px;}
.ydf{bottom:147.016422px;}
.y13e{bottom:148.104000px;}
.ya2{bottom:148.541472px;}
.y179{bottom:148.896000px;}
.y33{bottom:149.580000px;}
.yf{bottom:149.760000px;}
.y15a{bottom:151.233174px;}
.yad{bottom:153.791610px;}
.yb0{bottom:154.107943px;}
.y155{bottom:155.340000px;}
.y152{bottom:157.110000px;}
.yf9{bottom:157.567736px;}
.yf4{bottom:161.850693px;}
.yfe{bottom:163.484979px;}
.y18{bottom:163.950000px;}
.y85{bottom:167.821201px;}
.y104{bottom:168.275129px;}
.y132{bottom:169.200000px;}
.y151{bottom:171.615000px;}
.y16b{bottom:171.825000px;}
.y175{bottom:171.870000px;}
.y6e{bottom:172.259980px;}
.y13b{bottom:172.980000px;}
.yf8{bottom:173.741534px;}
.y178{bottom:181.335000px;}
.y4b{bottom:183.419980px;}
.y166{bottom:184.710000px;}
.y170{bottom:184.755000px;}
.y3c{bottom:190.950000px;}
.y2f{bottom:192.780000px;}
.y130{bottom:194.040000px;}
.y2c{bottom:196.560000px;}
.y138{bottom:198.975000px;}
.y17{bottom:199.950000px;}
.ya8{bottom:200.060446px;}
.y2b{bottom:201.450000px;}
.y15b{bottom:202.633340px;}
.y79{bottom:202.982066px;}
.ya3{bottom:204.476359px;}
.y161{bottom:207.692887px;}
.y86{bottom:214.969398px;}
.y150{bottom:216.030000px;}
.y12d{bottom:218.880000px;}
.ybf{bottom:220.725865px;}
.y135{bottom:224.895000px;}
.y2e{bottom:225.180000px;}
.y92{bottom:230.823626px;}
.y7f{bottom:232.354744px;}
.y167{bottom:232.665000px;}
.y171{bottom:232.710000px;}
.ybe{bottom:233.240191px;}
.y2a{bottom:233.850000px;}
.y3f{bottom:233.999980px;}
.y16{bottom:235.980000px;}
.yb9{bottom:239.658221px;}
.ye{bottom:239.760000px;}
.y93{bottom:239.923558px;}
.y28{bottom:240.300000px;}
.y90{bottom:242.090208px;}
.y12b{bottom:243.720000px;}
.y14f{bottom:247.215000px;}
.y133{bottom:249.735000px;}
.yb8{bottom:251.640023px;}
.y15c{bottom:255.069557px;}
.yaa{bottom:258.064454px;}
.ya4{bottom:260.411246px;}
.yb1{bottom:261.971167px;}
.y87{bottom:262.127014px;}
.y3b{bottom:262.980000px;}
.yc4{bottom:264.709423px;}
.y7a{bottom:265.581586px;}
.y129{bottom:268.560000px;}
.y15{bottom:271.980000px;}
.yb5{bottom:274.387237px;}
.y131{bottom:274.575000px;}
.y5b{bottom:274.965000px;}
.y5f{bottom:277.890000px;}
.y63{bottom:278.970000px;}
.y168{bottom:280.620000px;}
.y172{bottom:280.650000px;}
.yab{bottom:283.924677px;}
.y60{bottom:287.970000px;}
.y91{bottom:288.578989px;}
.y127{bottom:293.400000px;}
.y5e{bottom:296.970000px;}
.y26{bottom:298.725000px;}
.y3a{bottom:298.980000px;}
.y12f{bottom:299.415000px;}
.y14{bottom:307.980000px;}
.y15d{bottom:308.481472px;}
.y62{bottom:309.030000px;}
.y88{bottom:309.284630px;}
.ya5{bottom:315.364819px;}
.yc7{bottom:316.799980px;}
.y122{bottom:318.240000px;}
.y61{bottom:323.610000px;}
.y12c{bottom:324.285000px;}
.y7b{bottom:326.953667px;}
.yd{bottom:329.790000px;}
.y25{bottom:331.125000px;}
.y16a{bottom:334.830000px;}
.y174{bottom:334.875000px;}
.y39{bottom:334.980000px;}
.y5d{bottom:335.490000px;}
.y8f{bottom:341.454678px;}
.y94{bottom:343.980000px;}
.y20{bottom:348.300000px;}
.y12a{bottom:349.125000px;}
.y5a{bottom:350.205000px;}
.y146{bottom:354.270000px;}
.y8d{bottom:355.698049px;}
.y89{bottom:356.442247px;}
.yb2{bottom:358.136396px;}
.y14e{bottom:358.560000px;}
.y15e{bottom:360.907630px;}
.y23{bottom:363.525000px;}
.y6b{bottom:370.079959px;}
.y38{bottom:370.980000px;}
.y128{bottom:373.965000px;}
.y140{bottom:374.940000px;}
.y3{bottom:375.300000px;}
.y148{bottom:378.540000px;}
.y145{bottom:379.470000px;}
.y13{bottom:380.010000px;}
.y14d{bottom:383.760000px;}
.y27{bottom:387.825000px;}
.y7c{bottom:388.325746px;}
.y126{bottom:398.805000px;}
.y144{bottom:404.670000px;}
.y14c{bottom:408.990000px;}
.y15f{bottom:413.343847px;}
.y12{bottom:416.010000px;}
.yc{bottom:419.835000px;}
.y66{bottom:424.619959px;}
.y124{bottom:425.805000px;}
.y143{bottom:429.870000px;}
.y14b{bottom:434.190000px;}
.y5c{bottom:438.015000px;}
.y17a{bottom:441.180000px;}
.y2{bottom:448.095000px;}
.y1a{bottom:452.010000px;}
.y24{bottom:452.625000px;}
.y142{bottom:455.940000px;}
.y14a{bottom:459.390000px;}
.y177{bottom:471.240000px;}
.y13f{bottom:482.970000px;}
.y147{bottom:484.770000px;}
.y11{bottom:488.010000px;}
.y1f{bottom:496.440000px;}
.y176{bottom:503.640000px;}
.y1{bottom:504.435000px;}
.yb{bottom:509.835000px;}
.y10{bottom:524.055000px;}
.y1e{bottom:540.255000px;}
.y121{bottom:597.240000px;}
.ya{bottom:598.245000px;}
.y9{bottom:705.390000px;}
.y8{bottom:741.390000px;}
.h56{height:22.566383px;}
.h89{height:35.471036px;}
.h88{height:35.475437px;}
.h44{height:37.863999px;}
.h47{height:37.870222px;}
.h46{height:37.883031px;}
.h49{height:37.948298px;}
.h48{height:37.951693px;}
.h53{height:41.655482px;}
.h8b{height:42.894141px;}
.h39{height:44.280041px;}
.h34{height:45.540401px;}
.h3c{height:47.160348px;}
.h4c{height:48.515606px;}
.h4b{height:48.557007px;}
.h45{height:49.228217px;}
.h8c{height:49.284492px;}
.he{height:49.886719px;}
.h20{height:50.579731px;}
.h7f{height:51.539062px;}
.h5f{height:51.640990px;}
.h25{height:51.679688px;}
.h67{height:51.717868px;}
.h66{height:51.743611px;}
.h24{height:51.783047px;}
.h4f{height:52.972338px;}
.h4e{height:53.082468px;}
.h5d{height:54.689905px;}
.h5b{height:54.717127px;}
.h54{height:55.540088px;}
.h52{height:55.560784px;}
.h55{height:55.633279px;}
.h57{height:58.802919px;}
.h7c{height:59.378906px;}
.h7d{height:59.497664px;}
.h84{height:60.465234px;}
.h86{height:60.568594px;}
.h42{height:60.697338px;}
.h41{height:60.735811px;}
.h37{height:60.775320px;}
.h29{height:63.269096px;}
.h27{height:63.300589px;}
.h7e{height:64.263516px;}
.h1b{height:67.092759px;}
.h19{height:67.126155px;}
.h2e{height:68.733984px;}
.h2d{height:68.837344px;}
.h16{height:69.378750px;}
.h80{height:69.473320px;}
.h74{height:69.533244px;}
.h73{height:69.567855px;}
.h82{height:69.592078px;}
.h6e{height:71.067060px;}
.h22{height:71.763003px;}
.h30{height:77.308594px;}
.h12{height:77.519531px;}
.h7a{height:78.973945px;}
.h50{height:79.092703px;}
.h6a{height:84.521657px;}
.h17{height:85.587117px;}
.h26{height:86.038697px;}
.h7{height:86.305078px;}
.h9{height:86.408438px;}
.hf{height:89.068359px;}
.hc{height:89.187117px;}
.h69{height:89.205105px;}
.h68{height:89.511865px;}
.h60{height:89.599604px;}
.h18{height:91.619660px;}
.hb{height:92.058750px;}
.ha{height:92.169000px;}
.h5e{height:94.889618px;}
.h5c{height:94.936850px;}
.h71{height:97.919554px;}
.h4{height:99.162773px;}
.hd{height:99.281531px;}
.h3{height:99.874688px;}
.h6b{height:100.079536px;}
.h3b{height:102.320385px;}
.h38{height:105.180418px;}
.h36{height:105.232772px;}
.h8{height:107.793281px;}
.h6{height:107.922375px;}
.h3e{height:108.856189px;}
.h2b{height:109.201189px;}
.h2a{height:109.444920px;}
.h1e{height:109.475180px;}
.h28{height:109.499397px;}
.h63{height:110.604773px;}
.h31{height:113.308594px;}
.h77{height:113.457317px;}
.h2c{height:115.044139px;}
.h1d{height:115.798094px;}
.h1c{height:115.938660px;}
.h70{height:115.960043px;}
.h1a{height:115.996369px;}
.h59{height:117.181622px;}
.h83{height:118.365234px;}
.h78{height:118.757812px;}
.h5{height:118.876570px;}
.h76{height:119.932234px;}
.h75{height:120.155904px;}
.h6f{height:122.806392px;}
.h23{height:123.982934px;}
.h21{height:124.044647px;}
.h3a{height:126.399778px;}
.h65{height:127.509104px;}
.h85{height:128.577234px;}
.h35{height:129.997547px;}
.h33{height:131.308594px;}
.h3d{height:134.518528px;}
.h72{height:148.615893px;}
.h6c{height:151.894172px;}
.h32{height:152.188594px;}
.h6d{height:155.317548px;}
.h2f{height:159.388594px;}
.h1f{height:164.340067px;}
.h7b{height:173.880000px;}
.h58{height:176.395881px;}
.h81{height:176.400000px;}
.h8d{height:187.734375px;}
.h5a{height:190.362067px;}
.h61{height:193.860162px;}
.h1{height:200.500313px;}
.h2{height:200.650500px;}
.h62{height:218.129537px;}
.h64{height:223.990425px;}
.h10{height:226.800000px;}
.h79{height:231.840000px;}
.h51{height:282.776065px;}
.h43{height:369.366787px;}
.h8a{height:372.060000px;}
.h4a{height:386.627870px;}
.h4d{height:393.850391px;}
.h40{height:409.328735px;}
.h14{height:444.960000px;}
.h87{height:449.625762px;}
.h13{height:453.600000px;}
.h15{height:466.560000px;}
.h3f{height:481.144884px;}
.h11{height:680.400000px;}
.h0{height:810.000000px;}
.w10{width:15.722314px;}
.w16{width:185.940000px;}
.w17{width:190.980000px;}
.w7{width:191.517121px;}
.w14{width:198.173222px;}
.w5{width:240.300116px;}
.w13{width:247.860440px;}
.w6{width:268.915335px;}
.w9{width:286.200506px;}
.w8{width:292.857198px;}
.w4{width:319.687054px;}
.wf{width:380.525161px;}
.wc{width:395.100670px;}
.w2{width:399.780000px;}
.w3{width:399.960000px;}
.wb{width:420.660548px;}
.w15{width:469.080000px;}
.wd{width:562.882110px;}
.we{width:609.656421px;}
.w12{width:615.967699px;}
.w19{width:637.740000px;}
.w18{width:646.405154px;}
.w11{width:721.969432px;}
.wa{width:721.989982px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x86{left:1.425366px;}
.x2c{left:4.587903px;}
.x99{left:5.614158px;}
.xbd{left:6.915000px;}
.xaa{left:8.498079px;}
.xcc{left:9.870000px;}
.x17{left:10.908000px;}
.x5d{left:13.022357px;}
.x6f{left:16.545551px;}
.x37{left:18.546461px;}
.x31{left:19.919555px;}
.x28{left:20.941839px;}
.x4d{left:25.896728px;}
.x5b{left:26.985201px;}
.xcd{left:28.725000px;}
.x6b{left:30.153593px;}
.x5a{left:34.843373px;}
.x38{left:36.222640px;}
.x54{left:37.724857px;}
.x56{left:38.951504px;}
.x6c{left:41.059440px;}
.x6e{left:44.667596px;}
.x61{left:46.107508px;}
.x76{left:47.496058px;}
.x55{left:50.143603px;}
.xa{left:51.875979px;}
.xae{left:53.952827px;}
.x9e{left:57.044905px;}
.x2e{left:58.384750px;}
.x10{left:64.151979px;}
.x35{left:70.418070px;}
.xcb{left:72.105000px;}
.x24{left:73.331979px;}
.xc9{left:74.514962px;}
.x83{left:75.535713px;}
.x9c{left:76.844999px;}
.xc8{left:80.546445px;}
.x6a{left:81.798265px;}
.xc7{left:82.979995px;}
.xad{left:84.124680px;}
.x48{left:85.406438px;}
.x5f{left:87.377548px;}
.x4a{left:90.280241px;}
.x98{left:91.936666px;}
.xc{left:94.499979px;}
.x2a{left:98.346369px;}
.x93{left:101.413943px;}
.x53{left:105.158264px;}
.xb4{left:106.175556px;}
.x77{left:107.521953px;}
.x8c{left:108.598608px;}
.x95{left:110.289699px;}
.xab{left:111.386390px;}
.x7e{left:116.749572px;}
.xb2{left:118.294479px;}
.x16{left:120.240000px;}
.x80{left:122.026875px;}
.x88{left:124.898180px;}
.x7d{left:126.743675px;}
.xb3{left:128.506952px;}
.x58{left:133.191223px;}
.xd{left:134.999979px;}
.x33{left:143.213541px;}
.x5c{left:145.322360px;}
.x84{left:147.647536px;}
.xb0{left:149.088526px;}
.x59{left:160.020000px;}
.xaf{left:161.556410px;}
.x7c{left:163.185272px;}
.xc2{left:166.829979px;}
.x34{left:168.365505px;}
.x36{left:169.525193px;}
.xd0{left:173.880000px;}
.x81{left:176.320210px;}
.x47{left:179.028776px;}
.x1d{left:180.104979px;}
.x52{left:182.552183px;}
.x27{left:185.220059px;}
.x4e{left:189.117030px;}
.xce{left:191.700000px;}
.x2b{left:194.841807px;}
.x20{left:202.320000px;}
.x94{left:205.726874px;}
.x2f{left:210.750621px;}
.x26{left:212.527501px;}
.x29{left:213.709056px;}
.x82{left:215.464262px;}
.x8d{left:221.362095px;}
.x60{left:228.030519px;}
.x51{left:231.864081px;}
.x23{left:233.099979px;}
.x70{left:237.096437px;}
.x74{left:239.054255px;}
.xb{left:240.479979px;}
.x69{left:241.962144px;}
.x2d{left:248.269039px;}
.x1{left:251.174979px;}
.xe{left:256.499979px;}
.xc0{left:258.449979px;}
.x4b{left:262.486057px;}
.x3{left:266.939979px;}
.xa7{left:285.398912px;}
.x7f{left:286.410757px;}
.x68{left:293.898017px;}
.xf{left:296.999979px;}
.x63{left:298.352629px;}
.x71{left:302.126449px;}
.x75{left:303.222838px;}
.x79{left:306.323947px;}
.x9b{left:313.912346px;}
.x9a{left:323.913888px;}
.x96{left:335.026686px;}
.x67{left:345.833890px;}
.x3d{left:348.014979px;}
.x50{left:349.721968px;}
.x1e{left:351.510000px;}
.xa8{left:356.406238px;}
.xc1{left:359.789979px;}
.xa2{left:367.293588px;}
.xa6{left:369.188019px;}
.x2{left:374.294979px;}
.x11{left:375.869979px;}
.xd3{left:377.489979px;}
.x91{left:388.754639px;}
.xa1{left:391.305062px;}
.x5{left:397.829979px;}
.xca{left:400.680000px;}
.x8{left:409.679979px;}
.x5e{left:414.220662px;}
.x6d{left:418.644121px;}
.xa9{left:421.593322px;}
.xac{left:423.419315px;}
.x72{left:425.592650px;}
.x3e{left:433.514979px;}
.x62{left:437.759959px;}
.xc4{left:441.074979px;}
.x87{left:444.239959px;}
.x3f{left:446.114979px;}
.x66{left:449.715441px;}
.xa0{left:451.619959px;}
.x9f{left:455.455571px;}
.x78{left:462.195512px;}
.x97{left:466.036865px;}
.xa3{left:467.333850px;}
.x14{left:468.359979px;}
.x92{left:479.493014px;}
.x7a{left:483.417996px;}
.x73{left:485.610714px;}
.x8b{left:486.668015px;}
.x4c{left:492.119959px;}
.x12{left:495.389979px;}
.xa5{left:497.051489px;}
.x8a{left:499.351103px;}
.x65{left:501.661119px;}
.x89{left:502.974835px;}
.x40{left:514.874979px;}
.x18{left:520.020000px;}
.x9d{left:526.142606px;}
.x57{left:527.931723px;}
.x7b{left:529.379959px;}
.x3b{left:534.929979px;}
.x49{left:539.099959px;}
.x8f{left:541.048248px;}
.x13{left:542.489979px;}
.x8e{left:544.671979px;}
.x90{left:549.334543px;}
.x64{left:553.596992px;}
.x4{left:559.874979px;}
.xa4{left:567.602347px;}
.x46{left:573.299959px;}
.x32{left:579.599959px;}
.x6{left:590.834979px;}
.x9{left:593.639979px;}
.x3c{left:597.854979px;}
.xc3{left:600.914979px;}
.xb5{left:617.189979px;}
.x19{left:620.639979px;}
.x7{left:628.634979px;}
.xba{left:640.469979px;}
.xb7{left:644.609979px;}
.x41{left:647.204979px;}
.xb9{left:648.389979px;}
.xb6{left:650.549979px;}
.xb8{left:653.069979px;}
.xbc{left:656.640000px;}
.x42{left:662.504979px;}
.x4f{left:664.379959px;}
.xc5{left:668.624979px;}
.x15{left:671.939979px;}
.x1f{left:686.699979px;}
.xbf{left:718.634979px;}
.x85{left:726.631729px;}
.x39{left:745.409979px;}
.x3a{left:791.714979px;}
.xb1{left:824.940000px;}
.x43{left:851.729979px;}
.xc6{left:877.169979px;}
.xcf{left:894.419979px;}
.xbe{left:913.679979px;}
.x1a{left:919.800000px;}
.xbb{left:936.869979px;}
.x25{left:982.619919px;}
.x30{left:984.239919px;}
.x22{left:1012.709979px;}
.x1b{left:1020.449979px;}
.x44{left:1050.269979px;}
.x21{left:1072.874979px;}
.x1c{left:1083.854979px;}
.x45{left:1091.879979px;}
.xd2{left:1189.979979px;}
.xd1{left:1229.294979px;}
@media print{
.v27{vertical-align:-87.611706pt;}
.v7{vertical-align:-75.893333pt;}
.v19{vertical-align:-67.380041pt;}
.v20{vertical-align:-63.718379pt;}
.v24{vertical-align:-57.506839pt;}
.vc{vertical-align:-39.680000pt;}
.v21{vertical-align:-38.471474pt;}
.v22{vertical-align:-36.668124pt;}
.v5{vertical-align:-35.623035pt;}
.v23{vertical-align:-34.063284pt;}
.v1f{vertical-align:-31.859189pt;}
.v17{vertical-align:-28.604734pt;}
.v4{vertical-align:-26.240000pt;}
.v18{vertical-align:-25.002657pt;}
.v8{vertical-align:-23.680000pt;}
.v6{vertical-align:-20.586667pt;}
.v1c{vertical-align:-15.255858pt;}
.v28{vertical-align:-12.800000pt;}
.v25{vertical-align:-11.020474pt;}
.v1b{vertical-align:-8.263590pt;}
.v15{vertical-align:-6.548099pt;}
.v1a{vertical-align:-5.509060pt;}
.v3{vertical-align:-3.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:3.200000pt;}
.v2a{vertical-align:12.800000pt;}
.v2{vertical-align:17.920000pt;}
.v9{vertical-align:19.840000pt;}
.v29{vertical-align:23.680000pt;}
.v26{vertical-align:28.844469pt;}
.vb{vertical-align:32.000000pt;}
.ve{vertical-align:48.000000pt;}
.v2b{vertical-align:51.466667pt;}
.vf{vertical-align:52.370405pt;}
.v2c{vertical-align:60.544000pt;}
.v16{vertical-align:65.049284pt;}
.vd{vertical-align:66.560000pt;}
.va{vertical-align:72.960000pt;}
.v1d{vertical-align:95.577568pt;}
.v1e{vertical-align:100.787247pt;}
.v10{vertical-align:104.741247pt;}
.v11{vertical-align:157.112088pt;}
.v12{vertical-align:205.118693pt;}
.v13{vertical-align:257.489535pt;}
.v14{vertical-align:309.860376pt;}
.ls3c{letter-spacing:-2.204489pt;}
.ls3b{letter-spacing:-2.007660pt;}
.ls10{letter-spacing:-1.586814pt;}
.lsb{letter-spacing:-1.504000pt;}
.ls2b{letter-spacing:-1.232401pt;}
.ls2a{letter-spacing:-1.124453pt;}
.ls7b{letter-spacing:-0.709333pt;}
.ls7f{letter-spacing:-0.268800pt;}
.ls75{letter-spacing:-0.256000pt;}
.ls7d{letter-spacing:-0.204267pt;}
.ls80{letter-spacing:-0.170133pt;}
.ls74{letter-spacing:-0.128000pt;}
.ls29{letter-spacing:-0.054933pt;}
.ls83{letter-spacing:-0.051840pt;}
.ls8{letter-spacing:-0.032000pt;}
.ls7c{letter-spacing:-0.008960pt;}
.ls1{letter-spacing:0.000000pt;}
.ls7e{letter-spacing:0.000645pt;}
.ls46{letter-spacing:0.004050pt;}
.ls40{letter-spacing:0.004260pt;}
.ls41{letter-spacing:0.004286pt;}
.ls34{letter-spacing:0.006852pt;}
.ls30{letter-spacing:0.007118pt;}
.ls32{letter-spacing:0.007705pt;}
.ls33{letter-spacing:0.009450pt;}
.ls76{letter-spacing:0.010507pt;}
.ls42{letter-spacing:0.012097pt;}
.ls44{letter-spacing:0.023773pt;}
.ls0{letter-spacing:0.033280pt;}
.ls31{letter-spacing:0.033985pt;}
.ls37{letter-spacing:0.052441pt;}
.ls15{letter-spacing:0.064000pt;}
.ls3a{letter-spacing:0.070296pt;}
.ls77{letter-spacing:0.082667pt;}
.ls7a{letter-spacing:0.087552pt;}
.ls12{letter-spacing:0.092800pt;}
.ls79{letter-spacing:0.126720pt;}
.ls6f{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.156267pt;}
.lsd{letter-spacing:0.160000pt;}
.ls70{letter-spacing:0.174933pt;}
.ls7{letter-spacing:0.192000pt;}
.ls9{letter-spacing:0.196267pt;}
.ls2{letter-spacing:0.211733pt;}
.lsc{letter-spacing:0.214400pt;}
.ls13{letter-spacing:0.256000pt;}
.ls3e{letter-spacing:0.517943pt;}
.ls38{letter-spacing:0.529612pt;}
.ls36{letter-spacing:0.585849pt;}
.ls39{letter-spacing:0.717021pt;}
.ls3d{letter-spacing:1.197848pt;}
.ls3f{letter-spacing:1.338440pt;}
.ls1f{letter-spacing:2.986667pt;}
.ls71{letter-spacing:3.029120pt;}
.ls25{letter-spacing:4.985600pt;}
.ls26{letter-spacing:5.120000pt;}
.ls1d{letter-spacing:5.638400pt;}
.ls22{letter-spacing:5.664000pt;}
.ls72{letter-spacing:17.109120pt;}
.ls23{letter-spacing:18.560000pt;}
.ls4d{letter-spacing:18.900313pt;}
.ls21{letter-spacing:21.728000pt;}
.ls63{letter-spacing:23.738071pt;}
.ls19{letter-spacing:24.271360pt;}
.ls1a{letter-spacing:25.018027pt;}
.ls20{letter-spacing:25.158400pt;}
.ls1c{letter-spacing:27.488000pt;}
.ls81{letter-spacing:28.352256pt;}
.ls82{letter-spacing:28.992256pt;}
.ls1b{letter-spacing:32.518400pt;}
.ls27{letter-spacing:32.640000pt;}
.ls2d{letter-spacing:36.910933pt;}
.ls5{letter-spacing:59.891712pt;}
.ls6{letter-spacing:59.992320pt;}
.ls28{letter-spacing:60.768000pt;}
.ls58{letter-spacing:74.378183pt;}
.ls62{letter-spacing:77.960940pt;}
.ls52{letter-spacing:78.059141pt;}
.ls50{letter-spacing:80.517030pt;}
.ls51{letter-spacing:92.128433pt;}
.ls65{letter-spacing:101.071432pt;}
.ls61{letter-spacing:101.252175pt;}
.ls3{letter-spacing:106.547200pt;}
.ls4{letter-spacing:106.592000pt;}
.ls1e{letter-spacing:110.918400pt;}
.ls4f{letter-spacing:112.045803pt;}
.ls17{letter-spacing:118.073239pt;}
.lse{letter-spacing:124.261795pt;}
.ls84{letter-spacing:139.468160pt;}
.ls64{letter-spacing:140.951392pt;}
.ls53{letter-spacing:143.744087pt;}
.ls4b{letter-spacing:146.117220pt;}
.ls4e{letter-spacing:148.914127pt;}
.ls2c{letter-spacing:153.825216pt;}
.ls2f{letter-spacing:175.639241pt;}
.ls18{letter-spacing:178.316437pt;}
.ls78{letter-spacing:186.302720pt;}
.ls5d{letter-spacing:191.910882pt;}
.ls5a{letter-spacing:194.601539pt;}
.ls35{letter-spacing:224.898899pt;}
.ls2e{letter-spacing:224.997354pt;}
.ls5b{letter-spacing:235.477480pt;}
.ls24{letter-spacing:239.488000pt;}
.ls55{letter-spacing:251.382642pt;}
.ls57{letter-spacing:269.781211pt;}
.ls60{letter-spacing:270.221460pt;}
.lsf{letter-spacing:284.224483pt;}
.ls11{letter-spacing:289.646529pt;}
.ls5c{letter-spacing:318.191149pt;}
.ls73{letter-spacing:332.789120pt;}
.ls6c{letter-spacing:365.418667pt;}
.ls5e{letter-spacing:370.341422pt;}
.ls4c{letter-spacing:386.905516pt;}
.ls45{letter-spacing:387.508099pt;}
.ls5f{letter-spacing:396.441839pt;}
.ls6e{letter-spacing:414.293333pt;}
.ls69{letter-spacing:427.761493pt;}
.ls67{letter-spacing:430.714453pt;}
.ls6b{letter-spacing:432.362240pt;}
.ls14{letter-spacing:435.050240pt;}
.ls66{letter-spacing:439.169280pt;}
.ls16{letter-spacing:455.008804pt;}
.ls6d{letter-spacing:463.722453pt;}
.ls68{letter-spacing:498.965333pt;}
.ls6a{letter-spacing:515.605333pt;}
.ls4a{letter-spacing:516.926127pt;}
.ls56{letter-spacing:809.662299pt;}
.ls43{letter-spacing:873.190181pt;}
.ls49{letter-spacing:895.855459pt;}
.ls59{letter-spacing:1177.868293pt;}
.ls48{letter-spacing:1298.032038pt;}
.ls47{letter-spacing:1310.075453pt;}
.ls54{letter-spacing:1342.515526pt;}
.ws13{word-spacing:-232.762370pt;}
.ws60{word-spacing:-45.981747pt;}
.ws19{word-spacing:-39.840000pt;}
.ws4c{word-spacing:-35.681461pt;}
.ws4f{word-spacing:-31.556022pt;}
.ws2{word-spacing:-28.956928pt;}
.ws6d{word-spacing:-26.613120pt;}
.ws69{word-spacing:-26.560000pt;}
.ws2d{word-spacing:-25.804280pt;}
.wsc{word-spacing:-24.369280pt;}
.ws18{word-spacing:-24.183808pt;}
.ws4{word-spacing:-24.154880pt;}
.ws0{word-spacing:-23.663360pt;}
.ws5f{word-spacing:-23.429769pt;}
.wsb{word-spacing:-22.650880pt;}
.ws7{word-spacing:-21.724928pt;}
.ws6{word-spacing:-21.696000pt;}
.ws8{word-spacing:-21.664000pt;}
.ws14{word-spacing:-19.266048pt;}
.ws16{word-spacing:-19.237120pt;}
.ws1a{word-spacing:-18.112000pt;}
.ws38{word-spacing:-16.941389pt;}
.ws94{word-spacing:-16.922880pt;}
.ws36{word-spacing:-16.906241pt;}
.ws17{word-spacing:-16.055040pt;}
.ws7a{word-spacing:-16.000000pt;}
.ws1c{word-spacing:-15.999459pt;}
.ws1e{word-spacing:-15.847061pt;}
.ws28{word-spacing:-14.794526pt;}
.ws29{word-spacing:-14.785154pt;}
.ws9{word-spacing:-14.464000pt;}
.ws3b{word-spacing:-13.159141pt;}
.ws15{word-spacing:-12.872960pt;}
.ws7b{word-spacing:-12.736000pt;}
.ws70{word-spacing:-12.501333pt;}
.ws31{word-spacing:-12.107656pt;}
.ws21{word-spacing:-12.062710pt;}
.wsa6{word-spacing:-12.005120pt;}
.ws71{word-spacing:-11.968000pt;}
.ws34{word-spacing:-11.827913pt;}
.ws35{word-spacing:-11.817828pt;}
.wsa2{word-spacing:-11.640422pt;}
.wsa3{word-spacing:-11.638978pt;}
.ws30{word-spacing:-10.620888pt;}
.ws2f{word-spacing:-10.599036pt;}
.ws2b{word-spacing:-10.597295pt;}
.ws37{word-spacing:-10.579581pt;}
.ws3a{word-spacing:-9.869454pt;}
.ws3c{word-spacing:-8.552080pt;}
.ws2c{word-spacing:-6.887370pt;}
.ws91{word-spacing:-1.868160pt;}
.ws1{word-spacing:0.000000pt;}
.wsf{word-spacing:6.291402pt;}
.ws11{word-spacing:7.437969pt;}
.wsd{word-spacing:7.564117pt;}
.ws54{word-spacing:12.717888pt;}
.ws51{word-spacing:12.770044pt;}
.ws52{word-spacing:12.771108pt;}
.ws55{word-spacing:12.824328pt;}
.ws3d{word-spacing:13.317007pt;}
.ws3e{word-spacing:13.318132pt;}
.ws62{word-spacing:15.998453pt;}
.ws65{word-spacing:16.003443pt;}
.ws57{word-spacing:17.761405pt;}
.ws44{word-spacing:18.782088pt;}
.ws2e{word-spacing:20.121820pt;}
.ws66{word-spacing:26.210983pt;}
.ws63{word-spacing:26.531576pt;}
.ws12{word-spacing:31.834507pt;}
.wse{word-spacing:33.303128pt;}
.ws10{word-spacing:33.703939pt;}
.ws3{word-spacing:36.484800pt;}
.ws4e{word-spacing:39.810459pt;}
.ws1f{word-spacing:40.589869pt;}
.ws1d{word-spacing:42.031121pt;}
.ws5c{word-spacing:44.367548pt;}
.ws47{word-spacing:44.453579pt;}
.ws5d{word-spacing:44.773101pt;}
.ws32{word-spacing:49.393776pt;}
.ws22{word-spacing:49.492366pt;}
.ws53{word-spacing:54.538502pt;}
.ws2a{word-spacing:63.699888pt;}
.ws5b{word-spacing:76.081828pt;}
.ws59{word-spacing:77.785153pt;}
.ws4a{word-spacing:77.901243pt;}
.ws27{word-spacing:81.022824pt;}
.ws49{word-spacing:82.028461pt;}
.ws64{word-spacing:84.016661pt;}
.ws9b{word-spacing:85.835093pt;}
.ws26{word-spacing:86.303550pt;}
.ws25{word-spacing:86.347193pt;}
.ws20{word-spacing:87.203348pt;}
.ws58{word-spacing:93.868323pt;}
.ws96{word-spacing:97.355093pt;}
.ws33{word-spacing:106.970552pt;}
.ws23{word-spacing:107.069143pt;}
.wsa9{word-spacing:114.233387pt;}
.ws3f{word-spacing:123.253167pt;}
.ws9c{word-spacing:130.481600pt;}
.ws9e{word-spacing:135.613781pt;}
.ws99{word-spacing:135.707093pt;}
.wsa5{word-spacing:139.993387pt;}
.ws24{word-spacing:140.812868pt;}
.ws97{word-spacing:142.001600pt;}
.ws9f{word-spacing:142.036480pt;}
.ws40{word-spacing:148.556122pt;}
.ws41{word-spacing:148.893795pt;}
.wsa4{word-spacing:153.169707pt;}
.ws92{word-spacing:158.200533pt;}
.ws98{word-spacing:162.108267pt;}
.wsa0{word-spacing:162.143147pt;}
.wsa1{word-spacing:170.643492pt;}
.wsa8{word-spacing:174.286720pt;}
.ws9d{word-spacing:180.668267pt;}
.ws68{word-spacing:181.198933pt;}
.wsa7{word-spacing:187.516373pt;}
.ws93{word-spacing:212.293227pt;}
.ws61{word-spacing:277.098485pt;}
.ws8a{word-spacing:299.596373pt;}
.ws7f{word-spacing:304.449707pt;}
.ws56{word-spacing:305.044331pt;}
.ws4d{word-spacing:315.130305pt;}
.wsa{word-spacing:317.066069pt;}
.ws8e{word-spacing:318.156373pt;}
.ws82{word-spacing:324.316587pt;}
.ws87{word-spacing:336.455040pt;}
.ws5{word-spacing:337.817173pt;}
.ws8c{word-spacing:337.843029pt;}
.ws95{word-spacing:338.176427pt;}
.ws83{word-spacing:346.055040pt;}
.ws7c{word-spacing:351.920747pt;}
.ws85{word-spacing:355.654933pt;}
.ws90{word-spacing:356.583253pt;}
.ws9a{word-spacing:363.823787pt;}
.ws80{word-spacing:365.254933pt;}
.ws88{word-spacing:366.200533pt;}
.ws7d{word-spacing:383.120853pt;}
.ws77{word-spacing:397.371947pt;}
.ws79{word-spacing:399.509333pt;}
.ws75{word-spacing:402.005333pt;}
.ws6f{word-spacing:402.325333pt;}
.ws7e{word-spacing:407.667413pt;}
.ws89{word-spacing:425.214080pt;}
.ws1b{word-spacing:430.080000pt;}
.ws84{word-spacing:433.210453pt;}
.ws81{word-spacing:446.067413pt;}
.ws8d{word-spacing:450.757120pt;}
.ws67{word-spacing:454.430805pt;}
.ws50{word-spacing:460.896725pt;}
.ws8b{word-spacing:463.509760pt;}
.ws5e{word-spacing:463.765283pt;}
.ws86{word-spacing:471.610453pt;}
.ws8f{word-spacing:489.157120pt;}
.ws73{word-spacing:491.349333pt;}
.ws39{word-spacing:493.027499pt;}
.ws6a{word-spacing:494.218667pt;}
.ws78{word-spacing:526.858667pt;}
.ws76{word-spacing:532.544000pt;}
.ws6b{word-spacing:548.544000pt;}
.ws6e{word-spacing:551.110571pt;}
.ws6c{word-spacing:564.352000pt;}
.ws74{word-spacing:580.544000pt;}
.ws5a{word-spacing:592.217046pt;}
.ws72{word-spacing:597.760000pt;}
.ws42{word-spacing:890.443128pt;}
.ws45{word-spacing:913.655383pt;}
.ws48{word-spacing:962.617195pt;}
.ws46{word-spacing:983.517721pt;}
.ws43{word-spacing:1256.527734pt;}
.ws4b{word-spacing:1353.788715pt;}
._48{margin-left:-4373.508181pt;}
._70{margin-left:-2639.806805pt;}
._41{margin-left:-1580.696177pt;}
._39{margin-left:-1186.074712pt;}
._32{margin-left:-1028.233205pt;}
._43{margin-left:-1018.003863pt;}
._3b{margin-left:-623.459180pt;}
._1e{margin-left:-542.611166pt;}
._35{margin-left:-399.594091pt;}
._2e{margin-left:-382.210518pt;}
._27{margin-left:-58.176000pt;}
._28{margin-left:-51.776000pt;}
._26{margin-left:-12.705646pt;}
._2a{margin-left:-11.400960pt;}
._a{margin-left:-10.481280pt;}
._10{margin-left:-9.001728pt;}
._2{margin-left:-7.696256pt;}
._20{margin-left:-6.128000pt;}
._4{margin-left:-4.825173pt;}
._5{margin-left:-3.830400pt;}
._1{margin-left:-2.221440pt;}
._0{margin-left:-1.196160pt;}
._3{width:0.915840pt;}
._6{width:2.210133pt;}
._21{width:3.406507pt;}
._14{width:11.451233pt;}
._1f{width:13.102976pt;}
._29{width:14.528000pt;}
._3f{width:22.421461pt;}
._c{width:23.962880pt;}
._42{width:33.724421pt;}
._3a{width:34.905760pt;}
._15{width:37.190244pt;}
._17{width:45.384705pt;}
._33{width:46.498934pt;}
._23{width:49.189768pt;}
._13{width:51.688136pt;}
._5f{width:72.311382pt;}
._60{width:76.204695pt;}
._62{width:81.888459pt;}
._52{width:87.015517pt;}
._3d{width:90.076259pt;}
._3e{width:91.503731pt;}
._5d{width:106.173894pt;}
._5e{width:109.474875pt;}
._4d{width:111.950793pt;}
._34{width:114.082444pt;}
._1c{width:129.086085pt;}
._f{width:131.890304pt;}
._25{width:133.027943pt;}
._2c{width:135.433612pt;}
._4c{width:137.831891pt;}
._1d{width:139.197267pt;}
._1a{width:141.444196pt;}
._24{width:145.387501pt;}
._16{width:147.710405pt;}
._1b{width:155.262811pt;}
._5a{width:157.556316pt;}
._2d{width:162.215347pt;}
._30{width:164.245056pt;}
._5c{width:170.584471pt;}
._5b{width:173.252887pt;}
._36{width:178.298876pt;}
._46{width:179.326848pt;}
._2f{width:181.645694pt;}
._6e{width:185.753523pt;}
._7{width:188.255360pt;}
._6f{width:190.185931pt;}
._31{width:191.495989pt;}
._6d{width:203.924907pt;}
._4e{width:213.927476pt;}
._38{width:215.787744pt;}
._55{width:230.012049pt;}
._11{width:245.518646pt;}
._51{width:248.148993pt;}
._19{width:249.858532pt;}
._64{width:255.823119pt;}
._53{width:266.531909pt;}
._4f{width:269.644921pt;}
._65{width:279.617195pt;}
._54{width:282.221292pt;}
._59{width:284.135617pt;}
._4a{width:285.481109pt;}
._58{width:287.134905pt;}
._18{width:296.786554pt;}
._63{width:299.622892pt;}
._12{width:302.249528pt;}
._47{width:306.764117pt;}
._8{width:314.892373pt;}
._56{width:325.063738pt;}
._22{width:333.617704pt;}
._66{width:340.021547pt;}
._45{width:365.080143pt;}
._50{width:374.803001pt;}
._57{width:398.188610pt;}
._3c{width:406.290918pt;}
._44{width:411.319027pt;}
._2b{width:453.099593pt;}
._49{width:462.984488pt;}
._67{width:472.389120pt;}
._71{width:478.213120pt;}
._6a{width:498.965333pt;}
._9{width:512.208299pt;}
._6c{width:515.605333pt;}
._68{width:547.200000pt;}
._4b{width:553.047237pt;}
._6b{width:612.224000pt;}
._69{width:660.405888pt;}
._61{width:730.813095pt;}
._37{width:773.400342pt;}
._b{width:1080.138667pt;}
._40{width:1297.769228pt;}
._e{width:1614.626987pt;}
._d{width:1972.642987pt;}
.fs22{font-size:30.475087pt;}
.fs2f{font-size:30.762876pt;}
.fs2d{font-size:35.501634pt;}
.fs2b{font-size:42.177732pt;}
.fs2a{font-size:42.318325pt;}
.fs46{font-size:46.555913pt;}
.fs45{font-size:46.561688pt;}
.fs41{font-size:46.720000pt;}
.fs42{font-size:46.848000pt;}
.fs36{font-size:46.863866pt;}
.fs21{font-size:46.890685pt;}
.fs24{font-size:46.898391pt;}
.fs25{font-size:46.995080pt;}
.fs23{font-size:47.002332pt;}
.fs2e{font-size:47.335039pt;}
.fs2c{font-size:47.352678pt;}
.fs32{font-size:49.556960pt;}
.fs27{font-size:52.291276pt;}
.fs26{font-size:52.335899pt;}
.fs47{font-size:53.120000pt;}
.fs1a{font-size:55.071226pt;}
.fs30{font-size:56.429862pt;}
.fs16{font-size:56.960000pt;}
.fs12{font-size:57.330948pt;}
.fsa{font-size:60.795739pt;}
.fs3d{font-size:63.007171pt;}
.fs8{font-size:64.000000pt;}
.fs11{font-size:64.128000pt;}
.fs3a{font-size:64.397030pt;}
.fsf{font-size:65.027656pt;}
.fs20{font-size:65.421037pt;}
.fs1f{font-size:65.462505pt;}
.fs29{font-size:67.624964pt;}
.fs28{font-size:67.765556pt;}
.fs17{font-size:70.400000pt;}
.fs10{font-size:71.040000pt;}
.fs43{font-size:74.880000pt;}
.fs44{font-size:75.008000pt;}
.fs37{font-size:81.110691pt;}
.fs2{font-size:85.120000pt;}
.fs7{font-size:85.248000pt;}
.fs38{font-size:85.605133pt;}
.fs33{font-size:85.983712pt;}
.fs1c{font-size:92.670933pt;}
.fs19{font-size:95.308665pt;}
.fs9{font-size:96.000000pt;}
.fs6{font-size:96.128000pt;}
.fs1e{font-size:98.590371pt;}
.fs13{font-size:99.172920pt;}
.fs14{font-size:104.794253pt;}
.fsb{font-size:105.057187pt;}
.fs34{font-size:106.141194pt;}
.fs3{font-size:106.880000pt;}
.fs5{font-size:107.008000pt;}
.fs3e{font-size:108.878620pt;}
.fsc{font-size:111.124933pt;}
.fs3b{font-size:111.280346pt;}
.fse{font-size:112.346462pt;}
.fs31{font-size:112.452626pt;}
.fs3f{font-size:115.092234pt;}
.fs1b{font-size:121.298773pt;}
.fs35{font-size:122.363332pt;}
.fs18{font-size:124.751351pt;}
.fs40{font-size:128.000000pt;}
.fs4{font-size:128.128000pt;}
.fs1d{font-size:129.089882pt;}
.fs3c{font-size:142.618332pt;}
.fs39{font-size:145.764313pt;}
.fs15{font-size:148.860010pt;}
.fsd{font-size:157.707940pt;}
.fs48{font-size:160.000000pt;}
.fs0{font-size:170.880000pt;}
.fs1{font-size:171.008000pt;}
.y0{bottom:0.000000pt;}
.yc5{bottom:4.011820pt;}
.y8a{bottom:5.084155pt;}
.y9d{bottom:5.553381pt;}
.y10e{bottom:5.610423pt;}
.y40{bottom:5.789858pt;}
.y53{bottom:6.239066pt;}
.y45{bottom:6.616981pt;}
.y72{bottom:6.947997pt;}
.yf0{bottom:8.051713pt;}
.y69{bottom:8.096084pt;}
.yfd{bottom:8.115077pt;}
.y73{bottom:9.130119pt;}
.y4d{bottom:9.520897pt;}
.yae{bottom:9.538213pt;}
.y11c{bottom:9.561171pt;}
.yef{bottom:9.693833pt;}
.y114{bottom:9.772079pt;}
.yee{bottom:11.653791pt;}
.y8e{bottom:12.123194pt;}
.y6c{bottom:12.190692pt;}
.y67{bottom:12.537687pt;}
.y6f{bottom:13.022228pt;}
.y103{bottom:13.374848pt;}
.y47{bottom:13.424830pt;}
.y19{bottom:13.440000pt;}
.y6d{bottom:13.885337pt;}
.y37{bottom:14.240000pt;}
.y68{bottom:14.280560pt;}
.y6a{bottom:14.280593pt;}
.y119{bottom:14.638480pt;}
.y10d{bottom:14.727361pt;}
.y95{bottom:14.795175pt;}
.y70{bottom:14.795177pt;}
.y111{bottom:14.961387pt;}
.y9c{bottom:15.148889pt;}
.y160{bottom:16.141390pt;}
.y81{bottom:16.217849pt;}
.y11e{bottom:16.616654pt;}
.y4c{bottom:16.859920pt;}
.y4e{bottom:16.859921pt;}
.yc3{bottom:17.491458pt;}
.ya6{bottom:18.110285pt;}
.y169{bottom:20.000000pt;}
.y173{bottom:20.032000pt;}
.y7d{bottom:20.472647pt;}
.y8c{bottom:22.112813pt;}
.y82{bottom:23.422433pt;}
.y4a{bottom:24.686409pt;}
.ya1{bottom:24.743950pt;}
.y9b{bottom:25.616240pt;}
.yc2{bottom:25.622318pt;}
.y7e{bottom:26.114539pt;}
.y52{bottom:26.616651pt;}
.y56{bottom:26.616655pt;}
.yed{bottom:27.015598pt;}
.y44{bottom:27.295030pt;}
.yde{bottom:28.710693pt;}
.ydd{bottom:28.763659pt;}
.yec{bottom:30.670648pt;}
.y11b{bottom:30.991378pt;}
.y157{bottom:31.363606pt;}
.y112{bottom:31.675010pt;}
.ycc{bottom:32.736544pt;}
.yd1{bottom:32.789510pt;}
.y58{bottom:33.006656pt;}
.y54{bottom:33.006661pt;}
.y59{bottom:33.006662pt;}
.y57{bottom:33.006663pt;}
.yaf{bottom:33.543950pt;}
.y10c{bottom:34.013191pt;}
.y48{bottom:34.102870pt;}
.y49{bottom:34.102881pt;}
.y42{bottom:34.102883pt;}
.y46{bottom:34.102884pt;}
.y74{bottom:34.224376pt;}
.ye5{bottom:34.272725pt;}
.yda{bottom:34.325689pt;}
.ye4{bottom:34.325691pt;}
.y9a{bottom:36.083591pt;}
.y120{bottom:38.046859pt;}
.y11f{bottom:38.046862pt;}
.yb4{bottom:38.534982pt;}
.y117{bottom:38.886126pt;}
.y116{bottom:38.886128pt;}
.y163{bottom:40.288000pt;}
.y32{bottom:40.320000pt;}
.yfa{bottom:40.976127pt;}
.y158{bottom:41.221171pt;}
.ya7{bottom:42.836749pt;}
.yf7{bottom:43.831432pt;}
.yf6{bottom:44.783200pt;}
.yd5{bottom:45.025976pt;}
.y99{bottom:45.678663pt;}
.y10b{bottom:48.991018pt;}
.yeb{bottom:50.376131pt;}
.yd9{bottom:50.588006pt;}
.y41{bottom:50.899808pt;}
.y11a{bottom:51.564369pt;}
.yea{bottom:51.594472pt;}
.y113{bottom:52.162665pt;}
.y7{bottom:52.576000pt;}
.y96{bottom:53.280000pt;}
.yf3{bottom:54.401069pt;}
.y1d{bottom:54.752000pt;}
.ydc{bottom:55.037643pt;}
.ya0{bottom:55.273709pt;}
.y102{bottom:55.853767pt;}
.y98{bottom:56.146014pt;}
.y118{bottom:56.641678pt;}
.y110{bottom:57.419367pt;}
.y16d{bottom:58.400000pt;}
.y11d{bottom:58.619853pt;}
.ycb{bottom:59.063494pt;}
.y75{bottom:59.318740pt;}
.y115{bottom:59.373783pt;}
.y29{bottom:59.520000pt;}
.y50{bottom:59.616000pt;}
.y13c{bottom:60.160000pt;}
.yc6{bottom:60.264024pt;}
.yc0{bottom:60.564802pt;}
.ye3{bottom:60.599675pt;}
.y80{bottom:60.640000pt;}
.y55{bottom:61.434645pt;}
.yb3{bottom:62.013920pt;}
.y43{bottom:64.197379pt;}
.y83{bottom:65.338639pt;}
.yf1{bottom:65.920000pt;}
.y97{bottom:66.613365pt;}
.yd4{bottom:67.433025pt;}
.y10a{bottom:67.625638pt;}
.yb6{bottom:68.800000pt;}
.y1c{bottom:70.368000pt;}
.ye9{bottom:70.823219pt;}
.ycd{bottom:71.458876pt;}
.yc8{bottom:71.458881pt;}
.y13d{bottom:71.488000pt;}
.y13a{bottom:71.520000pt;}
.y137{bottom:71.546667pt;}
.y12e{bottom:71.586667pt;}
.y125{bottom:71.613333pt;}
.y149{bottom:71.866667pt;}
.y141{bottom:72.000000pt;}
.y65{bottom:72.416000pt;}
.ye8{bottom:72.995061pt;}
.ye2{bottom:72.995062pt;}
.y35{bottom:75.328000pt;}
.yfc{bottom:75.790807pt;}
.y6{bottom:77.536000pt;}
.y36{bottom:77.760000pt;}
.yd0{bottom:78.133307pt;}
.y4f{bottom:78.848000pt;}
.y164{bottom:78.946667pt;}
.y16e{bottom:78.973333pt;}
.y22{bottom:79.200000pt;}
.yf2{bottom:79.597880pt;}
.yd8{bottom:79.669486pt;}
.ydb{bottom:80.358130pt;}
.y101{bottom:81.050579pt;}
.y154{bottom:81.408000pt;}
.y3e{bottom:81.728000pt;}
.y139{bottom:82.240000pt;}
.yca{bottom:84.383981pt;}
.y76{bottom:84.413107pt;}
.ye1{bottom:85.920162pt;}
.y9f{bottom:86.675747pt;}
.y109{bottom:86.911468pt;}
.y159{bottom:87.826671pt;}
.ybb{bottom:88.517409pt;}
.y1b{bottom:89.568000pt;}
.y162{bottom:90.720000pt;}
.ye7{bottom:91.217335pt;}
.y64{bottom:91.648000pt;}
.y108{bottom:91.770495pt;}
.y31{bottom:92.640000pt;}
.y2d{bottom:92.666667pt;}
.y21{bottom:92.733333pt;}
.ybd{bottom:93.280544pt;}
.ya9{bottom:93.760000pt;}
.yf5{bottom:95.527475pt;}
.y123{bottom:95.613333pt;}
.y153{bottom:96.512000pt;}
.y156{bottom:97.600000pt;}
.y10f{bottom:98.879991pt;}
.yfb{bottom:99.685199pt;}
.y5{bottom:103.136000pt;}
.ycf{bottom:103.400823pt;}
.y34{bottom:104.128000pt;}
.y100{bottom:104.944971pt;}
.yd7{bottom:104.989973pt;}
.y136{bottom:105.280000pt;}
.yd3{bottom:106.049419pt;}
.y107{bottom:106.147205pt;}
.y84{bottom:107.256520pt;}
.y30{bottom:107.520000pt;}
.y8b{bottom:108.596285pt;}
.y77{bottom:109.509655pt;}
.yc9{bottom:110.075270pt;}
.y106{bottom:111.056325pt;}
.ye0{bottom:111.611451pt;}
.y3d{bottom:113.728000pt;}
.yac{bottom:113.962826pt;}
.yff{bottom:114.011816pt;}
.y71{bottom:114.559955pt;}
.yc1{bottom:116.474946pt;}
.y9e{bottom:117.208123pt;}
.ybc{bottom:118.570528pt;}
.yb7{bottom:119.354523pt;}
.y51{bottom:121.279991pt;}
.yba{bottom:121.366282pt;}
.y165{bottom:121.573333pt;}
.y16f{bottom:121.600000pt;}
.yd2{bottom:125.119232pt;}
.y78{bottom:125.875542pt;}
.y134{bottom:128.320000pt;}
.y16c{bottom:128.640000pt;}
.y4{bottom:128.736000pt;}
.yce{bottom:129.145083pt;}
.y105{bottom:130.292062pt;}
.ye6{bottom:130.628296pt;}
.yd6{bottom:130.681262pt;}
.ydf{bottom:130.681264pt;}
.y13e{bottom:131.648000pt;}
.ya2{bottom:132.036864pt;}
.y179{bottom:132.352000pt;}
.y33{bottom:132.960000pt;}
.yf{bottom:133.120000pt;}
.y15a{bottom:134.429488pt;}
.yad{bottom:136.703654pt;}
.yb0{bottom:136.984839pt;}
.y155{bottom:138.080000pt;}
.y152{bottom:139.653333pt;}
.yf9{bottom:140.060210pt;}
.yf4{bottom:143.867283pt;}
.yfe{bottom:145.319982pt;}
.y18{bottom:145.733333pt;}
.y85{bottom:149.174401pt;}
.y104{bottom:149.577892pt;}
.y132{bottom:150.400000pt;}
.y151{bottom:152.546667pt;}
.y16b{bottom:152.733333pt;}
.y175{bottom:152.773333pt;}
.y6e{bottom:153.119982pt;}
.y13b{bottom:153.760000pt;}
.yf8{bottom:154.436919pt;}
.y178{bottom:161.186667pt;}
.y4b{bottom:163.039982pt;}
.y166{bottom:164.186667pt;}
.y170{bottom:164.226667pt;}
.y3c{bottom:169.733333pt;}
.y2f{bottom:171.360000pt;}
.y130{bottom:172.480000pt;}
.y2c{bottom:174.720000pt;}
.y138{bottom:176.866667pt;}
.y17{bottom:177.733333pt;}
.ya8{bottom:177.831507pt;}
.y2b{bottom:179.066667pt;}
.y15b{bottom:180.118525pt;}
.y79{bottom:180.428503pt;}
.ya3{bottom:181.756764pt;}
.y161{bottom:184.615899pt;}
.y86{bottom:191.083909pt;}
.y150{bottom:192.026667pt;}
.y12d{bottom:194.560000pt;}
.ybf{bottom:196.200769pt;}
.y135{bottom:199.906667pt;}
.y2e{bottom:200.160000pt;}
.y92{bottom:205.176557pt;}
.y7f{bottom:206.537550pt;}
.y167{bottom:206.813333pt;}
.y171{bottom:206.853333pt;}
.ybe{bottom:207.324614pt;}
.y2a{bottom:207.866667pt;}
.y3f{bottom:207.999982pt;}
.y16{bottom:209.760000pt;}
.yb9{bottom:213.029530pt;}
.ye{bottom:213.120000pt;}
.y93{bottom:213.265385pt;}
.y28{bottom:213.600000pt;}
.y90{bottom:215.191296pt;}
.y12b{bottom:216.640000pt;}
.y14f{bottom:219.746667pt;}
.y133{bottom:221.986667pt;}
.yb8{bottom:223.680020pt;}
.y15c{bottom:226.728495pt;}
.yaa{bottom:229.390626pt;}
.ya4{bottom:231.476663pt;}
.yb1{bottom:232.863259pt;}
.y87{bottom:233.001790pt;}
.y3b{bottom:233.760000pt;}
.yc4{bottom:235.297265pt;}
.y7a{bottom:236.072521pt;}
.y129{bottom:238.720000pt;}
.y15{bottom:241.760000pt;}
.yb5{bottom:243.899766pt;}
.y131{bottom:244.066667pt;}
.y5b{bottom:244.413333pt;}
.y5f{bottom:247.013333pt;}
.y63{bottom:247.973333pt;}
.y168{bottom:249.440000pt;}
.y172{bottom:249.466667pt;}
.yab{bottom:252.377490pt;}
.y60{bottom:255.973333pt;}
.y91{bottom:256.514657pt;}
.y127{bottom:260.800000pt;}
.y5e{bottom:263.973333pt;}
.y26{bottom:265.533333pt;}
.y3a{bottom:265.760000pt;}
.y12f{bottom:266.146667pt;}
.y14{bottom:273.760000pt;}
.y15d{bottom:274.205753pt;}
.y62{bottom:274.693333pt;}
.y88{bottom:274.919671pt;}
.ya5{bottom:280.324284pt;}
.yc7{bottom:281.599982pt;}
.y122{bottom:282.880000pt;}
.y61{bottom:287.653333pt;}
.y12c{bottom:288.253333pt;}
.y7b{bottom:290.625482pt;}
.yd{bottom:293.146667pt;}
.y25{bottom:294.333333pt;}
.y16a{bottom:297.626667pt;}
.y174{bottom:297.666667pt;}
.y39{bottom:297.760000pt;}
.y5d{bottom:298.213333pt;}
.y8f{bottom:303.515269pt;}
.y94{bottom:305.760000pt;}
.y20{bottom:309.600000pt;}
.y12a{bottom:310.333333pt;}
.y5a{bottom:311.293333pt;}
.y146{bottom:314.906667pt;}
.y8d{bottom:316.176044pt;}
.y89{bottom:316.837552pt;}
.yb2{bottom:318.343463pt;}
.y14e{bottom:318.720000pt;}
.y15e{bottom:320.806782pt;}
.y23{bottom:323.133333pt;}
.y6b{bottom:328.959964pt;}
.y38{bottom:329.760000pt;}
.y128{bottom:332.413333pt;}
.y140{bottom:333.280000pt;}
.y3{bottom:333.600000pt;}
.y148{bottom:336.480000pt;}
.y145{bottom:337.306667pt;}
.y13{bottom:337.786667pt;}
.y14d{bottom:341.120000pt;}
.y27{bottom:344.733333pt;}
.y7c{bottom:345.178441pt;}
.y126{bottom:354.493333pt;}
.y144{bottom:359.706667pt;}
.y14c{bottom:363.546667pt;}
.y15f{bottom:367.416753pt;}
.y12{bottom:369.786667pt;}
.yc{bottom:373.186667pt;}
.y66{bottom:377.439964pt;}
.y124{bottom:378.493333pt;}
.y143{bottom:382.106667pt;}
.y14b{bottom:385.946667pt;}
.y5c{bottom:389.346667pt;}
.y17a{bottom:392.160000pt;}
.y2{bottom:398.306667pt;}
.y1a{bottom:401.786667pt;}
.y24{bottom:402.333333pt;}
.y142{bottom:405.280000pt;}
.y14a{bottom:408.346667pt;}
.y177{bottom:418.880000pt;}
.y13f{bottom:429.306667pt;}
.y147{bottom:430.906667pt;}
.y11{bottom:433.786667pt;}
.y1f{bottom:441.280000pt;}
.y176{bottom:447.680000pt;}
.y1{bottom:448.386667pt;}
.yb{bottom:453.186667pt;}
.y10{bottom:465.826667pt;}
.y1e{bottom:480.226667pt;}
.y121{bottom:530.880000pt;}
.ya{bottom:531.773333pt;}
.y9{bottom:627.013333pt;}
.y8{bottom:659.013333pt;}
.h56{height:20.059007pt;}
.h89{height:31.529810pt;}
.h88{height:31.533722pt;}
.h44{height:33.656888pt;}
.h47{height:33.662419pt;}
.h46{height:33.673806pt;}
.h49{height:33.731820pt;}
.h48{height:33.734838pt;}
.h53{height:37.027095pt;}
.h8b{height:38.128125pt;}
.h39{height:39.360036pt;}
.h34{height:40.480356pt;}
.h3c{height:41.920309pt;}
.h4c{height:43.124983pt;}
.h4b{height:43.161784pt;}
.h45{height:43.758415pt;}
.h8c{height:43.808438pt;}
.he{height:44.343750pt;}
.h20{height:44.959760pt;}
.h7f{height:45.812500pt;}
.h5f{height:45.903103pt;}
.h25{height:45.937500pt;}
.h67{height:45.971439pt;}
.h66{height:45.994321pt;}
.h24{height:46.029375pt;}
.h4f{height:47.086523pt;}
.h4e{height:47.184416pt;}
.h5d{height:48.613249pt;}
.h5b{height:48.637447pt;}
.h54{height:49.368967pt;}
.h52{height:49.387364pt;}
.h55{height:49.451804pt;}
.h57{height:52.269261pt;}
.h7c{height:52.781250pt;}
.h7d{height:52.886812pt;}
.h84{height:53.746875pt;}
.h86{height:53.838750pt;}
.h42{height:53.953189pt;}
.h41{height:53.987388pt;}
.h37{height:54.022507pt;}
.h29{height:56.239197pt;}
.h27{height:56.267190pt;}
.h7e{height:57.123125pt;}
.h1b{height:59.638008pt;}
.h19{height:59.667693pt;}
.h2e{height:61.096875pt;}
.h2d{height:61.188750pt;}
.h16{height:61.670000pt;}
.h80{height:61.754062pt;}
.h74{height:61.807328pt;}
.h73{height:61.838093pt;}
.h82{height:61.859625pt;}
.h6e{height:63.170720pt;}
.h22{height:63.789336pt;}
.h30{height:68.718750pt;}
.h12{height:68.906250pt;}
.h7a{height:70.199062pt;}
.h50{height:70.304625pt;}
.h6a{height:75.130362pt;}
.h17{height:76.077438pt;}
.h26{height:76.478842pt;}
.h7{height:76.715625pt;}
.h9{height:76.807500pt;}
.hf{height:79.171875pt;}
.hc{height:79.277438pt;}
.h69{height:79.293427pt;}
.h68{height:79.566102pt;}
.h60{height:79.644093pt;}
.h18{height:81.439698pt;}
.hb{height:81.830000pt;}
.ha{height:81.928000pt;}
.h5e{height:84.346327pt;}
.h5c{height:84.388311pt;}
.h71{height:87.039604pt;}
.h4{height:88.144687pt;}
.hd{height:88.250250pt;}
.h3{height:88.777500pt;}
.h6b{height:88.959588pt;}
.h3b{height:90.951453pt;}
.h38{height:93.493705pt;}
.h36{height:93.540242pt;}
.h8{height:95.816250pt;}
.h6{height:95.931000pt;}
.h3e{height:96.761057pt;}
.h2b{height:97.067724pt;}
.h2a{height:97.284373pt;}
.h1e{height:97.311272pt;}
.h28{height:97.332798pt;}
.h63{height:98.315354pt;}
.h31{height:100.718750pt;}
.h77{height:100.850949pt;}
.h2c{height:102.261457pt;}
.h1d{height:102.931640pt;}
.h1c{height:103.056586pt;}
.h70{height:103.075594pt;}
.h1a{height:103.107884pt;}
.h59{height:104.161441pt;}
.h83{height:105.213542pt;}
.h78{height:105.562500pt;}
.h5{height:105.668063pt;}
.h76{height:106.606430pt;}
.h75{height:106.805248pt;}
.h6f{height:109.161238pt;}
.h23{height:110.207052pt;}
.h21{height:110.261909pt;}
.h3a{height:112.355358pt;}
.h65{height:113.341426pt;}
.h85{height:114.290875pt;}
.h35{height:115.553375pt;}
.h33{height:116.718750pt;}
.h3d{height:119.572025pt;}
.h72{height:132.103016pt;}
.h6c{height:135.017042pt;}
.h32{height:135.278750pt;}
.h6d{height:138.060043pt;}
.h2f{height:141.678750pt;}
.h1f{height:146.080060pt;}
.h7b{height:154.560000pt;}
.h58{height:156.796339pt;}
.h81{height:156.800000pt;}
.h8d{height:166.875000pt;}
.h5a{height:169.210726pt;}
.h61{height:172.320144pt;}
.h1{height:178.222500pt;}
.h2{height:178.356000pt;}
.h62{height:193.892922pt;}
.h64{height:199.102600pt;}
.h10{height:201.600000pt;}
.h79{height:206.080000pt;}
.h51{height:251.356503pt;}
.h43{height:328.326033pt;}
.h8a{height:330.720000pt;}
.h4a{height:343.669218pt;}
.h4d{height:350.089237pt;}
.h40{height:363.847764pt;}
.h14{height:395.520000pt;}
.h87{height:399.667344pt;}
.h13{height:403.200000pt;}
.h15{height:414.720000pt;}
.h3f{height:427.684341pt;}
.h11{height:604.800000pt;}
.h0{height:720.000000pt;}
.w10{width:13.975391pt;}
.w16{width:165.280000pt;}
.w17{width:169.760000pt;}
.w7{width:170.237441pt;}
.w14{width:176.153975pt;}
.w5{width:213.600103pt;}
.w13{width:220.320391pt;}
.w6{width:239.035853pt;}
.w9{width:254.400450pt;}
.w8{width:260.317509pt;}
.w4{width:284.166271pt;}
.wf{width:338.244587pt;}
.wc{width:351.200596pt;}
.w2{width:355.360000pt;}
.w3{width:355.520000pt;}
.wb{width:373.920487pt;}
.w15{width:416.960000pt;}
.wd{width:500.339654pt;}
.we{width:541.916819pt;}
.w12{width:547.526844pt;}
.w19{width:566.880000pt;}
.w18{width:574.582359pt;}
.w11{width:641.750606pt;}
.wa{width:641.768873pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x86{left:1.266992pt;}
.x2c{left:4.078136pt;}
.x99{left:4.990363pt;}
.xbd{left:6.146667pt;}
.xaa{left:7.553848pt;}
.xcc{left:8.773333pt;}
.x17{left:9.696000pt;}
.x5d{left:11.575428pt;}
.x6f{left:14.707157pt;}
.x37{left:16.485743pt;}
.x31{left:17.706271pt;}
.x28{left:18.614968pt;}
.x4d{left:23.019314pt;}
.x5b{left:23.986845pt;}
.xcd{left:25.533333pt;}
.x6b{left:26.803194pt;}
.x5a{left:30.971887pt;}
.x38{left:32.197902pt;}
.x54{left:33.533206pt;}
.x56{left:34.623559pt;}
.x6c{left:36.497280pt;}
.x6e{left:39.704530pt;}
.x61{left:40.984452pt;}
.x76{left:42.218718pt;}
.x55{left:44.572091pt;}
.xa{left:46.111981pt;}
.xae{left:47.958068pt;}
.x9e{left:50.706582pt;}
.x2e{left:51.897556pt;}
.x10{left:57.023981pt;}
.x35{left:62.593840pt;}
.xcb{left:64.093333pt;}
.x24{left:65.183981pt;}
.xc9{left:66.235522pt;}
.x83{left:67.142856pt;}
.x9c{left:68.306666pt;}
.xc8{left:71.596840pt;}
.x6a{left:72.709569pt;}
.xc7{left:73.759995pt;}
.xad{left:74.777493pt;}
.x48{left:75.916834pt;}
.x5f{left:77.668931pt;}
.x4a{left:80.249103pt;}
.x98{left:81.721481pt;}
.xc{left:83.999981pt;}
.x2a{left:87.418995pt;}
.x93{left:90.145728pt;}
.x53{left:93.474012pt;}
.xb4{left:94.378272pt;}
.x77{left:95.575069pt;}
.x8c{left:96.532096pt;}
.x95{left:98.035288pt;}
.xab{left:99.010125pt;}
.x7e{left:103.777398pt;}
.xb2{left:105.150648pt;}
.x16{left:106.880000pt;}
.x80{left:108.468333pt;}
.x88{left:111.020605pt;}
.x7d{left:112.661045pt;}
.xb3{left:114.228402pt;}
.x58{left:118.392199pt;}
.xd{left:119.999981pt;}
.x33{left:127.300925pt;}
.x5c{left:129.175431pt;}
.x84{left:131.242254pt;}
.xb0{left:132.523135pt;}
.x59{left:142.240000pt;}
.xaf{left:143.605698pt;}
.x7c{left:145.053575pt;}
.xc2{left:148.293314pt;}
.x34{left:149.658226pt;}
.x36{left:150.689060pt;}
.xd0{left:154.560000pt;}
.x81{left:156.729076pt;}
.x47{left:159.136690pt;}
.x1d{left:160.093314pt;}
.x52{left:162.268607pt;}
.x27{left:164.640052pt;}
.x4e{left:168.104026pt;}
.xce{left:170.400000pt;}
.x2b{left:173.192718pt;}
.x20{left:179.840000pt;}
.x94{left:182.868333pt;}
.x2f{left:187.333886pt;}
.x26{left:188.913335pt;}
.x29{left:189.963605pt;}
.x82{left:191.523789pt;}
.x8d{left:196.766307pt;}
.x60{left:202.693794pt;}
.x51{left:206.101405pt;}
.x23{left:207.199981pt;}
.x70{left:210.752389pt;}
.x74{left:212.492671pt;}
.xb{left:213.759981pt;}
.x69{left:215.077461pt;}
.x2d{left:220.683591pt;}
.x1{left:223.266648pt;}
.xe{left:227.999981pt;}
.xc0{left:229.733314pt;}
.x4b{left:233.320939pt;}
.x3{left:237.279981pt;}
.xa7{left:253.687922pt;}
.x7f{left:254.587340pt;}
.x68{left:261.242682pt;}
.xf{left:263.999981pt;}
.x63{left:265.202337pt;}
.x71{left:268.556843pt;}
.x75{left:269.531411pt;}
.x79{left:272.287953pt;}
.x9b{left:279.033197pt;}
.x9a{left:287.923456pt;}
.x96{left:297.801499pt;}
.x67{left:307.407902pt;}
.x3d{left:309.346648pt;}
.x50{left:310.863971pt;}
.x1e{left:312.453333pt;}
.xa8{left:316.805545pt;}
.xc1{left:319.813314pt;}
.xa2{left:326.483189pt;}
.xa6{left:328.167128pt;}
.x2{left:332.706648pt;}
.x11{left:334.106648pt;}
.xd3{left:335.546648pt;}
.x91{left:345.559679pt;}
.xa1{left:347.826722pt;}
.x5{left:353.626648pt;}
.xca{left:356.160000pt;}
.x8{left:364.159981pt;}
.x5e{left:368.196144pt;}
.x6d{left:372.128108pt;}
.xa9{left:374.749620pt;}
.xac{left:376.372724pt;}
.x72{left:378.304577pt;}
.x3e{left:385.346648pt;}
.x62{left:389.119964pt;}
.xc4{left:392.066648pt;}
.x87{left:394.879964pt;}
.x3f{left:396.546648pt;}
.x66{left:399.747059pt;}
.xa0{left:401.439964pt;}
.x9f{left:404.849397pt;}
.x78{left:410.840455pt;}
.x97{left:414.254991pt;}
.xa3{left:415.407867pt;}
.x14{left:416.319981pt;}
.x92{left:426.216012pt;}
.x7a{left:429.704885pt;}
.x73{left:431.653968pt;}
.x8b{left:432.593791pt;}
.x4c{left:437.439964pt;}
.x12{left:440.346648pt;}
.xa5{left:441.823546pt;}
.x8a{left:443.867647pt;}
.x65{left:445.920995pt;}
.x89{left:447.088742pt;}
.x40{left:457.666648pt;}
.x18{left:462.240000pt;}
.x9d{left:467.682316pt;}
.x57{left:469.272643pt;}
.x7b{left:470.559964pt;}
.x3b{left:475.493314pt;}
.x49{left:479.199964pt;}
.x8f{left:480.931776pt;}
.x13{left:482.213314pt;}
.x8e{left:484.152870pt;}
.x90{left:488.297371pt;}
.x64{left:492.086215pt;}
.x4{left:497.666648pt;}
.xa4{left:504.535420pt;}
.x46{left:509.599964pt;}
.x32{left:515.199964pt;}
.x6{left:525.186648pt;}
.x9{left:527.679981pt;}
.x3c{left:531.426648pt;}
.xc3{left:534.146648pt;}
.xb5{left:548.613314pt;}
.x19{left:551.679981pt;}
.x7{left:558.786648pt;}
.xba{left:569.306648pt;}
.xb7{left:572.986648pt;}
.x41{left:575.293314pt;}
.xb9{left:576.346648pt;}
.xb6{left:578.266648pt;}
.xb8{left:580.506648pt;}
.xbc{left:583.680000pt;}
.x42{left:588.893314pt;}
.x4f{left:590.559964pt;}
.xc5{left:594.333314pt;}
.x15{left:597.279981pt;}
.x1f{left:610.399981pt;}
.xbf{left:638.786648pt;}
.x85{left:645.894870pt;}
.x39{left:662.586648pt;}
.x3a{left:703.746648pt;}
.xb1{left:733.280000pt;}
.x43{left:757.093314pt;}
.xc6{left:779.706648pt;}
.xcf{left:795.039981pt;}
.xbe{left:812.159981pt;}
.x1a{left:817.600000pt;}
.xbb{left:832.773314pt;}
.x25{left:873.439928pt;}
.x30{left:874.879928pt;}
.x22{left:900.186648pt;}
.x1b{left:907.066648pt;}
.x44{left:933.573314pt;}
.x21{left:953.666648pt;}
.x1c{left:963.426648pt;}
.x45{left:970.559981pt;}
.xd2{left:1057.759981pt;}
.xd1{left:1092.706648pt;}
}




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