
    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_52add186cf8961e8cad6fcb8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.124000;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_086fa6d1833e34280b9bd505.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.011000;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_3d4feca1773932256fa2fb7a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.142000;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_fdc4404e059a049221b325a9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.155000;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_242c274170e42387ae735e91.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.108000;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_5a5a0ba146c110bb98514dd0.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.159000;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_cdb9739e518e69a4dac5b8d0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.695000;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_065c7b62e29684656b203f27.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666000;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_3d4f5f7db6f4872533fd5d25.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.088000;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_511657fe7de15f0ac0a3d2cb.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.108000;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_511657fe7de15f0ac0a3d2cb.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.108000;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_511657fe7de15f0ac0a3d2cb.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.108000;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_0838659396ce34f8ba71c46e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.675781;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_ab0cc8095aaa9829d6bbcbde.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.015000;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_511657fe7de15f0ac0a3d2cb.woff2')format("woff");}.fff{font-family:fff;line-height:1.108000;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_511657fe7de15f0ac0a3d2cb.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.108000;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_511657fe7de15f0ac0a3d2cb.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.108000;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;}
.ma2{transform:matrix(0.243952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243952,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.244040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244040,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.244248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244248,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.244783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244783,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.245113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245113,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.245138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245138,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.245140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245140,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.245244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245244,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.245387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245387,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.245487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245487,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.245730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245730,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.245856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245856,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.245927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245927,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.245952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245952,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.246106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246106,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.246144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246144,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.246194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246194,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.246327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246327,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.246487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246487,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.246508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246508,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.246538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246538,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.246602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246602,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.246660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246660,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.246790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246790,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.246890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246890,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.246975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246975,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.247017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247017,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.247029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247029,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.247033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247033,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.247110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247110,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.247115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247115,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.247196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247196,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.247221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247221,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.247279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247279,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.247325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247325,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.247331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247331,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.247369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247369,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.247458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247458,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.247577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247577,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.247625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247625,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.247640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247640,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.247713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247713,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.247723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247723,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.247727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247727,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.247752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247752,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.247771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247771,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.247779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247779,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.247800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247800,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.247829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247829,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.247846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247846,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.247925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247925,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.247927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247927,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.247940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247940,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.247987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247987,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.248090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248090,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.248096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248096,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.248321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248321,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.248460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248460,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.248477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248477,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.248506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248506,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.248529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248529,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.248646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248646,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.248650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248650,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.248727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248727,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.248729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248729,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.248808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248808,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.248906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248906,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.248938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248938,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.248967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248967,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.249002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249002,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.249031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249031,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.249069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249069,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.249142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249142,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249185,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.249375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249375,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.249460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249460,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.249492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249492,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.249600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249600,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.249602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249602,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.249719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249719,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.249735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249735,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.249752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249752,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.250006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250006,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.250104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250104,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.250158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250158,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.250171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250171,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.250225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250225,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.250227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250227,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.250356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250356,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.250398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250398,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.250417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250417,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.250527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250527,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.250606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250606,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.250638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250638,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.250650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250650,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.250656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250656,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.250692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250692,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.250698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250698,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.250792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250792,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.250794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250794,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.250798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250798,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.250873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250873,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250912,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.251146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251146,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.251223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251223,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.251317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251317,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.251350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251350,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.251363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251363,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.251471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251471,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.251479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251479,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.251488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251488,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.251575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251575,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.251660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251660,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.251735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251735,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.251898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251898,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.252125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252125,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.252216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252216,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.252321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252321,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.252346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252346,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.252360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252360,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.252375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252375,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.252590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252590,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.252633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252633,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.252652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252652,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.252679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252679,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.252700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252700,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.252715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252715,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.252810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252810,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.252850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252850,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.252887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252887,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.252942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252942,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.253083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253083,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.253106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253106,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.253146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253146,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.253175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253175,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.253221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253221,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.253292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253292,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.253412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253412,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.253421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253421,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.253462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253462,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.253546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253546,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.253627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253627,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.253710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253710,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.253721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253721,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.253842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253842,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.253873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253873,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.253894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253894,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.253912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253912,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.254094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254094,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.254098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254098,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.254100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254100,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.254479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254479,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.254531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254531,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.254712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254712,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.254771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254771,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.254788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254788,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.254833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254833,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.254927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254927,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.254940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254940,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.255383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255383,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.255679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255679,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.976000px;}
.v2{vertical-align:36.000000px;}
.ls1b{letter-spacing:-4.392000px;}
.ls66{letter-spacing:-4.080000px;}
.ls56{letter-spacing:-3.600000px;}
.ls69{letter-spacing:-3.180000px;}
.ls1a{letter-spacing:-3.024000px;}
.ls76{letter-spacing:-2.940000px;}
.lse{letter-spacing:-2.700000px;}
.ls6c{letter-spacing:-2.340000px;}
.ls19{letter-spacing:-2.304000px;}
.ls18{letter-spacing:-2.160000px;}
.ls6e{letter-spacing:-2.100000px;}
.ls78{letter-spacing:-2.040000px;}
.ls1d{letter-spacing:-1.800000px;}
.ls55{letter-spacing:-1.740000px;}
.ls20{letter-spacing:-1.728000px;}
.ls65{letter-spacing:-1.680000px;}
.ls53{letter-spacing:-1.620000px;}
.ls71{letter-spacing:-1.440000px;}
.ls2e{letter-spacing:-1.368000px;}
.ls75{letter-spacing:-1.320000px;}
.ls11{letter-spacing:-1.224000px;}
.ls63{letter-spacing:-1.200000px;}
.ls2c{letter-spacing:-1.152000px;}
.ls5d{letter-spacing:-1.140000px;}
.ls3b{letter-spacing:-1.122000px;}
.ls1e{letter-spacing:-1.080000px;}
.ls5c{letter-spacing:-1.020000px;}
.ls1c{letter-spacing:-1.008000px;}
.ls6d{letter-spacing:-0.960000px;}
.ls5b{letter-spacing:-0.900000px;}
.ls37{letter-spacing:-0.792000px;}
.ls50{letter-spacing:-0.780000px;}
.ls3{letter-spacing:-0.756000px;}
.ls38{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.690000px;}
.ls70{letter-spacing:-0.660000px;}
.ls2{letter-spacing:-0.648000px;}
.ls54{letter-spacing:-0.600000px;}
.ls13{letter-spacing:-0.576000px;}
.ls51{letter-spacing:-0.540000px;}
.ls15{letter-spacing:-0.504000px;}
.ls4c{letter-spacing:-0.480000px;}
.ls3c{letter-spacing:-0.462000px;}
.ls12{letter-spacing:-0.432000px;}
.ls4b{letter-spacing:-0.420000px;}
.ls6{letter-spacing:-0.396000px;}
.lsc{letter-spacing:-0.360000px;}
.ls3d{letter-spacing:-0.330000px;}
.ls16{letter-spacing:-0.324000px;}
.ls48{letter-spacing:-0.300000px;}
.ls1f{letter-spacing:-0.288000px;}
.ls57{letter-spacing:-0.240000px;}
.ls14{letter-spacing:-0.216000px;}
.ls7{letter-spacing:-0.198000px;}
.ls4d{letter-spacing:-0.180000px;}
.ls23{letter-spacing:-0.144000px;}
.ls8{letter-spacing:-0.132000px;}
.ls10{letter-spacing:-0.120000px;}
.ls4{letter-spacing:-0.084000px;}
.ls24{letter-spacing:-0.072000px;}
.ls4e{letter-spacing:-0.060000px;}
.lsf{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.054000px;}
.ls4f{letter-spacing:0.060000px;}
.ls28{letter-spacing:0.072000px;}
.ls44{letter-spacing:0.120000px;}
.lsa{letter-spacing:0.132000px;}
.ls25{letter-spacing:0.144000px;}
.ls42{letter-spacing:0.180000px;}
.ls2f{letter-spacing:0.216000px;}
.ls4a{letter-spacing:0.240000px;}
.ls2a{letter-spacing:0.288000px;}
.ls45{letter-spacing:0.300000px;}
.ls9{letter-spacing:0.330000px;}
.ls5{letter-spacing:0.336000px;}
.ls22{letter-spacing:0.360000px;}
.ls49{letter-spacing:0.420000px;}
.ls32{letter-spacing:0.432000px;}
.ls21{letter-spacing:0.480000px;}
.ls30{letter-spacing:0.504000px;}
.ls6b{letter-spacing:0.540000px;}
.ls27{letter-spacing:0.576000px;}
.lsd{letter-spacing:0.600000px;}
.ls2b{letter-spacing:0.648000px;}
.ls47{letter-spacing:0.660000px;}
.ls17{letter-spacing:0.702000px;}
.ls35{letter-spacing:0.720000px;}
.ls64{letter-spacing:0.780000px;}
.ls34{letter-spacing:0.792000px;}
.ls68{letter-spacing:0.839400px;}
.ls46{letter-spacing:0.840000px;}
.ls0{letter-spacing:0.864000px;}
.ls62{letter-spacing:0.900000px;}
.ls58{letter-spacing:0.936000px;}
.ls5a{letter-spacing:0.960000px;}
.ls29{letter-spacing:1.008000px;}
.ls52{letter-spacing:1.020000px;}
.ls26{letter-spacing:1.080000px;}
.ls67{letter-spacing:1.140000px;}
.ls59{letter-spacing:1.152000px;}
.ls2d{letter-spacing:1.224000px;}
.ls74{letter-spacing:1.260000px;}
.ls6a{letter-spacing:1.320000px;}
.ls3e{letter-spacing:1.368000px;}
.ls73{letter-spacing:1.380000px;}
.ls33{letter-spacing:1.440000px;}
.ls72{letter-spacing:1.560000px;}
.ls31{letter-spacing:1.584000px;}
.ls6f{letter-spacing:1.680000px;}
.ls3a{letter-spacing:1.728000px;}
.ls77{letter-spacing:1.740000px;}
.ls39{letter-spacing:1.800000px;}
.ls79{letter-spacing:2.520000px;}
.ls36{letter-spacing:3.024000px;}
.ls3f{letter-spacing:371.820000px;}
.ls40{letter-spacing:372.735000px;}
.ls41{letter-spacing:374.096400px;}
.ls43{letter-spacing:374.720400px;}
.ls60{letter-spacing:503.032800px;}
.ls61{letter-spacing:503.033400px;}
.ls5e{letter-spacing:504.722400px;}
.ls5f{letter-spacing:504.723000px;}
.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;}
}
.ws7{word-spacing:-31.104000px;}
.ws0{word-spacing:-21.276000px;}
.wsb2{word-spacing:-15.408000px;}
.ws44{word-spacing:-15.048000px;}
.ws2e{word-spacing:-14.760000px;}
.wsd0{word-spacing:-14.580000px;}
.wsb3{word-spacing:-14.544000px;}
.ws2{word-spacing:-14.520000px;}
.wsc4{word-spacing:-14.280000px;}
.wsb6{word-spacing:-14.220000px;}
.wsc9{word-spacing:-14.160000px;}
.ws86{word-spacing:-13.920000px;}
.wsb5{word-spacing:-13.860000px;}
.ws41{word-spacing:-13.824000px;}
.ws98{word-spacing:-13.740000px;}
.ws25{word-spacing:-13.680000px;}
.ws42{word-spacing:-13.608000px;}
.wsc2{word-spacing:-13.440000px;}
.ws1{word-spacing:-13.332000px;}
.ws6c{word-spacing:-13.320000px;}
.ws58{word-spacing:-13.200000px;}
.ws5{word-spacing:-13.176000px;}
.wsb7{word-spacing:-13.140000px;}
.ws66{word-spacing:-12.960000px;}
.ws55{word-spacing:-12.900000px;}
.ws4{word-spacing:-12.840000px;}
.ws5d{word-spacing:-12.780000px;}
.ws69{word-spacing:-12.660000px;}
.ws95{word-spacing:-12.600000px;}
.wsa9{word-spacing:-12.420000px;}
.ws47{word-spacing:-12.342000px;}
.ws3{word-spacing:-12.240000px;}
.ws61{word-spacing:-12.180000px;}
.wsb4{word-spacing:-12.120000px;}
.ws9a{word-spacing:-12.060000px;}
.wsc3{word-spacing:-12.000000px;}
.ws87{word-spacing:-11.940000px;}
.ws7d{word-spacing:-11.939918px;}
.wsd1{word-spacing:-11.880000px;}
.wsca{word-spacing:-11.820000px;}
.wsd2{word-spacing:-11.700000px;}
.ws46{word-spacing:-11.682000px;}
.wsb8{word-spacing:-11.580000px;}
.ws8{word-spacing:-11.340000px;}
.ws74{word-spacing:-11.220000px;}
.wsc0{word-spacing:-10.920000px;}
.ws6{word-spacing:-10.692000px;}
.wscb{word-spacing:-10.680000px;}
.wsc1{word-spacing:-10.560000px;}
.ws84{word-spacing:-10.260000px;}
.ws9c{word-spacing:-8.880000px;}
.wsd9{word-spacing:-4.800000px;}
.wsd8{word-spacing:-4.620000px;}
.wsdc{word-spacing:-4.560000px;}
.ws4e{word-spacing:-4.554000px;}
.wsd7{word-spacing:-4.500000px;}
.ws4f{word-spacing:-4.488000px;}
.wsda{word-spacing:-3.120000px;}
.wsdb{word-spacing:-3.060000px;}
.ws43{word-spacing:-3.024000px;}
.ws26{word-spacing:-2.952000px;}
.ws4c{word-spacing:-2.574000px;}
.wsd6{word-spacing:-2.520000px;}
.ws4d{word-spacing:-2.508000px;}
.wsa{word-spacing:-2.160000px;}
.ws49{word-spacing:-1.800000px;}
.wsce{word-spacing:-1.740000px;}
.ws4a{word-spacing:-1.728000px;}
.wsb{word-spacing:-1.680000px;}
.ws24{word-spacing:-1.674000px;}
.ws90{word-spacing:-1.620000px;}
.wsc{word-spacing:-1.596000px;}
.ws3c{word-spacing:-1.584000px;}
.ws7a{word-spacing:-1.560000px;}
.ws7c{word-spacing:-1.500000px;}
.ws51{word-spacing:-1.452000px;}
.ws2d{word-spacing:-1.440000px;}
.ws7f{word-spacing:-1.380000px;}
.ws52{word-spacing:-1.368000px;}
.ws12{word-spacing:-1.320000px;}
.ws1b{word-spacing:-1.296000px;}
.wsd5{word-spacing:-1.260000px;}
.ws39{word-spacing:-1.224000px;}
.ws20{word-spacing:-1.218000px;}
.ws22{word-spacing:-1.212000px;}
.ws7b{word-spacing:-1.200000px;}
.ws21{word-spacing:-1.188000px;}
.ws80{word-spacing:-1.152000px;}
.wsbd{word-spacing:-1.140000px;}
.ws1e{word-spacing:-1.110000px;}
.ws11{word-spacing:-1.104000px;}
.ws1d{word-spacing:-1.080000px;}
.wsba{word-spacing:-1.020000px;}
.ws35{word-spacing:-1.008000px;}
.wsc7{word-spacing:-0.960000px;}
.ws7e{word-spacing:-0.936000px;}
.ws3e{word-spacing:-0.864000px;}
.wsb9{word-spacing:-0.840000px;}
.ws3f{word-spacing:-0.792000px;}
.wsbf{word-spacing:-0.780000px;}
.ws1f{word-spacing:-0.756000px;}
.ws40{word-spacing:-0.720000px;}
.ws37{word-spacing:-0.648000px;}
.ws33{word-spacing:-0.576000px;}
.ws79{word-spacing:-0.540000px;}
.ws3b{word-spacing:-0.504000px;}
.wsde{word-spacing:-0.480000px;}
.ws3d{word-spacing:-0.432000px;}
.wsd3{word-spacing:-0.420000px;}
.ws38{word-spacing:-0.360000px;}
.ws8e{word-spacing:-0.300000px;}
.ws36{word-spacing:-0.288000px;}
.wscc{word-spacing:-0.240000px;}
.ws15{word-spacing:-0.216000px;}
.ws32{word-spacing:-0.144000px;}
.ws10{word-spacing:-0.132000px;}
.ws34{word-spacing:-0.072000px;}
.ws23{word-spacing:-0.054000px;}
.ws45{word-spacing:-0.041976px;}
.ws1c{word-spacing:-0.036000px;}
.ws14{word-spacing:0.000000px;}
.wsb1{word-spacing:0.060000px;}
.ws31{word-spacing:0.072000px;}
.wse{word-spacing:0.132000px;}
.ws30{word-spacing:0.144000px;}
.ws78{word-spacing:0.180000px;}
.wsf{word-spacing:0.198000px;}
.ws19{word-spacing:0.216000px;}
.ws2b{word-spacing:0.288000px;}
.ws2a{word-spacing:0.360000px;}
.wsd{word-spacing:0.396000px;}
.ws92{word-spacing:0.420000px;}
.ws16{word-spacing:0.432000px;}
.wsbb{word-spacing:0.480000px;}
.ws1a{word-spacing:0.504000px;}
.ws17{word-spacing:0.576000px;}
.ws18{word-spacing:0.648000px;}
.wsc6{word-spacing:0.660000px;}
.ws48{word-spacing:0.720000px;}
.wsc8{word-spacing:0.780000px;}
.ws4b{word-spacing:0.792000px;}
.ws91{word-spacing:0.900000px;}
.ws13{word-spacing:1.020000px;}
.ws8f{word-spacing:1.140000px;}
.ws2f{word-spacing:1.224000px;}
.ws3a{word-spacing:1.368000px;}
.wsdd{word-spacing:1.380000px;}
.wscf{word-spacing:1.620000px;}
.ws2c{word-spacing:1.728000px;}
.wsd4{word-spacing:2.040000px;}
.wsc5{word-spacing:2.100000px;}
.ws27{word-spacing:2.304000px;}
.wsbe{word-spacing:2.340000px;}
.wscd{word-spacing:2.940000px;}
.ws28{word-spacing:3.024000px;}
.wsbc{word-spacing:3.180000px;}
.ws50{word-spacing:3.498000px;}
.ws29{word-spacing:4.392000px;}
.ws77{word-spacing:223.450800px;}
.ws57{word-spacing:238.718400px;}
.ws60{word-spacing:257.403000px;}
.ws73{word-spacing:258.785400px;}
.ws54{word-spacing:264.434400px;}
.ws63{word-spacing:266.347800px;}
.ws65{word-spacing:268.903800px;}
.ws68{word-spacing:271.264800px;}
.ws5c{word-spacing:272.458800px;}
.ws70{word-spacing:276.283800px;}
.ws6e{word-spacing:285.157800px;}
.ws6b{word-spacing:285.613200px;}
.ws76{word-spacing:298.989000px;}
.ws5a{word-spacing:329.595000px;}
.ws5f{word-spacing:330.500400px;}
.ws72{word-spacing:331.790400px;}
.ws6d{word-spacing:338.316600px;}
.ws5b{word-spacing:345.960000px;}
.ws71{word-spacing:346.730400px;}
.ws56{word-spacing:350.785800px;}
.ws62{word-spacing:351.395400px;}
.ws6f{word-spacing:369.183000px;}
.ws53{word-spacing:374.484600px;}
.ws93{word-spacing:377.263200px;}
.ws64{word-spacing:379.768800px;}
.ws5e{word-spacing:383.176200px;}
.ws59{word-spacing:386.745600px;}
.ws6a{word-spacing:409.298400px;}
.ws67{word-spacing:413.236800px;}
.wsb0{word-spacing:431.831400px;}
.ws94{word-spacing:457.874400px;}
.ws99{word-spacing:460.589400px;}
.ws96{word-spacing:464.429400px;}
.ws97{word-spacing:469.227000px;}
.wsa8{word-spacing:476.760000px;}
.wsa2{word-spacing:477.422400px;}
.ws9e{word-spacing:477.642000px;}
.wsa7{word-spacing:479.468400px;}
.wsa4{word-spacing:480.243000px;}
.wsa0{word-spacing:481.352400px;}
.wsa6{word-spacing:482.259000px;}
.wsaa{word-spacing:484.179000px;}
.ws9b{word-spacing:486.015000px;}
.wsac{word-spacing:499.313400px;}
.ws9{word-spacing:550.642782px;}
.ws75{word-spacing:698.867400px;}
.wsa3{word-spacing:756.258600px;}
.wsab{word-spacing:766.044600px;}
.ws9f{word-spacing:774.163800px;}
.wsa1{word-spacing:788.622600px;}
.wsad{word-spacing:796.315200px;}
.wsaf{word-spacing:802.402200px;}
.wsae{word-spacing:817.584000px;}
.ws9d{word-spacing:822.128400px;}
.wsa5{word-spacing:826.702800px;}
.ws82{word-spacing:1023.591000px;}
.ws8a{word-spacing:1045.905000px;}
.ws85{word-spacing:1046.057400px;}
.ws8c{word-spacing:1053.835200px;}
.ws83{word-spacing:1061.624400px;}
.ws8d{word-spacing:1069.199400px;}
.ws81{word-spacing:1069.864800px;}
.ws88{word-spacing:1073.003400px;}
.ws8b{word-spacing:1082.285400px;}
.ws89{word-spacing:1084.935000px;}
._21{margin-left:-281.472521px;}
._20{margin-left:-279.869476px;}
._22{margin-left:-277.216161px;}
._23{margin-left:-263.783753px;}
._10{margin-left:-10.072800px;}
._11{margin-left:-8.938800px;}
._12{margin-left:-7.845600px;}
._2{margin-left:-6.568800px;}
._5{margin-left:-5.110800px;}
._4{margin-left:-3.983400px;}
._0{margin-left:-2.721600px;}
._1{margin-left:-1.166400px;}
._3{width:1.088400px;}
._6{width:2.424000px;}
._7{width:3.836400px;}
._8{width:4.944600px;}
._9{width:6.202800px;}
._c{width:7.741200px;}
._d{width:8.822400px;}
._24{width:10.160400px;}
._25{width:11.257200px;}
._f{width:17.320800px;}
._e{width:18.502800px;}
._3a{width:27.060000px;}
._39{width:37.557600px;}
._a{width:57.884400px;}
._13{width:180.318600px;}
._b{width:205.632000px;}
._15{width:313.290600px;}
._16{width:320.971800px;}
._1c{width:328.857000px;}
._1e{width:348.159600px;}
._17{width:355.984200px;}
._18{width:360.858600px;}
._1d{width:383.469600px;}
._1b{width:389.490000px;}
._19{width:391.807800px;}
._1f{width:396.505800px;}
._1a{width:405.937200px;}
._14{width:427.539000px;}
._2e{width:442.007400px;}
._35{width:516.654600px;}
._2d{width:540.763200px;}
._30{width:557.238000px;}
._31{width:607.329600px;}
._38{width:621.505800px;}
._2f{width:645.829200px;}
._34{width:655.075200px;}
._32{width:667.804800px;}
._36{width:702.056400px;}
._33{width:721.433400px;}
._2c{width:722.898600px;}
._37{width:740.168400px;}
._28{width:886.041600px;}
._26{width:904.759200px;}
._2b{width:949.639800px;}
._27{width:958.287600px;}
._2a{width:983.946600px;}
._29{width:1027.545000px;}
.fc5{color:rgb(90,87,88);}
.fc4{color:rgb(79,76,77);}
.fc1{color:rgb(145,143,143);}
.fc6{color:rgb(255,255,255);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(57,53,54);}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:41.976000px;}
.fs7{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs9{font-size:55.277400px;}
.fs4{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs3{font-size:69.000000px;}
.fs5{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y23{bottom:35.140800px;}
.yd3{bottom:99.791400px;}
.y15b{bottom:102.041400px;}
.y192{bottom:108.791400px;}
.y74{bottom:111.791250px;}
.ye{bottom:111.791400px;}
.y8f{bottom:113.291400px;}
.y184{bottom:115.246050px;}
.y15a{bottom:123.041400px;}
.y84{bottom:123.791250px;}
.yd2{bottom:123.791400px;}
.y11c{bottom:125.291400px;}
.yd{bottom:129.791400px;}
.y73{bottom:135.791250px;}
.y64{bottom:135.791400px;}
.y183{bottom:136.246050px;}
.y8e{bottom:137.291400px;}
.y191{bottom:140.291400px;}
.y143{bottom:144.041400px;}
.y11b{bottom:146.291400px;}
.y83{bottom:147.791250px;}
.yc{bottom:147.791400px;}
.y182{bottom:157.246050px;}
.y63{bottom:159.791400px;}
.y8d{bottom:161.291400px;}
.y190{bottom:164.291400px;}
.y142{bottom:165.041400px;}
.y11a{bottom:167.291400px;}
.y72{bottom:171.791250px;}
.yb{bottom:171.791400px;}
.y159{bottom:172.541400px;}
.y62{bottom:183.791400px;}
.y8c{bottom:185.291400px;}
.y181{bottom:185.746050px;}
.y119{bottom:188.291400px;}
.y141{bottom:193.541400px;}
.y71{bottom:195.791250px;}
.yd1{bottom:195.791400px;}
.y180{bottom:206.746050px;}
.yb1{bottom:207.791400px;}
.y118{bottom:209.291400px;}
.y140{bottom:214.541400px;}
.y48{bottom:219.791250px;}
.y61{bottom:219.791400px;}
.y22{bottom:219.803400px;}
.y17f{bottom:227.746050px;}
.y82{bottom:231.791250px;}
.yb0{bottom:231.791400px;}
.y18f{bottom:234.791400px;}
.y13f{bottom:235.541400px;}
.y117{bottom:237.791400px;}
.y158{bottom:243.041400px;}
.y47{bottom:243.791250px;}
.y60{bottom:243.791400px;}
.y21{bottom:243.797400px;}
.y81{bottom:255.791250px;}
.yaf{bottom:255.791400px;}
.y17e{bottom:256.246050px;}
.y13e{bottom:256.541400px;}
.y116{bottom:258.791400px;}
.y157{bottom:264.041400px;}
.y18e{bottom:266.291400px;}
.y70{bottom:267.791250px;}
.y5f{bottom:267.791400px;}
.y17d{bottom:277.246050px;}
.y13d{bottom:277.541400px;}
.y46{bottom:279.791250px;}
.yae{bottom:279.791400px;}
.y20{bottom:279.797400px;}
.y156{bottom:285.041400px;}
.y115{bottom:287.291400px;}
.y18d{bottom:290.291400px;}
.y6f{bottom:291.791250px;}
.y5e{bottom:291.791400px;}
.y45{bottom:303.791250px;}
.y1f{bottom:303.791400px;}
.y17c{bottom:305.746050px;}
.y13c{bottom:306.041400px;}
.y114{bottom:308.291400px;}
.y155{bottom:313.541400px;}
.y18c{bottom:314.291400px;}
.y6e{bottom:315.791250px;}
.y5d{bottom:315.791400px;}
.y17b{bottom:326.746050px;}
.y13b{bottom:327.041400px;}
.y44{bottom:327.791250px;}
.y1e{bottom:327.791400px;}
.y113{bottom:329.291400px;}
.y154{bottom:334.541400px;}
.y18b{bottom:338.291400px;}
.y6d{bottom:339.791250px;}
.y5c{bottom:339.791400px;}
.y13a{bottom:348.041400px;}
.y43{bottom:351.791250px;}
.y1d{bottom:351.791400px;}
.y17a{bottom:355.246050px;}
.y153{bottom:355.541400px;}
.y112{bottom:357.791400px;}
.y6c{bottom:363.791250px;}
.y9d{bottom:363.791400px;}
.yf9{bottom:371.291400px;}
.y42{bottom:375.791250px;}
.y5b{bottom:375.791400px;}
.y1c{bottom:375.797400px;}
.y179{bottom:376.246050px;}
.y139{bottom:376.541400px;}
.y111{bottom:378.791400px;}
.y152{bottom:384.041400px;}
.y18a{bottom:384.791400px;}
.y80{bottom:387.791250px;}
.y9c{bottom:387.791400px;}
.yf8{bottom:396.791400px;}
.y178{bottom:397.246050px;}
.y138{bottom:397.541400px;}
.y41{bottom:399.791250px;}
.y1b{bottom:399.791400px;}
.y151{bottom:405.041400px;}
.y110{bottom:407.291400px;}
.y7f{bottom:411.791250px;}
.y9b{bottom:411.791400px;}
.y189{bottom:416.291400px;}
.y137{bottom:418.541400px;}
.y40{bottom:423.791250px;}
.y1a{bottom:423.791400px;}
.y177{bottom:425.746050px;}
.y10f{bottom:428.291400px;}
.yf7{bottom:430.541400px;}
.y150{bottom:433.541400px;}
.y7e{bottom:435.791250px;}
.y9a{bottom:435.791400px;}
.y188{bottom:440.291400px;}
.y176{bottom:446.746050px;}
.y136{bottom:447.041400px;}
.y3f{bottom:447.791250px;}
.y19{bottom:447.791400px;}
.y10e{bottom:449.291400px;}
.y14f{bottom:454.541400px;}
.y7d{bottom:459.791250px;}
.y99{bottom:459.791400px;}
.y187{bottom:464.291400px;}
.y175{bottom:467.746050px;}
.y10d{bottom:470.291400px;}
.y3e{bottom:471.791250px;}
.y18{bottom:471.791400px;}
.y135{bottom:475.541400px;}
.y7c{bottom:483.791250px;}
.y98{bottom:483.791400px;}
.yf6{bottom:489.041400px;}
.y10c{bottom:491.291400px;}
.y3d{bottom:495.791250px;}
.y17{bottom:495.791400px;}
.y174{bottom:496.246050px;}
.y134{bottom:496.541400px;}
.y14e{bottom:504.041400px;}
.y97{bottom:507.791400px;}
.y173{bottom:517.246050px;}
.y133{bottom:517.541400px;}
.yf5{bottom:518.291400px;}
.y3c{bottom:519.791250px;}
.y5a{bottom:519.791400px;}
.y16{bottom:519.803400px;}
.y14d{bottom:525.041400px;}
.y8b{bottom:531.791400px;}
.ye4{bottom:535.541400px;}
.y10b{bottom:540.791400px;}
.y3b{bottom:543.791250px;}
.y59{bottom:543.791400px;}
.y15{bottom:543.797400px;}
.y172{bottom:545.746050px;}
.y132{bottom:546.041400px;}
.yf4{bottom:547.541400px;}
.y8a{bottom:555.791400px;}
.ye3{bottom:561.041400px;}
.y10a{bottom:561.791400px;}
.y171{bottom:566.746050px;}
.y131{bottom:567.041400px;}
.y3a{bottom:567.791250px;}
.y14{bottom:567.791400px;}
.y14c{bottom:574.541400px;}
.yf3{bottom:576.791400px;}
.y6b{bottom:579.791250px;}
.y89{bottom:579.791400px;}
.y170{bottom:587.746050px;}
.y130{bottom:588.041400px;}
.y109{bottom:590.291400px;}
.y39{bottom:591.791250px;}
.y13{bottom:591.791400px;}
.ye2{bottom:595.166400px;}
.y14b{bottom:595.541400px;}
.y6a{bottom:603.791250px;}
.y88{bottom:603.791400px;}
.yf2{bottom:606.041400px;}
.y108{bottom:611.291400px;}
.y38{bottom:615.791250px;}
.y58{bottom:615.791400px;}
.y12{bottom:615.797400px;}
.y16f{bottom:616.246050px;}
.y12f{bottom:616.541400px;}
.ye1{bottom:625.166400px;}
.y69{bottom:627.791250px;}
.y87{bottom:627.791400px;}
.y107{bottom:632.291400px;}
.yf1{bottom:635.291400px;}
.y16e{bottom:637.246050px;}
.y12e{bottom:637.541400px;}
.yad{bottom:639.561150px;}
.y37{bottom:639.791250px;}
.y11{bottom:639.791400px;}
.y68{bottom:651.791250px;}
.y86{bottom:651.791400px;}
.y106{bottom:653.291400px;}
.ye0{bottom:655.166400px;}
.y7b{bottom:663.791250px;}
.y10{bottom:663.791400px;}
.yf0{bottom:664.541400px;}
.yac{bottom:665.061150px;}
.y16d{bottom:665.746050px;}
.y12d{bottom:666.041400px;}
.y67{bottom:675.791250px;}
.y100{bottom:675.791400px;}
.y105{bottom:681.791400px;}
.ydf{bottom:685.166400px;}
.y16c{bottom:686.746050px;}
.y12c{bottom:687.041400px;}
.y7a{bottom:687.791250px;}
.yf{bottom:687.791400px;}
.yef{bottom:693.791400px;}
.yab{bottom:698.811000px;}
.y36{bottom:699.791250px;}
.yd0{bottom:699.791400px;}
.y104{bottom:702.791400px;}
.y16b{bottom:707.746050px;}
.y12b{bottom:708.041400px;}
.ycc{bottom:709.541400px;}
.y79{bottom:711.791250px;}
.y57{bottom:711.791400px;}
.yde{bottom:715.166400px;}
.yee{bottom:723.041400px;}
.y35{bottom:723.791250px;}
.ycf{bottom:723.791400px;}
.yaa{bottom:728.061000px;}
.y12a{bottom:729.041400px;}
.ya{bottom:733.951050px;}
.ycb{bottom:735.041400px;}
.y66{bottom:735.791250px;}
.y56{bottom:735.791400px;}
.y16a{bottom:736.246050px;}
.ydd{bottom:745.166400px;}
.y96{bottom:747.791250px;}
.yce{bottom:747.791400px;}
.yed{bottom:752.291400px;}
.y9{bottom:754.955550px;}
.y169{bottom:757.246050px;}
.ya9{bottom:757.311000px;}
.y129{bottom:757.541400px;}
.y34{bottom:759.791250px;}
.y55{bottom:759.791400px;}
.y95{bottom:771.791250px;}
.ycd{bottom:771.791400px;}
.ydc{bottom:775.166400px;}
.y168{bottom:778.246050px;}
.y128{bottom:778.541400px;}
.yec{bottom:781.541400px;}
.y8{bottom:783.451050px;}
.y33{bottom:783.791250px;}
.ya8{bottom:786.561000px;}
.yb2{bottom:791.715300px;}
.y94{bottom:795.791250px;}
.y54{bottom:795.791400px;}
.y14a{bottom:799.541400px;}
.y7{bottom:804.455550px;}
.ydb{bottom:805.166400px;}
.y167{bottom:806.746050px;}
.y127{bottom:807.041400px;}
.y32{bottom:807.791250px;}
.yeb{bottom:810.791400px;}
.ya7{bottom:815.811000px;}
.y93{bottom:819.791250px;}
.y53{bottom:819.791400px;}
.ybc{bottom:821.557638px;}
.yc8{bottom:824.017483px;}
.y166{bottom:827.746050px;}
.y126{bottom:828.041400px;}
.y31{bottom:831.791250px;}
.y6{bottom:832.951050px;}
.yda{bottom:835.166400px;}
.y186{bottom:835.541400px;}
.yea{bottom:840.041400px;}
.ybb{bottom:843.171102px;}
.y92{bottom:843.791250px;}
.y52{bottom:843.791400px;}
.yc7{bottom:844.774146px;}
.ya6{bottom:845.061000px;}
.y165{bottom:848.746050px;}
.y149{bottom:849.041400px;}
.y30{bottom:855.791250px;}
.y103{bottom:855.791400px;}
.y125{bottom:856.541400px;}
.y5{bottom:858.443550px;}
.yc9{bottom:863.959200px;}
.yd9{bottom:865.166400px;}
.yc6{bottom:865.516991px;}
.y91{bottom:867.791250px;}
.y51{bottom:867.791400px;}
.ye9{bottom:869.291400px;}
.y148{bottom:870.041400px;}
.ya5{bottom:874.311000px;}
.y164{bottom:877.246050px;}
.y124{bottom:877.541400px;}
.y2f{bottom:879.791250px;}
.y102{bottom:879.791400px;}
.yba{bottom:884.670610px;}
.yc5{bottom:886.273654px;}
.y90{bottom:891.791250px;}
.y50{bottom:891.791400px;}
.yd8{bottom:895.166400px;}
.y163{bottom:898.246050px;}
.ye8{bottom:898.541400px;}
.y4{bottom:900.443550px;}
.ya4{bottom:903.561000px;}
.y2e{bottom:903.791250px;}
.y101{bottom:903.791400px;}
.yb9{bottom:905.427273px;}
.y185{bottom:906.041400px;}
.yc4{bottom:907.030318px;}
.yff{bottom:914.291400px;}
.y78{bottom:915.791250px;}
.y85{bottom:915.791400px;}
.y162{bottom:919.246050px;}
.y147{bottom:919.541400px;}
.yd7{bottom:925.166400px;}
.yb8{bottom:926.183937px;}
.y123{bottom:927.041400px;}
.yc3{bottom:927.773162px;}
.y2d{bottom:927.791250px;}
.y4f{bottom:927.791400px;}
.ya3{bottom:932.811000px;}
.y3{bottom:936.143550px;}
.yfe{bottom:938.291400px;}
.y77{bottom:939.791250px;}
.y146{bottom:940.541400px;}
.yb7{bottom:946.940601px;}
.y161{bottom:947.746050px;}
.y122{bottom:948.041400px;}
.yc2{bottom:948.529826px;}
.y2c{bottom:951.791250px;}
.y4e{bottom:951.791400px;}
.yd6{bottom:955.166400px;}
.ye7{bottom:957.041400px;}
.ya2{bottom:962.061000px;}
.yfd{bottom:962.291400px;}
.y76{bottom:963.791250px;}
.yb6{bottom:967.697265px;}
.y160{bottom:968.746050px;}
.y145{bottom:969.041400px;}
.yc1{bottom:969.286490px;}
.y2{bottom:971.843550px;}
.y2b{bottom:975.791250px;}
.y4d{bottom:975.791400px;}
.y121{bottom:976.541400px;}
.yd5{bottom:985.166400px;}
.ye6{bottom:986.291400px;}
.y75{bottom:987.791250px;}
.yb5{bottom:988.453928px;}
.y15f{bottom:989.746050px;}
.yc0{bottom:990.029334px;}
.y144{bottom:990.041400px;}
.ya1{bottom:994.426200px;}
.y120{bottom:997.541400px;}
.y2a{bottom:999.791250px;}
.y4c{bottom:999.791400px;}
.y1{bottom:1004.243550px;}
.yca{bottom:1009.214388px;}
.yfc{bottom:1010.291400px;}
.ybf{bottom:1010.785998px;}
.yd4{bottom:1015.166400px;}
.ye5{bottom:1015.541400px;}
.y15e{bottom:1018.246050px;}
.y11f{bottom:1018.541400px;}
.y29{bottom:1023.791250px;}
.y4b{bottom:1023.791400px;}
.y9f{bottom:1026.791400px;}
.yb4{bottom:1029.953436px;}
.ybe{bottom:1031.542662px;}
.yfb{bottom:1034.291400px;}
.y9e{bottom:1035.791400px;}
.y15d{bottom:1039.246050px;}
.y11e{bottom:1039.541400px;}
.ya0{bottom:1044.791400px;}
.y28{bottom:1047.791250px;}
.y4a{bottom:1047.791400px;}
.yb3{bottom:1050.710100px;}
.ybd{bottom:1052.299325px;}
.y27{bottom:1057.684500px;}
.yfa{bottom:1058.291400px;}
.y15c{bottom:1060.246050px;}
.y11d{bottom:1060.541400px;}
.y26{bottom:1074.151500px;}
.y25{bottom:1090.885500px;}
.y24{bottom:1107.453000px;}
.y49{bottom:1117.944750px;}
.y65{bottom:1117.944900px;}
.he{height:40.992000px;}
.h15{height:42.066101px;}
.h14{height:45.660000px;}
.ha{height:46.116000px;}
.hc{height:46.252200px;}
.hb{height:46.980000px;}
.h16{height:51.000000px;}
.h8{height:51.240000px;}
.h19{height:51.360000px;}
.h13{height:52.200000px;}
.h18{height:53.460000px;}
.h11{height:56.364000px;}
.h10{height:57.420000px;}
.h6{height:57.552000px;}
.h5{height:58.806000px;}
.h7{height:60.030000px;}
.h17{height:61.200000px;}
.hd{height:61.632000px;}
.hf{height:62.640000px;}
.h4{height:63.924000px;}
.h9{height:64.152000px;}
.h3{height:73.080000px;}
.h12{height:88.200000px;}
.h2{height:93.960000px;}
.h1{height:1169.250000px;}
.h0{height:1169.292000px;}
.w1{width:765.000000px;}
.w0{width:765.354000px;}
.x0{left:0.000000px;}
.x7{left:73.145400px;}
.x2{left:75.904800px;}
.x3{left:77.073300px;}
.x1{left:78.076950px;}
.x5{left:79.104300px;}
.x27{left:83.119871px;}
.x25{left:95.087428px;}
.x8{left:100.828200px;}
.x6{left:101.877600px;}
.x47{left:103.554300px;}
.xf{left:111.196350px;}
.x45{left:121.145400px;}
.x9{left:124.156050px;}
.x11{left:125.816550px;}
.x13{left:127.931550px;}
.x12{left:130.319700px;}
.x10{left:131.559600px;}
.x14{left:139.450500px;}
.xd{left:142.483500px;}
.xe{left:143.988150px;}
.x46{left:150.507900px;}
.x34{left:154.682100px;}
.x3d{left:155.874450px;}
.x32{left:163.228800px;}
.x24{left:166.505829px;}
.x28{left:168.247067px;}
.x23{left:171.024756px;}
.x33{left:173.454600px;}
.x3c{left:177.263400px;}
.x37{left:179.684850px;}
.x2a{left:181.306353px;}
.x29{left:183.517449px;}
.x22{left:185.521255px;}
.x40{left:187.458900px;}
.x36{left:190.120050px;}
.x26{left:191.643227px;}
.x30{left:196.107150px;}
.x41{left:197.344200px;}
.x2b{left:198.718734px;}
.x38{left:199.838850px;}
.x2e{left:201.762300px;}
.x39{left:203.962050px;}
.x31{left:205.005900px;}
.x15{left:207.050550px;}
.x35{left:208.056150px;}
.x3e{left:212.810250px;}
.x42{left:215.147550px;}
.x3f{left:216.471300px;}
.x3a{left:221.329950px;}
.x43{left:222.492000px;}
.x3b{left:225.414450px;}
.x44{left:256.607700px;}
.x18{left:258.542700px;}
.x19{left:264.042801px;}
.x2d{left:274.757965px;}
.x1a{left:296.656467px;}
.x2f{left:298.571850px;}
.x1b{left:300.318595px;}
.x16{left:302.862750px;}
.x1c{left:312.396707px;}
.x1d{left:322.609207px;}
.x1e{left:350.510474px;}
.x1f{left:371.944286px;}
.x4{left:375.785400px;}
.x2c{left:382.231050px;}
.x20{left:426.945299px;}
.x48{left:428.830200px;}
.xa{left:507.496650px;}
.xc{left:602.541900px;}
.xb{left:603.907500px;}
.x21{left:649.326279px;}
.x17{left:669.579900px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.312000pt;}
.v2{vertical-align:32.000000pt;}
.ls1b{letter-spacing:-3.904000pt;}
.ls66{letter-spacing:-3.626667pt;}
.ls56{letter-spacing:-3.200000pt;}
.ls69{letter-spacing:-2.826667pt;}
.ls1a{letter-spacing:-2.688000pt;}
.ls76{letter-spacing:-2.613333pt;}
.lse{letter-spacing:-2.400000pt;}
.ls6c{letter-spacing:-2.080000pt;}
.ls19{letter-spacing:-2.048000pt;}
.ls18{letter-spacing:-1.920000pt;}
.ls6e{letter-spacing:-1.866667pt;}
.ls78{letter-spacing:-1.813333pt;}
.ls1d{letter-spacing:-1.600000pt;}
.ls55{letter-spacing:-1.546667pt;}
.ls20{letter-spacing:-1.536000pt;}
.ls65{letter-spacing:-1.493333pt;}
.ls53{letter-spacing:-1.440000pt;}
.ls71{letter-spacing:-1.280000pt;}
.ls2e{letter-spacing:-1.216000pt;}
.ls75{letter-spacing:-1.173333pt;}
.ls11{letter-spacing:-1.088000pt;}
.ls63{letter-spacing:-1.066667pt;}
.ls2c{letter-spacing:-1.024000pt;}
.ls5d{letter-spacing:-1.013333pt;}
.ls3b{letter-spacing:-0.997333pt;}
.ls1e{letter-spacing:-0.960000pt;}
.ls5c{letter-spacing:-0.906667pt;}
.ls1c{letter-spacing:-0.896000pt;}
.ls6d{letter-spacing:-0.853333pt;}
.ls5b{letter-spacing:-0.800000pt;}
.ls37{letter-spacing:-0.704000pt;}
.ls50{letter-spacing:-0.693333pt;}
.ls3{letter-spacing:-0.672000pt;}
.ls38{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.613333pt;}
.ls70{letter-spacing:-0.586667pt;}
.ls2{letter-spacing:-0.576000pt;}
.ls54{letter-spacing:-0.533333pt;}
.ls13{letter-spacing:-0.512000pt;}
.ls51{letter-spacing:-0.480000pt;}
.ls15{letter-spacing:-0.448000pt;}
.ls4c{letter-spacing:-0.426667pt;}
.ls3c{letter-spacing:-0.410667pt;}
.ls12{letter-spacing:-0.384000pt;}
.ls4b{letter-spacing:-0.373333pt;}
.ls6{letter-spacing:-0.352000pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls3d{letter-spacing:-0.293333pt;}
.ls16{letter-spacing:-0.288000pt;}
.ls48{letter-spacing:-0.266667pt;}
.ls1f{letter-spacing:-0.256000pt;}
.ls57{letter-spacing:-0.213333pt;}
.ls14{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:-0.176000pt;}
.ls4d{letter-spacing:-0.160000pt;}
.ls23{letter-spacing:-0.128000pt;}
.ls8{letter-spacing:-0.117333pt;}
.ls10{letter-spacing:-0.106667pt;}
.ls4{letter-spacing:-0.074667pt;}
.ls24{letter-spacing:-0.064000pt;}
.ls4e{letter-spacing:-0.053333pt;}
.lsf{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.048000pt;}
.ls4f{letter-spacing:0.053333pt;}
.ls28{letter-spacing:0.064000pt;}
.ls44{letter-spacing:0.106667pt;}
.lsa{letter-spacing:0.117333pt;}
.ls25{letter-spacing:0.128000pt;}
.ls42{letter-spacing:0.160000pt;}
.ls2f{letter-spacing:0.192000pt;}
.ls4a{letter-spacing:0.213333pt;}
.ls2a{letter-spacing:0.256000pt;}
.ls45{letter-spacing:0.266667pt;}
.ls9{letter-spacing:0.293333pt;}
.ls5{letter-spacing:0.298667pt;}
.ls22{letter-spacing:0.320000pt;}
.ls49{letter-spacing:0.373333pt;}
.ls32{letter-spacing:0.384000pt;}
.ls21{letter-spacing:0.426667pt;}
.ls30{letter-spacing:0.448000pt;}
.ls6b{letter-spacing:0.480000pt;}
.ls27{letter-spacing:0.512000pt;}
.lsd{letter-spacing:0.533333pt;}
.ls2b{letter-spacing:0.576000pt;}
.ls47{letter-spacing:0.586667pt;}
.ls17{letter-spacing:0.624000pt;}
.ls35{letter-spacing:0.640000pt;}
.ls64{letter-spacing:0.693333pt;}
.ls34{letter-spacing:0.704000pt;}
.ls68{letter-spacing:0.746133pt;}
.ls46{letter-spacing:0.746667pt;}
.ls0{letter-spacing:0.768000pt;}
.ls62{letter-spacing:0.800000pt;}
.ls58{letter-spacing:0.832000pt;}
.ls5a{letter-spacing:0.853333pt;}
.ls29{letter-spacing:0.896000pt;}
.ls52{letter-spacing:0.906667pt;}
.ls26{letter-spacing:0.960000pt;}
.ls67{letter-spacing:1.013333pt;}
.ls59{letter-spacing:1.024000pt;}
.ls2d{letter-spacing:1.088000pt;}
.ls74{letter-spacing:1.120000pt;}
.ls6a{letter-spacing:1.173333pt;}
.ls3e{letter-spacing:1.216000pt;}
.ls73{letter-spacing:1.226667pt;}
.ls33{letter-spacing:1.280000pt;}
.ls72{letter-spacing:1.386667pt;}
.ls31{letter-spacing:1.408000pt;}
.ls6f{letter-spacing:1.493333pt;}
.ls3a{letter-spacing:1.536000pt;}
.ls77{letter-spacing:1.546667pt;}
.ls39{letter-spacing:1.600000pt;}
.ls79{letter-spacing:2.240000pt;}
.ls36{letter-spacing:2.688000pt;}
.ls3f{letter-spacing:330.506667pt;}
.ls40{letter-spacing:331.320000pt;}
.ls41{letter-spacing:332.530133pt;}
.ls43{letter-spacing:333.084800pt;}
.ls60{letter-spacing:447.140267pt;}
.ls61{letter-spacing:447.140800pt;}
.ls5e{letter-spacing:448.642133pt;}
.ls5f{letter-spacing:448.642667pt;}
.ws7{word-spacing:-27.648000pt;}
.ws0{word-spacing:-18.912000pt;}
.wsb2{word-spacing:-13.696000pt;}
.ws44{word-spacing:-13.376000pt;}
.ws2e{word-spacing:-13.120000pt;}
.wsd0{word-spacing:-12.960000pt;}
.wsb3{word-spacing:-12.928000pt;}
.ws2{word-spacing:-12.906667pt;}
.wsc4{word-spacing:-12.693333pt;}
.wsb6{word-spacing:-12.640000pt;}
.wsc9{word-spacing:-12.586667pt;}
.ws86{word-spacing:-12.373333pt;}
.wsb5{word-spacing:-12.320000pt;}
.ws41{word-spacing:-12.288000pt;}
.ws98{word-spacing:-12.213333pt;}
.ws25{word-spacing:-12.160000pt;}
.ws42{word-spacing:-12.096000pt;}
.wsc2{word-spacing:-11.946667pt;}
.ws1{word-spacing:-11.850667pt;}
.ws6c{word-spacing:-11.840000pt;}
.ws58{word-spacing:-11.733333pt;}
.ws5{word-spacing:-11.712000pt;}
.wsb7{word-spacing:-11.680000pt;}
.ws66{word-spacing:-11.520000pt;}
.ws55{word-spacing:-11.466667pt;}
.ws4{word-spacing:-11.413333pt;}
.ws5d{word-spacing:-11.360000pt;}
.ws69{word-spacing:-11.253333pt;}
.ws95{word-spacing:-11.200000pt;}
.wsa9{word-spacing:-11.040000pt;}
.ws47{word-spacing:-10.970667pt;}
.ws3{word-spacing:-10.880000pt;}
.ws61{word-spacing:-10.826667pt;}
.wsb4{word-spacing:-10.773333pt;}
.ws9a{word-spacing:-10.720000pt;}
.wsc3{word-spacing:-10.666667pt;}
.ws87{word-spacing:-10.613333pt;}
.ws7d{word-spacing:-10.613261pt;}
.wsd1{word-spacing:-10.560000pt;}
.wsca{word-spacing:-10.506667pt;}
.wsd2{word-spacing:-10.400000pt;}
.ws46{word-spacing:-10.384000pt;}
.wsb8{word-spacing:-10.293333pt;}
.ws8{word-spacing:-10.080000pt;}
.ws74{word-spacing:-9.973333pt;}
.wsc0{word-spacing:-9.706667pt;}
.ws6{word-spacing:-9.504000pt;}
.wscb{word-spacing:-9.493333pt;}
.wsc1{word-spacing:-9.386667pt;}
.ws84{word-spacing:-9.120000pt;}
.ws9c{word-spacing:-7.893333pt;}
.wsd9{word-spacing:-4.266667pt;}
.wsd8{word-spacing:-4.106667pt;}
.wsdc{word-spacing:-4.053333pt;}
.ws4e{word-spacing:-4.048000pt;}
.wsd7{word-spacing:-4.000000pt;}
.ws4f{word-spacing:-3.989333pt;}
.wsda{word-spacing:-2.773333pt;}
.wsdb{word-spacing:-2.720000pt;}
.ws43{word-spacing:-2.688000pt;}
.ws26{word-spacing:-2.624000pt;}
.ws4c{word-spacing:-2.288000pt;}
.wsd6{word-spacing:-2.240000pt;}
.ws4d{word-spacing:-2.229333pt;}
.wsa{word-spacing:-1.920000pt;}
.ws49{word-spacing:-1.600000pt;}
.wsce{word-spacing:-1.546667pt;}
.ws4a{word-spacing:-1.536000pt;}
.wsb{word-spacing:-1.493333pt;}
.ws24{word-spacing:-1.488000pt;}
.ws90{word-spacing:-1.440000pt;}
.wsc{word-spacing:-1.418667pt;}
.ws3c{word-spacing:-1.408000pt;}
.ws7a{word-spacing:-1.386667pt;}
.ws7c{word-spacing:-1.333333pt;}
.ws51{word-spacing:-1.290667pt;}
.ws2d{word-spacing:-1.280000pt;}
.ws7f{word-spacing:-1.226667pt;}
.ws52{word-spacing:-1.216000pt;}
.ws12{word-spacing:-1.173333pt;}
.ws1b{word-spacing:-1.152000pt;}
.wsd5{word-spacing:-1.120000pt;}
.ws39{word-spacing:-1.088000pt;}
.ws20{word-spacing:-1.082667pt;}
.ws22{word-spacing:-1.077333pt;}
.ws7b{word-spacing:-1.066667pt;}
.ws21{word-spacing:-1.056000pt;}
.ws80{word-spacing:-1.024000pt;}
.wsbd{word-spacing:-1.013333pt;}
.ws1e{word-spacing:-0.986667pt;}
.ws11{word-spacing:-0.981333pt;}
.ws1d{word-spacing:-0.960000pt;}
.wsba{word-spacing:-0.906667pt;}
.ws35{word-spacing:-0.896000pt;}
.wsc7{word-spacing:-0.853333pt;}
.ws7e{word-spacing:-0.832000pt;}
.ws3e{word-spacing:-0.768000pt;}
.wsb9{word-spacing:-0.746667pt;}
.ws3f{word-spacing:-0.704000pt;}
.wsbf{word-spacing:-0.693333pt;}
.ws1f{word-spacing:-0.672000pt;}
.ws40{word-spacing:-0.640000pt;}
.ws37{word-spacing:-0.576000pt;}
.ws33{word-spacing:-0.512000pt;}
.ws79{word-spacing:-0.480000pt;}
.ws3b{word-spacing:-0.448000pt;}
.wsde{word-spacing:-0.426667pt;}
.ws3d{word-spacing:-0.384000pt;}
.wsd3{word-spacing:-0.373333pt;}
.ws38{word-spacing:-0.320000pt;}
.ws8e{word-spacing:-0.266667pt;}
.ws36{word-spacing:-0.256000pt;}
.wscc{word-spacing:-0.213333pt;}
.ws15{word-spacing:-0.192000pt;}
.ws32{word-spacing:-0.128000pt;}
.ws10{word-spacing:-0.117333pt;}
.ws34{word-spacing:-0.064000pt;}
.ws23{word-spacing:-0.048000pt;}
.ws45{word-spacing:-0.037312pt;}
.ws1c{word-spacing:-0.032000pt;}
.ws14{word-spacing:0.000000pt;}
.wsb1{word-spacing:0.053333pt;}
.ws31{word-spacing:0.064000pt;}
.wse{word-spacing:0.117333pt;}
.ws30{word-spacing:0.128000pt;}
.ws78{word-spacing:0.160000pt;}
.wsf{word-spacing:0.176000pt;}
.ws19{word-spacing:0.192000pt;}
.ws2b{word-spacing:0.256000pt;}
.ws2a{word-spacing:0.320000pt;}
.wsd{word-spacing:0.352000pt;}
.ws92{word-spacing:0.373333pt;}
.ws16{word-spacing:0.384000pt;}
.wsbb{word-spacing:0.426667pt;}
.ws1a{word-spacing:0.448000pt;}
.ws17{word-spacing:0.512000pt;}
.ws18{word-spacing:0.576000pt;}
.wsc6{word-spacing:0.586667pt;}
.ws48{word-spacing:0.640000pt;}
.wsc8{word-spacing:0.693333pt;}
.ws4b{word-spacing:0.704000pt;}
.ws91{word-spacing:0.800000pt;}
.ws13{word-spacing:0.906667pt;}
.ws8f{word-spacing:1.013333pt;}
.ws2f{word-spacing:1.088000pt;}
.ws3a{word-spacing:1.216000pt;}
.wsdd{word-spacing:1.226667pt;}
.wscf{word-spacing:1.440000pt;}
.ws2c{word-spacing:1.536000pt;}
.wsd4{word-spacing:1.813333pt;}
.wsc5{word-spacing:1.866667pt;}
.ws27{word-spacing:2.048000pt;}
.wsbe{word-spacing:2.080000pt;}
.wscd{word-spacing:2.613333pt;}
.ws28{word-spacing:2.688000pt;}
.wsbc{word-spacing:2.826667pt;}
.ws50{word-spacing:3.109333pt;}
.ws29{word-spacing:3.904000pt;}
.ws77{word-spacing:198.622933pt;}
.ws57{word-spacing:212.194133pt;}
.ws60{word-spacing:228.802667pt;}
.ws73{word-spacing:230.031467pt;}
.ws54{word-spacing:235.052800pt;}
.ws63{word-spacing:236.753600pt;}
.ws65{word-spacing:239.025600pt;}
.ws68{word-spacing:241.124267pt;}
.ws5c{word-spacing:242.185600pt;}
.ws70{word-spacing:245.585600pt;}
.ws6e{word-spacing:253.473600pt;}
.ws6b{word-spacing:253.878400pt;}
.ws76{word-spacing:265.768000pt;}
.ws5a{word-spacing:292.973333pt;}
.ws5f{word-spacing:293.778133pt;}
.ws72{word-spacing:294.924800pt;}
.ws6d{word-spacing:300.725867pt;}
.ws5b{word-spacing:307.520000pt;}
.ws71{word-spacing:308.204800pt;}
.ws56{word-spacing:311.809600pt;}
.ws62{word-spacing:312.351467pt;}
.ws6f{word-spacing:328.162667pt;}
.ws53{word-spacing:332.875200pt;}
.ws93{word-spacing:335.345067pt;}
.ws64{word-spacing:337.572267pt;}
.ws5e{word-spacing:340.601067pt;}
.ws59{word-spacing:343.773867pt;}
.ws6a{word-spacing:363.820800pt;}
.ws67{word-spacing:367.321600pt;}
.wsb0{word-spacing:383.850133pt;}
.ws94{word-spacing:406.999467pt;}
.ws99{word-spacing:409.412800pt;}
.ws96{word-spacing:412.826133pt;}
.ws97{word-spacing:417.090667pt;}
.wsa8{word-spacing:423.786667pt;}
.wsa2{word-spacing:424.375467pt;}
.ws9e{word-spacing:424.570667pt;}
.wsa7{word-spacing:426.194133pt;}
.wsa4{word-spacing:426.882667pt;}
.wsa0{word-spacing:427.868800pt;}
.wsa6{word-spacing:428.674667pt;}
.wsaa{word-spacing:430.381333pt;}
.ws9b{word-spacing:432.013333pt;}
.wsac{word-spacing:443.834133pt;}
.ws9{word-spacing:489.460251pt;}
.ws75{word-spacing:621.215467pt;}
.wsa3{word-spacing:672.229867pt;}
.wsab{word-spacing:680.928533pt;}
.ws9f{word-spacing:688.145600pt;}
.wsa1{word-spacing:700.997867pt;}
.wsad{word-spacing:707.835733pt;}
.wsaf{word-spacing:713.246400pt;}
.wsae{word-spacing:726.741333pt;}
.ws9d{word-spacing:730.780800pt;}
.wsa5{word-spacing:734.846933pt;}
.ws82{word-spacing:909.858667pt;}
.ws8a{word-spacing:929.693333pt;}
.ws85{word-spacing:929.828800pt;}
.ws8c{word-spacing:936.742400pt;}
.ws83{word-spacing:943.666133pt;}
.ws8d{word-spacing:950.399467pt;}
.ws81{word-spacing:950.990933pt;}
.ws88{word-spacing:953.780800pt;}
.ws8b{word-spacing:962.031467pt;}
.ws89{word-spacing:964.386667pt;}
._21{margin-left:-250.197796pt;}
._20{margin-left:-248.772868pt;}
._22{margin-left:-246.414365pt;}
._23{margin-left:-234.474447pt;}
._10{margin-left:-8.953600pt;}
._11{margin-left:-7.945600pt;}
._12{margin-left:-6.973867pt;}
._2{margin-left:-5.838933pt;}
._5{margin-left:-4.542933pt;}
._4{margin-left:-3.540800pt;}
._0{margin-left:-2.419200pt;}
._1{margin-left:-1.036800pt;}
._3{width:0.967467pt;}
._6{width:2.154667pt;}
._7{width:3.410133pt;}
._8{width:4.395200pt;}
._9{width:5.513600pt;}
._c{width:6.881067pt;}
._d{width:7.842133pt;}
._24{width:9.031467pt;}
._25{width:10.006400pt;}
._f{width:15.396267pt;}
._e{width:16.446933pt;}
._3a{width:24.053333pt;}
._39{width:33.384533pt;}
._a{width:51.452800pt;}
._13{width:160.283200pt;}
._b{width:182.784000pt;}
._15{width:278.480533pt;}
._16{width:285.308267pt;}
._1c{width:292.317333pt;}
._1e{width:309.475200pt;}
._17{width:316.430400pt;}
._18{width:320.763200pt;}
._1d{width:340.861867pt;}
._1b{width:346.213333pt;}
._19{width:348.273600pt;}
._1f{width:352.449600pt;}
._1a{width:360.833067pt;}
._14{width:380.034667pt;}
._2e{width:392.895467pt;}
._35{width:459.248533pt;}
._2d{width:480.678400pt;}
._30{width:495.322667pt;}
._31{width:539.848533pt;}
._38{width:552.449600pt;}
._2f{width:574.070400pt;}
._34{width:582.289067pt;}
._32{width:593.604267pt;}
._36{width:624.050133pt;}
._33{width:641.274133pt;}
._2c{width:642.576533pt;}
._37{width:657.927467pt;}
._28{width:787.592533pt;}
._26{width:804.230400pt;}
._2b{width:844.124267pt;}
._27{width:851.811200pt;}
._2a{width:874.619200pt;}
._29{width:913.373333pt;}
.fs8{font-size:37.312000pt;}
.fs7{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs9{font-size:49.135467pt;}
.fs4{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs3{font-size:61.333333pt;}
.fs5{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:31.236267pt;}
.yd3{bottom:88.703467pt;}
.y15b{bottom:90.703467pt;}
.y192{bottom:96.703467pt;}
.y74{bottom:99.370000pt;}
.ye{bottom:99.370133pt;}
.y8f{bottom:100.703467pt;}
.y184{bottom:102.440933pt;}
.y15a{bottom:109.370133pt;}
.y84{bottom:110.036667pt;}
.yd2{bottom:110.036800pt;}
.y11c{bottom:111.370133pt;}
.yd{bottom:115.370133pt;}
.y73{bottom:120.703333pt;}
.y64{bottom:120.703467pt;}
.y183{bottom:121.107600pt;}
.y8e{bottom:122.036800pt;}
.y191{bottom:124.703467pt;}
.y143{bottom:128.036800pt;}
.y11b{bottom:130.036800pt;}
.y83{bottom:131.370000pt;}
.yc{bottom:131.370133pt;}
.y182{bottom:139.774267pt;}
.y63{bottom:142.036800pt;}
.y8d{bottom:143.370133pt;}
.y190{bottom:146.036800pt;}
.y142{bottom:146.703467pt;}
.y11a{bottom:148.703467pt;}
.y72{bottom:152.703333pt;}
.yb{bottom:152.703467pt;}
.y159{bottom:153.370133pt;}
.y62{bottom:163.370133pt;}
.y8c{bottom:164.703467pt;}
.y181{bottom:165.107600pt;}
.y119{bottom:167.370133pt;}
.y141{bottom:172.036800pt;}
.y71{bottom:174.036667pt;}
.yd1{bottom:174.036800pt;}
.y180{bottom:183.774267pt;}
.yb1{bottom:184.703467pt;}
.y118{bottom:186.036800pt;}
.y140{bottom:190.703467pt;}
.y48{bottom:195.370000pt;}
.y61{bottom:195.370133pt;}
.y22{bottom:195.380800pt;}
.y17f{bottom:202.440933pt;}
.y82{bottom:206.036667pt;}
.yb0{bottom:206.036800pt;}
.y18f{bottom:208.703467pt;}
.y13f{bottom:209.370133pt;}
.y117{bottom:211.370133pt;}
.y158{bottom:216.036800pt;}
.y47{bottom:216.703333pt;}
.y60{bottom:216.703467pt;}
.y21{bottom:216.708800pt;}
.y81{bottom:227.370000pt;}
.yaf{bottom:227.370133pt;}
.y17e{bottom:227.774267pt;}
.y13e{bottom:228.036800pt;}
.y116{bottom:230.036800pt;}
.y157{bottom:234.703467pt;}
.y18e{bottom:236.703467pt;}
.y70{bottom:238.036667pt;}
.y5f{bottom:238.036800pt;}
.y17d{bottom:246.440933pt;}
.y13d{bottom:246.703467pt;}
.y46{bottom:248.703333pt;}
.yae{bottom:248.703467pt;}
.y20{bottom:248.708800pt;}
.y156{bottom:253.370133pt;}
.y115{bottom:255.370133pt;}
.y18d{bottom:258.036800pt;}
.y6f{bottom:259.370000pt;}
.y5e{bottom:259.370133pt;}
.y45{bottom:270.036667pt;}
.y1f{bottom:270.036800pt;}
.y17c{bottom:271.774267pt;}
.y13c{bottom:272.036800pt;}
.y114{bottom:274.036800pt;}
.y155{bottom:278.703467pt;}
.y18c{bottom:279.370133pt;}
.y6e{bottom:280.703333pt;}
.y5d{bottom:280.703467pt;}
.y17b{bottom:290.440933pt;}
.y13b{bottom:290.703467pt;}
.y44{bottom:291.370000pt;}
.y1e{bottom:291.370133pt;}
.y113{bottom:292.703467pt;}
.y154{bottom:297.370133pt;}
.y18b{bottom:300.703467pt;}
.y6d{bottom:302.036667pt;}
.y5c{bottom:302.036800pt;}
.y13a{bottom:309.370133pt;}
.y43{bottom:312.703333pt;}
.y1d{bottom:312.703467pt;}
.y17a{bottom:315.774267pt;}
.y153{bottom:316.036800pt;}
.y112{bottom:318.036800pt;}
.y6c{bottom:323.370000pt;}
.y9d{bottom:323.370133pt;}
.yf9{bottom:330.036800pt;}
.y42{bottom:334.036667pt;}
.y5b{bottom:334.036800pt;}
.y1c{bottom:334.042133pt;}
.y179{bottom:334.440933pt;}
.y139{bottom:334.703467pt;}
.y111{bottom:336.703467pt;}
.y152{bottom:341.370133pt;}
.y18a{bottom:342.036800pt;}
.y80{bottom:344.703333pt;}
.y9c{bottom:344.703467pt;}
.yf8{bottom:352.703467pt;}
.y178{bottom:353.107600pt;}
.y138{bottom:353.370133pt;}
.y41{bottom:355.370000pt;}
.y1b{bottom:355.370133pt;}
.y151{bottom:360.036800pt;}
.y110{bottom:362.036800pt;}
.y7f{bottom:366.036667pt;}
.y9b{bottom:366.036800pt;}
.y189{bottom:370.036800pt;}
.y137{bottom:372.036800pt;}
.y40{bottom:376.703333pt;}
.y1a{bottom:376.703467pt;}
.y177{bottom:378.440933pt;}
.y10f{bottom:380.703467pt;}
.yf7{bottom:382.703467pt;}
.y150{bottom:385.370133pt;}
.y7e{bottom:387.370000pt;}
.y9a{bottom:387.370133pt;}
.y188{bottom:391.370133pt;}
.y176{bottom:397.107600pt;}
.y136{bottom:397.370133pt;}
.y3f{bottom:398.036667pt;}
.y19{bottom:398.036800pt;}
.y10e{bottom:399.370133pt;}
.y14f{bottom:404.036800pt;}
.y7d{bottom:408.703333pt;}
.y99{bottom:408.703467pt;}
.y187{bottom:412.703467pt;}
.y175{bottom:415.774267pt;}
.y10d{bottom:418.036800pt;}
.y3e{bottom:419.370000pt;}
.y18{bottom:419.370133pt;}
.y135{bottom:422.703467pt;}
.y7c{bottom:430.036667pt;}
.y98{bottom:430.036800pt;}
.yf6{bottom:434.703467pt;}
.y10c{bottom:436.703467pt;}
.y3d{bottom:440.703333pt;}
.y17{bottom:440.703467pt;}
.y174{bottom:441.107600pt;}
.y134{bottom:441.370133pt;}
.y14e{bottom:448.036800pt;}
.y97{bottom:451.370133pt;}
.y173{bottom:459.774267pt;}
.y133{bottom:460.036800pt;}
.yf5{bottom:460.703467pt;}
.y3c{bottom:462.036667pt;}
.y5a{bottom:462.036800pt;}
.y16{bottom:462.047467pt;}
.y14d{bottom:466.703467pt;}
.y8b{bottom:472.703467pt;}
.ye4{bottom:476.036800pt;}
.y10b{bottom:480.703467pt;}
.y3b{bottom:483.370000pt;}
.y59{bottom:483.370133pt;}
.y15{bottom:483.375467pt;}
.y172{bottom:485.107600pt;}
.y132{bottom:485.370133pt;}
.yf4{bottom:486.703467pt;}
.y8a{bottom:494.036800pt;}
.ye3{bottom:498.703467pt;}
.y10a{bottom:499.370133pt;}
.y171{bottom:503.774267pt;}
.y131{bottom:504.036800pt;}
.y3a{bottom:504.703333pt;}
.y14{bottom:504.703467pt;}
.y14c{bottom:510.703467pt;}
.yf3{bottom:512.703467pt;}
.y6b{bottom:515.370000pt;}
.y89{bottom:515.370133pt;}
.y170{bottom:522.440933pt;}
.y130{bottom:522.703467pt;}
.y109{bottom:524.703467pt;}
.y39{bottom:526.036667pt;}
.y13{bottom:526.036800pt;}
.ye2{bottom:529.036800pt;}
.y14b{bottom:529.370133pt;}
.y6a{bottom:536.703333pt;}
.y88{bottom:536.703467pt;}
.yf2{bottom:538.703467pt;}
.y108{bottom:543.370133pt;}
.y38{bottom:547.370000pt;}
.y58{bottom:547.370133pt;}
.y12{bottom:547.375467pt;}
.y16f{bottom:547.774267pt;}
.y12f{bottom:548.036800pt;}
.ye1{bottom:555.703467pt;}
.y69{bottom:558.036667pt;}
.y87{bottom:558.036800pt;}
.y107{bottom:562.036800pt;}
.yf1{bottom:564.703467pt;}
.y16e{bottom:566.440933pt;}
.y12e{bottom:566.703467pt;}
.yad{bottom:568.498800pt;}
.y37{bottom:568.703333pt;}
.y11{bottom:568.703467pt;}
.y68{bottom:579.370000pt;}
.y86{bottom:579.370133pt;}
.y106{bottom:580.703467pt;}
.ye0{bottom:582.370133pt;}
.y7b{bottom:590.036667pt;}
.y10{bottom:590.036800pt;}
.yf0{bottom:590.703467pt;}
.yac{bottom:591.165467pt;}
.y16d{bottom:591.774267pt;}
.y12d{bottom:592.036800pt;}
.y67{bottom:600.703333pt;}
.y100{bottom:600.703467pt;}
.y105{bottom:606.036800pt;}
.ydf{bottom:609.036800pt;}
.y16c{bottom:610.440933pt;}
.y12c{bottom:610.703467pt;}
.y7a{bottom:611.370000pt;}
.yf{bottom:611.370133pt;}
.yef{bottom:616.703467pt;}
.yab{bottom:621.165333pt;}
.y36{bottom:622.036667pt;}
.yd0{bottom:622.036800pt;}
.y104{bottom:624.703467pt;}
.y16b{bottom:629.107600pt;}
.y12b{bottom:629.370133pt;}
.ycc{bottom:630.703467pt;}
.y79{bottom:632.703333pt;}
.y57{bottom:632.703467pt;}
.yde{bottom:635.703467pt;}
.yee{bottom:642.703467pt;}
.y35{bottom:643.370000pt;}
.ycf{bottom:643.370133pt;}
.yaa{bottom:647.165333pt;}
.y12a{bottom:648.036800pt;}
.ya{bottom:652.400933pt;}
.ycb{bottom:653.370133pt;}
.y66{bottom:654.036667pt;}
.y56{bottom:654.036800pt;}
.y16a{bottom:654.440933pt;}
.ydd{bottom:662.370133pt;}
.y96{bottom:664.703333pt;}
.yce{bottom:664.703467pt;}
.yed{bottom:668.703467pt;}
.y9{bottom:671.071600pt;}
.y169{bottom:673.107600pt;}
.ya9{bottom:673.165333pt;}
.y129{bottom:673.370133pt;}
.y34{bottom:675.370000pt;}
.y55{bottom:675.370133pt;}
.y95{bottom:686.036667pt;}
.ycd{bottom:686.036800pt;}
.ydc{bottom:689.036800pt;}
.y168{bottom:691.774267pt;}
.y128{bottom:692.036800pt;}
.yec{bottom:694.703467pt;}
.y8{bottom:696.400933pt;}
.y33{bottom:696.703333pt;}
.ya8{bottom:699.165333pt;}
.yb2{bottom:703.746933pt;}
.y94{bottom:707.370000pt;}
.y54{bottom:707.370133pt;}
.y14a{bottom:710.703467pt;}
.y7{bottom:715.071600pt;}
.ydb{bottom:715.703467pt;}
.y167{bottom:717.107600pt;}
.y127{bottom:717.370133pt;}
.y32{bottom:718.036667pt;}
.yeb{bottom:720.703467pt;}
.ya7{bottom:725.165333pt;}
.y93{bottom:728.703333pt;}
.y53{bottom:728.703467pt;}
.ybc{bottom:730.273456pt;}
.yc8{bottom:732.459985pt;}
.y166{bottom:735.774267pt;}
.y126{bottom:736.036800pt;}
.y31{bottom:739.370000pt;}
.y6{bottom:740.400933pt;}
.yda{bottom:742.370133pt;}
.y186{bottom:742.703467pt;}
.yea{bottom:746.703467pt;}
.ybb{bottom:749.485424pt;}
.y92{bottom:750.036667pt;}
.y52{bottom:750.036800pt;}
.yc7{bottom:750.910352pt;}
.ya6{bottom:751.165333pt;}
.y165{bottom:754.440933pt;}
.y149{bottom:754.703467pt;}
.y30{bottom:760.703333pt;}
.y103{bottom:760.703467pt;}
.y125{bottom:761.370133pt;}
.y5{bottom:763.060933pt;}
.yc9{bottom:767.963733pt;}
.yd9{bottom:769.036800pt;}
.yc6{bottom:769.348436pt;}
.y91{bottom:771.370000pt;}
.y51{bottom:771.370133pt;}
.ye9{bottom:772.703467pt;}
.y148{bottom:773.370133pt;}
.ya5{bottom:777.165333pt;}
.y164{bottom:779.774267pt;}
.y124{bottom:780.036800pt;}
.y2f{bottom:782.036667pt;}
.y102{bottom:782.036800pt;}
.yba{bottom:786.373875pt;}
.yc5{bottom:787.798804pt;}
.y90{bottom:792.703333pt;}
.y50{bottom:792.703467pt;}
.yd8{bottom:795.703467pt;}
.y163{bottom:798.440933pt;}
.ye8{bottom:798.703467pt;}
.y4{bottom:800.394267pt;}
.ya4{bottom:803.165333pt;}
.y2e{bottom:803.370000pt;}
.y101{bottom:803.370133pt;}
.yb9{bottom:804.824243pt;}
.y185{bottom:805.370133pt;}
.yc4{bottom:806.249172pt;}
.yff{bottom:812.703467pt;}
.y78{bottom:814.036667pt;}
.y85{bottom:814.036800pt;}
.y162{bottom:817.107600pt;}
.y147{bottom:817.370133pt;}
.yd7{bottom:822.370133pt;}
.yb8{bottom:823.274611pt;}
.y123{bottom:824.036800pt;}
.yc3{bottom:824.687255pt;}
.y2d{bottom:824.703333pt;}
.y4f{bottom:824.703467pt;}
.ya3{bottom:829.165333pt;}
.y3{bottom:832.127600pt;}
.yfe{bottom:834.036800pt;}
.y77{bottom:835.370000pt;}
.y146{bottom:836.036800pt;}
.yb7{bottom:841.724979pt;}
.y161{bottom:842.440933pt;}
.y122{bottom:842.703467pt;}
.yc2{bottom:843.137623pt;}
.y2c{bottom:846.036667pt;}
.y4e{bottom:846.036800pt;}
.yd6{bottom:849.036800pt;}
.ye7{bottom:850.703467pt;}
.ya2{bottom:855.165333pt;}
.yfd{bottom:855.370133pt;}
.y76{bottom:856.703333pt;}
.yb6{bottom:860.175346pt;}
.y160{bottom:861.107600pt;}
.y145{bottom:861.370133pt;}
.yc1{bottom:861.587991pt;}
.y2{bottom:863.860933pt;}
.y2b{bottom:867.370000pt;}
.y4d{bottom:867.370133pt;}
.y121{bottom:868.036800pt;}
.yd5{bottom:875.703467pt;}
.ye6{bottom:876.703467pt;}
.y75{bottom:878.036667pt;}
.yb5{bottom:878.625714pt;}
.y15f{bottom:879.774267pt;}
.yc0{bottom:880.026075pt;}
.y144{bottom:880.036800pt;}
.ya1{bottom:883.934400pt;}
.y120{bottom:886.703467pt;}
.y2a{bottom:888.703333pt;}
.y4c{bottom:888.703467pt;}
.y1{bottom:892.660933pt;}
.yca{bottom:897.079456pt;}
.yfc{bottom:898.036800pt;}
.ybf{bottom:898.476443pt;}
.yd4{bottom:902.370133pt;}
.ye5{bottom:902.703467pt;}
.y15e{bottom:905.107600pt;}
.y11f{bottom:905.370133pt;}
.y29{bottom:910.036667pt;}
.y4b{bottom:910.036800pt;}
.y9f{bottom:912.703467pt;}
.yb4{bottom:915.514166pt;}
.ybe{bottom:916.926810pt;}
.yfb{bottom:919.370133pt;}
.y9e{bottom:920.703467pt;}
.y15d{bottom:923.774267pt;}
.y11e{bottom:924.036800pt;}
.ya0{bottom:928.703467pt;}
.y28{bottom:931.370000pt;}
.y4a{bottom:931.370133pt;}
.yb3{bottom:933.964533pt;}
.ybd{bottom:935.377178pt;}
.y27{bottom:940.164000pt;}
.yfa{bottom:940.703467pt;}
.y15c{bottom:942.440933pt;}
.y11d{bottom:942.703467pt;}
.y26{bottom:954.801333pt;}
.y25{bottom:969.676000pt;}
.y24{bottom:984.402667pt;}
.y49{bottom:993.728667pt;}
.y65{bottom:993.728800pt;}
.he{height:36.437333pt;}
.h15{height:37.392090pt;}
.h14{height:40.586667pt;}
.ha{height:40.992000pt;}
.hc{height:41.113067pt;}
.hb{height:41.760000pt;}
.h16{height:45.333333pt;}
.h8{height:45.546667pt;}
.h19{height:45.653333pt;}
.h13{height:46.400000pt;}
.h18{height:47.520000pt;}
.h11{height:50.101333pt;}
.h10{height:51.040000pt;}
.h6{height:51.157333pt;}
.h5{height:52.272000pt;}
.h7{height:53.360000pt;}
.h17{height:54.400000pt;}
.hd{height:54.784000pt;}
.hf{height:55.680000pt;}
.h4{height:56.821333pt;}
.h9{height:57.024000pt;}
.h3{height:64.960000pt;}
.h12{height:78.400000pt;}
.h2{height:83.520000pt;}
.h1{height:1039.333333pt;}
.h0{height:1039.370667pt;}
.w1{width:680.000000pt;}
.w0{width:680.314667pt;}
.x0{left:0.000000pt;}
.x7{left:65.018133pt;}
.x2{left:67.470933pt;}
.x3{left:68.509600pt;}
.x1{left:69.401733pt;}
.x5{left:70.314933pt;}
.x27{left:73.884330pt;}
.x25{left:84.522158pt;}
.x8{left:89.625067pt;}
.x6{left:90.557867pt;}
.x47{left:92.048267pt;}
.xf{left:98.841200pt;}
.x45{left:107.684800pt;}
.x9{left:110.360933pt;}
.x11{left:111.836933pt;}
.x13{left:113.716933pt;}
.x12{left:115.839733pt;}
.x10{left:116.941867pt;}
.x14{left:123.956000pt;}
.xd{left:126.652000pt;}
.xe{left:127.989467pt;}
.x46{left:133.784800pt;}
.x34{left:137.495200pt;}
.x3d{left:138.555067pt;}
.x32{left:145.092267pt;}
.x24{left:148.005181pt;}
.x28{left:149.552949pt;}
.x23{left:152.022006pt;}
.x33{left:154.181867pt;}
.x3c{left:157.567467pt;}
.x37{left:159.719867pt;}
.x2a{left:161.161203pt;}
.x29{left:163.126621pt;}
.x22{left:164.907782pt;}
.x40{left:166.630133pt;}
.x36{left:168.995600pt;}
.x26{left:170.349535pt;}
.x30{left:174.317467pt;}
.x41{left:175.417067pt;}
.x2b{left:176.638875pt;}
.x38{left:177.634533pt;}
.x2e{left:179.344267pt;}
.x39{left:181.299600pt;}
.x31{left:182.227467pt;}
.x15{left:184.044933pt;}
.x35{left:184.938800pt;}
.x3e{left:189.164667pt;}
.x42{left:191.242267pt;}
.x3f{left:192.418933pt;}
.x3a{left:196.737733pt;}
.x43{left:197.770667pt;}
.x3b{left:200.368400pt;}
.x44{left:228.095733pt;}
.x18{left:229.815733pt;}
.x19{left:234.704712pt;}
.x2d{left:244.229302pt;}
.x1a{left:263.694638pt;}
.x2f{left:265.397200pt;}
.x1b{left:266.949862pt;}
.x16{left:269.211333pt;}
.x1c{left:277.685962pt;}
.x1d{left:286.763739pt;}
.x1e{left:311.564866pt;}
.x1f{left:330.617143pt;}
.x4{left:334.031467pt;}
.x2c{left:339.760933pt;}
.x20{left:379.506933pt;}
.x48{left:381.182400pt;}
.xa{left:451.108133pt;}
.xc{left:535.592800pt;}
.xb{left:536.806667pt;}
.x21{left:577.178915pt;}
.x17{left:595.182133pt;}
}




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