
    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_870c0dcd5c0ee903f1c40b0d.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d79c74973f6e43ab7aaab590.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_cdfac67905a3fdb98c395151.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_e2083c5826046189c2215452.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_af69e4bea500d13a0dafbc26.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_0447f2e0cb6fe866bf85a0ea.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_6deb92ed688fecabe2933cfd.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_7bc4214b2cc555503d37f937.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_8cce0e0078a07a712afb45f5.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_8d6b33331f8ad9e742311d30.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_cefb1f224435d33fbd8b99f6.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_91e735e06caf6cf1c258a728.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_75985f27e4b1200a5d20268c.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_af49bafd8e191d5315b244bc.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_95f398058ebe7ba0741f9207.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_a0dff9ccb8bf79b99ebcbfa9.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_3b8950d8801abb62e4b05a05.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_cfeffce32a7441961068f32e.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_2ad9427ae2b72982287fb5fb.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_7d08d160eabf3b96a424bc78.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_5cf14f56f270fae1ddbecef6.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_2e976ee96d32235bf18767a2.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_e02b704ac6bb399b2bbdd98f.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_b21412bdc922554f97547733.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_9adbafb62a4651a761292b80.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_5862ba6709af675aa2026ecc.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_0920d50c8bdc3f38dcc460a8.woff2')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_f0f4b67511b0d16916d8bfa5.woff2')format("woff");}.ff1c{font-family:ff1c;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;}
.m46{transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);}
.m34{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);}
.m80{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.182432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182432,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.182609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182609,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.185185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185185,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.189516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189516,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.190141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190141,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.191176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191176,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.194853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194853,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.195652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195652,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.198171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198171,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.201493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201493,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.205882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205882,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.206522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206522,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.209770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209770,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.210938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210938,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.212209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212209,0.000000,0.000000,0.250000,0,0);}
.m1b{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);}
.m22{transform:matrix(0.212687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212687,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.214744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214744,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.215625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215625,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.216216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216216,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.218023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218023,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.220149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220149,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.220779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220779,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.221264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221264,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.221831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221831,0.000000,0.000000,0.250000,0,0);}
.m4e{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);}
.m29{transform:matrix(0.222892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222892,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.223485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223485,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.223684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223684,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.227612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227612,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.228395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228395,0.000000,0.000000,0.250000,0,0);}
.m1d{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);}
.m5c{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);}
.m3d{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);}
.m5b{transform:matrix(0.229885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229885,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.230435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230435,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.230556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230556,0.000000,0.000000,0.250000,0,0);}
.m68{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);}
.m5f{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);}
.m85{transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);}
.m1e{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);}
.m3b{transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.233516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233516,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.234155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234155,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);}
.m77{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);}
.m23{transform:matrix(0.235075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235075,0.000000,0.000000,0.250000,0,0);}
.m50{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);}
.m2{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);}
.m66{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);}
.mc{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);}
.m18{transform:matrix(0.237952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237952,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.238462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238462,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.238806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238806,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.239669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239669,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);}
.m12{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);}
.m24{transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);}
.m69{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);}
.m10{transform:matrix(0.242424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242424,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.242537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242537,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.243827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243827,0.000000,0.000000,0.250000,0,0);}
.m5d{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);}
.m1c{transform:matrix(0.244048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244048,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.244828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244828,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.246269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246269,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.246795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246795,0.000000,0.000000,0.250000,0,0);}
.m76{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);}
.m72{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);}
.m3f{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);}
.md{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);}
.m15{transform:matrix(0.253086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253086,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.mf{transform:matrix(0.253731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253731,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.256173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256173,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.258621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258621,0.000000,0.000000,0.250000,0,0);}
.m7e{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);}
.m21{transform:matrix(0.261538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261538,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.261765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261765,0.000000,0.000000,0.250000,0,0);}
.m7c{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);}
.m3{transform:matrix(0.265086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265086,0.000000,0.000000,0.250000,0,0);}
.m79{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);}
.m56{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);}
.m6e{transform:matrix(0.267241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267241,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.267442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267442,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.267606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267606,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.268519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268519,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.268987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268987,0.000000,0.000000,0.250000,0,0);}
.m20{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);}
.m5{transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.271605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271605,0.000000,0.000000,0.250000,0,0);}
.m6c{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);}
.m8{transform:matrix(0.275316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275316,0.000000,0.000000,0.250000,0,0);}
.m73{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);}
.m16{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);}
.m17{transform:matrix(0.283951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283951,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.287162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287162,0.000000,0.000000,0.250000,0,0);}
.m70{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);}
.m65{transform:matrix(0.293210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293210,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.305195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305195,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.307432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307432,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.308442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308442,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.308642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308642,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.311728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311728,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.314516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314516,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.343373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343373,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.367470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367470,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.370130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370130,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.507194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507194,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.580435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580435,0.000000,0.000000,0.250000,0,0);}
.m7a{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);}
.m58{transform:matrix(0.608696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608696,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.684783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.684783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.684783,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.713768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.713768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.713768,0.000000,0.000000,0.250000,0,0);}
.m62{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);}
.m19{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);}
.m4a{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);}
.m6f{transform:matrix(1.152174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152174,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-8.662500px;}
.v0{vertical-align:0.000000px;}
.ls7f{letter-spacing:-10.457625px;}
.lsb6{letter-spacing:-9.185400px;}
.ls36{letter-spacing:-9.076050px;}
.lsaf{letter-spacing:-8.474625px;}
.ls33{letter-spacing:-8.377425px;}
.ls98{letter-spacing:-8.097975px;}
.ls35{letter-spacing:-7.678800px;}
.ls16{letter-spacing:-7.489200px;}
.ls97{letter-spacing:-6.749325px;}
.lsb3{letter-spacing:-6.354450px;}
.ls28{letter-spacing:-6.287625px;}
.ls7b{letter-spacing:-6.274575px;}
.ls1a{letter-spacing:-6.132375px;}
.lsb0{letter-spacing:-5.649750px;}
.ls99{letter-spacing:-5.400675px;}
.ls53{letter-spacing:-5.253000px;}
.lsbf{letter-spacing:-5.042475px;}
.ls50{letter-spacing:-4.904325px;}
.ls2b{letter-spacing:-4.890375px;}
.ls77{letter-spacing:-4.882200px;}
.ls19{letter-spacing:-4.769625px;}
.lsb2{letter-spacing:-4.240350px;}
.ls2e{letter-spacing:-4.191750px;}
.ls7d{letter-spacing:-4.183050px;}
.ls18{letter-spacing:-4.088250px;}
.lsbe{letter-spacing:-3.602550px;}
.ls4f{letter-spacing:-3.556800px;}
.lsb7{letter-spacing:-3.529575px;}
.ls2d{letter-spacing:-3.493125px;}
.ls7a{letter-spacing:-3.483900px;}
.ls94{letter-spacing:-3.438600px;}
.ls1c{letter-spacing:-3.406875px;}
.ls6f{letter-spacing:-3.286125px;}
.lsc{letter-spacing:-3.066750px;}
.lsb1{letter-spacing:-2.824875px;}
.ls7c{letter-spacing:-2.811600px;}
.ls30{letter-spacing:-2.794500px;}
.ls78{letter-spacing:-2.790675px;}
.ls17{letter-spacing:-2.725500px;}
.ls1d{letter-spacing:-2.251200px;}
.ls1e{letter-spacing:-2.216025px;}
.lsc7{letter-spacing:-2.162625px;}
.lsb4{letter-spacing:-2.120175px;}
.ls6e{letter-spacing:-2.105400px;}
.ls29{letter-spacing:-2.095875px;}
.ls72{letter-spacing:-2.091525px;}
.ls5b{letter-spacing:-2.071575px;}
.ls93{letter-spacing:-2.065800px;}
.ls12{letter-spacing:-2.044125px;}
.ls3c{letter-spacing:-2.022975px;}
.ls39{letter-spacing:-1.597950px;}
.ls4e{letter-spacing:-1.572825px;}
.ls84{letter-spacing:-1.545300px;}
.lsbc{letter-spacing:-1.537200px;}
.lsa2{letter-spacing:-1.522575px;}
.lsa0{letter-spacing:-1.499850px;}
.ls54{letter-spacing:-1.498125px;}
.lsc5{letter-spacing:-1.439925px;}
.lse{letter-spacing:-1.418100px;}
.lsb8{letter-spacing:-1.415475px;}
.ls6c{letter-spacing:-1.405800px;}
.ls32{letter-spacing:-1.397250px;}
.ls70{letter-spacing:-1.392375px;}
.ls10{letter-spacing:-1.387500px;}
.ls5c{letter-spacing:-1.379025px;}
.ls91{letter-spacing:-1.372800px;}
.ls14{letter-spacing:-1.362750px;}
.ls9f{letter-spacing:-1.348650px;}
.lsba{letter-spacing:-1.318275px;}
.ls56{letter-spacing:-1.192725px;}
.ls4c{letter-spacing:-0.888000px;}
.ls90{letter-spacing:-0.816750px;}
.ls73{letter-spacing:-0.815625px;}
.ls83{letter-spacing:-0.798975px;}
.ls61{letter-spacing:-0.795600px;}
.ls81{letter-spacing:-0.775200px;}
.ls86{letter-spacing:-0.775125px;}
.ls5e{letter-spacing:-0.773850px;}
.ls62{letter-spacing:-0.772200px;}
.ls74{letter-spacing:-0.768750px;}
.ls95{letter-spacing:-0.759450px;}
.ls9e{letter-spacing:-0.756450px;}
.lsa1{letter-spacing:-0.748800px;}
.lsc2{letter-spacing:-0.748125px;}
.ls58{letter-spacing:-0.714000px;}
.lsd{letter-spacing:-0.704700px;}
.ls6d{letter-spacing:-0.699600px;}
.ls75{letter-spacing:-0.699150px;}
.ls27{letter-spacing:-0.698625px;}
.ls55{letter-spacing:-0.692550px;}
.ls92{letter-spacing:-0.686400px;}
.ls13{letter-spacing:-0.681375px;}
.ls96{letter-spacing:-0.674325px;}
.ls2f{letter-spacing:-0.612150px;}
.ls9a{letter-spacing:-0.610500px;}
.lsb{letter-spacing:0.000000px;}
.lsc6{letter-spacing:0.654900px;}
.ls8d{letter-spacing:0.674325px;}
.ls2{letter-spacing:0.681375px;}
.ls41{letter-spacing:0.692550px;}
.ls2a{letter-spacing:0.696000px;}
.ls20{letter-spacing:0.698625px;}
.ls63{letter-spacing:0.699150px;}
.lsa3{letter-spacing:0.704700px;}
.lsa8{letter-spacing:0.722700px;}
.lsb9{letter-spacing:0.768600px;}
.lsad{letter-spacing:0.772200px;}
.ls82{letter-spacing:0.775200px;}
.ls2c{letter-spacing:0.776475px;}
.lsc9{letter-spacing:0.789075px;}
.ls34{letter-spacing:0.789750px;}
.ls44{letter-spacing:0.795600px;}
.ls3d{letter-spacing:0.803250px;}
.ls85{letter-spacing:0.814125px;}
.lsca{letter-spacing:0.841500px;}
.lsf{letter-spacing:0.848925px;}
.ls60{letter-spacing:0.854250px;}
.ls7e{letter-spacing:0.870000px;}
.ls48{letter-spacing:0.957375px;}
.ls4b{letter-spacing:0.985125px;}
.lsc0{letter-spacing:1.304250px;}
.ls8e{letter-spacing:1.348650px;}
.ls4{letter-spacing:1.362750px;}
.ls42{letter-spacing:1.379025px;}
.ls64{letter-spacing:1.392375px;}
.ls22{letter-spacing:1.397250px;}
.lsa6{letter-spacing:1.415475px;}
.lsaa{letter-spacing:1.439925px;}
.ls3f{letter-spacing:1.498125px;}
.lsb5{letter-spacing:1.537200px;}
.lsa{letter-spacing:1.549350px;}
.ls3a{letter-spacing:1.550400px;}
.ls1b{letter-spacing:1.556100px;}
.ls3b{letter-spacing:1.574625px;}
.ls89{letter-spacing:1.593750px;}
.ls5f{letter-spacing:1.596300px;}
.ls7{letter-spacing:1.648200px;}
.lsc8{letter-spacing:1.737150px;}
.ls46{letter-spacing:1.859250px;}
.ls8f{letter-spacing:2.022975px;}
.ls3{letter-spacing:2.044125px;}
.ls40{letter-spacing:2.071575px;}
.ls66{letter-spacing:2.091525px;}
.ls9b{letter-spacing:2.094000px;}
.ls21{letter-spacing:2.095875px;}
.lsa5{letter-spacing:2.120175px;}
.ls1{letter-spacing:2.122800px;}
.lsab{letter-spacing:2.162625px;}
.ls4d{letter-spacing:2.193075px;}
.ls3e{letter-spacing:2.250375px;}
.ls1f{letter-spacing:2.321550px;}
.ls8a{letter-spacing:2.390625px;}
.ls51{letter-spacing:2.425500px;}
.ls8{letter-spacing:2.472300px;}
.ls45{letter-spacing:2.521125px;}
.ls6b{letter-spacing:2.544750px;}
.ls38{letter-spacing:2.643150px;}
.ls9c{letter-spacing:2.697300px;}
.ls6{letter-spacing:2.725500px;}
.ls43{letter-spacing:2.764125px;}
.ls65{letter-spacing:2.790675px;}
.ls24{letter-spacing:2.794500px;}
.lsa4{letter-spacing:2.824875px;}
.lsa9{letter-spacing:2.879850px;}
.lsae{letter-spacing:3.151575px;}
.ls8c{letter-spacing:3.187500px;}
.ls49{letter-spacing:3.351600px;}
.lsc4{letter-spacing:3.381375px;}
.ls11{letter-spacing:3.468750px;}
.ls37{letter-spacing:3.480750px;}
.ls68{letter-spacing:3.483900px;}
.ls26{letter-spacing:3.493125px;}
.lsa7{letter-spacing:3.529575px;}
.lsbb{letter-spacing:3.636000px;}
.ls9{letter-spacing:3.865950px;}
.ls8b{letter-spacing:3.984375px;}
.ls5{letter-spacing:4.088250px;}
.ls31{letter-spacing:4.102050px;}
.ls57{letter-spacing:4.143150px;}
.ls67{letter-spacing:4.183050px;}
.ls25{letter-spacing:4.191750px;}
.lsac{letter-spacing:4.319775px;}
.ls15{letter-spacing:4.668300px;}
.ls52{letter-spacing:4.729350px;}
.ls88{letter-spacing:4.781250px;}
.ls0{letter-spacing:4.950300px;}
.ls5d{letter-spacing:5.060475px;}
.ls76{letter-spacing:5.363550px;}
.lsc3{letter-spacing:5.449275px;}
.ls87{letter-spacing:5.578125px;}
.ls9d{letter-spacing:5.676000px;}
.ls47{letter-spacing:6.153975px;}
.lsbd{letter-spacing:6.166050px;}
.ls5a{letter-spacing:6.224400px;}
.ls80{letter-spacing:6.321975px;}
.ls79{letter-spacing:6.486000px;}
.ls23{letter-spacing:6.980175px;}
.ls6a{letter-spacing:7.666950px;}
.lsc1{letter-spacing:8.274000px;}
.ls71{letter-spacing:8.836500px;}
.ls59{letter-spacing:12.423375px;}
.ls4a{letter-spacing:15.087600px;}
.ls69{letter-spacing:15.333900px;}
.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;}
._1e{margin-left:-53.211068px;}
._16{margin-left:-38.039664px;}
._18{margin-left:-36.684093px;}
._19{margin-left:-34.334783px;}
._27{margin-left:-23.221251px;}
._28{margin-left:-15.329273px;}
._15{margin-left:-13.697061px;}
._1d{margin-left:-7.607284px;}
._17{margin-left:-4.212246px;}
._e{margin-left:-2.669004px;}
._6{margin-left:-1.540500px;}
._d{width:1.567371px;}
._7{width:3.555000px;}
._5{width:5.243625px;}
._c{width:6.253629px;}
._9{width:7.435875px;}
._8{width:8.857875px;}
._a{width:10.168575px;}
._b{width:11.790750px;}
._2{width:12.902100px;}
._0{width:14.816100px;}
._f{width:15.998325px;}
._13{width:17.397309px;}
._11{width:19.078500px;}
._12{width:20.500500px;}
._10{width:22.062216px;}
._4{width:23.794500px;}
._3{width:25.404000px;}
._1a{width:26.487000px;}
._1b{width:28.230525px;}
._29{width:29.545500px;}
._1{width:31.528800px;}
._1c{width:36.383850px;}
._22{width:45.011458px;}
._23{width:99.223983px;}
._26{width:136.902675px;}
._1f{width:138.472687px;}
._25{width:159.183112px;}
._20{width:383.457336px;}
._24{width:387.185625px;}
._21{width:500.892111px;}
._14{width:1076.873454px;}
.fc0{color:transparent;}
.fs25{font-size:17.250000px;}
.fs1d{font-size:23.250000px;}
.fs2a{font-size:27.000000px;}
.fs26{font-size:30.000000px;}
.fs21{font-size:38.250000px;}
.fs11{font-size:42.000000px;}
.fs1c{font-size:46.500000px;}
.fs15{font-size:47.250000px;}
.fs14{font-size:48.000000px;}
.fs13{font-size:48.750000px;}
.fsa{font-size:49.500000px;}
.fs9{font-size:50.250000px;}
.fs18{font-size:51.000000px;}
.fs19{font-size:51.750000px;}
.fs27{font-size:52.500000px;}
.fs1b{font-size:53.250000px;}
.fs16{font-size:54.000000px;}
.fs2b{font-size:54.750000px;}
.fs5{font-size:55.500000px;}
.fs22{font-size:56.250000px;}
.fs1a{font-size:57.000000px;}
.fs4{font-size:57.750000px;}
.fs12{font-size:58.500000px;}
.fs6{font-size:59.250000px;}
.fsc{font-size:60.000000px;}
.fs8{font-size:60.750000px;}
.fs10{font-size:61.500000px;}
.fse{font-size:62.250000px;}
.fs7{font-size:63.000000px;}
.fsd{font-size:63.750000px;}
.fs23{font-size:64.500000px;}
.fsb{font-size:65.250000px;}
.fs24{font-size:66.000000px;}
.fs28{font-size:67.500000px;}
.fs29{font-size:68.250000px;}
.fsf{font-size:69.000000px;}
.fs20{font-size:78.750000px;}
.fs17{font-size:86.250000px;}
.fs3{font-size:87.000000px;}
.fs1f{font-size:90.750000px;}
.fs1e{font-size:104.250000px;}
.fs0{font-size:106.500000px;}
.fs2{font-size:108.000000px;}
.fs1{font-size:108.750000px;}
.y0{bottom:0.000000px;}
.yc3{bottom:53.056800px;}
.yad{bottom:54.136200px;}
.yc2{bottom:54.497100px;}
.yfa{bottom:56.655900px;}
.y2b{bottom:59.895900px;}
.y64{bottom:61.695450px;}
.y8a{bottom:62.415600px;}
.y63{bottom:62.776500px;}
.y89{bottom:63.855900px;}
.yf9{bottom:84.016800px;}
.yac{bottom:84.016913px;}
.yc1{bottom:84.725625px;}
.y2a{bottom:89.056312px;}
.y62{bottom:93.018975px;}
.y88{bottom:93.369788px;}
.yab{bottom:99.851475px;}
.yc0{bottom:100.930687px;}
.yf8{bottom:103.096800px;}
.yf7{bottom:103.102912px;}
.y29{bottom:105.261187px;}
.y61{bottom:108.859537px;}
.y86{bottom:109.563637px;}
.y87{bottom:109.574850px;}
.yaa{bottom:116.056350px;}
.ybf{bottom:117.135750px;}
.ybe{bottom:117.140138px;}
.y27{bottom:121.080825px;}
.y28{bottom:121.095750px;}
.yf5{bottom:121.097400px;}
.yf6{bottom:123.976350px;}
.y60{bottom:124.335600px;}
.y5f{bottom:124.335712px;}
.y85{bottom:125.404200px;}
.ya9{bottom:132.251775px;}
.y26{bottom:137.285700px;}
.y5e{bottom:141.254588px;}
.y84{bottom:141.609262px;}
.ybd{bottom:142.336200px;}
.yf4{bottom:143.056350px;}
.ya8{bottom:148.456650px;}
.y25{bottom:153.490575px;}
.yf2{bottom:156.376650px;}
.y5d{bottom:157.090575px;}
.y83{bottom:157.449825px;}
.yf3{bottom:159.257250px;}
.ya7{bottom:164.652075px;}
.y24{bottom:169.695450px;}
.y5c{bottom:173.295637px;}
.y82{bottom:173.654888px;}
.ybc{bottom:174.371025px;}
.ya6{bottom:180.864338px;}
.y23{bottom:185.535450px;}
.yf1{bottom:188.416050px;}
.y5b{bottom:189.131850px;}
.y81{bottom:189.495450px;}
.ybb{bottom:190.211588px;}
.ya5{bottom:196.876650px;}
.yba{bottom:206.416650px;}
.y5a{bottom:208.936350px;}
.y22{bottom:210.015750px;}
.ya4{bottom:212.896350px;}
.y7f{bottom:218.290987px;}
.y80{bottom:218.295000px;}
.yb9{bottom:222.599437px;}
.y58{bottom:224.770687px;}
.y59{bottom:224.776500px;}
.ya3{bottom:229.091775px;}
.y7d{bottom:234.495638px;}
.y7e{bottom:234.496050px;}
.yf0{bottom:235.216200px;}
.yef{bottom:235.222125px;}
.yb8{bottom:238.440000px;}
.y57{bottom:240.975750px;}
.ya2{bottom:245.296650px;}
.y7c{bottom:250.336200px;}
.y21{bottom:250.706475px;}
.yed{bottom:251.772338px;}
.yee{bottom:251.776500px;}
.yb7{bottom:254.645062px;}
.y56{bottom:260.055750px;}
.ya0{bottom:261.494737px;}
.ya1{bottom:261.496050px;}
.y7a{bottom:266.531438px;}
.y20{bottom:266.541037px;}
.y7b{bottom:267.435300px;}
.yeb{bottom:267.976988px;}
.yec{bottom:267.977400px;}
.yb6{bottom:270.850125px;}
.y55{bottom:276.260513px;}
.y9f{bottom:277.329300px;}
.y1f{bottom:282.375600px;}
.y79{bottom:282.736500px;}
.yea{bottom:283.817550px;}
.yb5{bottom:286.690688px;}
.y54{bottom:292.101075px;}
.y9e{bottom:293.889675px;}
.y1d{bottom:298.571025px;}
.y1e{bottom:298.574850px;}
.yb4{bottom:302.895750px;}
.y52{bottom:308.650875px;}
.y53{bottom:308.655450px;}
.ye9{bottom:311.896950px;}
.y1c{bottom:314.775900px;}
.yb3{bottom:319.096800px;}
.y9d{bottom:319.456050px;}
.y77{bottom:320.535450px;}
.y51{bottom:324.491438px;}
.y1a{bottom:330.971325px;}
.y1b{bottom:330.975300px;}
.y78{bottom:331.154850px;}
.y50{bottom:340.696500px;}
.y9c{bottom:346.456050px;}
.y19{bottom:347.170687px;}
.ye8{bottom:355.447425px;}
.y4f{bottom:356.536500px;}
.y18{bottom:363.005250px;}
.ye7{bottom:371.652488px;}
.y76{bottom:374.896350px;}
.y4e{bottom:376.335000px;}
.y17{bottom:379.210125px;}
.y75{bottom:381.376050px;}
.ye6{bottom:387.857550px;}
.ye5{bottom:387.857663px;}
.y4d{bottom:392.535300px;}
.y16{bottom:395.415000px;}
.y9b{bottom:397.210725px;}
.ye4{bottom:404.412037px;}
.y74{bottom:405.136200px;}
.y15{bottom:411.255150px;}
.y4c{bottom:411.975300px;}
.y9a{bottom:413.415600px;}
.ye3{bottom:420.617100px;}
.y73{bottom:421.695638px;}
.y99{bottom:429.613575px;}
.y4b{bottom:431.775300px;}
.y14{bottom:435.015150px;}
.ye2{bottom:436.812338px;}
.y72{bottom:447.256200px;}
.y4a{bottom:448.335600px;}
.y49{bottom:448.340100px;}
.ye1{bottom:453.005925px;}
.y98{bottom:455.535450px;}
.y71{bottom:463.455150px;}
.y47{bottom:467.415037px;}
.y48{bottom:467.415600px;}
.ye0{bottom:469.210987px;}
.y13{bottom:475.694850px;}
.y46{bottom:483.255600px;}
.ydf{bottom:485.416050px;}
.y12{bottom:491.540325px;}
.y70{bottom:495.850088px;}
.y97{bottom:500.896950px;}
.yde{bottom:501.617100px;}
.y11{bottom:507.374887px;}
.y45{bottom:508.095150px;}
.y6f{bottom:512.055150px;}
.y6e{bottom:512.056912px;}
.ydd{bottom:517.828200px;}
.y96{bottom:520.336200px;}
.y10{bottom:523.935262px;}
.y6d{bottom:528.261975px;}
.ydc{bottom:534.382575px;}
.yf{bottom:539.769825px;}
.y6c{bottom:544.816350px;}
.y44{bottom:545.539688px;}
.ydb{bottom:550.936950px;}
.yd{bottom:555.970613px;}
.ye{bottom:555.974700px;}
.y95{bottom:556.335600px;}
.y43{bottom:561.010087px;}
.yc{bottom:572.530988px;}
.yda{bottom:573.616050px;}
.y42{bottom:577.210987px;}
.yb{bottom:588.735862px;}
.y94{bottom:590.535450px;}
.y41{bottom:593.416050px;}
.y40{bottom:593.416162px;}
.y6b{bottom:593.417287px;}
.yd9{bottom:599.177400px;}
.ya{bottom:604.570425px;}
.y3f{bottom:609.970537px;}
.y6a{bottom:609.976350px;}
.y9{bottom:620.769825px;}
.y3e{bottom:626.175600px;}
.y93{bottom:627.975075px;}
.y8{bottom:636.974700px;}
.y68{bottom:636.976350px;}
.y69{bottom:638.055750px;}
.y3d{bottom:642.735900px;}
.yd8{bottom:643.091137px;}
.y92{bottom:644.535450px;}
.y91{bottom:644.540212px;}
.y66{bottom:653.175600px;}
.y67{bottom:654.616050px;}
.yd7{bottom:659.286375px;}
.y3c{bottom:659.296200px;}
.y7{bottom:661.095750px;}
.y65{bottom:670.815300px;}
.yd6{bottom:675.491437px;}
.y3b{bottom:675.495450px;}
.y3a{bottom:691.696312px;}
.yd5{bottom:691.696500px;}
.yd4{bottom:691.696613px;}
.y6{bottom:696.730425px;}
.y39{bottom:708.250688px;}
.yd3{bottom:708.250988px;}
.y5{bottom:712.935300px;}
.y38{bottom:724.455750px;}
.yd2{bottom:724.456050px;}
.yd1{bottom:724.461412px;}
.y4{bottom:729.495450px;}
.y37{bottom:740.296312px;}
.yd0{bottom:740.301975px;}
.y36{bottom:756.850687px;}
.yce{bottom:756.852337px;}
.ycf{bottom:756.856350px;}
.y35{bottom:773.050088px;}
.ycd{bottom:773.057513px;}
.y3{bottom:784.576650px;}
.y34{bottom:789.250988px;}
.ycc{bottom:789.262575px;}
.y32{bottom:805.450387px;}
.y33{bottom:805.456050px;}
.ycb{bottom:805.822875px;}
.y2{bottom:812.655900px;}
.y31{bottom:821.654887px;}
.yca{bottom:822.377250px;}
.y90{bottom:823.815900px;}
.yb2{bottom:832.456050px;}
.y30{bottom:837.501375px;}
.yc9{bottom:838.578525px;}
.y8f{bottom:841.455450px;}
.yb1{bottom:848.836650px;}
.y2f{bottom:854.055750px;}
.yc8{bottom:855.132900px;}
.y8e{bottom:858.735900px;}
.yb0{bottom:869.895900px;}
.yc7{bottom:871.337963px;}
.y8d{bottom:875.653350px;}
.y2e{bottom:878.536050px;}
.yaf{bottom:885.735900px;}
.yc6{bottom:887.892337px;}
.y8c{bottom:891.856350px;}
.yc5{bottom:904.101525px;}
.y1{bottom:914.176200px;}
.y2d{bottom:916.335000px;}
.y8b{bottom:918.495450px;}
.yae{bottom:918.856350px;}
.yc4{bottom:920.655900px;}
.y2c{bottom:932.895300px;}
.h4a{height:17.991211px;}
.h3a{height:24.249023px;}
.h56{height:28.160156px;}
.h4d{height:30.234375px;}
.h3f{height:37.540283px;}
.h20{height:43.804688px;}
.h24{height:47.845459px;}
.h34{height:48.498047px;}
.h28{height:49.280273px;}
.h10{height:49.886719px;}
.h25{height:50.062500px;}
.h26{height:50.844727px;}
.h52{height:51.525879px;}
.h44{height:51.626953px;}
.hf{height:52.409180px;}
.h2e{height:53.191406px;}
.h32{height:53.666016px;}
.h60{height:53.734131px;}
.h30{height:53.973633px;}
.h5a{height:54.470215px;}
.h45{height:54.849609px;}
.h61{height:55.206299px;}
.h35{height:55.538086px;}
.h7{height:55.933594px;}
.h2c{height:56.320312px;}
.he{height:56.678467px;}
.h23{height:57.414551px;}
.h57{height:57.884766px;}
.h8{height:58.150635px;}
.h4e{height:58.162335px;}
.h51{height:58.165935px;}
.hd{height:58.166535px;}
.ha{height:58.172535px;}
.hc{height:58.172685px;}
.h6{height:58.201172px;}
.h40{height:58.666992px;}
.h15{height:58.886719px;}
.h31{height:59.449219px;}
.hb{height:59.622803px;}
.h18{height:59.623553px;}
.h14{height:59.625053px;}
.h1d{height:59.625803px;}
.h3c{height:59.626253px;}
.h5d{height:59.638853px;}
.h16{height:59.639453px;}
.h21{height:59.640203px;}
.h22{height:59.641103px;}
.h17{height:59.645453px;}
.h43{height:59.646053px;}
.h5e{height:59.662103px;}
.h5f{height:59.668703px;}
.h59{height:59.689253px;}
.h27{height:60.038086px;}
.h41{height:60.231445px;}
.h37{height:60.328857px;}
.h1f{height:60.358887px;}
.h50{height:60.468750px;}
.h33{height:61.013672px;}
.h1b{height:61.094971px;}
.h42{height:61.224609px;}
.h36{height:61.800293px;}
.h1e{height:61.831055px;}
.h39{height:61.980469px;}
.h38{height:62.536011px;}
.h1a{height:62.567139px;}
.h4b{height:63.271729px;}
.h58{height:63.303223px;}
.h2f{height:63.360352px;}
.h9{height:63.492188px;}
.h4c{height:64.007446px;}
.h19{height:64.039307px;}
.h4f{height:64.248047px;}
.h2b{height:64.924805px;}
.h48{height:65.003906px;}
.h13{height:65.759766px;}
.h49{height:66.515625px;}
.h54{height:68.027344px;}
.h55{height:68.783203px;}
.h1c{height:71.964844px;}
.h3e{height:77.250366px;}
.h3d{height:89.066162px;}
.h2d{height:89.956055px;}
.h5{height:90.738281px;}
.h2{height:104.523926px;}
.h4{height:105.996094px;}
.h3{height:106.732178px;}
.h3b{height:108.729492px;}
.h1{height:990.750000px;}
.h0{height:990.991050px;}
.h53{height:990.992550px;}
.h5c{height:992.250000px;}
.h5b{height:992.434050px;}
.h2a{height:995.250000px;}
.h29{height:995.312550px;}
.h12{height:996.000000px;}
.h11{height:996.032550px;}
.h47{height:997.500000px;}
.h46{height:997.832550px;}
.w6{width:665.250000px;}
.w5{width:665.552550px;}
.w0{width:674.191050px;}
.w2{width:674.192550px;}
.w1{width:674.250000px;}
.w3{width:677.072550px;}
.w4{width:677.250000px;}
.x0{left:0.000000px;}
.x4a{left:47.297250px;}
.x4f{left:48.381600px;}
.x8c{left:50.176200px;}
.x1a{left:51.975750px;}
.x17{left:53.056800px;}
.x12{left:54.495450px;}
.xe{left:55.935750px;}
.x1{left:57.016800px;}
.x53{left:69.976350px;}
.x91{left:71.416650px;}
.x8e{left:74.297250px;}
.x52{left:76.440000px;}
.x4e{left:77.537100px;}
.x8d{left:79.313850px;}
.x64{left:80.416050px;}
.x16{left:83.296650px;}
.x4{left:84.735450px;}
.x1d{left:86.536650px;}
.xf{left:87.616050px;}
.x79{left:88.679362px;}
.x54{left:92.296200px;}
.x92{left:93.736500px;}
.x57{left:98.057400px;}
.x9c{left:99.496050px;}
.x9d{left:100.936725px;}
.x2c{left:102.376650px;}
.x6c{left:103.815300px;}
.x7d{left:105.616500px;}
.x9b{left:106.697550px;}
.x4d{left:108.130688px;}
.x4b{left:109.937400px;}
.x60{left:111.016800px;}
.x26{left:113.178487px;}
.x1c{left:114.616050px;}
.x72{left:116.060137px;}
.x58{left:117.857550px;}
.x55{left:122.896950px;}
.xac{left:124.337250px;}
.x9a{left:125.777550px;}
.xa6{left:126.856950px;}
.x61{left:131.176200px;}
.x62{left:132.616500px;}
.x2f{left:136.576500px;}
.x59{left:138.376200px;}
.x50{left:140.177400px;}
.xa7{left:141.976950px;}
.x65{left:143.417250px;}
.x7a{left:145.216800px;}
.x5a{left:153.856950px;}
.x51{left:155.656500px;}
.x27{left:159.616500px;}
.x63{left:167.177400px;}
.x29{left:173.296200px;}
.x70{left:174.375600px;}
.xd{left:178.710113px;}
.x28{left:180.856950px;}
.x66{left:186.977400px;}
.xc{left:188.416050px;}
.x5b{left:190.576500px;}
.x2a{left:195.976950px;}
.x2{left:199.216800px;}
.x25{left:200.296200px;}
.x33{left:203.176800px;}
.x31{left:204.617100px;}
.x80{left:205.696500px;}
.xa4{left:207.856950px;}
.x14{left:209.656500px;}
.x13{left:211.456050px;}
.x6b{left:213.606975px;}
.x5d{left:216.136200px;}
.x15{left:222.616050px;}
.x5{left:227.307825px;}
.x10{left:230.176800px;}
.x30{left:238.816950px;}
.x6{left:242.416050px;}
.x11{left:244.576500px;}
.x3{left:249.975300px;}
.x93{left:251.776500px;}
.x96{left:253.216800px;}
.x7{left:257.176800px;}
.x5e{left:263.297250px;}
.x1e{left:264.737550px;}
.x7e{left:268.336650px;}
.x71{left:270.136200px;}
.x67{left:273.016800px;}
.x1b{left:276.616050px;}
.x1f{left:286.337250px;}
.x68{left:293.896350px;}
.x8a{left:301.096200px;}
.x6d{left:302.536500px;}
.x94{left:306.857550px;}
.x8{left:314.775900px;}
.x76{left:315.855300px;}
.xa5{left:320.537100px;}
.x5c{left:322.697550px;}
.x95{left:323.776950px;}
.x45{left:324.856350px;}
.x3e{left:326.657550px;}
.x8b{left:329.897550px;}
.x9{left:332.056350px;}
.x46{left:336.736500px;}
.x99{left:345.017400px;}
.x3f{left:346.456050px;}
.xad{left:348.257250px;}
.xa2{left:350.416050px;}
.x36{left:355.096200px;}
.x81{left:356.895750px;}
.x6e{left:359.776500px;}
.x97{left:363.377250px;}
.xa3{left:364.817550px;}
.xa{left:368.775900px;}
.x6f{left:370.575450px;}
.x47{left:373.096800px;}
.x6a{left:374.896350px;}
.x75{left:375.975750px;}
.x98{left:377.416050px;}
.xae{left:379.937400px;}
.x2e{left:382.096200px;}
.xb{left:383.175600px;}
.x37{left:386.776500px;}
.x82{left:388.576050px;}
.x2d{left:389.657100px;}
.x18{left:391.095750px;}
.x32{left:398.656500px;}
.x4c{left:402.616500px;}
.x19{left:405.495450px;}
.x77{left:408.376050px;}
.x56{left:411.256800px;}
.x2b{left:414.137400px;}
.x38{left:421.696500px;}
.x78{left:422.775900px;}
.x86{left:428.176200px;}
.xa8{left:433.937400px;}
.xaf{left:442.216800px;}
.x40{left:446.536050px;}
.x39{left:449.057400px;}
.x83{left:451.216200px;}
.x41{left:457.697550px;}
.x48{left:459.136200px;}
.x9e{left:460.937400px;}
.x88{left:462.737100px;}
.x42{left:468.137400px;}
.x49{left:469.936950px;}
.x87{left:473.536050px;}
.x9f{left:475.696500px;}
.xb0{left:485.056800px;}
.x5f{left:486.136200px;}
.x8f{left:490.096200px;}
.x3a{left:492.256800px;}
.x43{left:493.336200px;}
.x23{left:504.496050px;}
.x44{left:507.376650px;}
.xa9{left:509.537100px;}
.x90{left:512.416050px;}
.x24{left:518.177250px;}
.x73{left:519.256800px;}
.x34{left:524.296200px;}
.xaa{left:526.097400px;}
.xa0{left:527.176800px;}
.x21{left:528.256200px;}
.x74{left:533.656500px;}
.x22{left:541.576500px;}
.xa1{left:542.657550px;}
.x35{left:547.336200px;}
.x89{left:553.817550px;}
.x7b{left:555.976350px;}
.x3b{left:557.416650px;}
.xab{left:564.257250px;}
.xb1{left:570.376050px;}
.x7c{left:575.776500px;}
.x3c{left:577.576050px;}
.x84{left:579.375600px;}
.x69{left:584.057400px;}
.x7f{left:587.295600px;}
.x3d{left:598.457100px;}
.x85{left:600.256800px;}
.x20{left:602.417250px;}
@media print{
.v1{vertical-align:-7.700000pt;}
.v0{vertical-align:0.000000pt;}
.ls7f{letter-spacing:-9.295667pt;}
.lsb6{letter-spacing:-8.164800pt;}
.ls36{letter-spacing:-8.067600pt;}
.lsaf{letter-spacing:-7.533000pt;}
.ls33{letter-spacing:-7.446600pt;}
.ls98{letter-spacing:-7.198200pt;}
.ls35{letter-spacing:-6.825600pt;}
.ls16{letter-spacing:-6.657067pt;}
.ls97{letter-spacing:-5.999400pt;}
.lsb3{letter-spacing:-5.648400pt;}
.ls28{letter-spacing:-5.589000pt;}
.ls7b{letter-spacing:-5.577400pt;}
.ls1a{letter-spacing:-5.451000pt;}
.lsb0{letter-spacing:-5.022000pt;}
.ls99{letter-spacing:-4.800600pt;}
.ls53{letter-spacing:-4.669333pt;}
.lsbf{letter-spacing:-4.482200pt;}
.ls50{letter-spacing:-4.359400pt;}
.ls2b{letter-spacing:-4.347000pt;}
.ls77{letter-spacing:-4.339733pt;}
.ls19{letter-spacing:-4.239667pt;}
.lsb2{letter-spacing:-3.769200pt;}
.ls2e{letter-spacing:-3.726000pt;}
.ls7d{letter-spacing:-3.718267pt;}
.ls18{letter-spacing:-3.634000pt;}
.lsbe{letter-spacing:-3.202267pt;}
.ls4f{letter-spacing:-3.161600pt;}
.lsb7{letter-spacing:-3.137400pt;}
.ls2d{letter-spacing:-3.105000pt;}
.ls7a{letter-spacing:-3.096800pt;}
.ls94{letter-spacing:-3.056533pt;}
.ls1c{letter-spacing:-3.028333pt;}
.ls6f{letter-spacing:-2.921000pt;}
.lsc{letter-spacing:-2.726000pt;}
.lsb1{letter-spacing:-2.511000pt;}
.ls7c{letter-spacing:-2.499200pt;}
.ls30{letter-spacing:-2.484000pt;}
.ls78{letter-spacing:-2.480600pt;}
.ls17{letter-spacing:-2.422667pt;}
.ls1d{letter-spacing:-2.001067pt;}
.ls1e{letter-spacing:-1.969800pt;}
.lsc7{letter-spacing:-1.922333pt;}
.lsb4{letter-spacing:-1.884600pt;}
.ls6e{letter-spacing:-1.871467pt;}
.ls29{letter-spacing:-1.863000pt;}
.ls72{letter-spacing:-1.859133pt;}
.ls5b{letter-spacing:-1.841400pt;}
.ls93{letter-spacing:-1.836267pt;}
.ls12{letter-spacing:-1.817000pt;}
.ls3c{letter-spacing:-1.798200pt;}
.ls39{letter-spacing:-1.420400pt;}
.ls4e{letter-spacing:-1.398067pt;}
.ls84{letter-spacing:-1.373600pt;}
.lsbc{letter-spacing:-1.366400pt;}
.lsa2{letter-spacing:-1.353400pt;}
.lsa0{letter-spacing:-1.333200pt;}
.ls54{letter-spacing:-1.331667pt;}
.lsc5{letter-spacing:-1.279933pt;}
.lse{letter-spacing:-1.260533pt;}
.lsb8{letter-spacing:-1.258200pt;}
.ls6c{letter-spacing:-1.249600pt;}
.ls32{letter-spacing:-1.242000pt;}
.ls70{letter-spacing:-1.237667pt;}
.ls10{letter-spacing:-1.233333pt;}
.ls5c{letter-spacing:-1.225800pt;}
.ls91{letter-spacing:-1.220267pt;}
.ls14{letter-spacing:-1.211333pt;}
.ls9f{letter-spacing:-1.198800pt;}
.lsba{letter-spacing:-1.171800pt;}
.ls56{letter-spacing:-1.060200pt;}
.ls4c{letter-spacing:-0.789333pt;}
.ls90{letter-spacing:-0.726000pt;}
.ls73{letter-spacing:-0.725000pt;}
.ls83{letter-spacing:-0.710200pt;}
.ls61{letter-spacing:-0.707200pt;}
.ls81{letter-spacing:-0.689067pt;}
.ls86{letter-spacing:-0.689000pt;}
.ls5e{letter-spacing:-0.687867pt;}
.ls62{letter-spacing:-0.686400pt;}
.ls74{letter-spacing:-0.683333pt;}
.ls95{letter-spacing:-0.675067pt;}
.ls9e{letter-spacing:-0.672400pt;}
.lsa1{letter-spacing:-0.665600pt;}
.lsc2{letter-spacing:-0.665000pt;}
.ls58{letter-spacing:-0.634667pt;}
.lsd{letter-spacing:-0.626400pt;}
.ls6d{letter-spacing:-0.621867pt;}
.ls75{letter-spacing:-0.621467pt;}
.ls27{letter-spacing:-0.621000pt;}
.ls55{letter-spacing:-0.615600pt;}
.ls92{letter-spacing:-0.610133pt;}
.ls13{letter-spacing:-0.605667pt;}
.ls96{letter-spacing:-0.599400pt;}
.ls2f{letter-spacing:-0.544133pt;}
.ls9a{letter-spacing:-0.542667pt;}
.lsb{letter-spacing:0.000000pt;}
.lsc6{letter-spacing:0.582133pt;}
.ls8d{letter-spacing:0.599400pt;}
.ls2{letter-spacing:0.605667pt;}
.ls41{letter-spacing:0.615600pt;}
.ls2a{letter-spacing:0.618667pt;}
.ls20{letter-spacing:0.621000pt;}
.ls63{letter-spacing:0.621467pt;}
.lsa3{letter-spacing:0.626400pt;}
.lsa8{letter-spacing:0.642400pt;}
.lsb9{letter-spacing:0.683200pt;}
.lsad{letter-spacing:0.686400pt;}
.ls82{letter-spacing:0.689067pt;}
.ls2c{letter-spacing:0.690200pt;}
.lsc9{letter-spacing:0.701400pt;}
.ls34{letter-spacing:0.702000pt;}
.ls44{letter-spacing:0.707200pt;}
.ls3d{letter-spacing:0.714000pt;}
.ls85{letter-spacing:0.723667pt;}
.lsca{letter-spacing:0.748000pt;}
.lsf{letter-spacing:0.754600pt;}
.ls60{letter-spacing:0.759333pt;}
.ls7e{letter-spacing:0.773333pt;}
.ls48{letter-spacing:0.851000pt;}
.ls4b{letter-spacing:0.875667pt;}
.lsc0{letter-spacing:1.159333pt;}
.ls8e{letter-spacing:1.198800pt;}
.ls4{letter-spacing:1.211333pt;}
.ls42{letter-spacing:1.225800pt;}
.ls64{letter-spacing:1.237667pt;}
.ls22{letter-spacing:1.242000pt;}
.lsa6{letter-spacing:1.258200pt;}
.lsaa{letter-spacing:1.279933pt;}
.ls3f{letter-spacing:1.331667pt;}
.lsb5{letter-spacing:1.366400pt;}
.lsa{letter-spacing:1.377200pt;}
.ls3a{letter-spacing:1.378133pt;}
.ls1b{letter-spacing:1.383200pt;}
.ls3b{letter-spacing:1.399667pt;}
.ls89{letter-spacing:1.416667pt;}
.ls5f{letter-spacing:1.418933pt;}
.ls7{letter-spacing:1.465067pt;}
.lsc8{letter-spacing:1.544133pt;}
.ls46{letter-spacing:1.652667pt;}
.ls8f{letter-spacing:1.798200pt;}
.ls3{letter-spacing:1.817000pt;}
.ls40{letter-spacing:1.841400pt;}
.ls66{letter-spacing:1.859133pt;}
.ls9b{letter-spacing:1.861333pt;}
.ls21{letter-spacing:1.863000pt;}
.lsa5{letter-spacing:1.884600pt;}
.ls1{letter-spacing:1.886933pt;}
.lsab{letter-spacing:1.922333pt;}
.ls4d{letter-spacing:1.949400pt;}
.ls3e{letter-spacing:2.000333pt;}
.ls1f{letter-spacing:2.063600pt;}
.ls8a{letter-spacing:2.125000pt;}
.ls51{letter-spacing:2.156000pt;}
.ls8{letter-spacing:2.197600pt;}
.ls45{letter-spacing:2.241000pt;}
.ls6b{letter-spacing:2.262000pt;}
.ls38{letter-spacing:2.349467pt;}
.ls9c{letter-spacing:2.397600pt;}
.ls6{letter-spacing:2.422667pt;}
.ls43{letter-spacing:2.457000pt;}
.ls65{letter-spacing:2.480600pt;}
.ls24{letter-spacing:2.484000pt;}
.lsa4{letter-spacing:2.511000pt;}
.lsa9{letter-spacing:2.559867pt;}
.lsae{letter-spacing:2.801400pt;}
.ls8c{letter-spacing:2.833333pt;}
.ls49{letter-spacing:2.979200pt;}
.lsc4{letter-spacing:3.005667pt;}
.ls11{letter-spacing:3.083333pt;}
.ls37{letter-spacing:3.094000pt;}
.ls68{letter-spacing:3.096800pt;}
.ls26{letter-spacing:3.105000pt;}
.lsa7{letter-spacing:3.137400pt;}
.lsbb{letter-spacing:3.232000pt;}
.ls9{letter-spacing:3.436400pt;}
.ls8b{letter-spacing:3.541667pt;}
.ls5{letter-spacing:3.634000pt;}
.ls31{letter-spacing:3.646267pt;}
.ls57{letter-spacing:3.682800pt;}
.ls67{letter-spacing:3.718267pt;}
.ls25{letter-spacing:3.726000pt;}
.lsac{letter-spacing:3.839800pt;}
.ls15{letter-spacing:4.149600pt;}
.ls52{letter-spacing:4.203867pt;}
.ls88{letter-spacing:4.250000pt;}
.ls0{letter-spacing:4.400267pt;}
.ls5d{letter-spacing:4.498200pt;}
.ls76{letter-spacing:4.767600pt;}
.lsc3{letter-spacing:4.843800pt;}
.ls87{letter-spacing:4.958333pt;}
.ls9d{letter-spacing:5.045333pt;}
.ls47{letter-spacing:5.470200pt;}
.lsbd{letter-spacing:5.480933pt;}
.ls5a{letter-spacing:5.532800pt;}
.ls80{letter-spacing:5.619533pt;}
.ls79{letter-spacing:5.765333pt;}
.ls23{letter-spacing:6.204600pt;}
.ls6a{letter-spacing:6.815067pt;}
.lsc1{letter-spacing:7.354667pt;}
.ls71{letter-spacing:7.854667pt;}
.ls59{letter-spacing:11.043000pt;}
.ls4a{letter-spacing:13.411200pt;}
.ls69{letter-spacing:13.630133pt;}
.ws0{word-spacing:0.000000pt;}
._1e{margin-left:-47.298727pt;}
._16{margin-left:-33.813034pt;}
._18{margin-left:-32.608083pt;}
._19{margin-left:-30.519807pt;}
._27{margin-left:-20.641112pt;}
._28{margin-left:-13.626020pt;}
._15{margin-left:-12.175166pt;}
._1d{margin-left:-6.762030pt;}
._17{margin-left:-3.744218pt;}
._e{margin-left:-2.372448pt;}
._6{margin-left:-1.369333pt;}
._d{width:1.393218pt;}
._7{width:3.160000pt;}
._5{width:4.661000pt;}
._c{width:5.558782pt;}
._9{width:6.609667pt;}
._8{width:7.873667pt;}
._a{width:9.038733pt;}
._b{width:10.480667pt;}
._2{width:11.468533pt;}
._0{width:13.169867pt;}
._f{width:14.220733pt;}
._13{width:15.464274pt;}
._11{width:16.958667pt;}
._12{width:18.222667pt;}
._10{width:19.610859pt;}
._4{width:21.150667pt;}
._3{width:22.581333pt;}
._1a{width:23.544000pt;}
._1b{width:25.093800pt;}
._29{width:26.262667pt;}
._1{width:28.025600pt;}
._1c{width:32.341200pt;}
._22{width:40.010185pt;}
._23{width:88.199096pt;}
._26{width:121.691267pt;}
._1f{width:123.086833pt;}
._25{width:141.496100pt;}
._20{width:340.850965pt;}
._24{width:344.165000pt;}
._21{width:445.237432pt;}
._14{width:957.220848pt;}
.fs25{font-size:15.333333pt;}
.fs1d{font-size:20.666667pt;}
.fs2a{font-size:24.000000pt;}
.fs26{font-size:26.666667pt;}
.fs21{font-size:34.000000pt;}
.fs11{font-size:37.333333pt;}
.fs1c{font-size:41.333333pt;}
.fs15{font-size:42.000000pt;}
.fs14{font-size:42.666667pt;}
.fs13{font-size:43.333333pt;}
.fsa{font-size:44.000000pt;}
.fs9{font-size:44.666667pt;}
.fs18{font-size:45.333333pt;}
.fs19{font-size:46.000000pt;}
.fs27{font-size:46.666667pt;}
.fs1b{font-size:47.333333pt;}
.fs16{font-size:48.000000pt;}
.fs2b{font-size:48.666667pt;}
.fs5{font-size:49.333333pt;}
.fs22{font-size:50.000000pt;}
.fs1a{font-size:50.666667pt;}
.fs4{font-size:51.333333pt;}
.fs12{font-size:52.000000pt;}
.fs6{font-size:52.666667pt;}
.fsc{font-size:53.333333pt;}
.fs8{font-size:54.000000pt;}
.fs10{font-size:54.666667pt;}
.fse{font-size:55.333333pt;}
.fs7{font-size:56.000000pt;}
.fsd{font-size:56.666667pt;}
.fs23{font-size:57.333333pt;}
.fsb{font-size:58.000000pt;}
.fs24{font-size:58.666667pt;}
.fs28{font-size:60.000000pt;}
.fs29{font-size:60.666667pt;}
.fsf{font-size:61.333333pt;}
.fs20{font-size:70.000000pt;}
.fs17{font-size:76.666667pt;}
.fs3{font-size:77.333333pt;}
.fs1f{font-size:80.666667pt;}
.fs1e{font-size:92.666667pt;}
.fs0{font-size:94.666667pt;}
.fs2{font-size:96.000000pt;}
.fs1{font-size:96.666667pt;}
.y0{bottom:0.000000pt;}
.yc3{bottom:47.161600pt;}
.yad{bottom:48.121067pt;}
.yc2{bottom:48.441867pt;}
.yfa{bottom:50.360800pt;}
.y2b{bottom:53.240800pt;}
.y64{bottom:54.840400pt;}
.y8a{bottom:55.480533pt;}
.y63{bottom:55.801333pt;}
.y89{bottom:56.760800pt;}
.yf9{bottom:74.681600pt;}
.yac{bottom:74.681700pt;}
.yc1{bottom:75.311667pt;}
.y2a{bottom:79.161167pt;}
.y62{bottom:82.683533pt;}
.y88{bottom:82.995367pt;}
.yab{bottom:88.756867pt;}
.yc0{bottom:89.716167pt;}
.yf8{bottom:91.641600pt;}
.yf7{bottom:91.647033pt;}
.y29{bottom:93.565500pt;}
.y61{bottom:96.764033pt;}
.y86{bottom:97.389900pt;}
.y87{bottom:97.399867pt;}
.yaa{bottom:103.161200pt;}
.ybf{bottom:104.120667pt;}
.ybe{bottom:104.124567pt;}
.y27{bottom:107.627400pt;}
.y28{bottom:107.640667pt;}
.yf5{bottom:107.642133pt;}
.yf6{bottom:110.201200pt;}
.y60{bottom:110.520533pt;}
.y5f{bottom:110.520633pt;}
.y85{bottom:111.470400pt;}
.ya9{bottom:117.557133pt;}
.y26{bottom:122.031733pt;}
.y5e{bottom:125.559633pt;}
.y84{bottom:125.874900pt;}
.ybd{bottom:126.521067pt;}
.yf4{bottom:127.161200pt;}
.ya8{bottom:131.961467pt;}
.y25{bottom:136.436067pt;}
.yf2{bottom:139.001467pt;}
.y5d{bottom:139.636067pt;}
.y83{bottom:139.955400pt;}
.yf3{bottom:141.562000pt;}
.ya7{bottom:146.357400pt;}
.y24{bottom:150.840400pt;}
.y5c{bottom:154.040567pt;}
.y82{bottom:154.359900pt;}
.ybc{bottom:154.996467pt;}
.ya6{bottom:160.768300pt;}
.y23{bottom:164.920400pt;}
.yf1{bottom:167.480933pt;}
.y5b{bottom:168.117200pt;}
.y81{bottom:168.440400pt;}
.ybb{bottom:169.076967pt;}
.ya5{bottom:175.001467pt;}
.yba{bottom:183.481467pt;}
.y5a{bottom:185.721200pt;}
.y22{bottom:186.680667pt;}
.ya4{bottom:189.241200pt;}
.y7f{bottom:194.036433pt;}
.y80{bottom:194.040000pt;}
.yb9{bottom:197.866167pt;}
.y58{bottom:199.796167pt;}
.y59{bottom:199.801333pt;}
.ya3{bottom:203.637133pt;}
.y7d{bottom:208.440567pt;}
.y7e{bottom:208.440933pt;}
.yf0{bottom:209.081067pt;}
.yef{bottom:209.086333pt;}
.yb8{bottom:211.946667pt;}
.y57{bottom:214.200667pt;}
.ya2{bottom:218.041467pt;}
.y7c{bottom:222.521067pt;}
.y21{bottom:222.850200pt;}
.yed{bottom:223.797633pt;}
.yee{bottom:223.801333pt;}
.yb7{bottom:226.351167pt;}
.y56{bottom:231.160667pt;}
.ya0{bottom:232.439767pt;}
.ya1{bottom:232.440933pt;}
.y7a{bottom:236.916833pt;}
.y20{bottom:236.925367pt;}
.y7b{bottom:237.720267pt;}
.yeb{bottom:238.201767pt;}
.yec{bottom:238.202133pt;}
.yb6{bottom:240.755667pt;}
.y55{bottom:245.564900pt;}
.y9f{bottom:246.514933pt;}
.y1f{bottom:251.000533pt;}
.y79{bottom:251.321333pt;}
.yea{bottom:252.282267pt;}
.yb5{bottom:254.836167pt;}
.y54{bottom:259.645400pt;}
.y9e{bottom:261.235267pt;}
.y1d{bottom:265.396467pt;}
.y1e{bottom:265.399867pt;}
.yb4{bottom:269.240667pt;}
.y52{bottom:274.356333pt;}
.y53{bottom:274.360400pt;}
.ye9{bottom:277.241733pt;}
.y1c{bottom:279.800800pt;}
.yb3{bottom:283.641600pt;}
.y9d{bottom:283.960933pt;}
.y77{bottom:284.920400pt;}
.y51{bottom:288.436833pt;}
.y1a{bottom:294.196733pt;}
.y1b{bottom:294.200267pt;}
.y78{bottom:294.359867pt;}
.y50{bottom:302.841333pt;}
.y9c{bottom:307.960933pt;}
.y19{bottom:308.596167pt;}
.ye8{bottom:315.953267pt;}
.y4f{bottom:316.921333pt;}
.y18{bottom:322.671333pt;}
.ye7{bottom:330.357767pt;}
.y76{bottom:333.241200pt;}
.y4e{bottom:334.520000pt;}
.y17{bottom:337.075667pt;}
.y75{bottom:339.000933pt;}
.ye6{bottom:344.762267pt;}
.ye5{bottom:344.762367pt;}
.y4d{bottom:348.920267pt;}
.y16{bottom:351.480000pt;}
.y9b{bottom:353.076200pt;}
.ye4{bottom:359.477367pt;}
.y74{bottom:360.121067pt;}
.y15{bottom:365.560133pt;}
.y4c{bottom:366.200267pt;}
.y9a{bottom:367.480533pt;}
.ye3{bottom:373.881867pt;}
.y73{bottom:374.840567pt;}
.y99{bottom:381.878733pt;}
.y4b{bottom:383.800267pt;}
.y14{bottom:386.680133pt;}
.ye2{bottom:388.277633pt;}
.y72{bottom:397.561067pt;}
.y4a{bottom:398.520533pt;}
.y49{bottom:398.524533pt;}
.ye1{bottom:402.671933pt;}
.y98{bottom:404.920400pt;}
.y71{bottom:411.960133pt;}
.y47{bottom:415.480033pt;}
.y48{bottom:415.480533pt;}
.ye0{bottom:417.076433pt;}
.y13{bottom:422.839867pt;}
.y46{bottom:429.560533pt;}
.ydf{bottom:431.480933pt;}
.y12{bottom:436.924733pt;}
.y70{bottom:440.755633pt;}
.y97{bottom:445.241733pt;}
.yde{bottom:445.881867pt;}
.y11{bottom:450.999900pt;}
.y45{bottom:451.640133pt;}
.y6f{bottom:455.160133pt;}
.y6e{bottom:455.161700pt;}
.ydd{bottom:460.291733pt;}
.y96{bottom:462.521067pt;}
.y10{bottom:465.720233pt;}
.y6d{bottom:469.566200pt;}
.ydc{bottom:475.006733pt;}
.yf{bottom:479.795400pt;}
.y6c{bottom:484.281200pt;}
.y44{bottom:484.924167pt;}
.ydb{bottom:489.721733pt;}
.yd{bottom:494.196100pt;}
.ye{bottom:494.199733pt;}
.y95{bottom:494.520533pt;}
.y43{bottom:498.675633pt;}
.yc{bottom:508.916433pt;}
.yda{bottom:509.880933pt;}
.y42{bottom:513.076433pt;}
.yb{bottom:523.320767pt;}
.y94{bottom:524.920400pt;}
.y41{bottom:527.480933pt;}
.y40{bottom:527.481033pt;}
.y6b{bottom:527.482033pt;}
.yd9{bottom:532.602133pt;}
.ya{bottom:537.395933pt;}
.y3f{bottom:542.196033pt;}
.y6a{bottom:542.201200pt;}
.y9{bottom:551.795400pt;}
.y3e{bottom:556.600533pt;}
.y93{bottom:558.200067pt;}
.y8{bottom:566.199733pt;}
.y68{bottom:566.201200pt;}
.y69{bottom:567.160667pt;}
.y3d{bottom:571.320800pt;}
.yd8{bottom:571.636567pt;}
.y92{bottom:572.920400pt;}
.y91{bottom:572.924633pt;}
.y66{bottom:580.600533pt;}
.y67{bottom:581.880933pt;}
.yd7{bottom:586.032333pt;}
.y3c{bottom:586.041067pt;}
.y7{bottom:587.640667pt;}
.y65{bottom:596.280267pt;}
.yd6{bottom:600.436833pt;}
.y3b{bottom:600.440400pt;}
.y3a{bottom:614.841167pt;}
.yd5{bottom:614.841333pt;}
.yd4{bottom:614.841433pt;}
.y6{bottom:619.315933pt;}
.y39{bottom:629.556167pt;}
.yd3{bottom:629.556433pt;}
.y5{bottom:633.720267pt;}
.y38{bottom:643.960667pt;}
.yd2{bottom:643.960933pt;}
.yd1{bottom:643.965700pt;}
.y4{bottom:648.440400pt;}
.y37{bottom:658.041167pt;}
.yd0{bottom:658.046200pt;}
.y36{bottom:672.756167pt;}
.yce{bottom:672.757633pt;}
.ycf{bottom:672.761200pt;}
.y35{bottom:687.155633pt;}
.ycd{bottom:687.162233pt;}
.y3{bottom:697.401467pt;}
.y34{bottom:701.556433pt;}
.ycc{bottom:701.566733pt;}
.y32{bottom:715.955900pt;}
.y33{bottom:715.960933pt;}
.ycb{bottom:716.287000pt;}
.y2{bottom:722.360800pt;}
.y31{bottom:730.359900pt;}
.yca{bottom:731.002000pt;}
.y90{bottom:732.280800pt;}
.yb2{bottom:739.960933pt;}
.y30{bottom:744.445667pt;}
.yc9{bottom:745.403133pt;}
.y8f{bottom:747.960400pt;}
.yb1{bottom:754.521467pt;}
.y2f{bottom:759.160667pt;}
.yc8{bottom:760.118133pt;}
.y8e{bottom:763.320800pt;}
.yb0{bottom:773.240800pt;}
.yc7{bottom:774.522633pt;}
.y8d{bottom:778.358533pt;}
.y2e{bottom:780.920933pt;}
.yaf{bottom:787.320800pt;}
.yc6{bottom:789.237633pt;}
.y8c{bottom:792.761200pt;}
.yc5{bottom:803.645800pt;}
.y1{bottom:812.601067pt;}
.y2d{bottom:814.520000pt;}
.y8b{bottom:816.440400pt;}
.yae{bottom:816.761200pt;}
.yc4{bottom:818.360800pt;}
.y2c{bottom:829.240267pt;}
.h4a{height:15.992187pt;}
.h3a{height:21.554687pt;}
.h56{height:25.031250pt;}
.h4d{height:26.875000pt;}
.h3f{height:33.369141pt;}
.h20{height:38.937500pt;}
.h24{height:42.529297pt;}
.h34{height:43.109375pt;}
.h28{height:43.804688pt;}
.h10{height:44.343750pt;}
.h25{height:44.500000pt;}
.h26{height:45.195312pt;}
.h52{height:45.800781pt;}
.h44{height:45.890625pt;}
.hf{height:46.585938pt;}
.h2e{height:47.281250pt;}
.h32{height:47.703125pt;}
.h60{height:47.763672pt;}
.h30{height:47.976562pt;}
.h5a{height:48.417969pt;}
.h45{height:48.755208pt;}
.h61{height:49.072266pt;}
.h35{height:49.367188pt;}
.h7{height:49.718750pt;}
.h2c{height:50.062500pt;}
.he{height:50.380859pt;}
.h23{height:51.035156pt;}
.h57{height:51.453125pt;}
.h8{height:51.689453pt;}
.h4e{height:51.699853pt;}
.h51{height:51.703053pt;}
.hd{height:51.703586pt;}
.ha{height:51.708920pt;}
.hc{height:51.709053pt;}
.h6{height:51.734375pt;}
.h40{height:52.148438pt;}
.h15{height:52.343750pt;}
.h31{height:52.843750pt;}
.hb{height:52.998047pt;}
.h18{height:52.998714pt;}
.h14{height:53.000047pt;}
.h1d{height:53.000714pt;}
.h3c{height:53.001114pt;}
.h5d{height:53.012314pt;}
.h16{height:53.012847pt;}
.h21{height:53.013514pt;}
.h22{height:53.014314pt;}
.h17{height:53.018180pt;}
.h43{height:53.018714pt;}
.h5e{height:53.032980pt;}
.h5f{height:53.038847pt;}
.h59{height:53.057114pt;}
.h27{height:53.367188pt;}
.h41{height:53.539062pt;}
.h37{height:53.625651pt;}
.h1f{height:53.652344pt;}
.h50{height:53.750000pt;}
.h33{height:54.234375pt;}
.h1b{height:54.306641pt;}
.h42{height:54.421875pt;}
.h36{height:54.933594pt;}
.h1e{height:54.960938pt;}
.h39{height:55.093750pt;}
.h38{height:55.587565pt;}
.h1a{height:55.615234pt;}
.h4b{height:56.241536pt;}
.h58{height:56.269531pt;}
.h2f{height:56.320312pt;}
.h9{height:56.437500pt;}
.h4c{height:56.895508pt;}
.h19{height:56.923828pt;}
.h4f{height:57.109375pt;}
.h2b{height:57.710938pt;}
.h48{height:57.781250pt;}
.h13{height:58.453125pt;}
.h49{height:59.125000pt;}
.h54{height:60.468750pt;}
.h55{height:61.140625pt;}
.h1c{height:63.968750pt;}
.h3e{height:68.666992pt;}
.h3d{height:79.169922pt;}
.h2d{height:79.960938pt;}
.h5{height:80.656250pt;}
.h2{height:92.910156pt;}
.h4{height:94.218750pt;}
.h3{height:94.873047pt;}
.h3b{height:96.648438pt;}
.h1{height:880.666667pt;}
.h0{height:880.880933pt;}
.h53{height:880.882267pt;}
.h5c{height:882.000000pt;}
.h5b{height:882.163600pt;}
.h2a{height:884.666667pt;}
.h29{height:884.722267pt;}
.h12{height:885.333333pt;}
.h11{height:885.362267pt;}
.h47{height:886.666667pt;}
.h46{height:886.962267pt;}
.w6{width:591.333333pt;}
.w5{width:591.602267pt;}
.w0{width:599.280933pt;}
.w2{width:599.282267pt;}
.w1{width:599.333333pt;}
.w3{width:601.842267pt;}
.w4{width:602.000000pt;}
.x0{left:0.000000pt;}
.x4a{left:42.042000pt;}
.x4f{left:43.005867pt;}
.x8c{left:44.601067pt;}
.x1a{left:46.200667pt;}
.x17{left:47.161600pt;}
.x12{left:48.440400pt;}
.xe{left:49.720667pt;}
.x1{left:50.681600pt;}
.x53{left:62.201200pt;}
.x91{left:63.481467pt;}
.x8e{left:66.042000pt;}
.x52{left:67.946667pt;}
.x4e{left:68.921867pt;}
.x8d{left:70.501200pt;}
.x64{left:71.480933pt;}
.x16{left:74.041467pt;}
.x4{left:75.320400pt;}
.x1d{left:76.921467pt;}
.xf{left:77.880933pt;}
.x79{left:78.826100pt;}
.x54{left:82.041067pt;}
.x92{left:83.321333pt;}
.x57{left:87.162133pt;}
.x9c{left:88.440933pt;}
.x9d{left:89.721533pt;}
.x2c{left:91.001467pt;}
.x6c{left:92.280267pt;}
.x7d{left:93.881333pt;}
.x9b{left:94.842267pt;}
.x4d{left:96.116167pt;}
.x4b{left:97.722133pt;}
.x60{left:98.681600pt;}
.x26{left:100.603100pt;}
.x1c{left:101.880933pt;}
.x72{left:103.164567pt;}
.x58{left:104.762267pt;}
.x55{left:109.241733pt;}
.xac{left:110.522000pt;}
.x9a{left:111.802267pt;}
.xa6{left:112.761733pt;}
.x61{left:116.601067pt;}
.x62{left:117.881333pt;}
.x2f{left:121.401333pt;}
.x59{left:123.001067pt;}
.x50{left:124.602133pt;}
.xa7{left:126.201733pt;}
.x65{left:127.482000pt;}
.x7a{left:129.081600pt;}
.x5a{left:136.761733pt;}
.x51{left:138.361333pt;}
.x27{left:141.881333pt;}
.x63{left:148.602133pt;}
.x29{left:154.041067pt;}
.x70{left:155.000533pt;}
.xd{left:158.853433pt;}
.x28{left:160.761733pt;}
.x66{left:166.202133pt;}
.xc{left:167.480933pt;}
.x5b{left:169.401333pt;}
.x2a{left:174.201733pt;}
.x2{left:177.081600pt;}
.x25{left:178.041067pt;}
.x33{left:180.601600pt;}
.x31{left:181.881867pt;}
.x80{left:182.841333pt;}
.xa4{left:184.761733pt;}
.x14{left:186.361333pt;}
.x13{left:187.960933pt;}
.x6b{left:189.872867pt;}
.x5d{left:192.121067pt;}
.x15{left:197.880933pt;}
.x5{left:202.051400pt;}
.x10{left:204.601600pt;}
.x30{left:212.281733pt;}
.x6{left:215.480933pt;}
.x11{left:217.401333pt;}
.x3{left:222.200267pt;}
.x93{left:223.801333pt;}
.x96{left:225.081600pt;}
.x7{left:228.601600pt;}
.x5e{left:234.042000pt;}
.x1e{left:235.322267pt;}
.x7e{left:238.521467pt;}
.x71{left:240.121067pt;}
.x67{left:242.681600pt;}
.x1b{left:245.880933pt;}
.x1f{left:254.522000pt;}
.x68{left:261.241200pt;}
.x8a{left:267.641067pt;}
.x6d{left:268.921333pt;}
.x94{left:272.762267pt;}
.x8{left:279.800800pt;}
.x76{left:280.760267pt;}
.xa5{left:284.921867pt;}
.x5c{left:286.842267pt;}
.x95{left:287.801733pt;}
.x45{left:288.761200pt;}
.x3e{left:290.362267pt;}
.x8b{left:293.242267pt;}
.x9{left:295.161200pt;}
.x46{left:299.321333pt;}
.x99{left:306.682133pt;}
.x3f{left:307.960933pt;}
.xad{left:309.562000pt;}
.xa2{left:311.480933pt;}
.x36{left:315.641067pt;}
.x81{left:317.240667pt;}
.x6e{left:319.801333pt;}
.x97{left:323.002000pt;}
.xa3{left:324.282267pt;}
.xa{left:327.800800pt;}
.x6f{left:329.400400pt;}
.x47{left:331.641600pt;}
.x6a{left:333.241200pt;}
.x75{left:334.200667pt;}
.x98{left:335.480933pt;}
.xae{left:337.722133pt;}
.x2e{left:339.641067pt;}
.xb{left:340.600533pt;}
.x37{left:343.801333pt;}
.x82{left:345.400933pt;}
.x2d{left:346.361867pt;}
.x18{left:347.640667pt;}
.x32{left:354.361333pt;}
.x4c{left:357.881333pt;}
.x19{left:360.440400pt;}
.x77{left:363.000933pt;}
.x56{left:365.561600pt;}
.x2b{left:368.122133pt;}
.x38{left:374.841333pt;}
.x78{left:375.800800pt;}
.x86{left:380.601067pt;}
.xa8{left:385.722133pt;}
.xaf{left:393.081600pt;}
.x40{left:396.920933pt;}
.x39{left:399.162133pt;}
.x83{left:401.081067pt;}
.x41{left:406.842267pt;}
.x48{left:408.121067pt;}
.x9e{left:409.722133pt;}
.x88{left:411.321867pt;}
.x42{left:416.122133pt;}
.x49{left:417.721733pt;}
.x87{left:420.920933pt;}
.x9f{left:422.841333pt;}
.xb0{left:431.161600pt;}
.x5f{left:432.121067pt;}
.x8f{left:435.641067pt;}
.x3a{left:437.561600pt;}
.x43{left:438.521067pt;}
.x23{left:448.440933pt;}
.x44{left:451.001467pt;}
.xa9{left:452.921867pt;}
.x90{left:455.480933pt;}
.x24{left:460.602000pt;}
.x73{left:461.561600pt;}
.x34{left:466.041067pt;}
.xaa{left:467.642133pt;}
.xa0{left:468.601600pt;}
.x21{left:469.561067pt;}
.x74{left:474.361333pt;}
.x22{left:481.401333pt;}
.xa1{left:482.362267pt;}
.x35{left:486.521067pt;}
.x89{left:492.282267pt;}
.x7b{left:494.201200pt;}
.x3b{left:495.481467pt;}
.xab{left:501.562000pt;}
.xb1{left:507.000933pt;}
.x7c{left:511.801333pt;}
.x3c{left:513.400933pt;}
.x84{left:515.000533pt;}
.x69{left:519.162133pt;}
.x7f{left:522.040533pt;}
.x3d{left:531.961867pt;}
.x85{left:533.561600pt;}
.x20{left:535.482000pt;}
}




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