
    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_b94537486f65d462b586f839.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_4dcc4d4793aa16a82ab46b13.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_04c360496e79fbf09a189692.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_0979ff790d820efb4237fe1f.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_fdadf8331591686057224d0b.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_1d8d81df6f3f44a5933e5ce8.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_88b82027010a339ac7bb2e84.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_c9f648e4c92dccf6583f375d.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_0ec5ac2a8f479e84805c9c1b.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_d210be710ce739a6459f8dbd.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_183e9f4054e9a79dad278025.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_e2677acc91a75b4ccab237ca.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_d2a861aa42e9b43f401a2d08.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_075521422b5f8e4135282abf.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_ad7e75d9f9d1e660bcbcd0d4.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_98c3d7744f9470ef77815d17.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_becdf1665d523c18a510a400.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_6d6912b9b9d00fc16e75939d.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_27d1352597e669480779b358.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_9db963139196a118e52f7624.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_3b4177e22da5932a54e43821.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_c99fe48d42a5c1fb6a726177.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_68a333a12103734a8af4f5fa.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_200a7932bddbf95e77851c1c.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_47e5318e12051bb5379a65d5.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_4d1b1c96ff00b524970f67a9.woff2')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_3ecb1ddb75211bac99bfb2f5.woff2')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_70d9cb1f0a7bbe132c66ac86.woff2')format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url('chunks/assets/font_2ed5d2cdaa630c5e5c0f41db.woff2')format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url('chunks/assets/font_097dc875c550f020158a8001.woff2')format("woff");}.ff1e{font-family:ff1e;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:ff1f;src:url('chunks/assets/font_c2e4666d58f68988657625d1.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_575ed3b4bd754c3328da0792.woff2')format("woff");}.ff20{font-family:ff20;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:ff21;src:url('chunks/assets/font_08bce6bc29414eaf7d19b802.woff2')format("woff");}.ff21{font-family:ff21;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:ff22;src:url('chunks/assets/font_dd5322ec93cb166104f7f4e4.woff2')format("woff");}.ff22{font-family:ff22;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:ff23;src:url('chunks/assets/font_9629de635a0fa1f4b3b7e0cd.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_7a340978203c33768b41ba74.woff2')format("woff");}.ff24{font-family:ff24;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:ff25;src:url('chunks/assets/font_049fde1e5e45346d4d88af9f.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_47e618367d60f7bcbffc64bb.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url('chunks/assets/font_1f559416b6e3997294cdda15.woff2')format("woff");}.ff27{font-family:ff27;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:ff28;src:url('chunks/assets/font_a308d9b46ce25c98598a3778.woff2')format("woff");}.ff28{font-family:ff28;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:ff29;src:url('chunks/assets/font_e111e2b25eaf7e9cd15d5959.woff2')format("woff");}.ff29{font-family:ff29;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:ff2a;src:url('chunks/assets/font_4a42685ca3162d9616cc774a.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b;src:url('chunks/assets/font_f4f3fdec5d218c004356d89f.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c;src:url('chunks/assets/font_1bca0adb34a413355f277949.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d;src:url('chunks/assets/font_1f7944db8aff657f6b4fd1f6.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m9c{transform:matrix(0.019380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019380,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.020038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020038,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.027344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027344,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.030720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030720,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.037565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.037565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.037565,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.089286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089286,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.097378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097378,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.126543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126543,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.126623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126623,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.133117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133117,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.133333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133333,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.138158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138158,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.171043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171043,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.172840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172840,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.177632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177632,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.178058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178058,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.181452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181452,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.183712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183712,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.193820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193820,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.202703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202703,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.203297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203297,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.207792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207792,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.208824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208824,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.209924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209924,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.211207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211207,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.214015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214015,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.216049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216049,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.216197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216197,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.217308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217308,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.219136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219136,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.221311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221311,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.222015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222015,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.222561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222561,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.222826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222826,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.223214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223214,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.223529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223529,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.226027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226027,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.229412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229412,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.230263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230263,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.230978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230978,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.231383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231383,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.232353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232353,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.232877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232877,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.233607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233607,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.234568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234568,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.234756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234756,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.236413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236413,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.237288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237288,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.237342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237342,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.237654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237654,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.237805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237805,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.238281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238281,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.238372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238372,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.238739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238739,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.240260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240260,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.240625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240625,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.240854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240854,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.240964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240964,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.241379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241379,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.241803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241803,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.242308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242308,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.242958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242958,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.243506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243506,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.243671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243671,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.243902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243902,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.244382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244382,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.245833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245833,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.246154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246154,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.246667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246667,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.246835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246835,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.246951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246951,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.246988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246988,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.247059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247059,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.247093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247093,0.000000,0.000000,0.250000,0,0);}
.mc{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);}
.m20{transform:matrix(0.253049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253049,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.253289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253289,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.254098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254098,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.255952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255952,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.256024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256024,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.256329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256329,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.256667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256667,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.257576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257576,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.258197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258197,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.258772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258772,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.262658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262658,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.262821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262821,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.262931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262931,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.262987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262987,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.263636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263636,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.264815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264815,0.000000,0.000000,0.250000,0,0);}
.mb0{transform:matrix(0.266484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266484,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.270492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270492,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.271739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271739,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.273333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273333,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.275641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275641,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.276316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276316,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.279412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279412,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.280822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280822,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.282609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282609,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.284483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284483,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.286667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286667,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.294521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294521,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.294643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294643,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.301724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301724,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.303571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303571,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.304487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304487,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.306604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306604,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.307692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307692,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.315972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315972,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.322368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322368,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.322917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322917,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.329545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329545,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.330986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330986,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.333916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333916,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.355556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355556,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.359375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359375,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.364130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364130,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.382812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382812,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.389706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389706,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.390244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390244,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.390625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390625,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.399648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399648,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.405556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405556,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.434211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434211,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.451807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451807,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.478873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478873,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.489726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489726,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.513393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513393,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.519784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519784,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.597826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597826,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.668478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.668478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.668478,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.747283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.747283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.747283,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.766304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766304,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.942029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.942029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.942029,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.967391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.967391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.967391,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.978261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.978261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.978261,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(1.010870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.010870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.010870,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(1.021739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.021739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.021739,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(1.047101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.047101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.047101,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(1.380435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.380435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.380435,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(1.413043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.413043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.413043,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(2.039855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.039855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.039855,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(2.065217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.065217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.065217,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(3.061594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.061594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.061594,0.000000,0.000000,0.250000,0,0);}
.v5{vertical-align:-21.601200px;}
.v3{vertical-align:-1.443750px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:14.379750px;}
.v2{vertical-align:15.823500px;}
.v4{vertical-align:28.799400px;}
.ls87{letter-spacing:-43.796025px;}
.ls8c{letter-spacing:-32.038500px;}
.ls8b{letter-spacing:-23.100000px;}
.ls16{letter-spacing:-16.503300px;}
.ls14{letter-spacing:-16.049850px;}
.ls37{letter-spacing:-15.468750px;}
.ls18{letter-spacing:-14.873625px;}
.ls39{letter-spacing:-14.816925px;}
.ls34{letter-spacing:-14.807100px;}
.ls11{letter-spacing:-14.164875px;}
.ls35{letter-spacing:-14.085225px;}
.ls70{letter-spacing:-12.796500px;}
.lsb1{letter-spacing:-11.688600px;}
.ls64{letter-spacing:-11.385750px;}
.ls12{letter-spacing:-11.329875px;}
.ls1c{letter-spacing:-10.479375px;}
.lsa2{letter-spacing:-9.851250px;}
.lsf{letter-spacing:-9.622800px;}
.ls3a{letter-spacing:-9.240000px;}
.ls33{letter-spacing:-9.108150px;}
.lsba{letter-spacing:-8.442525px;}
.lsb4{letter-spacing:-8.250000px;}
.ls86{letter-spacing:-7.709625px;}
.ls6c{letter-spacing:-7.698075px;}
.ls54{letter-spacing:-7.020000px;}
.ls20{letter-spacing:-6.930000px;}
.ls92{letter-spacing:-6.908625px;}
.ls4e{letter-spacing:-6.430500px;}
.ls61{letter-spacing:-6.402000px;}
.lsb7{letter-spacing:-6.333600px;}
.ls4b{letter-spacing:-6.240300px;}
.ls10{letter-spacing:-6.138000px;}
.ls13{letter-spacing:-6.045000px;}
.ls90{letter-spacing:-5.705700px;}
.ls56{letter-spacing:-5.487300px;}
.ls52{letter-spacing:-5.458050px;}
.ls38{letter-spacing:-4.806225px;}
.ls73{letter-spacing:-4.355400px;}
.ls57{letter-spacing:-4.264650px;}
.lsab{letter-spacing:-4.209000px;}
.ls5e{letter-spacing:-3.817800px;}
.ls15{letter-spacing:-3.576300px;}
.ls5f{letter-spacing:-3.567000px;}
.ls81{letter-spacing:-3.563175px;}
.ls83{letter-spacing:-3.468825px;}
.lsac{letter-spacing:-3.367200px;}
.ls55{letter-spacing:-3.256200px;}
.ls74{letter-spacing:-2.905125px;}
.ls93{letter-spacing:-2.852850px;}
.lsad{letter-spacing:-2.525400px;}
.ls8f{letter-spacing:-2.310750px;}
.ls19{letter-spacing:-2.310000px;}
.ls7e{letter-spacing:-2.136750px;}
.lsb2{letter-spacing:-2.065800px;}
.lsae{letter-spacing:-1.683600px;}
.ls7f{letter-spacing:-1.668000px;}
.ls8d{letter-spacing:-1.620000px;}
.ls22{letter-spacing:-1.541925px;}
.ls25{letter-spacing:-1.533000px;}
.ls8a{letter-spacing:-1.519050px;}
.lsb5{letter-spacing:-1.462500px;}
.ls1d{letter-spacing:-1.430100px;}
.ls80{letter-spacing:-1.426425px;}
.lsb0{letter-spacing:-1.372800px;}
.ls71{letter-spacing:-1.356600px;}
.ls2a{letter-spacing:-1.341300px;}
.ls8e{letter-spacing:-1.054500px;}
.ls30{letter-spacing:-0.900900px;}
.ls24{letter-spacing:-0.866400px;}
.ls1e{letter-spacing:-0.780000px;}
.ls53{letter-spacing:-0.778050px;}
.ls1a{letter-spacing:-0.768075px;}
.ls84{letter-spacing:-0.762600px;}
.lsbb{letter-spacing:-0.731250px;}
.ls32{letter-spacing:-0.730800px;}
.ls60{letter-spacing:-0.727425px;}
.ls7c{letter-spacing:-0.710325px;}
.lsb3{letter-spacing:-0.686400px;}
.ls2d{letter-spacing:-0.664125px;}
.ls1f{letter-spacing:-0.614250px;}
.ls17{letter-spacing:0.000000px;}
.lsa1{letter-spacing:0.686400px;}
.ls63{letter-spacing:0.695400px;}
.ls75{letter-spacing:0.710325px;}
.ls65{letter-spacing:0.716925px;}
.ls58{letter-spacing:0.727425px;}
.lsa5{letter-spacing:0.727650px;}
.ls98{letter-spacing:0.731250px;}
.ls29{letter-spacing:0.758400px;}
.ls0{letter-spacing:0.768075px;}
.ls40{letter-spacing:0.778050px;}
.ls4f{letter-spacing:0.800625px;}
.ls79{letter-spacing:0.816000px;}
.ls94{letter-spacing:0.841800px;}
.ls76{letter-spacing:1.426425px;}
.ls69{letter-spacing:1.454850px;}
.ls9b{letter-spacing:1.462500px;}
.ls2c{letter-spacing:1.464000px;}
.ls50{letter-spacing:1.477725px;}
.ls5d{letter-spacing:1.500075px;}
.ls28{letter-spacing:1.516800px;}
.ls85{letter-spacing:1.525200px;}
.ls1{letter-spacing:1.541925px;}
.lsa8{letter-spacing:1.550250px;}
.ls5b{letter-spacing:1.550925px;}
.ls7a{letter-spacing:1.555950px;}
.ls3f{letter-spacing:1.561950px;}
.ls62{letter-spacing:1.574400px;}
.ls4c{letter-spacing:1.579725px;}
.ls27{letter-spacing:1.596300px;}
.ls46{letter-spacing:1.630200px;}
.ls7b{letter-spacing:1.682100px;}
.lsaf{letter-spacing:1.683600px;}
.ls6d{letter-spacing:1.707750px;}
.ls6b{letter-spacing:1.713150px;}
.ls78{letter-spacing:2.136750px;}
.ls31{letter-spacing:2.142000px;}
.ls2b{letter-spacing:2.160000px;}
.ls5c{letter-spacing:2.171700px;}
.ls59{letter-spacing:2.177700px;}
.ls97{letter-spacing:2.193750px;}
.ls2{letter-spacing:2.310000px;}
.ls3e{letter-spacing:2.340000px;}
.ls7d{letter-spacing:2.369250px;}
.ls21{letter-spacing:2.370000px;}
.ls6f{letter-spacing:2.381400px;}
.ls4a{letter-spacing:2.412000px;}
.lsb6{letter-spacing:2.636100px;}
.lsb9{letter-spacing:2.696625px;}
.ls77{letter-spacing:2.852850px;}
.lsb8{letter-spacing:2.903625px;}
.ls68{letter-spacing:2.905125px;}
.ls99{letter-spacing:2.919375px;}
.ls66{letter-spacing:3.075000px;}
.ls4{letter-spacing:3.078075px;}
.ls3b{letter-spacing:3.118050px;}
.ls1b{letter-spacing:3.254700px;}
.ls96{letter-spacing:3.438600px;}
.ls6a{letter-spacing:3.632550px;}
.ls9f{letter-spacing:3.650625px;}
.ls6e{letter-spacing:3.799950px;}
.ls49{letter-spacing:3.810975px;}
.ls8{letter-spacing:3.851925px;}
.ls41{letter-spacing:3.901950px;}
.lsa3{letter-spacing:3.961800px;}
.ls48{letter-spacing:4.018500px;}
.ls4d{letter-spacing:4.236450px;}
.ls9d{letter-spacing:4.381875px;}
.ls51{letter-spacing:4.500225px;}
.lsa9{letter-spacing:4.572750px;}
.ls5{letter-spacing:4.620000px;}
.ls3d{letter-spacing:4.680000px;}
.ls26{letter-spacing:4.683525px;}
.ls95{letter-spacing:4.811400px;}
.ls44{letter-spacing:4.819500px;}
.ls89{letter-spacing:4.884900px;}
.ls88{letter-spacing:4.989600px;}
.ls23{letter-spacing:5.090700px;}
.ls9c{letter-spacing:5.113125px;}
.ls3{letter-spacing:5.388075px;}
.ls3c{letter-spacing:5.458050px;}
.lsa0{letter-spacing:5.844375px;}
.lsb{letter-spacing:6.161925px;}
.lsa4{letter-spacing:6.177600px;}
.ls45{letter-spacing:6.241950px;}
.lsa7{letter-spacing:6.476850px;}
.ls36{letter-spacing:6.832650px;}
.ls7{letter-spacing:6.930000px;}
.ls43{letter-spacing:7.020000px;}
.lsa6{letter-spacing:7.125000px;}
.ls9e{letter-spacing:7.306875px;}
.ls6{letter-spacing:7.698075px;}
.ls42{letter-spacing:7.798050px;}
.ls9a{letter-spacing:8.038125px;}
.lsa{letter-spacing:8.471925px;}
.lsd{letter-spacing:9.240000px;}
.ls5a{letter-spacing:10.008075px;}
.lse{letter-spacing:10.781925px;}
.ls2f{letter-spacing:12.318075px;}
.ls67{letter-spacing:13.070775px;}
.ls82{letter-spacing:13.400850px;}
.ls91{letter-spacing:13.548150px;}
.ls47{letter-spacing:14.729400px;}
.ls72{letter-spacing:16.938075px;}
.lsc{letter-spacing:18.480000px;}
.ls9{letter-spacing:20.021925px;}
.lsaa{letter-spacing:20.322750px;}
.ls2e{letter-spacing:31.571925px;}
.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;}
}
.ws0{word-spacing:0.000000px;}
._41{margin-left:-77.952771px;}
._1b{margin-left:-68.834689px;}
._28{margin-left:-48.812764px;}
._23{margin-left:-40.536188px;}
._13{margin-left:-25.127872px;}
._54{margin-left:-18.101288px;}
._51{margin-left:-13.353857px;}
._53{margin-left:-12.201695px;}
._52{margin-left:-11.027400px;}
._3f{margin-left:-8.047424px;}
._b{margin-left:-6.970425px;}
._15{margin-left:-5.348882px;}
._9{margin-left:-3.805725px;}
._11{margin-left:-2.168705px;}
._1f{width:1.335257px;}
._a{width:2.367750px;}
._8{width:3.482325px;}
._1{width:4.734884px;}
._24{width:5.756674px;}
._5{width:6.774691px;}
._d{width:8.373750px;}
._7{width:9.413250px;}
._1a{width:10.449208px;}
._c{width:11.756668px;}
._14{width:12.766292px;}
._6{width:13.923525px;}
._12{width:15.413475px;}
._2{width:16.458750px;}
._e{width:17.468759px;}
._f{width:19.061812px;}
._3{width:20.657175px;}
._50{width:21.657510px;}
._4{width:22.695750px;}
._17{width:24.018134px;}
._19{width:25.053182px;}
._10{width:26.247991px;}
._16{width:27.295345px;}
._18{width:29.420020px;}
._22{width:30.502318px;}
._20{width:31.862614px;}
._0{width:33.240375px;}
._3c{width:34.278230px;}
._1e{width:35.573153px;}
._3b{width:37.133250px;}
._25{width:38.358166px;}
._3a{width:39.785207px;}
._1d{width:41.516475px;}
._1c{width:43.370250px;}
._45{width:45.033379px;}
._3e{width:49.222789px;}
._44{width:65.314751px;}
._3d{width:68.202750px;}
._46{width:69.588251px;}
._4b{width:71.128037px;}
._43{width:73.139876px;}
._47{width:78.206048px;}
._21{width:84.175784px;}
._29{width:99.820875px;}
._27{width:124.533948px;}
._49{width:167.317560px;}
._4d{width:178.379540px;}
._4a{width:224.445304px;}
._4f{width:251.125920px;}
._31{width:277.474470px;}
._33{width:280.470294px;}
._34{width:281.964150px;}
._2b{width:283.458630px;}
._30{width:284.959974px;}
._2c{width:286.357500px;}
._2e{width:291.239130px;}
._39{width:307.418982px;}
._38{width:310.406850px;}
._37{width:312.211146px;}
._35{width:313.256424px;}
._2f{width:314.312544px;}
._36{width:316.302168px;}
._2d{width:317.307744px;}
._32{width:318.802224px;}
._4e{width:372.546234px;}
._26{width:387.376338px;}
._2a{width:518.098500px;}
._42{width:532.538125px;}
._4c{width:603.456058px;}
._40{width:631.716000px;}
._48{width:714.331495px;}
.fc0{color:transparent;}
.fs1a{font-size:17.250000px;}
.fs36{font-size:21.000000px;}
.fs15{font-size:26.250000px;}
.fs1b{font-size:28.500000px;}
.fs3a{font-size:30.000000px;}
.fs1d{font-size:30.750000px;}
.fs2d{font-size:36.000000px;}
.fs2f{font-size:38.250000px;}
.fs31{font-size:39.750000px;}
.fs25{font-size:40.500000px;}
.fs2a{font-size:41.250000px;}
.fsc{font-size:42.000000px;}
.fs28{font-size:42.750000px;}
.fs29{font-size:43.500000px;}
.fs24{font-size:44.250000px;}
.fs22{font-size:45.000000px;}
.fs23{font-size:45.750000px;}
.fs30{font-size:46.500000px;}
.fs26{font-size:47.250000px;}
.fs2b{font-size:48.000000px;}
.fs43{font-size:48.750000px;}
.fs2e{font-size:49.500000px;}
.fs16{font-size:51.000000px;}
.fs17{font-size:51.750000px;}
.fs44{font-size:52.500000px;}
.fsf{font-size:53.250000px;}
.fs19{font-size:54.000000px;}
.fs10{font-size:54.750000px;}
.fs42{font-size:55.500000px;}
.fs8{font-size:56.250000px;}
.fs7{font-size:57.000000px;}
.fs6{font-size:57.750000px;}
.fsa{font-size:58.500000px;}
.fsd{font-size:59.250000px;}
.fsb{font-size:60.000000px;}
.fs1e{font-size:60.750000px;}
.fs14{font-size:61.500000px;}
.fs13{font-size:62.250000px;}
.fs2c{font-size:62.347200px;}
.fs9{font-size:63.000000px;}
.fs1f{font-size:63.750000px;}
.fs18{font-size:64.500000px;}
.fse{font-size:65.250000px;}
.fs49{font-size:66.000000px;}
.fs3d{font-size:66.750000px;}
.fs1c{font-size:67.500000px;}
.fs3b{font-size:68.250000px;}
.fs11{font-size:69.000000px;}
.fs12{font-size:70.500000px;}
.fs32{font-size:72.000000px;}
.fs47{font-size:75.000000px;}
.fs27{font-size:76.458000px;}
.fs35{font-size:77.250000px;}
.fs20{font-size:80.250000px;}
.fs3c{font-size:83.250000px;}
.fs39{font-size:84.000000px;}
.fs21{font-size:86.250000px;}
.fs38{font-size:93.000000px;}
.fs2{font-size:97.500000px;}
.fs4{font-size:98.250000px;}
.fs0{font-size:99.000000px;}
.fs3{font-size:100.500000px;}
.fs1{font-size:101.250000px;}
.fs5{font-size:104.250000px;}
.fs3f{font-size:106.500000px;}
.fs40{font-size:107.250000px;}
.fs37{font-size:108.000000px;}
.fs45{font-size:144.000000px;}
.fs48{font-size:144.750000px;}
.fs41{font-size:177.000000px;}
.fs46{font-size:196.500000px;}
.fs33{font-size:200.250000px;}
.fs34{font-size:224.250000px;}
.fs3e{font-size:290.250000px;}
.y65{bottom:-4.184700px;}
.y0{bottom:0.000000px;}
.y64{bottom:111.015150px;}
.y157{bottom:141.252337px;}
.y63{bottom:141.616050px;}
.y62{bottom:141.618638px;}
.yc7{bottom:145.210125px;}
.ye4{bottom:145.937325px;}
.yfc{bottom:146.296200px;}
.y2d{bottom:146.953005px;}
.y61{bottom:157.817512px;}
.y12d{bottom:158.903678px;}
.y156{bottom:160.152337px;}
.yc6{bottom:161.049000px;}
.y96{bottom:161.776950px;}
.ye3{bottom:162.136200px;}
.y2c{bottom:163.154055px;}
.y5f{bottom:173.645250px;}
.y60{bottom:173.655450px;}
.y95{bottom:175.097400px;}
.y12c{bottom:175.102553px;}
.ye1{bottom:175.815900px;}
.yc5{bottom:177.253500px;}
.ye2{bottom:178.335600px;}
.y2b{bottom:179.352930px;}
.y2a{bottom:179.353342px;}
.y155{bottom:180.135150px;}
.y154{bottom:180.135300px;}
.y5e{bottom:189.309938px;}
.y12b{bottom:191.301427px;}
.yc4{bottom:193.458000px;}
.ye0{bottom:194.537550px;}
.y29{bottom:195.191280px;}
.y93{bottom:197.235900px;}
.y94{bottom:198.496650px;}
.y153{bottom:199.935300px;}
.y152{bottom:199.941675px;}
.y5d{bottom:205.696500px;}
.y12a{bottom:207.500302px;}
.yc3{bottom:209.296875px;}
.y92{bottom:210.015750px;}
.y91{bottom:210.376650px;}
.ydf{bottom:211.097362px;}
.y28{bottom:211.392330px;}
.y27{bottom:211.392855px;}
.y151{bottom:219.376050px;}
.y5c{bottom:221.895750px;}
.y5b{bottom:221.898450px;}
.y129{bottom:223.699177px;}
.yc2{bottom:225.135750px;}
.yde{bottom:226.937325px;}
.y26{bottom:227.591730px;}
.y128{bottom:239.898053px;}
.y150{bottom:240.616500px;}
.yc0{bottom:241.331550px;}
.yc1{bottom:241.336650px;}
.ydd{bottom:243.136200px;}
.y25{bottom:243.794843px;}
.y5a{bottom:254.296200px;}
.y127{bottom:255.735990px;}
.ybf{bottom:257.536050px;}
.ydc{bottom:259.337662px;}
.y24{bottom:259.632780px;}
.y14f{bottom:266.539013px;}
.y59{bottom:270.495450px;}
.y58{bottom:270.499688px;}
.y126{bottom:271.934865px;}
.y90{bottom:274.457100px;}
.yda{bottom:275.168512px;}
.ydb{bottom:275.175600px;}
.y23{bottom:275.832030px;}
.y14e{bottom:285.256200px;}
.y57{bottom:286.337625px;}
.y125{bottom:287.775015px;}
.y8f{bottom:290.297775px;}
.yd9{bottom:291.367387px;}
.y22{bottom:292.031430px;}
.y21{bottom:292.033605px;}
.y56{bottom:302.536500px;}
.ybe{bottom:306.135750px;}
.y8e{bottom:306.496650px;}
.yd8{bottom:307.393012px;}
.y20{bottom:308.232480px;}
.y55{bottom:318.376650px;}
.y54{bottom:318.378863px;}
.ybd{bottom:322.336650px;}
.yd7{bottom:323.418637px;}
.y1f{bottom:324.431730px;}
.y1e{bottom:324.433905px;}
.y124{bottom:326.655015px;}
.y14c{bottom:332.412188px;}
.y14d{bottom:332.415600px;}
.y53{bottom:334.216800px;}
.y8d{bottom:336.016350px;}
.ybc{bottom:338.176800px;}
.yd6{bottom:339.617512px;}
.y1d{bottom:340.632780px;}
.y52{bottom:350.416050px;}
.y14b{bottom:350.777812px;}
.ybb{bottom:354.015150px;}
.y8c{bottom:354.736950px;}
.yd5{bottom:355.455975px;}
.y1c{bottom:356.472780px;}
.y51{bottom:366.256200px;}
.y14a{bottom:369.495000px;}
.yba{bottom:370.575450px;}
.y8b{bottom:370.936350px;}
.yd4{bottom:371.654850px;}
.y1b{bottom:372.674393px;}
.y50{bottom:382.996050px;}
.yb9{bottom:387.132150px;}
.yd3{bottom:387.855900px;}
.y1a{bottom:388.512705px;}
.y149{bottom:388.577813px;}
.y4f{bottom:399.015750px;}
.y8a{bottom:402.975750px;}
.y89{bottom:402.977963px;}
.yb8{bottom:403.336650px;}
.yd2{bottom:403.696425px;}
.y19{bottom:404.713793px;}
.y123{bottom:405.133665px;}
.y122{bottom:405.134115px;}
.y148{bottom:407.295000px;}
.y4e{bottom:415.217175px;}
.y88{bottom:418.815900px;}
.yb7{bottom:419.536050px;}
.yd1{bottom:419.895300px;}
.yd0{bottom:419.897513px;}
.y18{bottom:420.552068px;}
.y121{bottom:422.054865px;}
.y120{bottom:422.058690px;}
.y147{bottom:426.015750px;}
.y146{bottom:426.018863px;}
.y4d{bottom:431.416050px;}
.y87{bottom:435.376050px;}
.ycf{bottom:435.735450px;}
.yce{bottom:435.740550px;}
.yb6{bottom:436.096200px;}
.y11f{bottom:436.813815px;}
.y17{bottom:437.111880px;}
.y145{bottom:446.536050px;}
.y16{bottom:450.432330px;}
.y86{bottom:451.583475px;}
.yb5{bottom:452.295600px;}
.ycd{bottom:452.300363px;}
.y15{bottom:452.952030px;}
.y11e{bottom:453.374115px;}
.y4c{bottom:464.176950px;}
.y144{bottom:468.135750px;}
.yb4{bottom:468.315300px;}
.ycc{bottom:468.860175px;}
.y14{bottom:469.512330px;}
.y13{bottom:469.512705px;}
.y11d{bottom:469.575165px;}
.y11c{bottom:470.295315px;}
.y85{bottom:471.016350px;}
.y11b{bottom:471.374715px;}
.y119{bottom:475.334715px;}
.y11a{bottom:483.613965px;}
.yb3{bottom:484.695900px;}
.y12{bottom:485.711580px;}
.y11{bottom:485.713755px;}
.y118{bottom:485.774415px;}
.y84{bottom:487.935750px;}
.y143{bottom:494.056350px;}
.ycb{bottom:500.536050px;}
.yb2{bottom:500.895300px;}
.y10{bottom:501.913005px;}
.y83{bottom:503.775900px;}
.y117{bottom:508.094265px;}
.y4b{bottom:513.495450px;}
.y142{bottom:513.856350px;}
.yb1{bottom:517.275900px;}
.yf{bottom:518.112368px;}
.y116{bottom:519.254265px;}
.y82{bottom:525.016350px;}
.y4a{bottom:530.055750px;}
.y141{bottom:532.216200px;}
.yb0{bottom:533.656500px;}
.ye{bottom:534.672180px;}
.y115{bottom:535.094265px;}
.y81{bottom:536.184862px;}
.y113{bottom:546.254265px;}
.y49{bottom:546.256800px;}
.y114{bottom:546.615165px;}
.yaf{bottom:549.855900px;}
.yd{bottom:550.871580px;}
.y140{bottom:551.296200px;}
.y13f{bottom:551.297963px;}
.y80{bottom:552.383737px;}
.y48{bottom:555.615450px;}
.yca{bottom:556.335600px;}
.y47{bottom:562.456575px;}
.yae{bottom:566.236500px;}
.yc{bottom:567.432217px;}
.y7f{bottom:568.582612px;}
.y13e{bottom:570.015150px;}
.yc9{bottom:570.376050px;}
.y110{bottom:571.454715px;}
.y112{bottom:573.974415px;}
.y111{bottom:574.514865px;}
.y46{bottom:578.655450px;}
.yfb{bottom:579.016350px;}
.y10f{bottom:581.535165px;}
.yad{bottom:582.615450px;}
.yb{bottom:583.992030px;}
.y7e{bottom:585.142425px;}
.y13d{bottom:591.255600px;}
.yc8{bottom:594.854700px;}
.y45{bottom:594.856875px;}
.ya{bottom:600.191280px;}
.y9{bottom:600.193980px;}
.y7d{bottom:600.980362px;}
.y10e{bottom:604.214265px;}
.y44{bottom:611.055750px;}
.yab{bottom:615.735900px;}
.yac{bottom:616.095150px;}
.y13c{bottom:617.535450px;}
.y7c{bottom:617.540175px;}
.y10d{bottom:620.054265px;}
.yf9{bottom:624.010575px;}
.yfa{bottom:624.016800px;}
.y43{bottom:627.616050px;}
.y42{bottom:627.616425px;}
.y10b{bottom:629.773965px;}
.y8{bottom:632.591730px;}
.y7b{bottom:633.739050px;}
.ya9{bottom:634.456650px;}
.yaa{bottom:634.815900px;}
.y10c{bottom:636.973815px;}
.y13b{bottom:638.775900px;}
.y41{bottom:643.815300px;}
.y7a{bottom:649.937925px;}
.y10a{bottom:651.375165px;}
.ya8{bottom:652.816350px;}
.y40{bottom:660.016350px;}
.y109{bottom:660.915165px;}
.y13a{bottom:665.055750px;}
.y79{bottom:666.136800px;}
.yf8{bottom:670.816950px;}
.y108{bottom:675.853815px;}
.y3f{bottom:676.576500px;}
.y78{bottom:682.336200px;}
.y77{bottom:682.337025px;}
.y7{bottom:684.798555px;}
.y139{bottom:684.855900px;}
.ya7{bottom:686.296200px;}
.y107{bottom:686.654565px;}
.yf7{bottom:687.375600px;}
.y3e{bottom:692.778937px;}
.y76{bottom:698.896838px;}
.y6{bottom:700.275555px;}
.ya6{bottom:702.129900px;}
.yf5{bottom:703.750275px;}
.yf6{bottom:703.756200px;}
.y138{bottom:704.655900px;}
.y137{bottom:704.656050px;}
.y3d{bottom:708.977812px;}
.y75{bottom:715.456650px;}
.y5{bottom:716.113492px;}
.ya5{bottom:719.416650px;}
.yf4{bottom:719.775900px;}
.yf3{bottom:719.778075px;}
.y106{bottom:723.014865px;}
.y136{bottom:724.456050px;}
.y3c{bottom:725.176687px;}
.y74{bottom:731.655900px;}
.y73{bottom:731.656387px;}
.y4{bottom:731.951430px;}
.ya4{bottom:735.251100px;}
.yf2{bottom:735.976950px;}
.y3b{bottom:741.736500px;}
.y3a{bottom:741.736875px;}
.y135{bottom:745.696500px;}
.y72{bottom:748.216200px;}
.y71{bottom:748.216688px;}
.ya3{bottom:751.455600px;}
.yf1{bottom:752.710875px;}
.y39{bottom:757.935750px;}
.y105{bottom:763.335315px;}
.y70{bottom:764.776500px;}
.y6f{bottom:764.776875px;}
.ya2{bottom:768.011100px;}
.yf0{bottom:768.736500px;}
.y134{bottom:772.335600px;}
.y6e{bottom:780.975750px;}
.y3{bottom:781.271280px;}
.ya0{bottom:784.215300px;}
.ya1{bottom:784.215600px;}
.yef{bottom:784.935750px;}
.y132{bottom:790.695450px;}
.y38{bottom:794.294850px;}
.y9f{bottom:800.770800px;}
.yee{bottom:801.136800px;}
.y36{bottom:807.610125px;}
.y133{bottom:809.775300px;}
.y104{bottom:810.495578px;}
.y37{bottom:811.215600px;}
.y2{bottom:812.592180px;}
.y6d{bottom:813.736950px;}
.y9d{bottom:816.971700px;}
.y9e{bottom:816.975300px;}
.yed{bottom:817.336200px;}
.y130{bottom:824.536050px;}
.y103{bottom:826.694452px;}
.y35{bottom:826.696500px;}
.y6c{bottom:830.298637px;}
.y131{bottom:832.095150px;}
.y9c{bottom:833.178675px;}
.yec{bottom:833.535450px;}
.y33{bottom:840.007538px;}
.y102{bottom:843.255128px;}
.y1{bottom:843.911430px;}
.y34{bottom:843.975300px;}
.y6b{bottom:846.858450px;}
.yeb{bottom:849.736500px;}
.yea{bottom:849.736875px;}
.y9b{bottom:850.275300px;}
.y101{bottom:859.454003px;}
.y32{bottom:859.454850px;}
.y6a{bottom:863.057325px;}
.y12f{bottom:865.935750px;}
.ye9{bottom:865.937063px;}
.y30{bottom:872.784900px;}
.y100{bottom:876.013815px;}
.yff{bottom:876.015840px;}
.y31{bottom:876.375600px;}
.y69{bottom:879.256200px;}
.y68{bottom:879.257063px;}
.ye8{bottom:882.135938px;}
.y9a{bottom:883.575450px;}
.y99{bottom:883.580250px;}
.yfe{bottom:892.214715px;}
.y12e{bottom:892.215600px;}
.y2f{bottom:892.217775px;}
.y67{bottom:895.643625px;}
.ye7{bottom:897.973875px;}
.y98{bottom:900.135750px;}
.y2e{bottom:908.416650px;}
.yfd{bottom:908.775015px;}
.y66{bottom:912.015750px;}
.ye5{bottom:912.376650px;}
.ye6{bottom:915.616500px;}
.y97{bottom:916.695900px;}
.h27{height:17.991211px;}
.h68{height:20.600098px;}
.h20{height:27.377930px;}
.h2c{height:27.971191px;}
.h6c{height:29.443359px;}
.h2f{height:32.071289px;}
.h4d{height:36.281250px;}
.h57{height:39.893555px;}
.h5f{height:41.458008px;}
.h40{height:42.240234px;}
.h67{height:42.671631px;}
.h49{height:43.022461px;}
.h47{height:43.083984px;}
.he{height:43.804688px;}
.h3a{height:44.143066px;}
.h3d{height:44.595703px;}
.h3b{height:44.878784px;}
.h3f{height:44.901123px;}
.h3e{height:45.351562px;}
.h48{height:45.369141px;}
.h3c{height:46.107422px;}
.h5e{height:46.863281px;}
.h41{height:47.619141px;}
.h4a{height:48.375000px;}
.h4c{height:50.062500px;}
.h79{height:50.844727px;}
.h55{height:51.626953px;}
.h13{height:52.235962px;}
.h25{height:52.998047px;}
.h21{height:53.191406px;}
.h1c{height:53.707397px;}
.h14{height:53.734131px;}
.h23{height:53.973633px;}
.h7a{height:54.755859px;}
.h78{height:54.849609px;}
.h10{height:55.206299px;}
.h2b{height:55.538086px;}
.h9{height:55.942383px;}
.h63{height:56.332031px;}
.h8{height:56.678467px;}
.h1e{height:56.683867px;}
.h56{height:56.702167px;}
.h4e{height:56.706817px;}
.h26{height:56.719267px;}
.h2a{height:57.073242px;}
.h38{height:57.385986px;}
.hc{height:57.414551px;}
.h44{height:57.428951px;}
.h77{height:57.445312px;}
.h36{height:57.814453px;}
.h7b{height:57.884766px;}
.h22{height:58.121704px;}
.h50{height:58.150635px;}
.ha{height:58.666992px;}
.h85{height:58.678242px;}
.hd{height:58.886719px;}
.h1a{height:59.449219px;}
.h54{height:59.593140px;}
.h43{height:59.622803px;}
.hf{height:59.712891px;}
.h2e{height:60.231445px;}
.h53{height:60.328857px;}
.h1f{height:60.358887px;}
.h11{height:60.468750px;}
.h1d{height:61.094971px;}
.h5d{height:61.224609px;}
.h64{height:61.795898px;}
.h5b{height:61.800293px;}
.hb{height:61.831055px;}
.h5c{height:61.980469px;}
.h5a{height:62.536011px;}
.h32{height:62.567139px;}
.h4f{height:63.002930px;}
.h24{height:63.303223px;}
.h30{height:63.360352px;}
.h39{height:63.492188px;}
.h12{height:64.039307px;}
.h31{height:64.142578px;}
.h34{height:64.924805px;}
.h4b{height:65.026181px;}
.h82{height:65.707031px;}
.h84{height:66.489258px;}
.h6d{height:67.450195px;}
.h81{height:68.053711px;}
.h80{height:68.835938px;}
.h6f{height:69.618164px;}
.h2d{height:70.400391px;}
.h19{height:71.058217px;}
.h83{height:71.182617px;}
.h15{height:71.964844px;}
.h1b{height:72.501967px;}
.h18{height:73.529297px;}
.h60{height:75.093750px;}
.h66{height:75.816650px;}
.h42{height:77.055328px;}
.h7e{height:78.222656px;}
.h33{height:78.760986px;}
.h6e{height:81.705322px;}
.h6b{height:82.400391px;}
.h65{height:85.477867px;}
.h35{height:89.956055px;}
.h6a{height:96.996094px;}
.h4{height:101.689453px;}
.h6{height:102.471680px;}
.h2{height:103.253906px;}
.h5{height:104.818359px;}
.h3{height:105.600586px;}
.h7{height:108.729492px;}
.h74{height:111.076172px;}
.h75{height:111.858398px;}
.h69{height:112.640625px;}
.h7c{height:150.187500px;}
.h7f{height:150.969727px;}
.h76{height:184.605469px;}
.h7d{height:192.758057px;}
.h61{height:208.854492px;}
.h62{height:220.089111px;}
.h73{height:284.864502px;}
.h46{height:1014.000000px;}
.h45{height:1014.031050px;}
.h71{height:1015.472550px;}
.h72{height:1015.500000px;}
.h51{height:1017.632550px;}
.h52{height:1017.750000px;}
.h28{height:1019.072550px;}
.h29{height:1019.250000px;}
.h59{height:1021.500000px;}
.h58{height:1021.742805px;}
.h0{height:1022.968830px;}
.h1{height:1023.000000px;}
.h70{height:1023.032550px;}
.h17{height:1023.750000px;}
.h37{height:1023.752550px;}
.h16{height:1024.112550px;}
.w1{width:667.500000px;}
.w0{width:667.634970px;}
.wc{width:668.864505px;}
.wd{width:669.000000px;}
.w5{width:669.750000px;}
.w4{width:669.872550px;}
.wf{width:670.500000px;}
.we{width:670.592235px;}
.w7{width:671.250000px;}
.w6{width:671.312550px;}
.w9{width:672.750000px;}
.w8{width:672.752550px;}
.wa{width:674.191050px;}
.wb{width:674.250000px;}
.w2{width:677.072550px;}
.w3{width:677.250000px;}
.x0{left:0.000000px;}
.x41{left:1.576500px;}
.x76{left:76.815300px;}
.x6c{left:78.300600px;}
.x66{left:79.333688px;}
.x63{left:80.415450px;}
.x1{left:81.618510px;}
.xe{left:82.697910px;}
.xc9{left:91.935300px;}
.x4{left:96.018210px;}
.x75{left:98.775900px;}
.x77{left:99.855300px;}
.x64{left:100.936350px;}
.x20{left:102.497910px;}
.xf{left:103.932285px;}
.xd0{left:105.975750px;}
.xcc{left:107.056800px;}
.x5f{left:108.136200px;}
.x23{left:112.939410px;}
.x48{left:114.992175px;}
.x3b{left:116.056350px;}
.x27{left:117.135750px;}
.x60{left:118.216800px;}
.x74{left:120.375600px;}
.x24{left:128.059260px;}
.x4a{left:130.456050px;}
.x1e{left:132.019260px;}
.x80{left:134.416050px;}
.x55{left:135.498863px;}
.x44{left:136.576500px;}
.x5{left:137.778960px;}
.x36{left:139.095900px;}
.x49{left:140.536500px;}
.x69{left:142.336200px;}
.x78{left:144.855900px;}
.x1f{left:147.139260px;}
.x15{left:153.618960px;}
.x6a{left:157.456050px;}
.x87{left:159.977400px;}
.x79{left:161.056800px;}
.xce{left:162.856350px;}
.x38{left:163.935750px;}
.x8a{left:165.376200px;}
.x2e{left:168.256050px;}
.x9d{left:171.135750px;}
.x6d{left:173.296200px;}
.x6{left:174.859410px;}
.xd2{left:177.976350px;}
.xa6{left:179.416650px;}
.xad{left:180.558315px;}
.x9a{left:184.096800px;}
.xd3{left:185.176200px;}
.xcd{left:187.695900px;}
.x50{left:190.935750px;}
.x73{left:192.735300px;}
.xa7{left:193.816500px;}
.x7e{left:195.256650px;}
.x72{left:200.652638px;}
.xa{left:203.658960px;}
.x52{left:204.976350px;}
.x8b{left:206.416650px;}
.xa2{left:208.216200px;}
.x51{left:211.815300px;}
.xbc{left:215.117415px;}
.x4d{left:216.856350px;}
.x6e{left:220.455450px;}
.x8c{left:222.256800px;}
.x95{left:223.695450px;}
.x9c{left:225.855900px;}
.x53{left:226.935300px;}
.x45{left:229.095750px;}
.xb{left:231.379110px;}
.xa9{left:232.397865px;}
.x5c{left:238.096800px;}
.x3e{left:244.576500px;}
.x7{left:245.778960px;}
.x42{left:247.096200px;}
.x97{left:248.175600px;}
.x2{left:249.378060px;}
.x8d{left:252.137400px;}
.xb4{left:253.997565px;}
.xd{left:255.121635px;}
.xc{left:256.218660px;}
.x7a{left:257.536050px;}
.x3f{left:259.696500px;}
.x1a{left:261.258060px;}
.x82{left:269.056800px;}
.x65{left:270.136200px;}
.xac{left:271.637265px;}
.x2f{left:273.376050px;}
.x96{left:275.175600px;}
.x7b{left:276.256650px;}
.x1b{left:278.179260px;}
.x9b{left:282.016350px;}
.x6f{left:284.895300px;}
.x30{left:286.696500px;}
.x11{left:287.898810px;}
.x3{left:290.418510px;}
.x57{left:297.856350px;}
.x9e{left:301.096200px;}
.x12{left:305.538510px;}
.x83{left:306.857550px;}
.xcb{left:309.016350px;}
.x31{left:310.815900px;}
.x98{left:311.895300px;}
.x58{left:313.335600px;}
.x88{left:314.416650px;}
.x46{left:320.896350px;}
.x85{left:321.977400px;}
.x84{left:323.416050px;}
.x5d{left:324.495450px;}
.x4e{left:329.175600px;}
.x13{left:330.738960px;}
.x32{left:333.855900px;}
.x90{left:336.016350px;}
.x7c{left:337.456650px;}
.x47{left:338.895300px;}
.x92{left:340.339162px;}
.x2a{left:341.416650px;}
.x71{left:342.496050px;}
.x9f{left:343.936350px;}
.x5e{left:347.535450px;}
.xca{left:348.616500px;}
.x4f{left:350.056800px;}
.x91{left:351.856350px;}
.x59{left:353.296650px;}
.x5a{left:354.735300px;}
.x99{left:358.336200px;}
.xc5{left:365.237415px;}
.x2b{left:367.696500px;}
.x5b{left:370.575450px;}
.xaf{left:372.078015px;}
.x8{left:373.938210px;}
.xd1{left:375.255600px;}
.x7d{left:382.816350px;}
.xa8{left:384.975300px;}
.x56{left:387.855900px;}
.x94{left:390.377250px;}
.x89{left:392.176800px;}
.x25{left:393.379110px;}
.x9{left:396.618960px;}
.xbe{left:397.996965px;}
.x1c{left:400.218060px;}
.xb0{left:402.677115px;}
.x67{left:403.695900px;}
.xc2{left:405.196815px;}
.xb7{left:408.436815px;}
.x61{left:411.256800px;}
.x26{left:414.978810px;}
.xa4{left:418.095750px;}
.xae{left:420.316815px;}
.x1d{left:421.458510px;}
.xc8{left:424.936350px;}
.x62{left:427.456050px;}
.xb8{left:429.677115px;}
.x70{left:435.016800px;}
.xc3{left:436.156965px;}
.x37{left:437.175600px;}
.x7f{left:438.616050px;}
.xb6{left:440.477865px;}
.xba{left:446.237415px;}
.xbd{left:447.316815px;}
.xc0{left:448.397865px;}
.x8e{left:449.777550px;}
.xc4{left:453.437265px;}
.x4b{left:454.456050px;}
.xbb{left:455.597715px;}
.xbf{left:458.837715px;}
.xb1{left:460.637265px;}
.xb3{left:461.718315px;}
.x39{left:463.096200px;}
.xab{left:464.238015px;}
.x28{left:468.496650px;}
.x4c{left:471.736500px;}
.x33{left:478.216200px;}
.x6b{left:479.656500px;}
.x3a{left:480.735900px;}
.xa0{left:484.336650px;}
.x29{left:490.455600px;}
.xd4{left:492.616050px;}
.x21{left:497.419110px;}
.xb9{left:502.036965px;}
.xc1{left:505.996965px;}
.x17{left:507.858810px;}
.xcf{left:509.896350px;}
.x34{left:511.336650px;}
.xc6{left:514.998165px;}
.xb2{left:516.077565px;}
.x3c{left:517.096200px;}
.x22{left:520.459110px;}
.x18{left:521.899410px;}
.xb5{left:523.277415px;}
.xa5{left:526.456650px;}
.x8f{left:530.057400px;}
.x3d{left:531.855300px;}
.x86{left:533.656500px;}
.xc7{left:539.117565px;}
.x93{left:541.576500px;}
.x16{left:542.778960px;}
.x19{left:543.858360px;}
.xaa{left:545.958165px;}
.x2c{left:547.336200px;}
.x10{left:548.899410px;}
.x68{left:550.935300px;}
.x14{left:552.139260px;}
.xa1{left:558.136800px;}
.x2d{left:562.456050px;}
.x54{left:567.856350px;}
.x40{left:570.376050px;}
.xa3{left:576.855900px;}
.x43{left:580.095750px;}
.x81{left:584.057400px;}
.x35{left:587.295600px;}
@media print{
.v5{vertical-align:-19.201067pt;}
.v3{vertical-align:-1.283333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:12.782000pt;}
.v2{vertical-align:14.065333pt;}
.v4{vertical-align:25.599467pt;}
.ls87{letter-spacing:-38.929800pt;}
.ls8c{letter-spacing:-28.478667pt;}
.ls8b{letter-spacing:-20.533333pt;}
.ls16{letter-spacing:-14.669600pt;}
.ls14{letter-spacing:-14.266533pt;}
.ls37{letter-spacing:-13.750000pt;}
.ls18{letter-spacing:-13.221000pt;}
.ls39{letter-spacing:-13.170600pt;}
.ls34{letter-spacing:-13.161867pt;}
.ls11{letter-spacing:-12.591000pt;}
.ls35{letter-spacing:-12.520200pt;}
.ls70{letter-spacing:-11.374667pt;}
.lsb1{letter-spacing:-10.389867pt;}
.ls64{letter-spacing:-10.120667pt;}
.ls12{letter-spacing:-10.071000pt;}
.ls1c{letter-spacing:-9.315000pt;}
.lsa2{letter-spacing:-8.756667pt;}
.lsf{letter-spacing:-8.553600pt;}
.ls3a{letter-spacing:-8.213333pt;}
.ls33{letter-spacing:-8.096133pt;}
.lsba{letter-spacing:-7.504467pt;}
.lsb4{letter-spacing:-7.333333pt;}
.ls86{letter-spacing:-6.853000pt;}
.ls6c{letter-spacing:-6.842733pt;}
.ls54{letter-spacing:-6.240000pt;}
.ls20{letter-spacing:-6.160000pt;}
.ls92{letter-spacing:-6.141000pt;}
.ls4e{letter-spacing:-5.716000pt;}
.ls61{letter-spacing:-5.690667pt;}
.lsb7{letter-spacing:-5.629867pt;}
.ls4b{letter-spacing:-5.546933pt;}
.ls10{letter-spacing:-5.456000pt;}
.ls13{letter-spacing:-5.373333pt;}
.ls90{letter-spacing:-5.071733pt;}
.ls56{letter-spacing:-4.877600pt;}
.ls52{letter-spacing:-4.851600pt;}
.ls38{letter-spacing:-4.272200pt;}
.ls73{letter-spacing:-3.871467pt;}
.ls57{letter-spacing:-3.790800pt;}
.lsab{letter-spacing:-3.741333pt;}
.ls5e{letter-spacing:-3.393600pt;}
.ls15{letter-spacing:-3.178933pt;}
.ls5f{letter-spacing:-3.170667pt;}
.ls81{letter-spacing:-3.167267pt;}
.ls83{letter-spacing:-3.083400pt;}
.lsac{letter-spacing:-2.993067pt;}
.ls55{letter-spacing:-2.894400pt;}
.ls74{letter-spacing:-2.582333pt;}
.ls93{letter-spacing:-2.535867pt;}
.lsad{letter-spacing:-2.244800pt;}
.ls8f{letter-spacing:-2.054000pt;}
.ls19{letter-spacing:-2.053333pt;}
.ls7e{letter-spacing:-1.899333pt;}
.lsb2{letter-spacing:-1.836267pt;}
.lsae{letter-spacing:-1.496533pt;}
.ls7f{letter-spacing:-1.482667pt;}
.ls8d{letter-spacing:-1.440000pt;}
.ls22{letter-spacing:-1.370600pt;}
.ls25{letter-spacing:-1.362667pt;}
.ls8a{letter-spacing:-1.350267pt;}
.lsb5{letter-spacing:-1.300000pt;}
.ls1d{letter-spacing:-1.271200pt;}
.ls80{letter-spacing:-1.267933pt;}
.lsb0{letter-spacing:-1.220267pt;}
.ls71{letter-spacing:-1.205867pt;}
.ls2a{letter-spacing:-1.192267pt;}
.ls8e{letter-spacing:-0.937333pt;}
.ls30{letter-spacing:-0.800800pt;}
.ls24{letter-spacing:-0.770133pt;}
.ls1e{letter-spacing:-0.693333pt;}
.ls53{letter-spacing:-0.691600pt;}
.ls1a{letter-spacing:-0.682733pt;}
.ls84{letter-spacing:-0.677867pt;}
.lsbb{letter-spacing:-0.650000pt;}
.ls32{letter-spacing:-0.649600pt;}
.ls60{letter-spacing:-0.646600pt;}
.ls7c{letter-spacing:-0.631400pt;}
.lsb3{letter-spacing:-0.610133pt;}
.ls2d{letter-spacing:-0.590333pt;}
.ls1f{letter-spacing:-0.546000pt;}
.ls17{letter-spacing:0.000000pt;}
.lsa1{letter-spacing:0.610133pt;}
.ls63{letter-spacing:0.618133pt;}
.ls75{letter-spacing:0.631400pt;}
.ls65{letter-spacing:0.637267pt;}
.ls58{letter-spacing:0.646600pt;}
.lsa5{letter-spacing:0.646800pt;}
.ls98{letter-spacing:0.650000pt;}
.ls29{letter-spacing:0.674133pt;}
.ls0{letter-spacing:0.682733pt;}
.ls40{letter-spacing:0.691600pt;}
.ls4f{letter-spacing:0.711667pt;}
.ls79{letter-spacing:0.725333pt;}
.ls94{letter-spacing:0.748267pt;}
.ls76{letter-spacing:1.267933pt;}
.ls69{letter-spacing:1.293200pt;}
.ls9b{letter-spacing:1.300000pt;}
.ls2c{letter-spacing:1.301333pt;}
.ls50{letter-spacing:1.313533pt;}
.ls5d{letter-spacing:1.333400pt;}
.ls28{letter-spacing:1.348267pt;}
.ls85{letter-spacing:1.355733pt;}
.ls1{letter-spacing:1.370600pt;}
.lsa8{letter-spacing:1.378000pt;}
.ls5b{letter-spacing:1.378600pt;}
.ls7a{letter-spacing:1.383067pt;}
.ls3f{letter-spacing:1.388400pt;}
.ls62{letter-spacing:1.399467pt;}
.ls4c{letter-spacing:1.404200pt;}
.ls27{letter-spacing:1.418933pt;}
.ls46{letter-spacing:1.449067pt;}
.ls7b{letter-spacing:1.495200pt;}
.lsaf{letter-spacing:1.496533pt;}
.ls6d{letter-spacing:1.518000pt;}
.ls6b{letter-spacing:1.522800pt;}
.ls78{letter-spacing:1.899333pt;}
.ls31{letter-spacing:1.904000pt;}
.ls2b{letter-spacing:1.920000pt;}
.ls5c{letter-spacing:1.930400pt;}
.ls59{letter-spacing:1.935733pt;}
.ls97{letter-spacing:1.950000pt;}
.ls2{letter-spacing:2.053333pt;}
.ls3e{letter-spacing:2.080000pt;}
.ls7d{letter-spacing:2.106000pt;}
.ls21{letter-spacing:2.106667pt;}
.ls6f{letter-spacing:2.116800pt;}
.ls4a{letter-spacing:2.144000pt;}
.lsb6{letter-spacing:2.343200pt;}
.lsb9{letter-spacing:2.397000pt;}
.ls77{letter-spacing:2.535867pt;}
.lsb8{letter-spacing:2.581000pt;}
.ls68{letter-spacing:2.582333pt;}
.ls99{letter-spacing:2.595000pt;}
.ls66{letter-spacing:2.733333pt;}
.ls4{letter-spacing:2.736067pt;}
.ls3b{letter-spacing:2.771600pt;}
.ls1b{letter-spacing:2.893067pt;}
.ls96{letter-spacing:3.056533pt;}
.ls6a{letter-spacing:3.228933pt;}
.ls9f{letter-spacing:3.245000pt;}
.ls6e{letter-spacing:3.377733pt;}
.ls49{letter-spacing:3.387533pt;}
.ls8{letter-spacing:3.423933pt;}
.ls41{letter-spacing:3.468400pt;}
.lsa3{letter-spacing:3.521600pt;}
.ls48{letter-spacing:3.572000pt;}
.ls4d{letter-spacing:3.765733pt;}
.ls9d{letter-spacing:3.895000pt;}
.ls51{letter-spacing:4.000200pt;}
.lsa9{letter-spacing:4.064667pt;}
.ls5{letter-spacing:4.106667pt;}
.ls3d{letter-spacing:4.160000pt;}
.ls26{letter-spacing:4.163133pt;}
.ls95{letter-spacing:4.276800pt;}
.ls44{letter-spacing:4.284000pt;}
.ls89{letter-spacing:4.342133pt;}
.ls88{letter-spacing:4.435200pt;}
.ls23{letter-spacing:4.525067pt;}
.ls9c{letter-spacing:4.545000pt;}
.ls3{letter-spacing:4.789400pt;}
.ls3c{letter-spacing:4.851600pt;}
.lsa0{letter-spacing:5.195000pt;}
.lsb{letter-spacing:5.477267pt;}
.lsa4{letter-spacing:5.491200pt;}
.ls45{letter-spacing:5.548400pt;}
.lsa7{letter-spacing:5.757200pt;}
.ls36{letter-spacing:6.073467pt;}
.ls7{letter-spacing:6.160000pt;}
.ls43{letter-spacing:6.240000pt;}
.lsa6{letter-spacing:6.333333pt;}
.ls9e{letter-spacing:6.495000pt;}
.ls6{letter-spacing:6.842733pt;}
.ls42{letter-spacing:6.931600pt;}
.ls9a{letter-spacing:7.145000pt;}
.lsa{letter-spacing:7.530600pt;}
.lsd{letter-spacing:8.213333pt;}
.ls5a{letter-spacing:8.896067pt;}
.lse{letter-spacing:9.583933pt;}
.ls2f{letter-spacing:10.949400pt;}
.ls67{letter-spacing:11.618467pt;}
.ls82{letter-spacing:11.911867pt;}
.ls91{letter-spacing:12.042800pt;}
.ls47{letter-spacing:13.092800pt;}
.ls72{letter-spacing:15.056067pt;}
.lsc{letter-spacing:16.426667pt;}
.ls9{letter-spacing:17.797267pt;}
.lsaa{letter-spacing:18.064667pt;}
.ls2e{letter-spacing:28.063933pt;}
.ws0{word-spacing:0.000000pt;}
._41{margin-left:-69.291352pt;}
._1b{margin-left:-61.186390pt;}
._28{margin-left:-43.389124pt;}
._23{margin-left:-36.032167pt;}
._13{margin-left:-22.335886pt;}
._54{margin-left:-16.090034pt;}
._51{margin-left:-11.870095pt;}
._53{margin-left:-10.845951pt;}
._52{margin-left:-9.802133pt;}
._3f{margin-left:-7.153266pt;}
._b{margin-left:-6.195933pt;}
._15{margin-left:-4.754562pt;}
._9{margin-left:-3.382867pt;}
._11{margin-left:-1.927738pt;}
._1f{width:1.186895pt;}
._a{width:2.104667pt;}
._8{width:3.095400pt;}
._1{width:4.208786pt;}
._24{width:5.117044pt;}
._5{width:6.021948pt;}
._d{width:7.443333pt;}
._7{width:8.367333pt;}
._1a{width:9.288185pt;}
._c{width:10.450372pt;}
._14{width:11.347815pt;}
._6{width:12.376467pt;}
._12{width:13.700867pt;}
._2{width:14.630000pt;}
._e{width:15.527786pt;}
._f{width:16.943833pt;}
._3{width:18.361933pt;}
._50{width:19.251120pt;}
._4{width:20.174000pt;}
._17{width:21.349452pt;}
._19{width:22.269495pt;}
._10{width:23.331548pt;}
._16{width:24.262529pt;}
._18{width:26.151129pt;}
._22{width:27.113172pt;}
._20{width:28.322324pt;}
._0{width:29.547000pt;}
._3c{width:30.469538pt;}
._1e{width:31.620580pt;}
._3b{width:33.007333pt;}
._25{width:34.096148pt;}
._3a{width:35.364628pt;}
._1d{width:36.903533pt;}
._1c{width:38.551333pt;}
._45{width:40.029670pt;}
._3e{width:43.753590pt;}
._44{width:58.057556pt;}
._3d{width:60.624667pt;}
._46{width:61.856223pt;}
._4b{width:63.224922pt;}
._43{width:65.013223pt;}
._47{width:69.516487pt;}
._21{width:74.822919pt;}
._29{width:88.729667pt;}
._27{width:110.696843pt;}
._49{width:148.726720pt;}
._4d{width:158.559591pt;}
._4a{width:199.506937pt;}
._4f{width:223.223040pt;}
._31{width:246.643973pt;}
._33{width:249.306928pt;}
._34{width:250.634800pt;}
._2b{width:251.963227pt;}
._30{width:253.297755pt;}
._2c{width:254.540000pt;}
._2e{width:258.879227pt;}
._39{width:273.261317pt;}
._38{width:275.917200pt;}
._37{width:277.521019pt;}
._35{width:278.450155pt;}
._2f{width:279.388928pt;}
._36{width:281.157483pt;}
._2d{width:282.051328pt;}
._32{width:283.379755pt;}
._4e{width:331.152208pt;}
._26{width:344.334523pt;}
._2a{width:460.532000pt;}
._42{width:473.367222pt;}
._4c{width:536.405385pt;}
._40{width:561.525333pt;}
._48{width:634.961329pt;}
.fs1a{font-size:15.333333pt;}
.fs36{font-size:18.666667pt;}
.fs15{font-size:23.333333pt;}
.fs1b{font-size:25.333333pt;}
.fs3a{font-size:26.666667pt;}
.fs1d{font-size:27.333333pt;}
.fs2d{font-size:32.000000pt;}
.fs2f{font-size:34.000000pt;}
.fs31{font-size:35.333333pt;}
.fs25{font-size:36.000000pt;}
.fs2a{font-size:36.666667pt;}
.fsc{font-size:37.333333pt;}
.fs28{font-size:38.000000pt;}
.fs29{font-size:38.666667pt;}
.fs24{font-size:39.333333pt;}
.fs22{font-size:40.000000pt;}
.fs23{font-size:40.666667pt;}
.fs30{font-size:41.333333pt;}
.fs26{font-size:42.000000pt;}
.fs2b{font-size:42.666667pt;}
.fs43{font-size:43.333333pt;}
.fs2e{font-size:44.000000pt;}
.fs16{font-size:45.333333pt;}
.fs17{font-size:46.000000pt;}
.fs44{font-size:46.666667pt;}
.fsf{font-size:47.333333pt;}
.fs19{font-size:48.000000pt;}
.fs10{font-size:48.666667pt;}
.fs42{font-size:49.333333pt;}
.fs8{font-size:50.000000pt;}
.fs7{font-size:50.666667pt;}
.fs6{font-size:51.333333pt;}
.fsa{font-size:52.000000pt;}
.fsd{font-size:52.666667pt;}
.fsb{font-size:53.333333pt;}
.fs1e{font-size:54.000000pt;}
.fs14{font-size:54.666667pt;}
.fs13{font-size:55.333333pt;}
.fs2c{font-size:55.419733pt;}
.fs9{font-size:56.000000pt;}
.fs1f{font-size:56.666667pt;}
.fs18{font-size:57.333333pt;}
.fse{font-size:58.000000pt;}
.fs49{font-size:58.666667pt;}
.fs3d{font-size:59.333333pt;}
.fs1c{font-size:60.000000pt;}
.fs3b{font-size:60.666667pt;}
.fs11{font-size:61.333333pt;}
.fs12{font-size:62.666667pt;}
.fs32{font-size:64.000000pt;}
.fs47{font-size:66.666667pt;}
.fs27{font-size:67.962667pt;}
.fs35{font-size:68.666667pt;}
.fs20{font-size:71.333333pt;}
.fs3c{font-size:74.000000pt;}
.fs39{font-size:74.666667pt;}
.fs21{font-size:76.666667pt;}
.fs38{font-size:82.666667pt;}
.fs2{font-size:86.666667pt;}
.fs4{font-size:87.333333pt;}
.fs0{font-size:88.000000pt;}
.fs3{font-size:89.333333pt;}
.fs1{font-size:90.000000pt;}
.fs5{font-size:92.666667pt;}
.fs3f{font-size:94.666667pt;}
.fs40{font-size:95.333333pt;}
.fs37{font-size:96.000000pt;}
.fs45{font-size:128.000000pt;}
.fs48{font-size:128.666667pt;}
.fs41{font-size:157.333333pt;}
.fs46{font-size:174.666667pt;}
.fs33{font-size:178.000000pt;}
.fs34{font-size:199.333333pt;}
.fs3e{font-size:258.000000pt;}
.y65{bottom:-3.719733pt;}
.y0{bottom:0.000000pt;}
.y64{bottom:98.680133pt;}
.y157{bottom:125.557633pt;}
.y63{bottom:125.880933pt;}
.y62{bottom:125.883233pt;}
.yc7{bottom:129.075667pt;}
.ye4{bottom:129.722067pt;}
.yfc{bottom:130.041067pt;}
.y2d{bottom:130.624893pt;}
.y61{bottom:140.282233pt;}
.y12d{bottom:141.247713pt;}
.y156{bottom:142.357633pt;}
.yc6{bottom:143.154667pt;}
.y96{bottom:143.801733pt;}
.ye3{bottom:144.121067pt;}
.y2c{bottom:145.025827pt;}
.y5f{bottom:154.351333pt;}
.y60{bottom:154.360400pt;}
.y95{bottom:155.642133pt;}
.y12c{bottom:155.646713pt;}
.ye1{bottom:156.280800pt;}
.yc5{bottom:157.558667pt;}
.ye2{bottom:158.520533pt;}
.y2b{bottom:159.424827pt;}
.y2a{bottom:159.425193pt;}
.y155{bottom:160.120133pt;}
.y154{bottom:160.120267pt;}
.y5e{bottom:168.275500pt;}
.y12b{bottom:170.045713pt;}
.yc4{bottom:171.962667pt;}
.ye0{bottom:172.922267pt;}
.y29{bottom:173.503360pt;}
.y93{bottom:175.320800pt;}
.y94{bottom:176.441467pt;}
.y153{bottom:177.720267pt;}
.y152{bottom:177.725933pt;}
.y5d{bottom:182.841333pt;}
.y12a{bottom:184.444713pt;}
.yc3{bottom:186.041667pt;}
.y92{bottom:186.680667pt;}
.y91{bottom:187.001467pt;}
.ydf{bottom:187.642100pt;}
.y28{bottom:187.904293pt;}
.y27{bottom:187.904760pt;}
.y151{bottom:195.000933pt;}
.y5c{bottom:197.240667pt;}
.y5b{bottom:197.243067pt;}
.y129{bottom:198.843713pt;}
.yc2{bottom:200.120667pt;}
.yde{bottom:201.722067pt;}
.y26{bottom:202.303760pt;}
.y128{bottom:213.242713pt;}
.y150{bottom:213.881333pt;}
.yc0{bottom:214.516933pt;}
.yc1{bottom:214.521467pt;}
.ydd{bottom:216.121067pt;}
.y25{bottom:216.706527pt;}
.y5a{bottom:226.041067pt;}
.y127{bottom:227.320880pt;}
.ybf{bottom:228.920933pt;}
.ydc{bottom:230.522367pt;}
.y24{bottom:230.784693pt;}
.y14f{bottom:236.923567pt;}
.y59{bottom:240.440400pt;}
.y58{bottom:240.444167pt;}
.y126{bottom:241.719880pt;}
.y90{bottom:243.961867pt;}
.yda{bottom:244.594233pt;}
.ydb{bottom:244.600533pt;}
.y23{bottom:245.184027pt;}
.y14e{bottom:253.561067pt;}
.y57{bottom:254.522333pt;}
.y125{bottom:255.800013pt;}
.y8f{bottom:258.042467pt;}
.yd9{bottom:258.993233pt;}
.y22{bottom:259.583493pt;}
.y21{bottom:259.585427pt;}
.y56{bottom:268.921333pt;}
.ybe{bottom:272.120667pt;}
.y8e{bottom:272.441467pt;}
.yd8{bottom:273.238233pt;}
.y20{bottom:273.984427pt;}
.y55{bottom:283.001467pt;}
.y54{bottom:283.003433pt;}
.ybd{bottom:286.521467pt;}
.yd7{bottom:287.483233pt;}
.y1f{bottom:288.383760pt;}
.y1e{bottom:288.385693pt;}
.y124{bottom:290.360013pt;}
.y14c{bottom:295.477500pt;}
.y14d{bottom:295.480533pt;}
.y53{bottom:297.081600pt;}
.y8d{bottom:298.681200pt;}
.ybc{bottom:300.601600pt;}
.yd6{bottom:301.882233pt;}
.y1d{bottom:302.784693pt;}
.y52{bottom:311.480933pt;}
.y14b{bottom:311.802500pt;}
.ybb{bottom:314.680133pt;}
.y8c{bottom:315.321733pt;}
.yd5{bottom:315.960867pt;}
.y1c{bottom:316.864693pt;}
.y51{bottom:325.561067pt;}
.y14a{bottom:328.440000pt;}
.yba{bottom:329.400400pt;}
.y8b{bottom:329.721200pt;}
.yd4{bottom:330.359867pt;}
.y1b{bottom:331.266127pt;}
.y50{bottom:340.440933pt;}
.yb9{bottom:344.117467pt;}
.yd3{bottom:344.760800pt;}
.y1a{bottom:345.344627pt;}
.y149{bottom:345.402500pt;}
.y4f{bottom:354.680667pt;}
.y8a{bottom:358.200667pt;}
.y89{bottom:358.202633pt;}
.yb8{bottom:358.521467pt;}
.yd2{bottom:358.841267pt;}
.y19{bottom:359.745593pt;}
.y123{bottom:360.118813pt;}
.y122{bottom:360.119213pt;}
.y148{bottom:362.040000pt;}
.y4e{bottom:369.081933pt;}
.y88{bottom:372.280800pt;}
.yb7{bottom:372.920933pt;}
.yd1{bottom:373.240267pt;}
.yd0{bottom:373.242233pt;}
.y18{bottom:373.824060pt;}
.y121{bottom:375.159880pt;}
.y120{bottom:375.163280pt;}
.y147{bottom:378.680667pt;}
.y146{bottom:378.683433pt;}
.y4d{bottom:383.480933pt;}
.y87{bottom:387.000933pt;}
.ycf{bottom:387.320400pt;}
.yce{bottom:387.324933pt;}
.yb6{bottom:387.641067pt;}
.y11f{bottom:388.278947pt;}
.y17{bottom:388.543893pt;}
.y145{bottom:396.920933pt;}
.y16{bottom:400.384293pt;}
.y86{bottom:401.407533pt;}
.yb5{bottom:402.040533pt;}
.ycd{bottom:402.044767pt;}
.y15{bottom:402.624027pt;}
.y11e{bottom:402.999213pt;}
.y4c{bottom:412.601733pt;}
.y144{bottom:416.120667pt;}
.yb4{bottom:416.280267pt;}
.ycc{bottom:416.764600pt;}
.y14{bottom:417.344293pt;}
.y13{bottom:417.344627pt;}
.y11d{bottom:417.400147pt;}
.y11c{bottom:418.040280pt;}
.y85{bottom:418.681200pt;}
.y11b{bottom:418.999747pt;}
.y119{bottom:422.519747pt;}
.y11a{bottom:429.879080pt;}
.yb3{bottom:430.840800pt;}
.y12{bottom:431.743627pt;}
.y11{bottom:431.745560pt;}
.y118{bottom:431.799480pt;}
.y84{bottom:433.720667pt;}
.y143{bottom:439.161200pt;}
.ycb{bottom:444.920933pt;}
.yb2{bottom:445.240267pt;}
.y10{bottom:446.144893pt;}
.y83{bottom:447.800800pt;}
.y117{bottom:451.639347pt;}
.y4b{bottom:456.440400pt;}
.y142{bottom:456.761200pt;}
.yb1{bottom:459.800800pt;}
.yf{bottom:460.544327pt;}
.y116{bottom:461.559347pt;}
.y82{bottom:466.681200pt;}
.y4a{bottom:471.160667pt;}
.y141{bottom:473.081067pt;}
.yb0{bottom:474.361333pt;}
.ye{bottom:475.264160pt;}
.y115{bottom:475.639347pt;}
.y81{bottom:476.608767pt;}
.y113{bottom:485.559347pt;}
.y49{bottom:485.561600pt;}
.y114{bottom:485.880147pt;}
.yaf{bottom:488.760800pt;}
.yd{bottom:489.663627pt;}
.y140{bottom:490.041067pt;}
.y13f{bottom:490.042633pt;}
.y80{bottom:491.007767pt;}
.y48{bottom:493.880400pt;}
.yca{bottom:494.520533pt;}
.y47{bottom:499.961400pt;}
.yae{bottom:503.321333pt;}
.yc{bottom:504.384193pt;}
.y7f{bottom:505.406767pt;}
.y13e{bottom:506.680133pt;}
.yc9{bottom:507.000933pt;}
.y110{bottom:507.959747pt;}
.y112{bottom:510.199480pt;}
.y111{bottom:510.679880pt;}
.y46{bottom:514.360400pt;}
.yfb{bottom:514.681200pt;}
.y10f{bottom:516.920147pt;}
.yad{bottom:517.880400pt;}
.yb{bottom:519.104027pt;}
.y7e{bottom:520.126600pt;}
.y13d{bottom:525.560533pt;}
.yc8{bottom:528.759733pt;}
.y45{bottom:528.761667pt;}
.ya{bottom:533.503360pt;}
.y9{bottom:533.505760pt;}
.y7d{bottom:534.204767pt;}
.y10e{bottom:537.079347pt;}
.y44{bottom:543.160667pt;}
.yab{bottom:547.320800pt;}
.yac{bottom:547.640133pt;}
.y13c{bottom:548.920400pt;}
.y7c{bottom:548.924600pt;}
.y10d{bottom:551.159347pt;}
.yf9{bottom:554.676067pt;}
.yfa{bottom:554.681600pt;}
.y43{bottom:557.880933pt;}
.y42{bottom:557.881267pt;}
.y10b{bottom:559.799080pt;}
.y8{bottom:562.303760pt;}
.y7b{bottom:563.323600pt;}
.ya9{bottom:563.961467pt;}
.yaa{bottom:564.280800pt;}
.y10c{bottom:566.198947pt;}
.y13b{bottom:567.800800pt;}
.y41{bottom:572.280267pt;}
.y7a{bottom:577.722600pt;}
.y10a{bottom:579.000147pt;}
.ya8{bottom:580.281200pt;}
.y40{bottom:586.681200pt;}
.y109{bottom:587.480147pt;}
.y13a{bottom:591.160667pt;}
.y79{bottom:592.121600pt;}
.yf8{bottom:596.281733pt;}
.y108{bottom:600.758947pt;}
.y3f{bottom:601.401333pt;}
.y78{bottom:606.521067pt;}
.y77{bottom:606.521800pt;}
.y7{bottom:608.709827pt;}
.y139{bottom:608.760800pt;}
.ya7{bottom:610.041067pt;}
.y107{bottom:610.359613pt;}
.yf7{bottom:611.000533pt;}
.y3e{bottom:615.803500pt;}
.y76{bottom:621.241633pt;}
.y6{bottom:622.467160pt;}
.ya6{bottom:624.115467pt;}
.yf5{bottom:625.555800pt;}
.yf6{bottom:625.561067pt;}
.y138{bottom:626.360800pt;}
.y137{bottom:626.360933pt;}
.y3d{bottom:630.202500pt;}
.y75{bottom:635.961467pt;}
.y5{bottom:636.545327pt;}
.ya5{bottom:639.481467pt;}
.yf4{bottom:639.800800pt;}
.yf3{bottom:639.802733pt;}
.y106{bottom:642.679880pt;}
.y136{bottom:643.960933pt;}
.y3c{bottom:644.601500pt;}
.y74{bottom:650.360800pt;}
.y73{bottom:650.361233pt;}
.y4{bottom:650.623493pt;}
.ya4{bottom:653.556533pt;}
.yf2{bottom:654.201733pt;}
.y3b{bottom:659.321333pt;}
.y3a{bottom:659.321667pt;}
.y135{bottom:662.841333pt;}
.y72{bottom:665.081067pt;}
.y71{bottom:665.081500pt;}
.ya3{bottom:667.960533pt;}
.yf1{bottom:669.076333pt;}
.y39{bottom:673.720667pt;}
.y105{bottom:678.520280pt;}
.y70{bottom:679.801333pt;}
.y6f{bottom:679.801667pt;}
.ya2{bottom:682.676533pt;}
.yf0{bottom:683.321333pt;}
.y134{bottom:686.520533pt;}
.y6e{bottom:694.200667pt;}
.y3{bottom:694.463360pt;}
.ya0{bottom:697.080267pt;}
.ya1{bottom:697.080533pt;}
.yef{bottom:697.720667pt;}
.y132{bottom:702.840400pt;}
.y38{bottom:706.039867pt;}
.y9f{bottom:711.796267pt;}
.yee{bottom:712.121600pt;}
.y36{bottom:717.875667pt;}
.y133{bottom:719.800267pt;}
.y104{bottom:720.440513pt;}
.y37{bottom:721.080533pt;}
.y2{bottom:722.304160pt;}
.y6d{bottom:723.321733pt;}
.y9d{bottom:726.197067pt;}
.y9e{bottom:726.200267pt;}
.yed{bottom:726.521067pt;}
.y130{bottom:732.920933pt;}
.y103{bottom:734.839513pt;}
.y35{bottom:734.841333pt;}
.y6c{bottom:738.043233pt;}
.y131{bottom:739.640133pt;}
.y9c{bottom:740.603267pt;}
.yec{bottom:740.920400pt;}
.y33{bottom:746.673367pt;}
.y102{bottom:749.560113pt;}
.y1{bottom:750.143493pt;}
.y34{bottom:750.200267pt;}
.y6b{bottom:752.763067pt;}
.yeb{bottom:755.321333pt;}
.yea{bottom:755.321667pt;}
.y9b{bottom:755.800267pt;}
.y101{bottom:763.959113pt;}
.y32{bottom:763.959867pt;}
.y6a{bottom:767.162067pt;}
.y12f{bottom:769.720667pt;}
.ye9{bottom:769.721833pt;}
.y30{bottom:775.808800pt;}
.y100{bottom:778.678947pt;}
.yff{bottom:778.680747pt;}
.y31{bottom:779.000533pt;}
.y69{bottom:781.561067pt;}
.y68{bottom:781.561833pt;}
.ye8{bottom:784.120833pt;}
.y9a{bottom:785.400400pt;}
.y99{bottom:785.404667pt;}
.yfe{bottom:793.079747pt;}
.y12e{bottom:793.080533pt;}
.y2f{bottom:793.082467pt;}
.y67{bottom:796.127667pt;}
.ye7{bottom:798.199000pt;}
.y98{bottom:800.120667pt;}
.y2e{bottom:807.481467pt;}
.yfd{bottom:807.800013pt;}
.y66{bottom:810.680667pt;}
.ye5{bottom:811.001467pt;}
.ye6{bottom:813.881333pt;}
.y97{bottom:814.840800pt;}
.h27{height:15.992187pt;}
.h68{height:18.311198pt;}
.h20{height:24.335938pt;}
.h2c{height:24.863281pt;}
.h6c{height:26.171875pt;}
.h2f{height:28.507812pt;}
.h4d{height:32.250000pt;}
.h57{height:35.460938pt;}
.h5f{height:36.851562pt;}
.h40{height:37.546875pt;}
.h67{height:37.930339pt;}
.h49{height:38.242188pt;}
.h47{height:38.296875pt;}
.he{height:38.937500pt;}
.h3a{height:39.238281pt;}
.h3d{height:39.640625pt;}
.h3b{height:39.892253pt;}
.h3f{height:39.912109pt;}
.h3e{height:40.312500pt;}
.h48{height:40.328125pt;}
.h3c{height:40.984375pt;}
.h5e{height:41.656250pt;}
.h41{height:42.328125pt;}
.h4a{height:43.000000pt;}
.h4c{height:44.500000pt;}
.h79{height:45.195312pt;}
.h55{height:45.890625pt;}
.h13{height:46.431966pt;}
.h25{height:47.109375pt;}
.h21{height:47.281250pt;}
.h1c{height:47.739909pt;}
.h14{height:47.763672pt;}
.h23{height:47.976562pt;}
.h7a{height:48.671875pt;}
.h78{height:48.755208pt;}
.h10{height:49.072266pt;}
.h2b{height:49.367188pt;}
.h9{height:49.726562pt;}
.h63{height:50.072917pt;}
.h8{height:50.380859pt;}
.h1e{height:50.385659pt;}
.h56{height:50.401926pt;}
.h4e{height:50.406059pt;}
.h26{height:50.417126pt;}
.h2a{height:50.731771pt;}
.h38{height:51.009766pt;}
.hc{height:51.035156pt;}
.h44{height:51.047956pt;}
.h77{height:51.062500pt;}
.h36{height:51.390625pt;}
.h7b{height:51.453125pt;}
.h22{height:51.663737pt;}
.h50{height:51.689453pt;}
.ha{height:52.148438pt;}
.h85{height:52.158438pt;}
.hd{height:52.343750pt;}
.h1a{height:52.843750pt;}
.h54{height:52.971680pt;}
.h43{height:52.998047pt;}
.hf{height:53.078125pt;}
.h2e{height:53.539062pt;}
.h53{height:53.625651pt;}
.h1f{height:53.652344pt;}
.h11{height:53.750000pt;}
.h1d{height:54.306641pt;}
.h5d{height:54.421875pt;}
.h64{height:54.929688pt;}
.h5b{height:54.933594pt;}
.hb{height:54.960938pt;}
.h5c{height:55.093750pt;}
.h5a{height:55.587565pt;}
.h32{height:55.615234pt;}
.h4f{height:56.002604pt;}
.h24{height:56.269531pt;}
.h30{height:56.320312pt;}
.h39{height:56.437500pt;}
.h12{height:56.923828pt;}
.h31{height:57.015625pt;}
.h34{height:57.710938pt;}
.h4b{height:57.801050pt;}
.h82{height:58.406250pt;}
.h84{height:59.101562pt;}
.h6d{height:59.955729pt;}
.h81{height:60.492188pt;}
.h80{height:61.187500pt;}
.h6f{height:61.882812pt;}
.h2d{height:62.578125pt;}
.h19{height:63.162859pt;}
.h83{height:63.273438pt;}
.h15{height:63.968750pt;}
.h1b{height:64.446193pt;}
.h18{height:65.359375pt;}
.h60{height:66.750000pt;}
.h66{height:67.392578pt;}
.h42{height:68.493625pt;}
.h7e{height:69.531250pt;}
.h33{height:70.009766pt;}
.h6e{height:72.626953pt;}
.h6b{height:73.244792pt;}
.h65{height:75.980326pt;}
.h35{height:79.960938pt;}
.h6a{height:86.218750pt;}
.h4{height:90.390625pt;}
.h6{height:91.085938pt;}
.h2{height:91.781250pt;}
.h5{height:93.171875pt;}
.h3{height:93.867188pt;}
.h7{height:96.648438pt;}
.h74{height:98.734375pt;}
.h75{height:99.429688pt;}
.h69{height:100.125000pt;}
.h7c{height:133.500000pt;}
.h7f{height:134.195312pt;}
.h76{height:164.093750pt;}
.h7d{height:171.340495pt;}
.h61{height:185.648438pt;}
.h62{height:195.634766pt;}
.h73{height:253.212891pt;}
.h46{height:901.333333pt;}
.h45{height:901.360933pt;}
.h71{height:902.642267pt;}
.h72{height:902.666667pt;}
.h51{height:904.562267pt;}
.h52{height:904.666667pt;}
.h28{height:905.842267pt;}
.h29{height:906.000000pt;}
.h59{height:908.000000pt;}
.h58{height:908.215827pt;}
.h0{height:909.305627pt;}
.h1{height:909.333333pt;}
.h70{height:909.362267pt;}
.h17{height:910.000000pt;}
.h37{height:910.002267pt;}
.h16{height:910.322267pt;}
.w1{width:593.333333pt;}
.w0{width:593.453307pt;}
.wc{width:594.546227pt;}
.wd{width:594.666667pt;}
.w5{width:595.333333pt;}
.w4{width:595.442267pt;}
.wf{width:596.000000pt;}
.we{width:596.081987pt;}
.w7{width:596.666667pt;}
.w6{width:596.722267pt;}
.w9{width:598.000000pt;}
.w8{width:598.002267pt;}
.wa{width:599.280933pt;}
.wb{width:599.333333pt;}
.w2{width:601.842267pt;}
.w3{width:602.000000pt;}
.x0{left:0.000000pt;}
.x41{left:1.401333pt;}
.x76{left:68.280267pt;}
.x6c{left:69.600533pt;}
.x66{left:70.518833pt;}
.x63{left:71.480400pt;}
.x1{left:72.549787pt;}
.xe{left:73.509253pt;}
.xc9{left:81.720267pt;}
.x4{left:85.349520pt;}
.x75{left:87.800800pt;}
.x77{left:88.760267pt;}
.x64{left:89.721200pt;}
.x20{left:91.109253pt;}
.xf{left:92.384253pt;}
.xd0{left:94.200667pt;}
.xcc{left:95.161600pt;}
.x5f{left:96.121067pt;}
.x23{left:100.390587pt;}
.x48{left:102.215267pt;}
.x3b{left:103.161200pt;}
.x27{left:104.120667pt;}
.x60{left:105.081600pt;}
.x74{left:107.000533pt;}
.x24{left:113.830453pt;}
.x4a{left:115.960933pt;}
.x1e{left:117.350453pt;}
.x80{left:119.480933pt;}
.x55{left:120.443433pt;}
.x44{left:121.401333pt;}
.x5{left:122.470187pt;}
.x36{left:123.640800pt;}
.x49{left:124.921333pt;}
.x69{left:126.521067pt;}
.x78{left:128.760800pt;}
.x1f{left:130.790453pt;}
.x15{left:136.550187pt;}
.x6a{left:139.960933pt;}
.x87{left:142.202133pt;}
.x79{left:143.161600pt;}
.xce{left:144.761200pt;}
.x38{left:145.720667pt;}
.x8a{left:147.001067pt;}
.x2e{left:149.560933pt;}
.x9d{left:152.120667pt;}
.x6d{left:154.041067pt;}
.x6{left:155.430587pt;}
.xd2{left:158.201200pt;}
.xa6{left:159.481467pt;}
.xad{left:160.496280pt;}
.x9a{left:163.641600pt;}
.xd3{left:164.601067pt;}
.xcd{left:166.840800pt;}
.x50{left:169.720667pt;}
.x73{left:171.320267pt;}
.xa7{left:172.281333pt;}
.x7e{left:173.561467pt;}
.x72{left:178.357900pt;}
.xa{left:181.030187pt;}
.x52{left:182.201200pt;}
.x8b{left:183.481467pt;}
.xa2{left:185.081067pt;}
.x51{left:188.280267pt;}
.xbc{left:191.215480pt;}
.x4d{left:192.761200pt;}
.x6e{left:195.960400pt;}
.x8c{left:197.561600pt;}
.x95{left:198.840400pt;}
.x9c{left:200.760800pt;}
.x53{left:201.720267pt;}
.x45{left:203.640667pt;}
.xb{left:205.670320pt;}
.xa9{left:206.575880pt;}
.x5c{left:211.641600pt;}
.x3e{left:217.401333pt;}
.x7{left:218.470187pt;}
.x42{left:219.641067pt;}
.x97{left:220.600533pt;}
.x2{left:221.669387pt;}
.x8d{left:224.122133pt;}
.xb4{left:225.775613pt;}
.xd{left:226.774787pt;}
.xc{left:227.749920pt;}
.x7a{left:228.920933pt;}
.x3f{left:230.841333pt;}
.x1a{left:232.229387pt;}
.x82{left:239.161600pt;}
.x65{left:240.121067pt;}
.xac{left:241.455347pt;}
.x2f{left:243.000933pt;}
.x96{left:244.600533pt;}
.x7b{left:245.561467pt;}
.x1b{left:247.270453pt;}
.x9b{left:250.681200pt;}
.x6f{left:253.240267pt;}
.x30{left:254.841333pt;}
.x11{left:255.910053pt;}
.x3{left:258.149787pt;}
.x57{left:264.761200pt;}
.x9e{left:267.641067pt;}
.x12{left:271.589787pt;}
.x83{left:272.762267pt;}
.xcb{left:274.681200pt;}
.x31{left:276.280800pt;}
.x98{left:277.240267pt;}
.x58{left:278.520533pt;}
.x88{left:279.481467pt;}
.x46{left:285.241200pt;}
.x85{left:286.202133pt;}
.x84{left:287.480933pt;}
.x5d{left:288.440400pt;}
.x4e{left:292.600533pt;}
.x13{left:293.990187pt;}
.x32{left:296.760800pt;}
.x90{left:298.681200pt;}
.x7c{left:299.961467pt;}
.x47{left:301.240267pt;}
.x92{left:302.523700pt;}
.x2a{left:303.481467pt;}
.x71{left:304.440933pt;}
.x9f{left:305.721200pt;}
.x5e{left:308.920400pt;}
.xca{left:309.881333pt;}
.x4f{left:311.161600pt;}
.x91{left:312.761200pt;}
.x59{left:314.041467pt;}
.x5a{left:315.320267pt;}
.x99{left:318.521067pt;}
.xc5{left:324.655480pt;}
.x2b{left:326.841333pt;}
.x5b{left:329.400400pt;}
.xaf{left:330.736013pt;}
.x8{left:332.389520pt;}
.xd1{left:333.560533pt;}
.x7d{left:340.281200pt;}
.xa8{left:342.200267pt;}
.x56{left:344.760800pt;}
.x94{left:347.002000pt;}
.x89{left:348.601600pt;}
.x25{left:349.670320pt;}
.x9{left:352.550187pt;}
.xbe{left:353.775080pt;}
.x1c{left:355.749387pt;}
.xb0{left:357.935213pt;}
.x67{left:358.840800pt;}
.xc2{left:360.174947pt;}
.xb7{left:363.054947pt;}
.x61{left:365.561600pt;}
.x26{left:368.870053pt;}
.xa4{left:371.640667pt;}
.xae{left:373.614947pt;}
.x1d{left:374.629787pt;}
.xc8{left:377.721200pt;}
.x62{left:379.960933pt;}
.xb8{left:381.935213pt;}
.x70{left:386.681600pt;}
.xc3{left:387.695080pt;}
.x37{left:388.600533pt;}
.x7f{left:389.880933pt;}
.xb6{left:391.535880pt;}
.xba{left:396.655480pt;}
.xbd{left:397.614947pt;}
.xc0{left:398.575880pt;}
.x8e{left:399.802267pt;}
.xc4{left:403.055347pt;}
.x4b{left:403.960933pt;}
.xbb{left:404.975747pt;}
.xbf{left:407.855747pt;}
.xb1{left:409.455347pt;}
.xb3{left:410.416280pt;}
.x39{left:411.641067pt;}
.xab{left:412.656013pt;}
.x28{left:416.441467pt;}
.x4c{left:419.321333pt;}
.x33{left:425.081067pt;}
.x6b{left:426.361333pt;}
.x3a{left:427.320800pt;}
.xa0{left:430.521467pt;}
.x29{left:435.960533pt;}
.xd4{left:437.880933pt;}
.x21{left:442.150320pt;}
.xb9{left:446.255080pt;}
.xc1{left:449.775080pt;}
.x17{left:451.430053pt;}
.xcf{left:453.241200pt;}
.x34{left:454.521467pt;}
.xc6{left:457.776147pt;}
.xb2{left:458.735613pt;}
.x3c{left:459.641067pt;}
.x22{left:462.630320pt;}
.x18{left:463.910587pt;}
.xb5{left:465.135480pt;}
.xa5{left:467.961467pt;}
.x8f{left:471.162133pt;}
.x3d{left:472.760267pt;}
.x86{left:474.361333pt;}
.xc7{left:479.215613pt;}
.x93{left:481.401333pt;}
.x16{left:482.470187pt;}
.x19{left:483.429653pt;}
.xaa{left:485.296147pt;}
.x2c{left:486.521067pt;}
.x10{left:487.910587pt;}
.x68{left:489.720267pt;}
.x14{left:490.790453pt;}
.xa1{left:496.121600pt;}
.x2d{left:499.960933pt;}
.x54{left:504.761200pt;}
.x40{left:507.000933pt;}
.xa3{left:512.760800pt;}
.x43{left:515.640667pt;}
.x81{left:519.162133pt;}
.x35{left:522.040533pt;}
}




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