
    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_fb7cb1becd0de3fadd9d53ef.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_9dba2e6989ceccb77fbfffa9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_77a88e052f5945aa2c099d8a.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_45fa370964a01982b7d7cbb2.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b99239026b393513001bd547.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_b8ce7ee247f0aaae1d81b264.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_fc12f522c406cef435790b14.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_f0a6663ff6c7d5518a545a9e.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_a329ecf0c94b17464ef6471c.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_6b8d408335f5fa39e0cb84a7.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_91bace9d18c0aebf58b06427.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_716e0c61bc45da3b974731c1.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_b942e34cf9906a1cfe6bb806.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_add219633c0954492f92e2b0.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_8f4f5a89eb77290783d25de6.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_b2875fcb9949d9ea2e739b0e.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_c60ecf4be10326958978919e.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_1cb560b801377613260e36a8.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_773b7f7f1d8349bd2c799433.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_c8bc56a1bba2aeb431b7f06a.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_64bd41a2c0c276623814c651.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_a9b0b013ca8b1a435c43bb80.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_0b09e4bcd4e35fe72cf043c4.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_3a1f6c33251c3bec632aa03b.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_49e957ee7c26e9122b961898.woff2')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_6d2c06fb6721d790f07ea0e9.woff2')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_1858d7e54dd446b0523751e7.woff2')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_750b2bbc10ac18961b430517.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_a689ea6a74f3463f6a729bc2.woff2')format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url('chunks/assets/font_c60999ceda3fc58f04bc4631.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_2f6797cbeb18f55dfd405836.woff2')format("woff");}.ff1f{font-family:ff1f;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;}
.m1c{transform:matrix(0.133152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133152,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.167323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167323,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.167391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167391,0.000000,0.000000,0.250000,0,0);}
.m3d{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);}
.m6c{transform:matrix(0.191860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191860,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.204819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204819,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.209016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209016,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.212121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212121,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.213855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213855,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.213918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213918,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.218619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218619,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.218992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218992,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.219697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219697,0.000000,0.000000,0.250000,0,0);}
.m2c{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);}
.m8{transform:matrix(0.222441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222441,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.222603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222603,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.222656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222656,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.224684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224684,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.224806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224806,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.225410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225410,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.226695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226695,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.228659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228659,0.000000,0.000000,0.250000,0,0);}
.m32{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);}
.m29{transform:matrix(0.231707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231707,0.000000,0.000000,0.250000,0,0);}
.m70{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);}
.m58{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);}
.m11{transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.234940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234940,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.235955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235955,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);}
.m4d{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);}
.m33{transform:matrix(0.237179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237179,0.000000,0.000000,0.250000,0,0);}
.m6e{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);}
.m6f{transform:matrix(0.238235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238235,0.000000,0.000000,0.250000,0,0);}
.ma{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);}
.m73{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);}
.m19{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);}
.m36{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);}
.m5e{transform:matrix(0.241525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241525,0.000000,0.000000,0.250000,0,0);}
.mb{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);}
.m44{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);}
.mf{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);}
.m4a{transform:matrix(0.243590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243590,0.000000,0.000000,0.250000,0,0);}
.m27{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);}
.m41{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);}
.m57{transform:matrix(0.244565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244565,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.246429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246429,0.000000,0.000000,0.250000,0,0);}
.m12{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);}
.m15{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);}
.m4e{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);}
.m74{transform:matrix(0.247126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247126,0.000000,0.000000,0.250000,0,0);}
.m1e{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);}
.m31{transform:matrix(0.252976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252976,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.253125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253125,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.253165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253165,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.253191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253191,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.253623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253623,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.253883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253883,0.000000,0.000000,0.250000,0,0);}
.m4b{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);}
.m14{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);}
.m6b{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);}
.m3f{transform:matrix(0.256849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256849,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.259146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259146,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.259534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259534,0.000000,0.000000,0.250000,0,0);}
.m51{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);}
.m2a{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);}
.m17{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);}
.m1a{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);}
.m24{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);}
.m5c{transform:matrix(0.265432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265432,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.266892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266892,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.267045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267045,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.267123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267123,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.267647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267647,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.269802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269802,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.271341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271341,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.272152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272152,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.272436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272436,0.000000,0.000000,0.250000,0,0);}
.m25{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);}
.m42{transform:matrix(0.275362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275362,0.000000,0.000000,0.250000,0,0);}
.m4c{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);}
.m47{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);}
.m45{transform:matrix(0.277397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277397,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.277439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277439,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.278846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278846,0.000000,0.000000,0.250000,0,0);}
.m2b{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);}
.m35{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.282051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282051,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.282895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282895,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.284351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284351,0.000000,0.000000,0.250000,0,0);}
.m3c{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);}
.m13{transform:matrix(0.286932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286932,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.291139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291139,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.292208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292208,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.292683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292683,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.293478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293478,0.000000,0.000000,0.250000,0,0);}
.m16{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);}
.m56{transform:matrix(0.299383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299383,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.301948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301948,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.304054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304054,0.000000,0.000000,0.250000,0,0);}
.m30{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);}
.m40{transform:matrix(0.306667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306667,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.324074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324074,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.377778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377778,0.000000,0.000000,0.250000,0,0);}
.m5f{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);}
.m21{transform:matrix(0.628261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.628261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.628261,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.690217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690217,0.000000,0.000000,0.250000,0,0);}
.m2f{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);}
.m1f{transform:matrix(0.785326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.785326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.785326,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-1.437000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.443750px;}
.v1{vertical-align:2.887500px;}
.ls6c{letter-spacing:-22.817025px;}
.ls1a{letter-spacing:-19.777725px;}
.ls52{letter-spacing:-17.334000px;}
.ls6b{letter-spacing:-15.973500px;}
.ls14{letter-spacing:-13.699800px;}
.ls12{letter-spacing:-11.939400px;}
.ls15{letter-spacing:-9.830700px;}
.ls87{letter-spacing:-9.726300px;}
.ls63{letter-spacing:-9.548400px;}
.ls13{letter-spacing:-9.171900px;}
.ls17{letter-spacing:-9.150000px;}
.ls20{letter-spacing:-9.127800px;}
.ls5d{letter-spacing:-8.014200px;}
.ls1c{letter-spacing:-7.722000px;}
.ls6f{letter-spacing:-7.514775px;}
.ls4d{letter-spacing:-7.388550px;}
.ls9a{letter-spacing:-7.320600px;}
.ls89{letter-spacing:-6.946275px;}
.ls1f{letter-spacing:-6.316200px;}
.ls34{letter-spacing:-6.161925px;}
.ls1d{letter-spacing:-5.905500px;}
.ls1e{letter-spacing:-5.787900px;}
.ls66{letter-spacing:-5.569200px;}
.ls69{letter-spacing:-5.540400px;}
.ls50{letter-spacing:-5.534100px;}
.ls67{letter-spacing:-4.989600px;}
.ls84{letter-spacing:-4.902375px;}
.ls49{letter-spacing:-4.639800px;}
.ls33{letter-spacing:-4.620000px;}
.ls76{letter-spacing:-4.556475px;}
.ls23{letter-spacing:-4.440225px;}
.ls98{letter-spacing:-4.381875px;}
.ls8f{letter-spacing:-4.210275px;}
.ls5c{letter-spacing:-3.838125px;}
.ls99{letter-spacing:-3.791025px;}
.ls4a{letter-spacing:-3.749850px;}
.ls96{letter-spacing:-3.650625px;}
.ls41{letter-spacing:-3.563175px;}
.ls74{letter-spacing:-3.529575px;}
.ls18{letter-spacing:-3.514500px;}
.ls2d{letter-spacing:-3.504675px;}
.ls62{letter-spacing:-3.376350px;}
.ls8e{letter-spacing:-3.367125px;}
.ls4f{letter-spacing:-3.249900px;}
.ls48{letter-spacing:-3.204150px;}
.ls6e{letter-spacing:-3.106950px;}
.ls4e{letter-spacing:-2.967300px;}
.ls42{letter-spacing:-2.852850px;}
.ls55{letter-spacing:-2.587500px;}
.ls8d{letter-spacing:-2.529450px;}
.ls56{letter-spacing:-2.250900px;}
.ls46{letter-spacing:-2.142000px;}
.ls3f{letter-spacing:-2.136750px;}
.ls85{letter-spacing:-2.103750px;}
.ls8c{letter-spacing:-1.686300px;}
.ls72{letter-spacing:-1.670850px;}
.ls97{letter-spacing:-1.606500px;}
.ls25{letter-spacing:-1.587300px;}
.ls35{letter-spacing:-1.541925px;}
.ls70{letter-spacing:-1.501500px;}
.ls91{letter-spacing:-1.462500px;}
.ls40{letter-spacing:-1.426425px;}
.ls71{letter-spacing:-1.353000px;}
.ls8b{letter-spacing:-0.843150px;}
.ls92{letter-spacing:-0.794325px;}
.ls2b{letter-spacing:-0.780000px;}
.ls27{letter-spacing:-0.768075px;}
.ls29{letter-spacing:-0.763125px;}
.ls54{letter-spacing:-0.750000px;}
.ls95{letter-spacing:-0.731250px;}
.ls3e{letter-spacing:-0.710325px;}
.ls86{letter-spacing:-0.701250px;}
.ls73{letter-spacing:-0.687300px;}
.ls5b{letter-spacing:-0.613125px;}
.ls6d{letter-spacing:-0.496125px;}
.ls16{letter-spacing:0.000000px;}
.ls61{letter-spacing:0.678300px;}
.ls36{letter-spacing:0.710325px;}
.ls10{letter-spacing:0.713400px;}
.ls5a{letter-spacing:0.728175px;}
.ls7d{letter-spacing:0.731250px;}
.ls32{letter-spacing:0.762300px;}
.ls1{letter-spacing:0.768075px;}
.ls57{letter-spacing:0.778050px;}
.ls26{letter-spacing:0.796950px;}
.ls78{letter-spacing:0.843150px;}
.ls51{letter-spacing:1.285725px;}
.ls60{letter-spacing:1.352325px;}
.ls75{letter-spacing:1.374750px;}
.ls37{letter-spacing:1.426425px;}
.lse{letter-spacing:1.426800px;}
.ls7a{letter-spacing:1.462500px;}
.ls43{letter-spacing:1.478400px;}
.ls83{letter-spacing:1.480500px;}
.ls6a{letter-spacing:1.518000px;}
.ls2f{letter-spacing:1.518825px;}
.ls44{letter-spacing:1.540500px;}
.ls9{letter-spacing:1.541925px;}
.ls22{letter-spacing:1.550250px;}
.ls53{letter-spacing:1.561950px;}
.ls19{letter-spacing:1.680000px;}
.ls38{letter-spacing:2.136750px;}
.lsf{letter-spacing:2.140200px;}
.ls82{letter-spacing:2.159400px;}
.ls7c{letter-spacing:2.193750px;}
.ls68{letter-spacing:2.197425px;}
.ls45{letter-spacing:2.223375px;}
.ls30{letter-spacing:2.281125px;}
.ls8{letter-spacing:2.310000px;}
.ls5e{letter-spacing:2.311875px;}
.ls77{letter-spacing:2.327550px;}
.ls28{letter-spacing:2.340000px;}
.ls47{letter-spacing:2.533275px;}
.ls3a{letter-spacing:2.852850px;}
.ls7b{letter-spacing:2.919375px;}
.ls2c{letter-spacing:3.000150px;}
.ls31{letter-spacing:3.037650px;}
.ls3{letter-spacing:3.078075px;}
.ls21{letter-spacing:3.148800px;}
.ls94{letter-spacing:3.149250px;}
.ls88{letter-spacing:3.506550px;}
.ls3c{letter-spacing:3.563175px;}
.ls11{letter-spacing:3.567000px;}
.ls2a{letter-spacing:3.586800px;}
.ls7e{letter-spacing:3.650625px;}
.ls2{letter-spacing:3.851925px;}
.ls5f{letter-spacing:3.901950px;}
.ls39{letter-spacing:4.279275px;}
.ls7f{letter-spacing:4.381875px;}
.ls1b{letter-spacing:4.486275px;}
.ls5{letter-spacing:4.620000px;}
.ls93{letter-spacing:4.729350px;}
.ls90{letter-spacing:4.889100px;}
.ls79{letter-spacing:5.113125px;}
.ls59{letter-spacing:5.184375px;}
.ls6{letter-spacing:5.388075px;}
.ls58{letter-spacing:5.424975px;}
.ls24{letter-spacing:5.510400px;}
.ls3b{letter-spacing:5.705700px;}
.ls80{letter-spacing:5.844375px;}
.ls7{letter-spacing:6.161925px;}
.ls8a{letter-spacing:6.180000px;}
.ls3d{letter-spacing:6.416025px;}
.ls4{letter-spacing:6.930000px;}
.ls65{letter-spacing:7.132125px;}
.ls81{letter-spacing:7.306875px;}
.ls0{letter-spacing:7.698075px;}
.lsa{letter-spacing:8.471925px;}
.lsb{letter-spacing:9.240000px;}
.lsc{letter-spacing:10.008075px;}
.ls64{letter-spacing:10.695300px;}
.ls2e{letter-spacing:10.781925px;}
.lsd{letter-spacing:12.318075px;}
.ls4b{letter-spacing:13.091925px;}
.ls4c{letter-spacing:13.860000px;}
.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;}
._1f{margin-left:-64.972446px;}
._24{margin-left:-58.781261px;}
._29{margin-left:-49.016631px;}
._e{margin-left:-44.095436px;}
._1b{margin-left:-34.698606px;}
._28{margin-left:-30.624183px;}
._1c{margin-left:-21.139003px;}
._2a{margin-left:-18.102486px;}
._1a{margin-left:-13.247309px;}
._2b{margin-left:-11.904728px;}
._25{margin-left:-10.284428px;}
._13{margin-left:-8.816962px;}
._17{margin-left:-6.878025px;}
._a{margin-left:-5.751900px;}
._14{margin-left:-4.364668px;}
._1d{margin-left:-2.723100px;}
._b{margin-left:-1.628550px;}
._16{width:1.443750px;}
._5{width:2.552550px;}
._1{width:4.100250px;}
._8{width:5.341875px;}
._4{width:6.872250px;}
._7{width:8.373750px;}
._d{width:9.407475px;}
._6{width:10.770375px;}
._2{width:12.358500px;}
._9{width:14.200725px;}
._f{width:15.979425px;}
._3{width:17.267250px;}
._10{width:18.687900px;}
._c{width:20.056575px;}
._15{width:21.431025px;}
._12{width:22.509718px;}
._11{width:24.214575px;}
._19{width:25.274700px;}
._0{width:27.046800px;}
._18{width:28.364336px;}
._20{width:29.680173px;}
._27{width:31.031143px;}
._26{width:32.950071px;}
._2c{width:35.592937px;}
._2d{width:37.963002px;}
._23{width:56.075250px;}
._21{width:62.664525px;}
._22{width:69.172950px;}
._1e{width:74.162550px;}
.fc0{color:transparent;}
.fs27{font-size:17.250000px;}
.fs13{font-size:19.500000px;}
.fs24{font-size:33.750000px;}
.fs26{font-size:34.500000px;}
.fs18{font-size:39.000000px;}
.fs15{font-size:41.250000px;}
.fs14{font-size:43.500000px;}
.fs19{font-size:44.250000px;}
.fs17{font-size:45.750000px;}
.fs7{font-size:48.000000px;}
.fs8{font-size:48.750000px;}
.fse{font-size:49.500000px;}
.fs21{font-size:51.750000px;}
.fs9{font-size:52.500000px;}
.fsb{font-size:54.000000px;}
.fsa{font-size:54.750000px;}
.fsd{font-size:55.500000px;}
.fsf{font-size:56.250000px;}
.fs1f{font-size:57.000000px;}
.fsc{font-size:57.750000px;}
.fs12{font-size:58.500000px;}
.fs22{font-size:58.983600px;}
.fs1c{font-size:59.250000px;}
.fs11{font-size:60.000000px;}
.fs1e{font-size:60.750000px;}
.fs1d{font-size:61.500000px;}
.fs1a{font-size:62.250000px;}
.fs20{font-size:63.000000px;}
.fs2c{font-size:63.750000px;}
.fs31{font-size:64.500000px;}
.fs32{font-size:65.250000px;}
.fs10{font-size:66.000000px;}
.fs23{font-size:66.750000px;}
.fs25{font-size:67.500000px;}
.fs16{font-size:69.000000px;}
.fs2e{font-size:72.750000px;}
.fs2f{font-size:74.250000px;}
.fs30{font-size:75.000000px;}
.fs2d{font-size:75.750000px;}
.fs1b{font-size:86.250000px;}
.fs6{font-size:88.500000px;}
.fs2{font-size:91.500000px;}
.fs5{font-size:95.250000px;}
.fs3{font-size:96.000000px;}
.fs1{font-size:96.750000px;}
.fs4{font-size:98.250000px;}
.fs0{font-size:99.000000px;}
.fs29{font-size:175.500000px;}
.fs2b{font-size:176.250000px;}
.fs28{font-size:177.000000px;}
.fs2a{font-size:179.250000px;}
.y0{bottom:0.000000px;}
.y2c{bottom:98.416650px;}
.y88{bottom:99.496050px;}
.y10a{bottom:122.895300px;}
.y109{bottom:122.900925px;}
.y2b{bottom:126.496050px;}
.y2a{bottom:126.499050px;}
.y5d{bottom:127.936875px;}
.yba{bottom:130.456050px;}
.y87{bottom:130.458263px;}
.y29{bottom:134.416050px;}
.y108{bottom:138.735300px;}
.y107{bottom:138.736350px;}
.ye7{bottom:141.609525px;}
.y5c{bottom:144.137813px;}
.y86{bottom:146.296200px;}
.y85{bottom:146.297025px;}
.y105{bottom:154.935450px;}
.y106{bottom:154.936350px;}
.y28{bottom:158.176725px;}
.y5b{bottom:159.977925px;}
.ye6{bottom:160.695900px;}
.yb9{bottom:162.856350px;}
.yb8{bottom:162.858562px;}
.y27{bottom:174.375600px;}
.y26{bottom:174.378150px;}
.y5a{bottom:176.176800px;}
.yb7{bottom:178.696500px;}
.y84{bottom:179.416650px;}
.y25{bottom:190.577025px;}
.y59{bottom:192.378263px;}
.y83{bottom:194.536500px;}
.y82{bottom:194.895750px;}
.ye5{bottom:202.815900px;}
.y24{bottom:206.778112px;}
.y58{bottom:208.216200px;}
.y57{bottom:208.218787px;}
.yb6{bottom:211.456050px;}
.y23{bottom:222.616050px;}
.y22{bottom:222.618975px;}
.y56{bottom:224.417662px;}
.y81{bottom:228.377662px;}
.y21{bottom:238.817850px;}
.ye4{bottom:240.250875px;}
.y55{bottom:240.255600px;}
.yb5{bottom:241.698075px;}
.y80{bottom:244.215600px;}
.y7f{bottom:244.576500px;}
.y20{bottom:255.016725px;}
.y54{bottom:256.456650px;}
.yb4{bottom:257.896950px;}
.ye3{bottom:259.337250px;}
.y1f{bottom:271.215600px;}
.y53{bottom:272.655900px;}
.yb3{bottom:273.737475px;}
.y7e{bottom:275.177812px;}
.y1e{bottom:287.410725px;}
.yb2{bottom:289.936350px;}
.yb1{bottom:289.936875px;}
.y7d{bottom:291.015750px;}
.ye2{bottom:299.296650px;}
.y1c{bottom:303.433012px;}
.y1d{bottom:303.436350px;}
.y52{bottom:304.697100px;}
.yb0{bottom:306.135750px;}
.y1b{bottom:319.458638px;}
.yaf{bottom:322.336650px;}
.yae{bottom:322.339238px;}
.y7c{bottom:322.341450px;}
.y1a{bottom:335.296575px;}
.yad{bottom:338.177175px;}
.y7b{bottom:338.179388px;}
.ye1{bottom:339.617100px;}
.y51{bottom:339.619162px;}
.y19{bottom:351.498000px;}
.yac{bottom:354.376050px;}
.yab{bottom:354.376575px;}
.y7a{bottom:354.378263px;}
.y50{bottom:355.457100px;}
.y18{bottom:367.696875px;}
.y79{bottom:370.219238px;}
.yaa{bottom:370.575450px;}
.y4f{bottom:371.658713px;}
.y104{bottom:374.535450px;}
.y103{bottom:374.536500px;}
.ye0{bottom:374.537625px;}
.y17{bottom:383.898488px;}
.y4e{bottom:387.498713px;}
.ydf{bottom:390.736500px;}
.y16{bottom:399.736425px;}
.ya9{bottom:403.336650px;}
.y4d{bottom:403.338038px;}
.y78{bottom:403.338863px;}
.yde{bottom:406.577025px;}
.y102{bottom:407.295000px;}
.y15{bottom:415.935300px;}
.y77{bottom:419.177700px;}
.y4c{bottom:419.897850px;}
.ydd{bottom:422.775900px;}
.y14{bottom:432.136725px;}
.y76{bottom:435.376575px;}
.y4b{bottom:436.096725px;}
.ydc{bottom:438.256800px;}
.ydb{bottom:438.618562px;}
.ya8{bottom:438.975638px;}
.y13{bottom:448.338150px;}
.y75{bottom:451.575450px;}
.y4a{bottom:452.295600px;}
.yda{bottom:455.178375px;}
.ya7{bottom:455.535450px;}
.y12{bottom:464.537025px;}
.y74{bottom:468.135750px;}
.y49{bottom:468.498713px;}
.yd9{bottom:471.377625px;}
.ya5{bottom:471.913163px;}
.ya6{bottom:471.916050px;}
.y11{bottom:480.735900px;}
.y48{bottom:484.342313px;}
.yd8{bottom:487.576500px;}
.ya4{bottom:487.938788px;}
.y10{bottom:496.937325px;}
.y47{bottom:500.541188px;}
.yd7{bottom:500.896950px;}
.y73{bottom:501.617475px;}
.yd6{bottom:503.775900px;}
.ya3{bottom:504.137663px;}
.yf{bottom:513.136725px;}
.y46{bottom:516.740063px;}
.y72{bottom:517.819050px;}
.yd5{bottom:520.336200px;}
.ya2{bottom:520.697475px;}
.ye{bottom:529.335600px;}
.y45{bottom:533.299875px;}
.y71{bottom:534.017925px;}
.yd4{bottom:536.176200px;}
.ya1{bottom:536.896350px;}
.ya0{bottom:536.896875px;}
.yd{bottom:545.536500px;}
.yc{bottom:545.537550px;}
.y44{bottom:549.137812px;}
.y70{bottom:550.216800px;}
.y9f{bottom:553.095750px;}
.yd3{bottom:555.976350px;}
.yb{bottom:561.736425px;}
.y43{bottom:564.975750px;}
.y42{bottom:564.977925px;}
.y9e{bottom:569.658075px;}
.yd2{bottom:571.816350px;}
.yd1{bottom:571.816875px;}
.ya{bottom:577.935300px;}
.y6f{bottom:581.177662px;}
.y41{bottom:581.179350px;}
.yfb{bottom:581.895300px;}
.yfc{bottom:582.256200px;}
.y9d{bottom:585.856950px;}
.yfa{bottom:587.656500px;}
.yd0{bottom:588.015750px;}
.y9{bottom:593.775787px;}
.y6e{bottom:597.376537px;}
.y40{bottom:597.378225px;}
.y9c{bottom:602.056350px;}
.ycf{bottom:604.219350px;}
.y8{bottom:610.335600px;}
.y6c{bottom:613.216200px;}
.y3f{bottom:613.580550px;}
.y6d{bottom:613.936350px;}
.yce{bottom:620.418225px;}
.y7{bottom:626.536500px;}
.y3e{bottom:629.779425px;}
.y9b{bottom:634.456650px;}
.ycd{bottom:636.617100px;}
.yf9{bottom:639.496050px;}
.y3d{bottom:645.978300px;}
.y6b{bottom:646.695900px;}
.ycc{bottom:652.816350px;}
.yf8{bottom:655.697475px;}
.y3c{bottom:662.177175px;}
.y9a{bottom:669.737250px;}
.yf7{bottom:671.896350px;}
.ycb{bottom:672.257250px;}
.y3b{bottom:678.378225px;}
.y6{bottom:684.855900px;}
.y99{bottom:686.297062px;}
.yf6{bottom:688.095750px;}
.yca{bottom:688.457025px;}
.y3a{bottom:694.577625px;}
.y6a{bottom:697.817812px;}
.y5{bottom:701.416050px;}
.yf5{bottom:704.296650px;}
.yf4{bottom:704.297175px;}
.yc9{bottom:704.655900px;}
.y39{bottom:710.776500px;}
.y69{bottom:714.377625px;}
.y98{bottom:719.056237px;}
.yf3{bottom:720.496050px;}
.yc8{bottom:721.216200px;}
.y38{bottom:726.977925px;}
.y68{bottom:730.576987px;}
.y96{bottom:735.610087px;}
.y97{bottom:735.616050px;}
.yf2{bottom:736.695450px;}
.yf1{bottom:736.697475px;}
.yc7{bottom:737.417250px;}
.y37{bottom:743.176800px;}
.y4{bottom:746.048700px;}
.y67{bottom:747.136800px;}
.y101{bottom:748.579163px;}
.y95{bottom:751.996650px;}
.yf0{bottom:752.896350px;}
.yc6{bottom:753.617025px;}
.y36{bottom:759.364687px;}
.y66{bottom:763.339088px;}
.y100{bottom:764.415600px;}
.y94{bottom:768.018900px;}
.yef{bottom:769.456650px;}
.yc5{bottom:769.817925px;}
.y3{bottom:771.615450px;}
.y35{bottom:776.646375px;}
.y65{bottom:779.537963px;}
.y93{bottom:784.578713px;}
.yee{bottom:785.655900px;}
.yc4{bottom:786.016800px;}
.yc3{bottom:786.017325px;}
.y34{bottom:792.311062px;}
.yff{bottom:795.375600px;}
.y64{bottom:796.097775px;}
.y2{bottom:798.256200px;}
.y92{bottom:800.416650px;}
.yed{bottom:801.496050px;}
.yc2{bottom:802.216200px;}
.yc1{bottom:802.218750px;}
.y33{bottom:807.975750px;}
.y63{bottom:812.298037px;}
.y91{bottom:817.336200px;}
.y90{bottom:817.338750px;}
.yec{bottom:818.056350px;}
.yc0{bottom:818.417625px;}
.y31{bottom:824.175937px;}
.y32{bottom:824.176800px;}
.y1{bottom:824.536050px;}
.y62{bottom:828.496913px;}
.y8f{bottom:833.537625px;}
.ybf{bottom:834.617025px;}
.y30{bottom:840.374812px;}
.y61{bottom:844.695787px;}
.y8d{bottom:849.375600px;}
.y8e{bottom:849.736500px;}
.ybe{bottom:850.815900px;}
.yeb{bottom:852.976350px;}
.yfe{bottom:855.855300px;}
.y2f{bottom:856.938562px;}
.y60{bottom:861.255600px;}
.ybd{bottom:867.016800px;}
.yea{bottom:869.536500px;}
.y2e{bottom:872.776875px;}
.y5f{bottom:877.457025px;}
.y8c{bottom:881.055750px;}
.y8b{bottom:881.056237px;}
.ybc{bottom:883.216200px;}
.ye9{bottom:886.095150px;}
.yfd{bottom:887.896350px;}
.y2d{bottom:888.975750px;}
.y5e{bottom:893.655900px;}
.y89{bottom:896.895900px;}
.y8a{bottom:897.616050px;}
.ybb{bottom:899.417250px;}
.ye8{bottom:902.296200px;}
.h49{height:17.991211px;}
.h16{height:20.337891px;}
.h3f{height:33.107300px;}
.h48{height:35.982422px;}
.h1b{height:40.675781px;}
.h18{height:41.572266px;}
.h46{height:43.731445px;}
.h17{height:43.839844px;}
.h1c{height:44.595703px;}
.h1a{height:46.107422px;}
.h9{height:50.062500px;}
.h38{height:50.789795px;}
.ha{height:50.844727px;}
.h10{height:51.626953px;}
.h3a{height:53.707397px;}
.h14{height:53.734131px;}
.h34{height:53.973633px;}
.h22{height:54.470215px;}
.hb{height:54.755859px;}
.h11{height:55.206299px;}
.h2e{height:55.942383px;}
.hd{height:56.320312px;}
.h3e{height:56.332031px;}
.h25{height:56.650269px;}
.he{height:56.678467px;}
.h39{height:56.689453px;}
.h35{height:56.690017px;}
.h23{height:56.723917px;}
.hc{height:57.102539px;}
.h33{height:57.385986px;}
.h15{height:57.414551px;}
.hf{height:57.884766px;}
.h36{height:57.889178px;}
.h28{height:58.121704px;}
.h24{height:58.122217px;}
.h32{height:58.150635px;}
.h43{height:58.201172px;}
.h54{height:58.666992px;}
.h57{height:58.670592px;}
.h29{height:58.857422px;}
.h2b{height:58.886719px;}
.h2f{height:58.957031px;}
.h21{height:59.565967px;}
.h42{height:59.622803px;}
.h2a{height:60.328857px;}
.h2d{height:60.358887px;}
.h13{height:60.468750px;}
.h30{height:61.013672px;}
.h3d{height:61.094971px;}
.h2c{height:61.224609px;}
.h1d{height:61.520508px;}
.h45{height:61.795898px;}
.h31{height:61.831055px;}
.h44{height:61.980469px;}
.h56{height:64.142578px;}
.h59{height:64.924805px;}
.h12{height:65.226562px;}
.h4f{height:66.489258px;}
.h55{height:67.271484px;}
.h58{height:68.053711px;}
.h37{height:69.618164px;}
.h47{height:70.400391px;}
.h19{height:71.964844px;}
.h51{height:75.875977px;}
.h52{height:77.440430px;}
.h53{height:78.222656px;}
.h50{height:79.004883px;}
.h1e{height:89.956055px;}
.h8{height:92.302734px;}
.h4{height:95.431641px;}
.h7{height:99.342773px;}
.h5{height:100.125000px;}
.h3{height:100.907227px;}
.h6{height:102.471680px;}
.h2{height:103.253906px;}
.h4c{height:183.041016px;}
.h4e{height:183.823242px;}
.h4b{height:184.605469px;}
.h4d{height:186.952148px;}
.h20{height:1014.000000px;}
.h1f{height:1014.032550px;}
.h1{height:1015.500000px;}
.h0{height:1015.832550px;}
.h40{height:1016.192550px;}
.h41{height:1016.250000px;}
.h26{height:1017.632550px;}
.h27{height:1017.750000px;}
.h4a{height:1018.352550px;}
.h3c{height:1018.500000px;}
.h3b{height:1018.714050px;}
.w6{width:658.351050px;}
.w7{width:658.500000px;}
.w2{width:659.792550px;}
.w3{width:660.000000px;}
.wa{width:661.951935px;}
.wb{width:662.250000px;}
.w5{width:665.250000px;}
.w4{width:665.552550px;}
.w1{width:668.250000px;}
.w0{width:668.434050px;}
.w9{width:671.250000px;}
.w8{width:671.312550px;}
.x0{left:0.000000px;}
.xa0{left:44.055735px;}
.xa7{left:45.144322px;}
.x98{left:63.494985px;}
.x3c{left:66.016350px;}
.x3e{left:67.451138px;}
.x2f{left:69.254063px;}
.x20{left:70.319775px;}
.x1{left:71.416650px;}
.x79{left:78.257250px;}
.x73{left:79.336650px;}
.x6f{left:80.416050px;}
.x6e{left:81.497100px;}
.x28{left:89.056350px;}
.x43{left:90.140662px;}
.x45{left:91.221712px;}
.x1b{left:93.377250px;}
.x44{left:94.456650px;}
.x7f{left:99.496050px;}
.x74{left:101.297250px;}
.x95{left:102.735900px;}
.x9d{left:104.176185px;}
.x8e{left:105.975750px;}
.x7a{left:107.056800px;}
.x29{left:109.217250px;}
.xe{left:110.657550px;}
.x1f{left:111.737100px;}
.x8{left:113.177400px;}
.x49{left:114.616050px;}
.x82{left:120.736500px;}
.x80{left:122.176800px;}
.x75{left:123.256200px;}
.x83{left:126.855300px;}
.x34{left:130.454738px;}
.x38{left:131.888962px;}
.x6b{left:133.336650px;}
.x52{left:134.409975px;}
.x6c{left:135.856350px;}
.x4e{left:138.016800px;}
.x4a{left:139.096350px;}
.x3f{left:146.296200px;}
.x8b{left:147.736500px;}
.x15{left:149.176800px;}
.x58{left:150.256200px;}
.xa6{left:152.775885px;}
.x5b{left:154.575450px;}
.x4f{left:156.376650px;}
.xa4{left:158.176185px;}
.x5c{left:159.616500px;}
.x93{left:163.935750px;}
.x27{left:167.897550px;}
.x66{left:168.975300px;}
.x5d{left:175.095750px;}
.x9b{left:178.335585px;}
.xa5{left:181.216185px;}
.x81{left:182.297250px;}
.x2{left:183.737550px;}
.x40{left:186.616500px;}
.x67{left:190.935750px;}
.x61{left:195.616050px;}
.x7e{left:200.657100px;}
.xa1{left:203.175135px;}
.x8c{left:207.136800px;}
.x10{left:210.017400px;}
.x9e{left:211.815285px;}
.x30{left:212.896350px;}
.x23{left:213.977400px;}
.x9{left:216.136200px;}
.x99{left:221.895885px;}
.x76{left:222.976950px;}
.x24{left:228.377250px;}
.x3{left:229.456650px;}
.xa2{left:232.335585px;}
.x11{left:234.496050px;}
.x25{left:235.936350px;}
.x77{left:237.376650px;}
.x84{left:242.056800px;}
.x62{left:248.175600px;}
.x12{left:249.616050px;}
.x26{left:250.697100px;}
.xf{left:252.494737px;}
.x46{left:253.576050px;}
.x68{left:257.176800px;}
.x2a{left:258.617100px;}
.xa{left:261.496050px;}
.x85{left:264.376650px;}
.x9c{left:267.975735px;}
.x4{left:269.416050px;}
.x16{left:270.856350px;}
.x86{left:273.376050px;}
.x13{left:275.897550px;}
.x2b{left:278.417250px;}
.x31{left:280.936950px;}
.x17{left:290.297250px;}
.x59{left:291.735900px;}
.x2c{left:293.537100px;}
.xb{left:294.977400px;}
.x42{left:298.576500px;}
.x2d{left:299.657550px;}
.x47{left:301.455450px;}
.x32{left:303.256800px;}
.x4b{left:304.336200px;}
.x6d{left:305.415600px;}
.x69{left:307.576050px;}
.xa8{left:308.655435px;}
.x2e{left:316.216200px;}
.x48{left:321.616500px;}
.x33{left:323.776950px;}
.x18{left:325.576500px;}
.x6a{left:329.895750px;}
.x3a{left:333.137400px;}
.x14{left:335.657100px;}
.x70{left:339.617100px;}
.x1c{left:341.057400px;}
.x3d{left:343.575450px;}
.x36{left:344.656500px;}
.x5{left:346.456050px;}
.x3b{left:348.616500px;}
.x71{left:352.217250px;}
.x41{left:355.096200px;}
.x1d{left:357.616050px;}
.x37{left:360.137400px;}
.x96{left:365.536050px;}
.x72{left:367.696500px;}
.x19{left:373.816950px;}
.x9a{left:376.695885px;}
.x6{left:381.016950px;}
.x5a{left:382.096200px;}
.x8f{left:386.776500px;}
.x90{left:403.336650px;}
.x91{left:410.895750px;}
.x57{left:414.496650px;}
.x7{left:422.777550px;}
.x92{left:426.735900px;}
.x9f{left:427.815285px;}
.x54{left:433.935750px;}
.x1a{left:437.897550px;}
.x50{left:440.415600px;}
.xc{left:446.176800px;}
.x87{left:450.136800px;}
.x97{left:451.575450px;}
.x5f{left:456.975750px;}
.x55{left:458.056800px;}
.x63{left:463.096200px;}
.x51{left:467.776500px;}
.x88{left:468.855900px;}
.x7c{left:471.016350px;}
.x56{left:476.055750px;}
.x64{left:478.936350px;}
.x60{left:481.815300px;}
.x7d{left:485.056800px;}
.xd{left:487.937400px;}
.x89{left:491.175600px;}
.x21{left:498.377250px;}
.x78{left:500.536050px;}
.x65{left:507.735900px;}
.x22{left:514.576500px;}
.xa3{left:515.655885px;}
.x4c{left:527.536050px;}
.x1e{left:539.776950px;}
.x4d{left:543.735450px;}
.x7b{left:546.256800px;}
.x8a{left:555.256200px;}
.x8d{left:559.575450px;}
.x35{left:562.096800px;}
.x53{left:566.056800px;}
.x39{left:568.576500px;}
.x94{left:569.655900px;}
.x5e{left:578.655450px;}
@media print{
.v3{vertical-align:-1.277333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.283333pt;}
.v1{vertical-align:2.566667pt;}
.ls6c{letter-spacing:-20.281800pt;}
.ls1a{letter-spacing:-17.580200pt;}
.ls52{letter-spacing:-15.408000pt;}
.ls6b{letter-spacing:-14.198667pt;}
.ls14{letter-spacing:-12.177600pt;}
.ls12{letter-spacing:-10.612800pt;}
.ls15{letter-spacing:-8.738400pt;}
.ls87{letter-spacing:-8.645600pt;}
.ls63{letter-spacing:-8.487467pt;}
.ls13{letter-spacing:-8.152800pt;}
.ls17{letter-spacing:-8.133333pt;}
.ls20{letter-spacing:-8.113600pt;}
.ls5d{letter-spacing:-7.123733pt;}
.ls1c{letter-spacing:-6.864000pt;}
.ls6f{letter-spacing:-6.679800pt;}
.ls4d{letter-spacing:-6.567600pt;}
.ls9a{letter-spacing:-6.507200pt;}
.ls89{letter-spacing:-6.174467pt;}
.ls1f{letter-spacing:-5.614400pt;}
.ls34{letter-spacing:-5.477267pt;}
.ls1d{letter-spacing:-5.249333pt;}
.ls1e{letter-spacing:-5.144800pt;}
.ls66{letter-spacing:-4.950400pt;}
.ls69{letter-spacing:-4.924800pt;}
.ls50{letter-spacing:-4.919200pt;}
.ls67{letter-spacing:-4.435200pt;}
.ls84{letter-spacing:-4.357667pt;}
.ls49{letter-spacing:-4.124267pt;}
.ls33{letter-spacing:-4.106667pt;}
.ls76{letter-spacing:-4.050200pt;}
.ls23{letter-spacing:-3.946867pt;}
.ls98{letter-spacing:-3.895000pt;}
.ls8f{letter-spacing:-3.742467pt;}
.ls5c{letter-spacing:-3.411667pt;}
.ls99{letter-spacing:-3.369800pt;}
.ls4a{letter-spacing:-3.333200pt;}
.ls96{letter-spacing:-3.245000pt;}
.ls41{letter-spacing:-3.167267pt;}
.ls74{letter-spacing:-3.137400pt;}
.ls18{letter-spacing:-3.124000pt;}
.ls2d{letter-spacing:-3.115267pt;}
.ls62{letter-spacing:-3.001200pt;}
.ls8e{letter-spacing:-2.993000pt;}
.ls4f{letter-spacing:-2.888800pt;}
.ls48{letter-spacing:-2.848133pt;}
.ls6e{letter-spacing:-2.761733pt;}
.ls4e{letter-spacing:-2.637600pt;}
.ls42{letter-spacing:-2.535867pt;}
.ls55{letter-spacing:-2.300000pt;}
.ls8d{letter-spacing:-2.248400pt;}
.ls56{letter-spacing:-2.000800pt;}
.ls46{letter-spacing:-1.904000pt;}
.ls3f{letter-spacing:-1.899333pt;}
.ls85{letter-spacing:-1.870000pt;}
.ls8c{letter-spacing:-1.498933pt;}
.ls72{letter-spacing:-1.485200pt;}
.ls97{letter-spacing:-1.428000pt;}
.ls25{letter-spacing:-1.410933pt;}
.ls35{letter-spacing:-1.370600pt;}
.ls70{letter-spacing:-1.334667pt;}
.ls91{letter-spacing:-1.300000pt;}
.ls40{letter-spacing:-1.267933pt;}
.ls71{letter-spacing:-1.202667pt;}
.ls8b{letter-spacing:-0.749467pt;}
.ls92{letter-spacing:-0.706067pt;}
.ls2b{letter-spacing:-0.693333pt;}
.ls27{letter-spacing:-0.682733pt;}
.ls29{letter-spacing:-0.678333pt;}
.ls54{letter-spacing:-0.666667pt;}
.ls95{letter-spacing:-0.650000pt;}
.ls3e{letter-spacing:-0.631400pt;}
.ls86{letter-spacing:-0.623333pt;}
.ls73{letter-spacing:-0.610933pt;}
.ls5b{letter-spacing:-0.545000pt;}
.ls6d{letter-spacing:-0.441000pt;}
.ls16{letter-spacing:0.000000pt;}
.ls61{letter-spacing:0.602933pt;}
.ls36{letter-spacing:0.631400pt;}
.ls10{letter-spacing:0.634133pt;}
.ls5a{letter-spacing:0.647267pt;}
.ls7d{letter-spacing:0.650000pt;}
.ls32{letter-spacing:0.677600pt;}
.ls1{letter-spacing:0.682733pt;}
.ls57{letter-spacing:0.691600pt;}
.ls26{letter-spacing:0.708400pt;}
.ls78{letter-spacing:0.749467pt;}
.ls51{letter-spacing:1.142867pt;}
.ls60{letter-spacing:1.202067pt;}
.ls75{letter-spacing:1.222000pt;}
.ls37{letter-spacing:1.267933pt;}
.lse{letter-spacing:1.268267pt;}
.ls7a{letter-spacing:1.300000pt;}
.ls43{letter-spacing:1.314133pt;}
.ls83{letter-spacing:1.316000pt;}
.ls6a{letter-spacing:1.349333pt;}
.ls2f{letter-spacing:1.350067pt;}
.ls44{letter-spacing:1.369333pt;}
.ls9{letter-spacing:1.370600pt;}
.ls22{letter-spacing:1.378000pt;}
.ls53{letter-spacing:1.388400pt;}
.ls19{letter-spacing:1.493333pt;}
.ls38{letter-spacing:1.899333pt;}
.lsf{letter-spacing:1.902400pt;}
.ls82{letter-spacing:1.919467pt;}
.ls7c{letter-spacing:1.950000pt;}
.ls68{letter-spacing:1.953267pt;}
.ls45{letter-spacing:1.976333pt;}
.ls30{letter-spacing:2.027667pt;}
.ls8{letter-spacing:2.053333pt;}
.ls5e{letter-spacing:2.055000pt;}
.ls77{letter-spacing:2.068933pt;}
.ls28{letter-spacing:2.080000pt;}
.ls47{letter-spacing:2.251800pt;}
.ls3a{letter-spacing:2.535867pt;}
.ls7b{letter-spacing:2.595000pt;}
.ls2c{letter-spacing:2.666800pt;}
.ls31{letter-spacing:2.700133pt;}
.ls3{letter-spacing:2.736067pt;}
.ls21{letter-spacing:2.798933pt;}
.ls94{letter-spacing:2.799333pt;}
.ls88{letter-spacing:3.116933pt;}
.ls3c{letter-spacing:3.167267pt;}
.ls11{letter-spacing:3.170667pt;}
.ls2a{letter-spacing:3.188267pt;}
.ls7e{letter-spacing:3.245000pt;}
.ls2{letter-spacing:3.423933pt;}
.ls5f{letter-spacing:3.468400pt;}
.ls39{letter-spacing:3.803800pt;}
.ls7f{letter-spacing:3.895000pt;}
.ls1b{letter-spacing:3.987800pt;}
.ls5{letter-spacing:4.106667pt;}
.ls93{letter-spacing:4.203867pt;}
.ls90{letter-spacing:4.345867pt;}
.ls79{letter-spacing:4.545000pt;}
.ls59{letter-spacing:4.608333pt;}
.ls6{letter-spacing:4.789400pt;}
.ls58{letter-spacing:4.822200pt;}
.ls24{letter-spacing:4.898133pt;}
.ls3b{letter-spacing:5.071733pt;}
.ls80{letter-spacing:5.195000pt;}
.ls7{letter-spacing:5.477267pt;}
.ls8a{letter-spacing:5.493333pt;}
.ls3d{letter-spacing:5.703133pt;}
.ls4{letter-spacing:6.160000pt;}
.ls65{letter-spacing:6.339667pt;}
.ls81{letter-spacing:6.495000pt;}
.ls0{letter-spacing:6.842733pt;}
.lsa{letter-spacing:7.530600pt;}
.lsb{letter-spacing:8.213333pt;}
.lsc{letter-spacing:8.896067pt;}
.ls64{letter-spacing:9.506933pt;}
.ls2e{letter-spacing:9.583933pt;}
.lsd{letter-spacing:10.949400pt;}
.ls4b{letter-spacing:11.637267pt;}
.ls4c{letter-spacing:12.320000pt;}
.ws0{word-spacing:0.000000pt;}
._1f{margin-left:-57.753285pt;}
._24{margin-left:-52.250010pt;}
._29{margin-left:-43.570339pt;}
._e{margin-left:-39.195943pt;}
._1b{margin-left:-30.843205pt;}
._28{margin-left:-27.221496pt;}
._1c{margin-left:-18.790225pt;}
._2a{margin-left:-16.091099pt;}
._1a{margin-left:-11.775386pt;}
._2b{margin-left:-10.581980pt;}
._25{margin-left:-9.141714pt;}
._13{margin-left:-7.837300pt;}
._17{margin-left:-6.113800pt;}
._a{margin-left:-5.112800pt;}
._14{margin-left:-3.879705pt;}
._1d{margin-left:-2.420533pt;}
._b{margin-left:-1.447600pt;}
._16{width:1.283333pt;}
._5{width:2.268933pt;}
._1{width:3.644667pt;}
._8{width:4.748333pt;}
._4{width:6.108667pt;}
._7{width:7.443333pt;}
._d{width:8.362200pt;}
._6{width:9.573667pt;}
._2{width:10.985333pt;}
._9{width:12.622867pt;}
._f{width:14.203933pt;}
._3{width:15.348667pt;}
._10{width:16.611467pt;}
._c{width:17.828067pt;}
._15{width:19.049800pt;}
._12{width:20.008638pt;}
._11{width:21.524067pt;}
._19{width:22.466400pt;}
._0{width:24.041600pt;}
._18{width:25.212743pt;}
._20{width:26.382376pt;}
._27{width:27.583238pt;}
._26{width:29.288952pt;}
._2c{width:31.638166pt;}
._2d{width:33.744891pt;}
._23{width:49.844667pt;}
._21{width:55.701800pt;}
._22{width:61.487067pt;}
._1e{width:65.922267pt;}
.fs27{font-size:15.333333pt;}
.fs13{font-size:17.333333pt;}
.fs24{font-size:30.000000pt;}
.fs26{font-size:30.666667pt;}
.fs18{font-size:34.666667pt;}
.fs15{font-size:36.666667pt;}
.fs14{font-size:38.666667pt;}
.fs19{font-size:39.333333pt;}
.fs17{font-size:40.666667pt;}
.fs7{font-size:42.666667pt;}
.fs8{font-size:43.333333pt;}
.fse{font-size:44.000000pt;}
.fs21{font-size:46.000000pt;}
.fs9{font-size:46.666667pt;}
.fsb{font-size:48.000000pt;}
.fsa{font-size:48.666667pt;}
.fsd{font-size:49.333333pt;}
.fsf{font-size:50.000000pt;}
.fs1f{font-size:50.666667pt;}
.fsc{font-size:51.333333pt;}
.fs12{font-size:52.000000pt;}
.fs22{font-size:52.429867pt;}
.fs1c{font-size:52.666667pt;}
.fs11{font-size:53.333333pt;}
.fs1e{font-size:54.000000pt;}
.fs1d{font-size:54.666667pt;}
.fs1a{font-size:55.333333pt;}
.fs20{font-size:56.000000pt;}
.fs2c{font-size:56.666667pt;}
.fs31{font-size:57.333333pt;}
.fs32{font-size:58.000000pt;}
.fs10{font-size:58.666667pt;}
.fs23{font-size:59.333333pt;}
.fs25{font-size:60.000000pt;}
.fs16{font-size:61.333333pt;}
.fs2e{font-size:64.666667pt;}
.fs2f{font-size:66.000000pt;}
.fs30{font-size:66.666667pt;}
.fs2d{font-size:67.333333pt;}
.fs1b{font-size:76.666667pt;}
.fs6{font-size:78.666667pt;}
.fs2{font-size:81.333333pt;}
.fs5{font-size:84.666667pt;}
.fs3{font-size:85.333333pt;}
.fs1{font-size:86.000000pt;}
.fs4{font-size:87.333333pt;}
.fs0{font-size:88.000000pt;}
.fs29{font-size:156.000000pt;}
.fs2b{font-size:156.666667pt;}
.fs28{font-size:157.333333pt;}
.fs2a{font-size:159.333333pt;}
.y0{bottom:0.000000pt;}
.y2c{bottom:87.481467pt;}
.y88{bottom:88.440933pt;}
.y10a{bottom:109.240267pt;}
.y109{bottom:109.245267pt;}
.y2b{bottom:112.440933pt;}
.y2a{bottom:112.443600pt;}
.y5d{bottom:113.721667pt;}
.yba{bottom:115.960933pt;}
.y87{bottom:115.962900pt;}
.y29{bottom:119.480933pt;}
.y108{bottom:123.320267pt;}
.y107{bottom:123.321200pt;}
.ye7{bottom:125.875133pt;}
.y5c{bottom:128.122500pt;}
.y86{bottom:130.041067pt;}
.y85{bottom:130.041800pt;}
.y105{bottom:137.720400pt;}
.y106{bottom:137.721200pt;}
.y28{bottom:140.601533pt;}
.y5b{bottom:142.202600pt;}
.ye6{bottom:142.840800pt;}
.yb9{bottom:144.761200pt;}
.yb8{bottom:144.763167pt;}
.y27{bottom:155.000533pt;}
.y26{bottom:155.002800pt;}
.y5a{bottom:156.601600pt;}
.yb7{bottom:158.841333pt;}
.y84{bottom:159.481467pt;}
.y25{bottom:169.401800pt;}
.y59{bottom:171.002900pt;}
.y83{bottom:172.921333pt;}
.y82{bottom:173.240667pt;}
.ye5{bottom:180.280800pt;}
.y24{bottom:183.802767pt;}
.y58{bottom:185.081067pt;}
.y57{bottom:185.083367pt;}
.yb6{bottom:187.960933pt;}
.y23{bottom:197.880933pt;}
.y22{bottom:197.883533pt;}
.y56{bottom:199.482367pt;}
.y81{bottom:203.002367pt;}
.y21{bottom:212.282533pt;}
.ye4{bottom:213.556333pt;}
.y55{bottom:213.560533pt;}
.yb5{bottom:214.842733pt;}
.y80{bottom:217.080533pt;}
.y7f{bottom:217.401333pt;}
.y20{bottom:226.681533pt;}
.y54{bottom:227.961467pt;}
.yb4{bottom:229.241733pt;}
.ye3{bottom:230.522000pt;}
.y1f{bottom:241.080533pt;}
.y53{bottom:242.360800pt;}
.yb3{bottom:243.322200pt;}
.y7e{bottom:244.602500pt;}
.y1e{bottom:255.476200pt;}
.yb2{bottom:257.721200pt;}
.yb1{bottom:257.721667pt;}
.y7d{bottom:258.680667pt;}
.ye2{bottom:266.041467pt;}
.y1c{bottom:269.718233pt;}
.y1d{bottom:269.721200pt;}
.y52{bottom:270.841867pt;}
.yb0{bottom:272.120667pt;}
.y1b{bottom:283.963233pt;}
.yaf{bottom:286.521467pt;}
.yae{bottom:286.523767pt;}
.y7c{bottom:286.525733pt;}
.y1a{bottom:298.041400pt;}
.yad{bottom:300.601933pt;}
.y7b{bottom:300.603900pt;}
.ye1{bottom:301.881867pt;}
.y51{bottom:301.883700pt;}
.y19{bottom:312.442667pt;}
.yac{bottom:315.000933pt;}
.yab{bottom:315.001400pt;}
.y7a{bottom:315.002900pt;}
.y50{bottom:315.961867pt;}
.y18{bottom:326.841667pt;}
.y79{bottom:329.083767pt;}
.yaa{bottom:329.400400pt;}
.y4f{bottom:330.363300pt;}
.y104{bottom:332.920400pt;}
.y103{bottom:332.921333pt;}
.ye0{bottom:332.922333pt;}
.y17{bottom:341.243100pt;}
.y4e{bottom:344.443300pt;}
.ydf{bottom:347.321333pt;}
.y16{bottom:355.321267pt;}
.ya9{bottom:358.521467pt;}
.y4d{bottom:358.522700pt;}
.y78{bottom:358.523433pt;}
.yde{bottom:361.401800pt;}
.y102{bottom:362.040000pt;}
.y15{bottom:369.720267pt;}
.y77{bottom:372.602400pt;}
.y4c{bottom:373.242533pt;}
.ydd{bottom:375.800800pt;}
.y14{bottom:384.121533pt;}
.y76{bottom:387.001400pt;}
.y4b{bottom:387.641533pt;}
.ydc{bottom:389.561600pt;}
.ydb{bottom:389.883167pt;}
.ya8{bottom:390.200567pt;}
.y13{bottom:398.522800pt;}
.y75{bottom:401.400400pt;}
.y4a{bottom:402.040533pt;}
.yda{bottom:404.603000pt;}
.ya7{bottom:404.920400pt;}
.y12{bottom:412.921800pt;}
.y74{bottom:416.120667pt;}
.y49{bottom:416.443300pt;}
.yd9{bottom:419.002333pt;}
.ya5{bottom:419.478367pt;}
.ya6{bottom:419.480933pt;}
.y11{bottom:427.320800pt;}
.y48{bottom:430.526500pt;}
.yd8{bottom:433.401333pt;}
.ya4{bottom:433.723367pt;}
.y10{bottom:441.722067pt;}
.y47{bottom:444.925500pt;}
.yd7{bottom:445.241733pt;}
.y73{bottom:445.882200pt;}
.yd6{bottom:447.800800pt;}
.ya3{bottom:448.122367pt;}
.yf{bottom:456.121533pt;}
.y46{bottom:459.324500pt;}
.y72{bottom:460.283600pt;}
.yd5{bottom:462.521067pt;}
.ya2{bottom:462.842200pt;}
.ye{bottom:470.520533pt;}
.y45{bottom:474.044333pt;}
.y71{bottom:474.682600pt;}
.yd4{bottom:476.601067pt;}
.ya1{bottom:477.241200pt;}
.ya0{bottom:477.241667pt;}
.yd{bottom:484.921333pt;}
.yc{bottom:484.922267pt;}
.y44{bottom:488.122500pt;}
.y70{bottom:489.081600pt;}
.y9f{bottom:491.640667pt;}
.yd3{bottom:494.201200pt;}
.yb{bottom:499.321267pt;}
.y43{bottom:502.200667pt;}
.y42{bottom:502.202600pt;}
.y9e{bottom:506.362733pt;}
.yd2{bottom:508.281200pt;}
.yd1{bottom:508.281667pt;}
.ya{bottom:513.720267pt;}
.y6f{bottom:516.602367pt;}
.y41{bottom:516.603867pt;}
.yfb{bottom:517.240267pt;}
.yfc{bottom:517.561067pt;}
.y9d{bottom:520.761733pt;}
.yfa{bottom:522.361333pt;}
.yd0{bottom:522.680667pt;}
.y9{bottom:527.800700pt;}
.y6e{bottom:531.001367pt;}
.y40{bottom:531.002867pt;}
.y9c{bottom:535.161200pt;}
.ycf{bottom:537.083867pt;}
.y8{bottom:542.520533pt;}
.y6c{bottom:545.081067pt;}
.y3f{bottom:545.404933pt;}
.y6d{bottom:545.721200pt;}
.yce{bottom:551.482867pt;}
.y7{bottom:556.921333pt;}
.y3e{bottom:559.803933pt;}
.y9b{bottom:563.961467pt;}
.ycd{bottom:565.881867pt;}
.yf9{bottom:568.440933pt;}
.y3d{bottom:574.202933pt;}
.y6b{bottom:574.840800pt;}
.ycc{bottom:580.281200pt;}
.yf8{bottom:582.842200pt;}
.y3c{bottom:588.601933pt;}
.y9a{bottom:595.322000pt;}
.yf7{bottom:597.241200pt;}
.ycb{bottom:597.562000pt;}
.y3b{bottom:603.002867pt;}
.y6{bottom:608.760800pt;}
.y99{bottom:610.041833pt;}
.yf6{bottom:611.640667pt;}
.yca{bottom:611.961800pt;}
.y3a{bottom:617.402333pt;}
.y6a{bottom:620.282500pt;}
.y5{bottom:623.480933pt;}
.yf5{bottom:626.041467pt;}
.yf4{bottom:626.041933pt;}
.yc9{bottom:626.360800pt;}
.y39{bottom:631.801333pt;}
.y69{bottom:635.002333pt;}
.y98{bottom:639.161100pt;}
.yf3{bottom:640.440933pt;}
.yc8{bottom:641.081067pt;}
.y38{bottom:646.202600pt;}
.y68{bottom:649.401767pt;}
.y96{bottom:653.875633pt;}
.y97{bottom:653.880933pt;}
.yf2{bottom:654.840400pt;}
.yf1{bottom:654.842200pt;}
.yc7{bottom:655.482000pt;}
.y37{bottom:660.601600pt;}
.y4{bottom:663.154400pt;}
.y67{bottom:664.121600pt;}
.y101{bottom:665.403700pt;}
.y95{bottom:668.441467pt;}
.yf0{bottom:669.241200pt;}
.yc6{bottom:669.881800pt;}
.y36{bottom:674.990833pt;}
.y66{bottom:678.523633pt;}
.y100{bottom:679.480533pt;}
.y94{bottom:682.683467pt;}
.yef{bottom:683.961467pt;}
.yc5{bottom:684.282600pt;}
.y3{bottom:685.880400pt;}
.y35{bottom:690.352333pt;}
.y65{bottom:692.922633pt;}
.y93{bottom:697.403300pt;}
.yee{bottom:698.360800pt;}
.yc4{bottom:698.681600pt;}
.yc3{bottom:698.682067pt;}
.y34{bottom:704.276500pt;}
.yff{bottom:707.000533pt;}
.y64{bottom:707.642467pt;}
.y2{bottom:709.561067pt;}
.y92{bottom:711.481467pt;}
.yed{bottom:712.440933pt;}
.yc2{bottom:713.081067pt;}
.yc1{bottom:713.083333pt;}
.y33{bottom:718.200667pt;}
.y63{bottom:722.042700pt;}
.y91{bottom:726.521067pt;}
.y90{bottom:726.523333pt;}
.yec{bottom:727.161200pt;}
.yc0{bottom:727.482333pt;}
.y31{bottom:732.600833pt;}
.y32{bottom:732.601600pt;}
.y1{bottom:732.920933pt;}
.y62{bottom:736.441700pt;}
.y8f{bottom:740.922333pt;}
.ybf{bottom:741.881800pt;}
.y30{bottom:746.999833pt;}
.y61{bottom:750.840700pt;}
.y8d{bottom:755.000533pt;}
.y8e{bottom:755.321333pt;}
.ybe{bottom:756.280800pt;}
.yeb{bottom:758.201200pt;}
.yfe{bottom:760.760267pt;}
.y2f{bottom:761.723167pt;}
.y60{bottom:765.560533pt;}
.ybd{bottom:770.681600pt;}
.yea{bottom:772.921333pt;}
.y2e{bottom:775.801667pt;}
.y5f{bottom:779.961800pt;}
.y8c{bottom:783.160667pt;}
.y8b{bottom:783.161100pt;}
.ybc{bottom:785.081067pt;}
.ye9{bottom:787.640133pt;}
.yfd{bottom:789.241200pt;}
.y2d{bottom:790.200667pt;}
.y5e{bottom:794.360800pt;}
.y89{bottom:797.240800pt;}
.y8a{bottom:797.880933pt;}
.ybb{bottom:799.482000pt;}
.ye8{bottom:802.041067pt;}
.h49{height:15.992187pt;}
.h16{height:18.078125pt;}
.h3f{height:29.428711pt;}
.h48{height:31.984375pt;}
.h1b{height:36.156250pt;}
.h18{height:36.953125pt;}
.h46{height:38.872396pt;}
.h17{height:38.968750pt;}
.h1c{height:39.640625pt;}
.h1a{height:40.984375pt;}
.h9{height:44.500000pt;}
.h38{height:45.146484pt;}
.ha{height:45.195312pt;}
.h10{height:45.890625pt;}
.h3a{height:47.739909pt;}
.h14{height:47.763672pt;}
.h34{height:47.976562pt;}
.h22{height:48.417969pt;}
.hb{height:48.671875pt;}
.h11{height:49.072266pt;}
.h2e{height:49.726562pt;}
.hd{height:50.062500pt;}
.h3e{height:50.072917pt;}
.h25{height:50.355794pt;}
.he{height:50.380859pt;}
.h39{height:50.390625pt;}
.h35{height:50.391126pt;}
.h23{height:50.421259pt;}
.hc{height:50.757812pt;}
.h33{height:51.009766pt;}
.h15{height:51.035156pt;}
.hf{height:51.453125pt;}
.h36{height:51.457047pt;}
.h28{height:51.663737pt;}
.h24{height:51.664193pt;}
.h32{height:51.689453pt;}
.h43{height:51.734375pt;}
.h54{height:52.148438pt;}
.h57{height:52.151638pt;}
.h29{height:52.317708pt;}
.h2b{height:52.343750pt;}
.h2f{height:52.406250pt;}
.h21{height:52.947526pt;}
.h42{height:52.998047pt;}
.h2a{height:53.625651pt;}
.h2d{height:53.652344pt;}
.h13{height:53.750000pt;}
.h30{height:54.234375pt;}
.h3d{height:54.306641pt;}
.h2c{height:54.421875pt;}
.h1d{height:54.684896pt;}
.h45{height:54.929688pt;}
.h31{height:54.960938pt;}
.h44{height:55.093750pt;}
.h56{height:57.015625pt;}
.h59{height:57.710938pt;}
.h12{height:57.979167pt;}
.h4f{height:59.101562pt;}
.h55{height:59.796875pt;}
.h58{height:60.492188pt;}
.h37{height:61.882812pt;}
.h47{height:62.578125pt;}
.h19{height:63.968750pt;}
.h51{height:67.445312pt;}
.h52{height:68.835938pt;}
.h53{height:69.531250pt;}
.h50{height:70.226562pt;}
.h1e{height:79.960938pt;}
.h8{height:82.046875pt;}
.h4{height:84.828125pt;}
.h7{height:88.304688pt;}
.h5{height:89.000000pt;}
.h3{height:89.695312pt;}
.h6{height:91.085938pt;}
.h2{height:91.781250pt;}
.h4c{height:162.703125pt;}
.h4e{height:163.398438pt;}
.h4b{height:164.093750pt;}
.h4d{height:166.179688pt;}
.h20{height:901.333333pt;}
.h1f{height:901.362267pt;}
.h1{height:902.666667pt;}
.h0{height:902.962267pt;}
.h40{height:903.282267pt;}
.h41{height:903.333333pt;}
.h26{height:904.562267pt;}
.h27{height:904.666667pt;}
.h4a{height:905.202267pt;}
.h3c{height:905.333333pt;}
.h3b{height:905.523600pt;}
.w6{width:585.200933pt;}
.w7{width:585.333333pt;}
.w2{width:586.482267pt;}
.w3{width:586.666667pt;}
.wa{width:588.401720pt;}
.wb{width:588.666667pt;}
.w5{width:591.333333pt;}
.w4{width:591.602267pt;}
.w1{width:594.000000pt;}
.w0{width:594.163600pt;}
.w9{width:596.666667pt;}
.w8{width:596.722267pt;}
.x0{left:0.000000pt;}
.xa0{left:39.160653pt;}
.xa7{left:40.128287pt;}
.x98{left:56.439987pt;}
.x3c{left:58.681200pt;}
.x3e{left:59.956567pt;}
.x2f{left:61.559167pt;}
.x20{left:62.506467pt;}
.x1{left:63.481467pt;}
.x79{left:69.562000pt;}
.x73{left:70.521467pt;}
.x6f{left:71.480933pt;}
.x6e{left:72.441867pt;}
.x28{left:79.161200pt;}
.x43{left:80.125033pt;}
.x45{left:81.085967pt;}
.x1b{left:83.002000pt;}
.x44{left:83.961467pt;}
.x7f{left:88.440933pt;}
.x74{left:90.042000pt;}
.x95{left:91.320800pt;}
.x9d{left:92.601053pt;}
.x8e{left:94.200667pt;}
.x7a{left:95.161600pt;}
.x29{left:97.082000pt;}
.xe{left:98.362267pt;}
.x1f{left:99.321867pt;}
.x8{left:100.602133pt;}
.x49{left:101.880933pt;}
.x82{left:107.321333pt;}
.x80{left:108.601600pt;}
.x75{left:109.561067pt;}
.x83{left:112.760267pt;}
.x34{left:115.959767pt;}
.x38{left:117.234633pt;}
.x6b{left:118.521467pt;}
.x52{left:119.475533pt;}
.x6c{left:120.761200pt;}
.x4e{left:122.681600pt;}
.x4a{left:123.641200pt;}
.x3f{left:130.041067pt;}
.x8b{left:131.321333pt;}
.x15{left:132.601600pt;}
.x58{left:133.561067pt;}
.xa6{left:135.800787pt;}
.x5b{left:137.400400pt;}
.x4f{left:139.001467pt;}
.xa4{left:140.601053pt;}
.x5c{left:141.881333pt;}
.x93{left:145.720667pt;}
.x27{left:149.242267pt;}
.x66{left:150.200267pt;}
.x5d{left:155.640667pt;}
.x9b{left:158.520520pt;}
.xa5{left:161.081053pt;}
.x81{left:162.042000pt;}
.x2{left:163.322267pt;}
.x40{left:165.881333pt;}
.x67{left:169.720667pt;}
.x61{left:173.880933pt;}
.x7e{left:178.361867pt;}
.xa1{left:180.600120pt;}
.x8c{left:184.121600pt;}
.x10{left:186.682133pt;}
.x9e{left:188.280253pt;}
.x30{left:189.241200pt;}
.x23{left:190.202133pt;}
.x9{left:192.121067pt;}
.x99{left:197.240787pt;}
.x76{left:198.201733pt;}
.x24{left:203.002000pt;}
.x3{left:203.961467pt;}
.xa2{left:206.520520pt;}
.x11{left:208.440933pt;}
.x25{left:209.721200pt;}
.x77{left:211.001467pt;}
.x84{left:215.161600pt;}
.x62{left:220.600533pt;}
.x12{left:221.880933pt;}
.x26{left:222.841867pt;}
.xf{left:224.439767pt;}
.x46{left:225.400933pt;}
.x68{left:228.601600pt;}
.x2a{left:229.881867pt;}
.xa{left:232.440933pt;}
.x85{left:235.001467pt;}
.x9c{left:238.200653pt;}
.x4{left:239.480933pt;}
.x16{left:240.761200pt;}
.x86{left:243.000933pt;}
.x13{left:245.242267pt;}
.x2b{left:247.482000pt;}
.x31{left:249.721733pt;}
.x17{left:258.042000pt;}
.x59{left:259.320800pt;}
.x2c{left:260.921867pt;}
.xb{left:262.202133pt;}
.x42{left:265.401333pt;}
.x2d{left:266.362267pt;}
.x47{left:267.960400pt;}
.x32{left:269.561600pt;}
.x4b{left:270.521067pt;}
.x6d{left:271.480533pt;}
.x69{left:273.400933pt;}
.xa8{left:274.360387pt;}
.x2e{left:281.081067pt;}
.x48{left:285.881333pt;}
.x33{left:287.801733pt;}
.x18{left:289.401333pt;}
.x6a{left:293.240667pt;}
.x3a{left:296.122133pt;}
.x14{left:298.361867pt;}
.x70{left:301.881867pt;}
.x1c{left:303.162133pt;}
.x3d{left:305.400400pt;}
.x36{left:306.361333pt;}
.x5{left:307.960933pt;}
.x3b{left:309.881333pt;}
.x71{left:313.082000pt;}
.x41{left:315.641067pt;}
.x1d{left:317.880933pt;}
.x37{left:320.122133pt;}
.x96{left:324.920933pt;}
.x72{left:326.841333pt;}
.x19{left:332.281733pt;}
.x9a{left:334.840787pt;}
.x6{left:338.681733pt;}
.x5a{left:339.641067pt;}
.x8f{left:343.801333pt;}
.x90{left:358.521467pt;}
.x91{left:365.240667pt;}
.x57{left:368.441467pt;}
.x7{left:375.802267pt;}
.x92{left:379.320800pt;}
.x9f{left:380.280253pt;}
.x54{left:385.720667pt;}
.x1a{left:389.242267pt;}
.x50{left:391.480533pt;}
.xc{left:396.601600pt;}
.x87{left:400.121600pt;}
.x97{left:401.400400pt;}
.x5f{left:406.200667pt;}
.x55{left:407.161600pt;}
.x63{left:411.641067pt;}
.x51{left:415.801333pt;}
.x88{left:416.760800pt;}
.x7c{left:418.681200pt;}
.x56{left:423.160667pt;}
.x64{left:425.721200pt;}
.x60{left:428.280267pt;}
.x7d{left:431.161600pt;}
.xd{left:433.722133pt;}
.x89{left:436.600533pt;}
.x21{left:443.002000pt;}
.x78{left:444.920933pt;}
.x65{left:451.320800pt;}
.x22{left:457.401333pt;}
.xa3{left:458.360787pt;}
.x4c{left:468.920933pt;}
.x1e{left:479.801733pt;}
.x4d{left:483.320400pt;}
.x7b{left:485.561600pt;}
.x8a{left:493.561067pt;}
.x8d{left:497.400400pt;}
.x35{left:499.641600pt;}
.x53{left:503.161600pt;}
.x39{left:505.401333pt;}
.x94{left:506.360800pt;}
.x5e{left:514.360400pt;}
}




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