
    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_ffc6d72418df715ea2336070.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.689000;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_95f4dc6809c6616af53c45f6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.222000;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_8fb25536cec53b658e41a027.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.201000;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_83d30f99098427a54780c7c7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.003000;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_22833a9ff3614c43981adbd4.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.172000;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_6f93cdc8eaa513cbaf549c00.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.003000;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_0b90ab852a247cc91b1f441c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.222000;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_2ddbde8b65d40c4ab6cb5bed.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.201000;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_231da4dd93131080984a571e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.948000;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_dd01a63aebdd4f97e066456b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.217773;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_4f3f55dc69ba7089bfd9edc0.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.217773;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_e282dee9d04f3ae87e5a9789.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.988000;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_1e1a8365b78315f1d60f5fc3.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.918945;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_f78488d84c9a2ead2eba14fa.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.787000;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;}
.ma5{transform:matrix(0.236576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236576,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.236578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236578,0.000000,0.000000,0.250000,0,0);}
.m32{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);}
.m24{transform:matrix(0.245025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245025,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.245308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245308,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.245328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245328,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.245561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245561,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.245788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245788,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.246027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246027,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.246411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246411,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.246535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246535,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.246583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246583,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.246703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246703,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.246733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246733,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.246747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246747,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.246843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246843,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.247008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247008,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.247032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247032,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.247045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247045,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.247100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247100,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.247182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247182,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.247218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247218,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.247275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247275,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.247413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247413,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.247570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247570,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.247597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247597,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.247745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247745,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.247755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247755,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.247840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247840,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.247857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247857,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.247890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247890,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.248028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248028,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.248213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248213,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.248252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248252,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.248261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248261,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.248315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248315,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.248320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248320,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.248327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248327,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.248328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248328,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.248455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248455,0.000000,0.000000,0.250000,0,0);}
.m54{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);}
.m1b{transform:matrix(0.248472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248472,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.248556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248556,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.248562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248562,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.248644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248644,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.248705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248705,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.248725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248725,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.248747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248747,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.248786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248786,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.248803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248803,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.248885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248885,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.248990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248990,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.249010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249010,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.249022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249022,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.249023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249023,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249030,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.249068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249068,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.249089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249089,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249093,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.249117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249117,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.249145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249145,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.249147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249147,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.249193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249193,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.249213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249213,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.249282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249282,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249330,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.249343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249343,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.249347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249347,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.249357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249357,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.249370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249370,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.249555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249555,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.249568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249568,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249575,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249590,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.249645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249645,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249665,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.249683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249683,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.249695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249695,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.249702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249702,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.249703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249703,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.249725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249725,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.249732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249732,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249818,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.249878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249878,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249950,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);}
.m37{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);}
.ma2{transform:matrix(0.250050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250050,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.250083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250083,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.250167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250167,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.250195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250195,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.250197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250197,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.250247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250247,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.250262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250262,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.250280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250280,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.250312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250312,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.250327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250327,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250340,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.250497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250497,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.250545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250545,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.250565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250565,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.250567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250567,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.250592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250592,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.250617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250617,0.000000,0.000000,0.250000,0,0);}
.m79{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);}
.m16{transform:matrix(0.250697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250697,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.250720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250720,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.250735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250735,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.250752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250752,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.250782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250782,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.250925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250925,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.250945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250945,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.250948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250948,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.250982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250982,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.251160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251160,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.251225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251225,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.251227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251227,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.251298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251298,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.251328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251328,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.251370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251370,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.251403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251403,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.251413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251413,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.251425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251425,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.251520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251520,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.251553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251553,0.000000,0.000000,0.250000,0,0);}
.m46{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);}
.m56{transform:matrix(0.251722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251722,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.251798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251798,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.251885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251885,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.251927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251927,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.251947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251947,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.251956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251956,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.252050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252050,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.252222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252222,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.252282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252282,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.252402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252402,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.252425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252425,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.252465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252465,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.252478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252478,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.252535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252535,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.252565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252565,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.252635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252635,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.252648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252648,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.252717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252717,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.252795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252795,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.252953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252953,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.252982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252982,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.253081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253081,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.253202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253202,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.253206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253206,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.253278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253278,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.253340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253340,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.253357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253357,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.253522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253522,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.253560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253560,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.253605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253605,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.253675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253675,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.254022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254022,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.254097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254097,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.254275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254275,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.254730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254730,0.000000,0.000000,0.250000,0,0);}
.m2b{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);}
.mb{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);}
.v3{vertical-align:-17.982000px;}
.v2{vertical-align:-15.984000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.982000px;}
.ls3c{letter-spacing:-1.620000px;}
.ls35{letter-spacing:-1.500000px;}
.lsa{letter-spacing:-1.440000px;}
.ls33{letter-spacing:-1.380000px;}
.ls39{letter-spacing:-1.320000px;}
.ls3a{letter-spacing:-1.260000px;}
.ls34{letter-spacing:-1.200000px;}
.ls32{letter-spacing:-1.140000px;}
.ls18{letter-spacing:-1.080000px;}
.ls3b{letter-spacing:-0.960000px;}
.ls31{letter-spacing:-0.840000px;}
.ls15{letter-spacing:-0.780000px;}
.ls2f{letter-spacing:-0.720000px;}
.ls25{letter-spacing:-0.702000px;}
.ls42{letter-spacing:-0.674251px;}
.ls13{letter-spacing:-0.660000px;}
.ls1c{letter-spacing:-0.648000px;}
.ls30{letter-spacing:-0.600000px;}
.ls1b{letter-spacing:-0.594000px;}
.ls24{letter-spacing:-0.540000px;}
.ls28{letter-spacing:-0.486000px;}
.ls10{letter-spacing:-0.480000px;}
.ls29{letter-spacing:-0.432000px;}
.ls36{letter-spacing:-0.420000px;}
.ls1d{letter-spacing:-0.378000px;}
.ls14{letter-spacing:-0.360000px;}
.ls3e{letter-spacing:-0.324000px;}
.ls8{letter-spacing:-0.300000px;}
.ls27{letter-spacing:-0.270000px;}
.ls7{letter-spacing:-0.240000px;}
.ls19{letter-spacing:-0.216000px;}
.ls37{letter-spacing:-0.180000px;}
.ls26{letter-spacing:-0.162000px;}
.ls9{letter-spacing:-0.120000px;}
.ls1a{letter-spacing:-0.108000px;}
.ls6{letter-spacing:-0.060000px;}
.ls2e{letter-spacing:-0.054000px;}
.ls4{letter-spacing:0.000000px;}
.ls2d{letter-spacing:0.030000px;}
.ls1f{letter-spacing:0.054000px;}
.ls3{letter-spacing:0.060000px;}
.ls38{letter-spacing:0.090000px;}
.lsf{letter-spacing:0.120000px;}
.ls11{letter-spacing:0.180000px;}
.ls1e{letter-spacing:0.216000px;}
.ls2c{letter-spacing:0.240000px;}
.lsc{letter-spacing:0.270000px;}
.lse{letter-spacing:0.300000px;}
.ls3d{letter-spacing:0.324000px;}
.ls12{letter-spacing:0.360000px;}
.ls21{letter-spacing:0.378000px;}
.ls1{letter-spacing:0.420000px;}
.ls23{letter-spacing:0.432000px;}
.ls2{letter-spacing:0.480000px;}
.ls20{letter-spacing:0.486000px;}
.lsd{letter-spacing:0.540000px;}
.ls2b{letter-spacing:0.600000px;}
.ls5{letter-spacing:0.660000px;}
.lsb{letter-spacing:0.720000px;}
.ls16{letter-spacing:0.810000px;}
.ls17{letter-spacing:0.918000px;}
.ls22{letter-spacing:1.026000px;}
.ls0{letter-spacing:1.176000px;}
.ls43{letter-spacing:1.344000px;}
.ls40{letter-spacing:1.492453px;}
.ls3f{letter-spacing:2.304000px;}
.ls2a{letter-spacing:4.920000px;}
.ls41{letter-spacing:35.929519px;}
.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;}
}
.ws7d{word-spacing:-21.504000px;}
.ws84{word-spacing:-16.764000px;}
.ws61{word-spacing:-13.920000px;}
.ws11{word-spacing:-13.800000px;}
.ws37{word-spacing:-13.716000px;}
.ws23{word-spacing:-13.230000px;}
.ws71{word-spacing:-13.200000px;}
.ws36{word-spacing:-12.906000px;}
.ws46{word-spacing:-12.798000px;}
.ws35{word-spacing:-12.420000px;}
.ws24{word-spacing:-12.312000px;}
.ws38{word-spacing:-12.258000px;}
.ws1{word-spacing:-12.192000px;}
.ws39{word-spacing:-11.934000px;}
.ws25{word-spacing:-11.826000px;}
.ws7f{word-spacing:-11.232000px;}
.ws76{word-spacing:-11.178000px;}
.ws75{word-spacing:-10.800000px;}
.ws0{word-spacing:-7.996428px;}
.wsc{word-spacing:-3.120000px;}
.ws6{word-spacing:-3.060000px;}
.ws7{word-spacing:-3.000000px;}
.ws28{word-spacing:-2.880000px;}
.ws3b{word-spacing:-2.862000px;}
.ws55{word-spacing:-2.820000px;}
.ws34{word-spacing:-2.808000px;}
.ws57{word-spacing:-2.760000px;}
.ws31{word-spacing:-2.754000px;}
.ws48{word-spacing:-2.700000px;}
.ws5f{word-spacing:-2.640000px;}
.ws2a{word-spacing:-2.580000px;}
.ws1d{word-spacing:-2.520000px;}
.ws6c{word-spacing:-2.400000px;}
.ws73{word-spacing:-2.280000px;}
.ws47{word-spacing:-2.268000px;}
.ws56{word-spacing:-2.220000px;}
.ws74{word-spacing:-2.214000px;}
.ws4c{word-spacing:-2.160000px;}
.ws15{word-spacing:-2.040000px;}
.ws12{word-spacing:-1.980000px;}
.ws1a{word-spacing:-1.920000px;}
.ws42{word-spacing:-1.890000px;}
.ws5c{word-spacing:-1.860000px;}
.ws3a{word-spacing:-1.836000px;}
.ws6d{word-spacing:-1.740000px;}
.ws1b{word-spacing:-1.680000px;}
.ws72{word-spacing:-1.620000px;}
.ws5b{word-spacing:-1.560000px;}
.ws3e{word-spacing:-1.512000px;}
.ws58{word-spacing:-1.500000px;}
.ws3f{word-spacing:-1.458000px;}
.ws4d{word-spacing:-1.440000px;}
.ws20{word-spacing:-1.380000px;}
.ws4f{word-spacing:-1.320000px;}
.ws44{word-spacing:-1.296000px;}
.ws4a{word-spacing:-1.200000px;}
.ws79{word-spacing:-1.188000px;}
.ws8{word-spacing:-1.140000px;}
.ws5e{word-spacing:-1.080000px;}
.ws6f{word-spacing:-0.960000px;}
.ws16{word-spacing:-0.900000px;}
.ws70{word-spacing:-0.840000px;}
.ws4{word-spacing:-0.810000px;}
.ws29{word-spacing:-0.780000px;}
.ws32{word-spacing:-0.756000px;}
.ws62{word-spacing:-0.720000px;}
.ws85{word-spacing:-0.672000px;}
.ws5{word-spacing:-0.660000px;}
.ws3{word-spacing:-0.588000px;}
.ws67{word-spacing:-0.540000px;}
.ws9{word-spacing:-0.480000px;}
.ws3d{word-spacing:-0.432000px;}
.ws69{word-spacing:-0.420000px;}
.ws7e{word-spacing:-0.392292px;}
.ws53{word-spacing:-0.300000px;}
.ws22{word-spacing:-0.240000px;}
.ws6b{word-spacing:-0.120000px;}
.ws19{word-spacing:-0.060000px;}
.ws2{word-spacing:0.000000px;}
.ws83{word-spacing:0.036670px;}
.ws7b{word-spacing:0.054000px;}
.ws64{word-spacing:0.120000px;}
.ws1c{word-spacing:0.180000px;}
.ws21{word-spacing:0.240000px;}
.ws51{word-spacing:0.300000px;}
.ws45{word-spacing:0.324000px;}
.ws2b{word-spacing:0.420000px;}
.ws2e{word-spacing:0.432000px;}
.ws4e{word-spacing:0.480000px;}
.ws14{word-spacing:0.540000px;}
.ws7a{word-spacing:0.594000px;}
.wsa{word-spacing:0.600000px;}
.ws2d{word-spacing:0.660000px;}
.ws50{word-spacing:0.720000px;}
.ws52{word-spacing:0.840000px;}
.wsd{word-spacing:0.900000px;}
.ws2c{word-spacing:0.960000px;}
.ws26{word-spacing:1.080000px;}
.ws5d{word-spacing:1.140000px;}
.ws7c{word-spacing:1.188000px;}
.ws5a{word-spacing:1.200000px;}
.ws6a{word-spacing:1.260000px;}
.ws77{word-spacing:1.296000px;}
.ws30{word-spacing:1.350000px;}
.ws1f{word-spacing:1.380000px;}
.ws40{word-spacing:1.404000px;}
.ws10{word-spacing:1.440000px;}
.ws63{word-spacing:1.500000px;}
.ws78{word-spacing:1.512000px;}
.ws18{word-spacing:1.620000px;}
.ws1e{word-spacing:1.680000px;}
.ws17{word-spacing:1.740000px;}
.ws13{word-spacing:1.800000px;}
.ws66{word-spacing:1.920000px;}
.ws68{word-spacing:1.980000px;}
.ws54{word-spacing:2.160000px;}
.ws60{word-spacing:2.220000px;}
.ws4b{word-spacing:2.280000px;}
.wsf{word-spacing:2.340000px;}
.ws43{word-spacing:2.430000px;}
.ws6e{word-spacing:2.520000px;}
.ws65{word-spacing:2.580000px;}
.ws3c{word-spacing:2.700000px;}
.ws33{word-spacing:2.754000px;}
.ws27{word-spacing:2.760000px;}
.ws59{word-spacing:2.880000px;}
.wsb{word-spacing:3.000000px;}
.wse{word-spacing:3.060000px;}
.ws2f{word-spacing:3.618000px;}
.ws41{word-spacing:4.104000px;}
.ws49{word-spacing:19.680000px;}
.ws82{word-spacing:20.862107px;}
.ws80{word-spacing:216.783000px;}
.ws81{word-spacing:490.335000px;}
._b{margin-left:-12.710261px;}
._c{margin-left:-10.525200px;}
._4{margin-left:-9.080400px;}
._3{margin-left:-7.316400px;}
._6{margin-left:-6.199200px;}
._5{margin-left:-4.460400px;}
._0{margin-left:-3.368400px;}
._1{margin-left:-1.680000px;}
._2{width:1.083600px;}
._7{width:2.090400px;}
._8{width:3.408000px;}
._a{width:8.884800px;}
._9{width:20.876064px;}
.fc6{color:transparent;}
.fc4{color:rgb(252,254,253);}
.fc3{color:rgb(68,69,125);}
.fc5{color:rgb(255,255,255);}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(38,49,105);}
.fc0{color:rgb(234,84,59);}
.fs5{font-size:27.984000px;}
.fs2{font-size:31.482000px;}
.fs8{font-size:34.980000px;}
.fsf{font-size:36.669600px;}
.fs10{font-size:39.661800px;}
.fsc{font-size:41.121600px;}
.fs7{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fsb{font-size:60.214200px;}
.fs3{font-size:66.000000px;}
.fsa{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.fs9{font-size:96.000000px;}
.fse{font-size:392.292000px;}
.fsd{font-size:427.881000px;}
.y0{bottom:0.000000px;}
.ydd{bottom:23.989200px;}
.ydb{bottom:26.167200px;}
.y1{bottom:35.566650px;}
.y20{bottom:35.927850px;}
.y1f{bottom:63.779550px;}
.yb8{bottom:68.633850px;}
.y91{bottom:69.164250px;}
.ya8{bottom:73.133850px;}
.yae{bottom:75.426900px;}
.y3f{bottom:77.633850px;}
.yc4{bottom:82.133850px;}
.y1e{bottom:82.775550px;}
.y6c{bottom:84.614100px;}
.y90{bottom:87.164250px;}
.yb7{bottom:91.133850px;}
.yf0{bottom:92.281500px;}
.ya7{bottom:95.633850px;}
.y1d{bottom:95.905800px;}
.y3e{bottom:100.133850px;}
.y6b{bottom:102.614100px;}
.yc3{bottom:104.633850px;}
.y8f{bottom:105.164250px;}
.y56{bottom:109.133850px;}
.yb6{bottom:113.633850px;}
.y1c{bottom:114.901800px;}
.ya6{bottom:118.133850px;}
.yef{bottom:118.997100px;}
.y3d{bottom:122.633850px;}
.y8e{bottom:123.164250px;}
.yc2{bottom:127.133850px;}
.y6a{bottom:129.118050px;}
.y55{bottom:131.633850px;}
.yb5{bottom:136.133850px;}
.ya5{bottom:140.633850px;}
.y8d{bottom:141.164250px;}
.yee{bottom:142.592550px;}
.y3c{bottom:145.133850px;}
.yc1{bottom:149.633850px;}
.y54{bottom:154.133850px;}
.y69{bottom:155.622000px;}
.yb4{bottom:158.633850px;}
.y3b{bottom:167.633850px;}
.y8c{bottom:167.668200px;}
.yc0{bottom:172.133850px;}
.y68{bottom:173.622000px;}
.yf2{bottom:175.261050px;}
.y53{bottom:176.633850px;}
.yb3{bottom:181.133850px;}
.y1b{bottom:185.633850px;}
.y3a{bottom:190.133850px;}
.y8b{bottom:194.172150px;}
.ybf{bottom:194.633850px;}
.y52{bottom:199.133850px;}
.y67{bottom:200.125950px;}
.yb2{bottom:203.633850px;}
.y1a{bottom:208.133850px;}
.y8a{bottom:212.172150px;}
.ya4{bottom:212.633850px;}
.y39{bottom:217.133850px;}
.y66{bottom:218.125950px;}
.y51{bottom:221.633850px;}
.y89{bottom:230.172150px;}
.y19{bottom:230.633850px;}
.yf1{bottom:232.159650px;}
.ya3{bottom:235.133850px;}
.y65{bottom:236.125950px;}
.yc7{bottom:239.633850px;}
.ybe{bottom:244.133850px;}
.y50{bottom:248.633850px;}
.y18{bottom:253.133850px;}
.y64{bottom:254.125950px;}
.y88{bottom:256.676100px;}
.ya2{bottom:257.633850px;}
.yc6{bottom:262.133850px;}
.ybd{bottom:266.633850px;}
.y4f{bottom:271.133850px;}
.y63{bottom:272.125950px;}
.y87{bottom:274.676100px;}
.y17{bottom:275.633850px;}
.ya1{bottom:280.133850px;}
.yc5{bottom:284.633850px;}
.yed{bottom:286.904550px;}
.ybc{bottom:289.133850px;}
.y62{bottom:290.125950px;}
.y86{bottom:292.676100px;}
.y4e{bottom:293.633850px;}
.y16{bottom:298.133850px;}
.yd5{bottom:302.633850px;}
.ya0{bottom:307.133850px;}
.y85{bottom:310.676100px;}
.ybb{bottom:311.633850px;}
.y38{bottom:316.133850px;}
.y61{bottom:316.629900px;}
.y15{bottom:320.633850px;}
.yec{bottom:323.099400px;}
.y84{bottom:328.676100px;}
.y9f{bottom:329.633850px;}
.yba{bottom:334.133850px;}
.y60{bottom:334.629900px;}
.yeb{bottom:338.099400px;}
.y37{bottom:338.633850px;}
.y14{bottom:343.133850px;}
.yd4{bottom:347.633850px;}
.y9e{bottom:352.133850px;}
.y83{bottom:355.180050px;}
.yad{bottom:356.633850px;}
.y36{bottom:361.133850px;}
.yea{bottom:361.978350px;}
.y13{bottom:365.633850px;}
.y4d{bottom:370.133850px;}
.y82{bottom:373.180050px;}
.y9d{bottom:374.633850px;}
.yac{bottom:379.133850px;}
.y35{bottom:383.633850px;}
.y12{bottom:388.133850px;}
.ye9{bottom:391.978350px;}
.y4c{bottom:392.633850px;}
.y9c{bottom:397.133850px;}
.y81{bottom:399.684000px;}
.yab{bottom:401.633850px;}
.y34{bottom:406.133850px;}
.ye8{bottom:406.978350px;}
.yb1{bottom:410.633850px;}
.y11{bottom:415.133850px;}
.y80{bottom:417.684000px;}
.y9b{bottom:419.633850px;}
.ye7{bottom:421.978350px;}
.yaa{bottom:424.133850px;}
.yd7{bottom:424.523550px;}
.y33{bottom:428.633850px;}
.yb0{bottom:433.133850px;}
.y7f{bottom:435.684000px;}
.y10{bottom:437.633850px;}
.ycf{bottom:442.133850px;}
.y9a{bottom:446.633850px;}
.y32{bottom:451.133850px;}
.ye6{bottom:451.978350px;}
.yd6{bottom:453.360150px;}
.yaf{bottom:455.633850px;}
.yf{bottom:460.133850px;}
.y7e{bottom:462.187800px;}
.yce{bottom:464.633850px;}
.ye5{bottom:466.978350px;}
.y99{bottom:469.133850px;}
.y31{bottom:473.633850px;}
.y5f{bottom:478.133850px;}
.yf6{bottom:478.860150px;}
.y7d{bottom:480.187800px;}
.ye{bottom:482.633850px;}
.y4b{bottom:487.133850px;}
.y98{bottom:491.633850px;}
.y30{bottom:496.133850px;}
.ye4{bottom:496.978350px;}
.y7c{bottom:498.187800px;}
.y5e{bottom:500.633850px;}
.yf5{bottom:504.360150px;}
.yd{bottom:505.133850px;}
.y4a{bottom:509.633850px;}
.ye3{bottom:511.978350px;}
.y97{bottom:514.133850px;}
.y2f{bottom:518.633850px;}
.y5d{bottom:523.133850px;}
.y7b{bottom:524.691900px;}
.ye2{bottom:526.978350px;}
.yc{bottom:527.633850px;}
.y49{bottom:532.133850px;}
.y96{bottom:536.633850px;}
.y2e{bottom:541.133850px;}
.ye1{bottom:541.978350px;}
.y7a{bottom:542.691900px;}
.ydc{bottom:544.393500px;}
.y5c{bottom:545.633850px;}
.yb{bottom:550.133850px;}
.yd3{bottom:554.633850px;}
.ye0{bottom:556.978350px;}
.y48{bottom:559.133850px;}
.y2d{bottom:563.633850px;}
.y5b{bottom:568.133850px;}
.yb9{bottom:568.628700px;}
.y79{bottom:569.195700px;}
.ya{bottom:572.633850px;}
.y47{bottom:581.633850px;}
.y2c{bottom:586.133850px;}
.y78{bottom:587.195700px;}
.y5a{bottom:590.633850px;}
.ydf{bottom:590.929200px;}
.y9{bottom:595.133850px;}
.y46{bottom:604.133850px;}
.y77{bottom:605.195700px;}
.yde{bottom:605.929200px;}
.y95{bottom:608.633850px;}
.y2b{bottom:613.133850px;}
.yd2{bottom:617.633850px;}
.ycd{bottom:626.633850px;}
.y8{bottom:631.133850px;}
.y76{bottom:631.699650px;}
.y2a{bottom:635.633850px;}
.ycc{bottom:649.133850px;}
.y75{bottom:649.699650px;}
.yda{bottom:651.153000px;}
.y45{bottom:653.633850px;}
.y29{bottom:658.133850px;}
.y59{bottom:662.633850px;}
.y7{bottom:667.133850px;}
.y74{bottom:667.699650px;}
.ycb{bottom:671.633850px;}
.y44{bottom:676.133850px;}
.y28{bottom:680.633850px;}
.y6{bottom:685.133850px;}
.y73{bottom:685.699650px;}
.y94{bottom:689.633850px;}
.yca{bottom:694.133850px;}
.y43{bottom:698.633850px;}
.y27{bottom:703.133850px;}
.y72{bottom:703.699650px;}
.y58{bottom:707.633850px;}
.y93{bottom:712.133850px;}
.yc9{bottom:716.633850px;}
.y42{bottom:721.133850px;}
.y26{bottom:725.633850px;}
.y5{bottom:730.133850px;}
.y71{bottom:730.203600px;}
.yd1{bottom:734.633850px;}
.y92{bottom:738.707550px;}
.y41{bottom:743.633850px;}
.y25{bottom:748.133850px;}
.yc8{bottom:752.633850px;}
.y70{bottom:756.707550px;}
.y4{bottom:757.133850px;}
.ya9{bottom:766.133850px;}
.y24{bottom:770.633850px;}
.y6f{bottom:774.707550px;}
.y57{bottom:779.633850px;}
.y3{bottom:784.133850px;}
.y23{bottom:793.133850px;}
.yf4{bottom:796.006500px;}
.yd0{bottom:797.633850px;}
.y6e{bottom:801.211500px;}
.y2{bottom:811.133850px;}
.y22{bottom:815.633850px;}
.yf3{bottom:817.006500px;}
.yd9{bottom:818.668050px;}
.y6d{bottom:819.211500px;}
.yd8{bottom:827.664600px;}
.y21{bottom:847.592550px;}
.y40{bottom:847.776600px;}
.h16{height:27.215719px;}
.h7{height:28.464000px;}
.h17{height:30.539586px;}
.hf{height:30.923443px;}
.h14{height:31.458000px;}
.hb{height:32.391480px;}
.h9{height:32.592000px;}
.h15{height:35.952000px;}
.h2{height:36.126000px;}
.h8{height:44.448000px;}
.he{height:45.281078px;}
.h4{height:50.004000px;}
.ha{height:51.138000px;}
.h6{height:55.560000px;}
.h18{height:61.116000px;}
.h5{height:62.502000px;}
.hd{height:66.672000px;}
.h3{height:79.548000px;}
.hc{height:90.912000px;}
.h12{height:114.640500px;}
.h10{height:137.631000px;}
.h13{height:408.765199px;}
.h11{height:445.848659px;}
.h0{height:892.914000px;}
.h1{height:893.250000px;}
.w2{width:385.572000px;}
.w3{width:398.707500px;}
.w0{width:595.275000px;}
.w1{width:595.500000px;}
.x0{left:0.000000px;}
.x2{left:66.052200px;}
.x1e{left:68.346000px;}
.x14{left:71.905500px;}
.xb{left:80.506200px;}
.xc{left:83.201100px;}
.x13{left:94.615500px;}
.x12{left:101.182500px;}
.x5{left:108.425250px;}
.x18{left:131.811000px;}
.x9{left:134.957700px;}
.x1f{left:139.114800px;}
.x1c{left:141.796350px;}
.x1d{left:155.536800px;}
.x16{left:165.968100px;}
.x7{left:191.547300px;}
.x17{left:199.238850px;}
.x15{left:200.270250px;}
.x1b{left:201.807450px;}
.x10{left:211.745400px;}
.xa{left:215.328750px;}
.x8{left:235.984200px;}
.x1a{left:238.783500px;}
.x19{left:242.619150px;}
.xe{left:257.400600px;}
.x11{left:271.128600px;}
.xf{left:276.489300px;}
.x3{left:369.634200px;}
.x4{left:453.251400px;}
.xd{left:515.721750px;}
.x6{left:516.828750px;}
.x1{left:517.868250px;}
@media print{
.v3{vertical-align:-15.984000pt;}
.v2{vertical-align:-14.208000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.984000pt;}
.ls3c{letter-spacing:-1.440000pt;}
.ls35{letter-spacing:-1.333333pt;}
.lsa{letter-spacing:-1.280000pt;}
.ls33{letter-spacing:-1.226667pt;}
.ls39{letter-spacing:-1.173333pt;}
.ls3a{letter-spacing:-1.120000pt;}
.ls34{letter-spacing:-1.066667pt;}
.ls32{letter-spacing:-1.013333pt;}
.ls18{letter-spacing:-0.960000pt;}
.ls3b{letter-spacing:-0.853333pt;}
.ls31{letter-spacing:-0.746667pt;}
.ls15{letter-spacing:-0.693333pt;}
.ls2f{letter-spacing:-0.640000pt;}
.ls25{letter-spacing:-0.624000pt;}
.ls42{letter-spacing:-0.599334pt;}
.ls13{letter-spacing:-0.586667pt;}
.ls1c{letter-spacing:-0.576000pt;}
.ls30{letter-spacing:-0.533333pt;}
.ls1b{letter-spacing:-0.528000pt;}
.ls24{letter-spacing:-0.480000pt;}
.ls28{letter-spacing:-0.432000pt;}
.ls10{letter-spacing:-0.426667pt;}
.ls29{letter-spacing:-0.384000pt;}
.ls36{letter-spacing:-0.373333pt;}
.ls1d{letter-spacing:-0.336000pt;}
.ls14{letter-spacing:-0.320000pt;}
.ls3e{letter-spacing:-0.288000pt;}
.ls8{letter-spacing:-0.266667pt;}
.ls27{letter-spacing:-0.240000pt;}
.ls7{letter-spacing:-0.213333pt;}
.ls19{letter-spacing:-0.192000pt;}
.ls37{letter-spacing:-0.160000pt;}
.ls26{letter-spacing:-0.144000pt;}
.ls9{letter-spacing:-0.106667pt;}
.ls1a{letter-spacing:-0.096000pt;}
.ls6{letter-spacing:-0.053333pt;}
.ls2e{letter-spacing:-0.048000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2d{letter-spacing:0.026667pt;}
.ls1f{letter-spacing:0.048000pt;}
.ls3{letter-spacing:0.053333pt;}
.ls38{letter-spacing:0.080000pt;}
.lsf{letter-spacing:0.106667pt;}
.ls11{letter-spacing:0.160000pt;}
.ls1e{letter-spacing:0.192000pt;}
.ls2c{letter-spacing:0.213333pt;}
.lsc{letter-spacing:0.240000pt;}
.lse{letter-spacing:0.266667pt;}
.ls3d{letter-spacing:0.288000pt;}
.ls12{letter-spacing:0.320000pt;}
.ls21{letter-spacing:0.336000pt;}
.ls1{letter-spacing:0.373333pt;}
.ls23{letter-spacing:0.384000pt;}
.ls2{letter-spacing:0.426667pt;}
.ls20{letter-spacing:0.432000pt;}
.lsd{letter-spacing:0.480000pt;}
.ls2b{letter-spacing:0.533333pt;}
.ls5{letter-spacing:0.586667pt;}
.lsb{letter-spacing:0.640000pt;}
.ls16{letter-spacing:0.720000pt;}
.ls17{letter-spacing:0.816000pt;}
.ls22{letter-spacing:0.912000pt;}
.ls0{letter-spacing:1.045333pt;}
.ls43{letter-spacing:1.194667pt;}
.ls40{letter-spacing:1.326625pt;}
.ls3f{letter-spacing:2.048000pt;}
.ls2a{letter-spacing:4.373333pt;}
.ls41{letter-spacing:31.937350pt;}
.ws7d{word-spacing:-19.114667pt;}
.ws84{word-spacing:-14.901333pt;}
.ws61{word-spacing:-12.373333pt;}
.ws11{word-spacing:-12.266667pt;}
.ws37{word-spacing:-12.192000pt;}
.ws23{word-spacing:-11.760000pt;}
.ws71{word-spacing:-11.733333pt;}
.ws36{word-spacing:-11.472000pt;}
.ws46{word-spacing:-11.376000pt;}
.ws35{word-spacing:-11.040000pt;}
.ws24{word-spacing:-10.944000pt;}
.ws38{word-spacing:-10.896000pt;}
.ws1{word-spacing:-10.837333pt;}
.ws39{word-spacing:-10.608000pt;}
.ws25{word-spacing:-10.512000pt;}
.ws7f{word-spacing:-9.984000pt;}
.ws76{word-spacing:-9.936000pt;}
.ws75{word-spacing:-9.600000pt;}
.ws0{word-spacing:-7.107936pt;}
.wsc{word-spacing:-2.773333pt;}
.ws6{word-spacing:-2.720000pt;}
.ws7{word-spacing:-2.666667pt;}
.ws28{word-spacing:-2.560000pt;}
.ws3b{word-spacing:-2.544000pt;}
.ws55{word-spacing:-2.506667pt;}
.ws34{word-spacing:-2.496000pt;}
.ws57{word-spacing:-2.453333pt;}
.ws31{word-spacing:-2.448000pt;}
.ws48{word-spacing:-2.400000pt;}
.ws5f{word-spacing:-2.346667pt;}
.ws2a{word-spacing:-2.293333pt;}
.ws1d{word-spacing:-2.240000pt;}
.ws6c{word-spacing:-2.133333pt;}
.ws73{word-spacing:-2.026667pt;}
.ws47{word-spacing:-2.016000pt;}
.ws56{word-spacing:-1.973333pt;}
.ws74{word-spacing:-1.968000pt;}
.ws4c{word-spacing:-1.920000pt;}
.ws15{word-spacing:-1.813333pt;}
.ws12{word-spacing:-1.760000pt;}
.ws1a{word-spacing:-1.706667pt;}
.ws42{word-spacing:-1.680000pt;}
.ws5c{word-spacing:-1.653333pt;}
.ws3a{word-spacing:-1.632000pt;}
.ws6d{word-spacing:-1.546667pt;}
.ws1b{word-spacing:-1.493333pt;}
.ws72{word-spacing:-1.440000pt;}
.ws5b{word-spacing:-1.386667pt;}
.ws3e{word-spacing:-1.344000pt;}
.ws58{word-spacing:-1.333333pt;}
.ws3f{word-spacing:-1.296000pt;}
.ws4d{word-spacing:-1.280000pt;}
.ws20{word-spacing:-1.226667pt;}
.ws4f{word-spacing:-1.173333pt;}
.ws44{word-spacing:-1.152000pt;}
.ws4a{word-spacing:-1.066667pt;}
.ws79{word-spacing:-1.056000pt;}
.ws8{word-spacing:-1.013333pt;}
.ws5e{word-spacing:-0.960000pt;}
.ws6f{word-spacing:-0.853333pt;}
.ws16{word-spacing:-0.800000pt;}
.ws70{word-spacing:-0.746667pt;}
.ws4{word-spacing:-0.720000pt;}
.ws29{word-spacing:-0.693333pt;}
.ws32{word-spacing:-0.672000pt;}
.ws62{word-spacing:-0.640000pt;}
.ws85{word-spacing:-0.597333pt;}
.ws5{word-spacing:-0.586667pt;}
.ws3{word-spacing:-0.522667pt;}
.ws67{word-spacing:-0.480000pt;}
.ws9{word-spacing:-0.426667pt;}
.ws3d{word-spacing:-0.384000pt;}
.ws69{word-spacing:-0.373333pt;}
.ws7e{word-spacing:-0.348704pt;}
.ws53{word-spacing:-0.266667pt;}
.ws22{word-spacing:-0.213333pt;}
.ws6b{word-spacing:-0.106667pt;}
.ws19{word-spacing:-0.053333pt;}
.ws2{word-spacing:0.000000pt;}
.ws83{word-spacing:0.032595pt;}
.ws7b{word-spacing:0.048000pt;}
.ws64{word-spacing:0.106667pt;}
.ws1c{word-spacing:0.160000pt;}
.ws21{word-spacing:0.213333pt;}
.ws51{word-spacing:0.266667pt;}
.ws45{word-spacing:0.288000pt;}
.ws2b{word-spacing:0.373333pt;}
.ws2e{word-spacing:0.384000pt;}
.ws4e{word-spacing:0.426667pt;}
.ws14{word-spacing:0.480000pt;}
.ws7a{word-spacing:0.528000pt;}
.wsa{word-spacing:0.533333pt;}
.ws2d{word-spacing:0.586667pt;}
.ws50{word-spacing:0.640000pt;}
.ws52{word-spacing:0.746667pt;}
.wsd{word-spacing:0.800000pt;}
.ws2c{word-spacing:0.853333pt;}
.ws26{word-spacing:0.960000pt;}
.ws5d{word-spacing:1.013333pt;}
.ws7c{word-spacing:1.056000pt;}
.ws5a{word-spacing:1.066667pt;}
.ws6a{word-spacing:1.120000pt;}
.ws77{word-spacing:1.152000pt;}
.ws30{word-spacing:1.200000pt;}
.ws1f{word-spacing:1.226667pt;}
.ws40{word-spacing:1.248000pt;}
.ws10{word-spacing:1.280000pt;}
.ws63{word-spacing:1.333333pt;}
.ws78{word-spacing:1.344000pt;}
.ws18{word-spacing:1.440000pt;}
.ws1e{word-spacing:1.493333pt;}
.ws17{word-spacing:1.546667pt;}
.ws13{word-spacing:1.600000pt;}
.ws66{word-spacing:1.706667pt;}
.ws68{word-spacing:1.760000pt;}
.ws54{word-spacing:1.920000pt;}
.ws60{word-spacing:1.973333pt;}
.ws4b{word-spacing:2.026667pt;}
.wsf{word-spacing:2.080000pt;}
.ws43{word-spacing:2.160000pt;}
.ws6e{word-spacing:2.240000pt;}
.ws65{word-spacing:2.293333pt;}
.ws3c{word-spacing:2.400000pt;}
.ws33{word-spacing:2.448000pt;}
.ws27{word-spacing:2.453333pt;}
.ws59{word-spacing:2.560000pt;}
.wsb{word-spacing:2.666667pt;}
.wse{word-spacing:2.720000pt;}
.ws2f{word-spacing:3.216000pt;}
.ws41{word-spacing:3.648000pt;}
.ws49{word-spacing:17.493333pt;}
.ws82{word-spacing:18.544095pt;}
.ws80{word-spacing:192.696000pt;}
.ws81{word-spacing:435.853333pt;}
._b{margin-left:-11.298010pt;}
._c{margin-left:-9.355733pt;}
._4{margin-left:-8.071467pt;}
._3{margin-left:-6.503467pt;}
._6{margin-left:-5.510400pt;}
._5{margin-left:-3.964800pt;}
._0{margin-left:-2.994133pt;}
._1{margin-left:-1.493333pt;}
._2{width:0.963200pt;}
._7{width:1.858133pt;}
._8{width:3.029333pt;}
._a{width:7.897600pt;}
._9{width:18.556501pt;}
.fs5{font-size:24.874667pt;}
.fs2{font-size:27.984000pt;}
.fs8{font-size:31.093333pt;}
.fsf{font-size:32.595200pt;}
.fs10{font-size:35.254933pt;}
.fsc{font-size:36.552533pt;}
.fs7{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fsb{font-size:53.523733pt;}
.fs3{font-size:58.666667pt;}
.fsa{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.fs9{font-size:85.333333pt;}
.fse{font-size:348.704000pt;}
.fsd{font-size:380.338667pt;}
.y0{bottom:0.000000pt;}
.ydd{bottom:21.323733pt;}
.ydb{bottom:23.259733pt;}
.y1{bottom:31.614800pt;}
.y20{bottom:31.935867pt;}
.y1f{bottom:56.692933pt;}
.yb8{bottom:61.007867pt;}
.y91{bottom:61.479333pt;}
.ya8{bottom:65.007867pt;}
.yae{bottom:67.046133pt;}
.y3f{bottom:69.007867pt;}
.yc4{bottom:73.007867pt;}
.y1e{bottom:73.578267pt;}
.y6c{bottom:75.212533pt;}
.y90{bottom:77.479333pt;}
.yb7{bottom:81.007867pt;}
.yf0{bottom:82.028000pt;}
.ya7{bottom:85.007867pt;}
.y1d{bottom:85.249600pt;}
.y3e{bottom:89.007867pt;}
.y6b{bottom:91.212533pt;}
.yc3{bottom:93.007867pt;}
.y8f{bottom:93.479333pt;}
.y56{bottom:97.007867pt;}
.yb6{bottom:101.007867pt;}
.y1c{bottom:102.134933pt;}
.ya6{bottom:105.007867pt;}
.yef{bottom:105.775200pt;}
.y3d{bottom:109.007867pt;}
.y8e{bottom:109.479333pt;}
.yc2{bottom:113.007867pt;}
.y6a{bottom:114.771600pt;}
.y55{bottom:117.007867pt;}
.yb5{bottom:121.007867pt;}
.ya5{bottom:125.007867pt;}
.y8d{bottom:125.479333pt;}
.yee{bottom:126.748933pt;}
.y3c{bottom:129.007867pt;}
.yc1{bottom:133.007867pt;}
.y54{bottom:137.007867pt;}
.y69{bottom:138.330667pt;}
.yb4{bottom:141.007867pt;}
.y3b{bottom:149.007867pt;}
.y8c{bottom:149.038400pt;}
.yc0{bottom:153.007867pt;}
.y68{bottom:154.330667pt;}
.yf2{bottom:155.787600pt;}
.y53{bottom:157.007867pt;}
.yb3{bottom:161.007867pt;}
.y1b{bottom:165.007867pt;}
.y3a{bottom:169.007867pt;}
.y8b{bottom:172.597467pt;}
.ybf{bottom:173.007867pt;}
.y52{bottom:177.007867pt;}
.y67{bottom:177.889733pt;}
.yb2{bottom:181.007867pt;}
.y1a{bottom:185.007867pt;}
.y8a{bottom:188.597467pt;}
.ya4{bottom:189.007867pt;}
.y39{bottom:193.007867pt;}
.y66{bottom:193.889733pt;}
.y51{bottom:197.007867pt;}
.y89{bottom:204.597467pt;}
.y19{bottom:205.007867pt;}
.yf1{bottom:206.364133pt;}
.ya3{bottom:209.007867pt;}
.y65{bottom:209.889733pt;}
.yc7{bottom:213.007867pt;}
.ybe{bottom:217.007867pt;}
.y50{bottom:221.007867pt;}
.y18{bottom:225.007867pt;}
.y64{bottom:225.889733pt;}
.y88{bottom:228.156533pt;}
.ya2{bottom:229.007867pt;}
.yc6{bottom:233.007867pt;}
.ybd{bottom:237.007867pt;}
.y4f{bottom:241.007867pt;}
.y63{bottom:241.889733pt;}
.y87{bottom:244.156533pt;}
.y17{bottom:245.007867pt;}
.ya1{bottom:249.007867pt;}
.yc5{bottom:253.007867pt;}
.yed{bottom:255.026267pt;}
.ybc{bottom:257.007867pt;}
.y62{bottom:257.889733pt;}
.y86{bottom:260.156533pt;}
.y4e{bottom:261.007867pt;}
.y16{bottom:265.007867pt;}
.yd5{bottom:269.007867pt;}
.ya0{bottom:273.007867pt;}
.y85{bottom:276.156533pt;}
.ybb{bottom:277.007867pt;}
.y38{bottom:281.007867pt;}
.y61{bottom:281.448800pt;}
.y15{bottom:285.007867pt;}
.yec{bottom:287.199467pt;}
.y84{bottom:292.156533pt;}
.y9f{bottom:293.007867pt;}
.yba{bottom:297.007867pt;}
.y60{bottom:297.448800pt;}
.yeb{bottom:300.532800pt;}
.y37{bottom:301.007867pt;}
.y14{bottom:305.007867pt;}
.yd4{bottom:309.007867pt;}
.y9e{bottom:313.007867pt;}
.y83{bottom:315.715600pt;}
.yad{bottom:317.007867pt;}
.y36{bottom:321.007867pt;}
.yea{bottom:321.758533pt;}
.y13{bottom:325.007867pt;}
.y4d{bottom:329.007867pt;}
.y82{bottom:331.715600pt;}
.y9d{bottom:333.007867pt;}
.yac{bottom:337.007867pt;}
.y35{bottom:341.007867pt;}
.y12{bottom:345.007867pt;}
.ye9{bottom:348.425200pt;}
.y4c{bottom:349.007867pt;}
.y9c{bottom:353.007867pt;}
.y81{bottom:355.274667pt;}
.yab{bottom:357.007867pt;}
.y34{bottom:361.007867pt;}
.ye8{bottom:361.758533pt;}
.yb1{bottom:365.007867pt;}
.y11{bottom:369.007867pt;}
.y80{bottom:371.274667pt;}
.y9b{bottom:373.007867pt;}
.ye7{bottom:375.091867pt;}
.yaa{bottom:377.007867pt;}
.yd7{bottom:377.354267pt;}
.y33{bottom:381.007867pt;}
.yb0{bottom:385.007867pt;}
.y7f{bottom:387.274667pt;}
.y10{bottom:389.007867pt;}
.ycf{bottom:393.007867pt;}
.y9a{bottom:397.007867pt;}
.y32{bottom:401.007867pt;}
.ye6{bottom:401.758533pt;}
.yd6{bottom:402.986800pt;}
.yaf{bottom:405.007867pt;}
.yf{bottom:409.007867pt;}
.y7e{bottom:410.833600pt;}
.yce{bottom:413.007867pt;}
.ye5{bottom:415.091867pt;}
.y99{bottom:417.007867pt;}
.y31{bottom:421.007867pt;}
.y5f{bottom:425.007867pt;}
.yf6{bottom:425.653467pt;}
.y7d{bottom:426.833600pt;}
.ye{bottom:429.007867pt;}
.y4b{bottom:433.007867pt;}
.y98{bottom:437.007867pt;}
.y30{bottom:441.007867pt;}
.ye4{bottom:441.758533pt;}
.y7c{bottom:442.833600pt;}
.y5e{bottom:445.007867pt;}
.yf5{bottom:448.320133pt;}
.yd{bottom:449.007867pt;}
.y4a{bottom:453.007867pt;}
.ye3{bottom:455.091867pt;}
.y97{bottom:457.007867pt;}
.y2f{bottom:461.007867pt;}
.y5d{bottom:465.007867pt;}
.y7b{bottom:466.392800pt;}
.ye2{bottom:468.425200pt;}
.yc{bottom:469.007867pt;}
.y49{bottom:473.007867pt;}
.y96{bottom:477.007867pt;}
.y2e{bottom:481.007867pt;}
.ye1{bottom:481.758533pt;}
.y7a{bottom:482.392800pt;}
.ydc{bottom:483.905333pt;}
.y5c{bottom:485.007867pt;}
.yb{bottom:489.007867pt;}
.yd3{bottom:493.007867pt;}
.ye0{bottom:495.091867pt;}
.y48{bottom:497.007867pt;}
.y2d{bottom:501.007867pt;}
.y5b{bottom:505.007867pt;}
.yb9{bottom:505.447733pt;}
.y79{bottom:505.951733pt;}
.ya{bottom:509.007867pt;}
.y47{bottom:517.007867pt;}
.y2c{bottom:521.007867pt;}
.y78{bottom:521.951733pt;}
.y5a{bottom:525.007867pt;}
.ydf{bottom:525.270400pt;}
.y9{bottom:529.007867pt;}
.y46{bottom:537.007867pt;}
.y77{bottom:537.951733pt;}
.yde{bottom:538.603733pt;}
.y95{bottom:541.007867pt;}
.y2b{bottom:545.007867pt;}
.yd2{bottom:549.007867pt;}
.ycd{bottom:557.007867pt;}
.y8{bottom:561.007867pt;}
.y76{bottom:561.510800pt;}
.y2a{bottom:565.007867pt;}
.ycc{bottom:577.007867pt;}
.y75{bottom:577.510800pt;}
.yda{bottom:578.802667pt;}
.y45{bottom:581.007867pt;}
.y29{bottom:585.007867pt;}
.y59{bottom:589.007867pt;}
.y7{bottom:593.007867pt;}
.y74{bottom:593.510800pt;}
.ycb{bottom:597.007867pt;}
.y44{bottom:601.007867pt;}
.y28{bottom:605.007867pt;}
.y6{bottom:609.007867pt;}
.y73{bottom:609.510800pt;}
.y94{bottom:613.007867pt;}
.yca{bottom:617.007867pt;}
.y43{bottom:621.007867pt;}
.y27{bottom:625.007867pt;}
.y72{bottom:625.510800pt;}
.y58{bottom:629.007867pt;}
.y93{bottom:633.007867pt;}
.yc9{bottom:637.007867pt;}
.y42{bottom:641.007867pt;}
.y26{bottom:645.007867pt;}
.y5{bottom:649.007867pt;}
.y71{bottom:649.069867pt;}
.yd1{bottom:653.007867pt;}
.y92{bottom:656.628933pt;}
.y41{bottom:661.007867pt;}
.y25{bottom:665.007867pt;}
.yc8{bottom:669.007867pt;}
.y70{bottom:672.628933pt;}
.y4{bottom:673.007867pt;}
.ya9{bottom:681.007867pt;}
.y24{bottom:685.007867pt;}
.y6f{bottom:688.628933pt;}
.y57{bottom:693.007867pt;}
.y3{bottom:697.007867pt;}
.y23{bottom:705.007867pt;}
.yf4{bottom:707.561333pt;}
.yd0{bottom:709.007867pt;}
.y6e{bottom:712.188000pt;}
.y2{bottom:721.007867pt;}
.y22{bottom:725.007867pt;}
.yf3{bottom:726.228000pt;}
.yd9{bottom:727.704933pt;}
.y6d{bottom:728.188000pt;}
.yd8{bottom:735.701867pt;}
.y21{bottom:753.415600pt;}
.y40{bottom:753.579200pt;}
.h16{height:24.191750pt;}
.h7{height:25.301333pt;}
.h17{height:27.146299pt;}
.hf{height:27.487505pt;}
.h14{height:27.962667pt;}
.hb{height:28.792427pt;}
.h9{height:28.970667pt;}
.h15{height:31.957333pt;}
.h2{height:32.112000pt;}
.h8{height:39.509333pt;}
.he{height:40.249847pt;}
.h4{height:44.448000pt;}
.ha{height:45.456000pt;}
.h6{height:49.386667pt;}
.h18{height:54.325333pt;}
.h5{height:55.557333pt;}
.hd{height:59.264000pt;}
.h3{height:70.709333pt;}
.hc{height:80.810667pt;}
.h12{height:101.902667pt;}
.h10{height:122.338667pt;}
.h13{height:363.346844pt;}
.h11{height:396.309919pt;}
.h0{height:793.701333pt;}
.h1{height:794.000000pt;}
.w2{width:342.730667pt;}
.w3{width:354.406667pt;}
.w0{width:529.133333pt;}
.w1{width:529.333333pt;}
.x0{left:0.000000pt;}
.x2{left:58.713067pt;}
.x1e{left:60.752000pt;}
.x14{left:63.916000pt;}
.xb{left:71.561067pt;}
.xc{left:73.956533pt;}
.x13{left:84.102667pt;}
.x12{left:89.940000pt;}
.x5{left:96.378000pt;}
.x18{left:117.165333pt;}
.x9{left:119.962400pt;}
.x1f{left:123.657600pt;}
.x1c{left:126.041200pt;}
.x1d{left:138.254933pt;}
.x16{left:147.527200pt;}
.x7{left:170.264267pt;}
.x17{left:177.101200pt;}
.x15{left:178.018000pt;}
.x1b{left:179.384400pt;}
.x10{left:188.218133pt;}
.xa{left:191.403333pt;}
.x8{left:209.763733pt;}
.x1a{left:212.252000pt;}
.x19{left:215.661467pt;}
.xe{left:228.800533pt;}
.x11{left:241.003200pt;}
.xf{left:245.768267pt;}
.x3{left:328.563733pt;}
.x4{left:402.890133pt;}
.xd{left:458.419333pt;}
.x6{left:459.403333pt;}
.x1{left:460.327333pt;}
}




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