
    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_85342c8aa3df45a269257182.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.074036;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_66f1fe3df6902e0646274af3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.937789;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_9a1e922ca0a4669108ce9af4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.985352;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_49eee90ea79d673b26d0095d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.074000;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_088469a6d5b5e3c9833d4051.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.964844;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_47eb930b27a771ccc1eab694.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.919000;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_18cae89f12c800939be674da.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.914000;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_f1cbcd5782bc54507bd6b5cd.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.024902;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_d71d1f583c217324b5e54fa9.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.089355;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_764b3dbf3d31fc43cc3d7dff.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.989746;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;}
.m21{transform:matrix(0.245022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245022,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.245079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245079,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.245191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245191,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.245306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245306,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.245340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245340,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.245579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245579,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.245653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245653,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.245842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245842,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.245847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245847,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.245974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245974,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.245988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245988,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.246077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246077,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.246132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246132,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.246165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246165,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.246179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246179,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.246256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246256,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.246306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246306,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.246423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246423,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.246567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246567,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.246708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246708,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.246722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246722,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.246749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246749,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.246770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246770,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.246856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246856,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.246995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246995,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.247031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247031,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.247144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247144,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.247187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247187,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.247208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247208,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.247304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247304,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.247385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247385,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.247402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247402,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.247416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247416,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.247498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247498,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.247507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247507,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.247555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247555,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.247608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247608,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.247679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247679,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.247878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247878,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.248414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248414,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.248423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248423,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.248459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248459,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.248569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248569,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.248610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248610,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.248672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248672,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.248708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248708,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.248940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248940,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.248955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248955,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.249079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249079,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.249096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249096,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249108,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.249141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249141,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.249191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249191,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249201,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.249215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249215,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.249292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249292,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.249416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249416,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.249443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249443,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249462,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.249481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249481,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.249488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249488,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.249593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249593,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.249715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249715,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249883,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.249888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249888,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.249901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249901,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.249904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249904,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249962,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.249981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249981,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);}
.m6f{transform:matrix(0.250077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250077,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250084,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.250093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250093,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.250172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250172,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250244,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.250246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250246,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.250273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250273,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.250301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250301,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.250344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250344,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.250438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250438,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.250469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250469,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.250725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250725,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.250775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250775,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.250787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250787,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.250789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250789,0.000000,0.000000,0.250000,0,0);}
.m7e{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);}
.m55{transform:matrix(0.250824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250824,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.250844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250844,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.250856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250856,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.250878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250878,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.250883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250883,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.250885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250885,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.250921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250921,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.250931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250931,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.250952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250952,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.250959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250959,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.250964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250964,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.251132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251132,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.251179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251179,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.251256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251256,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.251373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251373,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.251490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251490,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.251493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251493,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.251557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251557,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.251568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251568,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.251589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251589,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.251627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251627,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.251670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251670,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.251718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251718,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.251725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251725,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.251727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251727,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.251758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251758,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.251773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251773,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.251823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251823,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.251835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251835,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.251945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251945,0.000000,0.000000,0.250000,0,0);}
.m3d{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);}
.m58{transform:matrix(0.252005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252005,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.252129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252129,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.252304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252304,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.252349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252349,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.252512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252512,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.252553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252553,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.252577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252577,0.000000,0.000000,0.250000,0,0);}
.m72{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);}
.m86{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);}
.m8f{transform:matrix(0.252828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252828,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.252950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252950,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.253010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253010,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.253237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253237,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.253270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253270,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.253409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253409,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.253474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253474,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.253488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253488,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.253512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253512,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.253514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253514,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.253529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253529,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.253555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253555,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.253557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253557,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.253722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253722,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.253787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253787,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.253804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253804,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.253871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253871,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.254079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254079,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.254081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254081,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.254120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254120,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.254232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254232,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.254280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254280,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.254301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254301,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.254378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254378,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.254383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254383,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.254395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254395,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.254507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254507,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.254600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254600,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.254703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254703,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.254739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254739,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.254849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254849,0.000000,0.000000,0.250000,0,0);}
.m4d{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);}
.m4c{transform:matrix(0.254943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254943,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.254995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254995,0.000000,0.000000,0.250000,0,0);}
.m23{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);}
.m1{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;}
.lsf{letter-spacing:-1.191300px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.010200px;}
.ls8{letter-spacing:0.061860px;}
.ls5{letter-spacing:0.062700px;}
.ls4{letter-spacing:0.094050px;}
.lsa{letter-spacing:0.124560px;}
.ls3{letter-spacing:0.125400px;}
.ls6{letter-spacing:0.188100px;}
.ls9{letter-spacing:0.247440px;}
.ls2{letter-spacing:0.250800px;}
.ls7{letter-spacing:0.313500px;}
.lsb{letter-spacing:0.376200px;}
.lsc{letter-spacing:0.627000px;}
.lse{letter-spacing:1.191300px;}
.lsd{letter-spacing:1.881000px;}
.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;}
}
.ws53{word-spacing:-17.493300px;}
.ws3{word-spacing:-17.242500px;}
.ws57{word-spacing:-16.803600px;}
.ws1{word-spacing:-15.990000px;}
.ws56{word-spacing:-15.988500px;}
.ws19{word-spacing:-15.769050px;}
.ws50{word-spacing:-15.612300px;}
.ws39{word-spacing:-14.985300px;}
.ws35{word-spacing:-14.922600px;}
.ws3a{word-spacing:-14.859900px;}
.ws3b{word-spacing:-14.722680px;}
.ws42{word-spacing:-14.671800px;}
.ws58{word-spacing:-14.421000px;}
.ws16{word-spacing:-4.702500px;}
.ws36{word-spacing:-4.514400px;}
.ws1f{word-spacing:-4.451700px;}
.ws3c{word-spacing:-4.330200px;}
.ws45{word-spacing:-4.326300px;}
.ws48{word-spacing:-4.263600px;}
.ws2c{word-spacing:-4.200900px;}
.ws4c{word-spacing:-4.138200px;}
.ws2f{word-spacing:-4.075500px;}
.ws31{word-spacing:-4.012800px;}
.ws26{word-spacing:-3.824700px;}
.ws1c{word-spacing:-3.762000px;}
.ws1d{word-spacing:-3.636600px;}
.ws25{word-spacing:-3.573900px;}
.ws44{word-spacing:-3.448500px;}
.ws37{word-spacing:-3.385800px;}
.ws30{word-spacing:-3.323100px;}
.ws33{word-spacing:-3.260400px;}
.ws2e{word-spacing:-3.197700px;}
.ws34{word-spacing:-3.072300px;}
.ws4f{word-spacing:-3.009600px;}
.ws22{word-spacing:-2.946900px;}
.ws1a{word-spacing:-2.884200px;}
.ws46{word-spacing:-2.821500px;}
.ws4b{word-spacing:-2.758800px;}
.ws4d{word-spacing:-2.633400px;}
.ws32{word-spacing:-2.570700px;}
.ws38{word-spacing:-2.508000px;}
.ws2d{word-spacing:-2.445300px;}
.ws18{word-spacing:-2.319900px;}
.ws40{word-spacing:-2.304360px;}
.ws4{word-spacing:-2.194500px;}
.ws2b{word-spacing:-2.131800px;}
.ws9{word-spacing:-2.069100px;}
.ws20{word-spacing:-1.881000px;}
.ws4a{word-spacing:-1.630200px;}
.ws1e{word-spacing:-1.442100px;}
.ws28{word-spacing:-1.316700px;}
.ws17{word-spacing:-1.254000px;}
.ws43{word-spacing:-1.128600px;}
.ws24{word-spacing:-1.065900px;}
.ws2a{word-spacing:-0.815100px;}
.ws29{word-spacing:-0.752400px;}
.ws41{word-spacing:-0.689700px;}
.ws27{word-spacing:-0.313500px;}
.ws6{word-spacing:-0.250800px;}
.ws3e{word-spacing:-0.247440px;}
.ws21{word-spacing:-0.188100px;}
.ws1b{word-spacing:-0.125400px;}
.ws2{word-spacing:-0.066000px;}
.ws23{word-spacing:-0.062700px;}
.ws3f{word-spacing:-0.062280px;}
.ws3d{word-spacing:-0.061860px;}
.ws0{word-spacing:0.000000px;}
.ws49{word-spacing:0.125400px;}
.ws47{word-spacing:0.376200px;}
.ws13{word-spacing:0.689700px;}
.ws12{word-spacing:1.065900px;}
.ws14{word-spacing:1.128600px;}
.ws59{word-spacing:1.740000px;}
.ws5b{word-spacing:1.860000px;}
.wse{word-spacing:1.881000px;}
.ws4e{word-spacing:2.194500px;}
.ws15{word-spacing:3.197700px;}
.ws10{word-spacing:3.260400px;}
.ws55{word-spacing:3.385800px;}
.wsf{word-spacing:4.200900px;}
.ws5a{word-spacing:4.380000px;}
.ws54{word-spacing:5.392200px;}
.ws5{word-spacing:6.458100px;}
.ws51{word-spacing:6.834300px;}
.ws11{word-spacing:8.276400px;}
.wsc{word-spacing:8.527200px;}
.wsd{word-spacing:10.157400px;}
.ws8{word-spacing:10.533600px;}
.ws7{word-spacing:10.784400px;}
.wsa{word-spacing:11.536800px;}
.wsb{word-spacing:13.417800px;}
.ws52{word-spacing:46.147200px;}
._0{margin-left:-7.218000px;}
._4{margin-left:-5.610600px;}
._2{margin-left:-4.098600px;}
._1{margin-left:-2.718000px;}
._3{margin-left:-1.512000px;}
._5{width:1.914900px;}
._8{width:3.416100px;}
._10{width:4.653390px;}
._15{width:5.900070px;}
._7{width:7.108800px;}
._11{width:8.439420px;}
._17{width:10.420740px;}
._18{width:11.850300px;}
._14{width:13.104300px;}
._1a{width:14.452350px;}
._e{width:16.364700px;}
._f{width:17.530920px;}
._19{width:18.540390px;}
._22{width:23.932590px;}
._23{width:26.478210px;}
._16{width:27.625620px;}
._1b{width:36.221790px;}
._1e{width:38.272080px;}
._1f{width:39.416310px;}
._1d{width:44.297550px;}
._13{width:45.520200px;}
._12{width:58.379970px;}
._21{width:87.040140px;}
._c{width:475.794000px;}
._20{width:480.612000px;}
._1c{width:482.790000px;}
._d{width:496.056000px;}
._a{width:504.702000px;}
._9{width:506.880000px;}
._b{width:508.134000px;}
._6{width:520.146000px;}
.fc4{color:rgb(246,174,45);}
.fc2{color:rgb(74,114,132);}
.fc5{color:rgb(255,255,255);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(251,251,251);}
.fc0{color:rgb(245,174,38);}
.fsa{font-size:42.000000px;}
.fs9{font-size:60.000000px;}
.fs5{font-size:61.500000px;}
.fs7{font-size:61.860000px;}
.fs8{font-size:62.280000px;}
.fs3{font-size:62.700000px;}
.fs4{font-size:66.000000px;}
.fs6{font-size:85.500000px;}
.fs2{font-size:87.000000px;}
.fs1{font-size:126.000000px;}
.fs0{font-size:180.000000px;}
.y0{bottom:0.000000px;}
.yd8{bottom:46.935450px;}
.y40{bottom:47.461050px;}
.y16{bottom:47.561400px;}
.y2a{bottom:48.961050px;}
.y67{bottom:49.061400px;}
.y1be{bottom:91.891350px;}
.y1bd{bottom:104.491350px;}
.y1bc{bottom:117.091350px;}
.y11c{bottom:126.009900px;}
.y12f{bottom:126.565050px;}
.y66{bottom:127.320900px;}
.yd7{bottom:128.608350px;}
.yb0{bottom:129.494400px;}
.y19a{bottom:130.115250px;}
.y3f{bottom:134.634300px;}
.y16e{bottom:138.228450px;}
.yf9{bottom:141.317100px;}
.y1bb{bottom:142.291350px;}
.y8c{bottom:143.395800px;}
.y11b{bottom:151.509900px;}
.y12e{bottom:152.061825px;}
.y199{bottom:152.608875px;}
.y65{bottom:152.820900px;}
.yd6{bottom:154.108350px;}
.yaf{bottom:154.543050px;}
.y1ba{bottom:154.891350px;}
.y3e{bottom:160.134300px;}
.y16d{bottom:160.744725px;}
.yf8{bottom:166.817100px;}
.y8b{bottom:168.895800px;}
.y198{bottom:175.102500px;}
.y11a{bottom:177.009900px;}
.y12d{bottom:177.565050px;}
.y64{bottom:178.320900px;}
.yae{bottom:179.593050px;}
.yd5{bottom:179.608350px;}
.y16c{bottom:183.238350px;}
.y3d{bottom:185.634300px;}
.yf7{bottom:192.317100px;}
.y8a{bottom:194.395800px;}
.y197{bottom:197.601000px;}
.y119{bottom:202.510050px;}
.y12c{bottom:203.065050px;}
.y63{bottom:203.820900px;}
.yad{bottom:204.643050px;}
.yd4{bottom:205.108350px;}
.y3c{bottom:216.962400px;}
.yf6{bottom:217.817100px;}
.y89{bottom:219.895800px;}
.y174{bottom:221.266800px;}
.y1e{bottom:225.395550px;}
.y118{bottom:228.010050px;}
.y12b{bottom:228.565050px;}
.y62{bottom:229.320900px;}
.yac{bottom:229.693050px;}
.yd3{bottom:230.608350px;}
.y196{bottom:232.775700px;}
.yf5{bottom:243.313875px;}
.y173{bottom:243.760425px;}
.y88{bottom:245.395800px;}
.y117{bottom:253.510050px;}
.y12a{bottom:254.065050px;}
.yab{bottom:254.743050px;}
.y61{bottom:254.820900px;}
.y195{bottom:255.343125px;}
.yd2{bottom:256.108350px;}
.y1d{bottom:265.893300px;}
.y172{bottom:266.254050px;}
.yf4{bottom:268.817100px;}
.y194{bottom:277.836750px;}
.y116{bottom:279.012750px;}
.y129{bottom:279.565050px;}
.yaa{bottom:279.794400px;}
.y60{bottom:280.320900px;}
.y3b{bottom:280.341900px;}
.yd1{bottom:281.608350px;}
.y87{bottom:285.836700px;}
.y171{bottom:288.760425px;}
.yf3{bottom:294.317100px;}
.y193{bottom:300.330375px;}
.ya9{bottom:304.843050px;}
.y128{bottom:305.065050px;}
.y5f{bottom:305.820900px;}
.y3a{bottom:305.841900px;}
.yd0{bottom:307.108350px;}
.y1c{bottom:307.897800px;}
.y170{bottom:311.254050px;}
.y86{bottom:311.336700px;}
.y29{bottom:312.807150px;}
.y115{bottom:318.889950px;}
.yf2{bottom:319.817100px;}
.ya8{bottom:329.893050px;}
.y1b{bottom:330.391425px;}
.y127{bottom:330.565050px;}
.y5e{bottom:331.321050px;}
.y39{bottom:331.341900px;}
.ycf{bottom:332.608350px;}
.y192{bottom:333.388950px;}
.y16f{bottom:333.758400px;}
.y85{bottom:336.836700px;}
.y28{bottom:338.307150px;}
.y114{bottom:344.389950px;}
.yf1{bottom:345.316500px;}
.ya7{bottom:354.948225px;}
.y191{bottom:355.882575px;}
.y5d{bottom:356.821050px;}
.y38{bottom:356.835450px;}
.yce{bottom:358.108350px;}
.y84{bottom:362.336700px;}
.y27{bottom:363.807150px;}
.y126{bottom:367.728450px;}
.y1a{bottom:367.891050px;}
.y113{bottom:369.886725px;}
.y16b{bottom:371.573475px;}
.y190{bottom:378.376200px;}
.y37{bottom:382.338675px;}
.ycd{bottom:383.608350px;}
.yf0{bottom:385.758000px;}
.y83{bottom:387.844350px;}
.y26{bottom:389.303925px;}
.y125{bottom:393.222000px;}
.ya6{bottom:393.493050px;}
.y16a{bottom:394.067100px;}
.y112{bottom:395.389950px;}
.y5c{bottom:397.524150px;}
.y18f{bottom:400.869825px;}
.y19{bottom:402.392550px;}
.y36{bottom:407.841900px;}
.ycc{bottom:409.108350px;}
.yef{bottom:411.258000px;}
.y25{bottom:414.807150px;}
.y169{bottom:416.584200px;}
.y4{bottom:417.642000px;}
.ya5{bottom:418.543050px;}
.y124{bottom:418.725225px;}
.y111{bottom:420.889950px;}
.y5b{bottom:423.024150px;}
.y18e{bottom:423.363450px;}
.y18{bottom:424.886175px;}
.y82{bottom:428.348550px;}
.y35{bottom:433.341900px;}
.ycb{bottom:434.608350px;}
.yee{bottom:436.758000px;}
.y168{bottom:439.077825px;}
.ya4{bottom:443.593050px;}
.y123{bottom:444.228450px;}
.y110{bottom:446.389950px;}
.y17{bottom:447.372900px;}
.y5a{bottom:448.524150px;}
.y81{bottom:453.842100px;}
.y18d{bottom:457.644675px;}
.y34{bottom:458.841900px;}
.yed{bottom:462.258000px;}
.y24{bottom:462.296175px;}
.ya3{bottom:468.643050px;}
.y122{bottom:469.728450px;}
.y10f{bottom:471.889950px;}
.y59{bottom:474.020925px;}
.yca{bottom:474.419100px;}
.y1f{bottom:476.311650px;}
.y167{bottom:476.995650px;}
.y80{bottom:479.345325px;}
.y18c{bottom:480.138300px;}
.y33{bottom:484.341900px;}
.yec{bottom:487.761525px;}
.y23{bottom:487.799400px;}
.ya2{bottom:493.693050px;}
.y121{bottom:495.228450px;}
.y166{bottom:499.489275px;}
.y58{bottom:499.524150px;}
.yc9{bottom:499.919100px;}
.y18b{bottom:502.631925px;}
.y7f{bottom:504.848550px;}
.y10e{bottom:508.964700px;}
.y32{bottom:509.841900px;}
.y22{bottom:513.299400px;}
.y3{bottom:515.934300px;}
.ya1{bottom:518.743050px;}
.y120{bottom:520.728450px;}
.y165{bottom:521.982900px;}
.yc8{bottom:525.419100px;}
.yeb{bottom:526.964700px;}
.y57{bottom:529.352250px;}
.y7e{bottom:530.348550px;}
.y10d{bottom:534.464700px;}
.y31{bottom:535.341900px;}
.y18a{bottom:536.301825px;}
.y21{bottom:538.800975px;}
.ya0{bottom:543.793050px;}
.y11f{bottom:546.228450px;}
.yc7{bottom:550.919100px;}
.yea{bottom:552.464700px;}
.y7d{bottom:555.842100px;}
.y189{bottom:558.795450px;}
.y164{bottom:559.900725px;}
.y10c{bottom:559.964700px;}
.y30{bottom:560.841900px;}
.y2{bottom:568.449300px;}
.y9f{bottom:568.843050px;}
.y11e{bottom:571.728450px;}
.yc6{bottom:576.419100px;}
.ye9{bottom:577.964700px;}
.y188{bottom:581.295450px;}
.y7c{bottom:581.345325px;}
.y163{bottom:582.394350px;}
.y1b0{bottom:582.689100px;}
.y10b{bottom:585.464700px;}
.y2f{bottom:586.341900px;}
.y56{bottom:587.711475px;}
.y15{bottom:588.086700px;}
.y9e{bottom:593.893050px;}
.y11d{bottom:600.933600px;}
.yc5{bottom:601.919100px;}
.ye8{bottom:603.461475px;}
.y187{bottom:603.831525px;}
.y162{bottom:604.887975px;}
.y1af{bottom:605.200875px;}
.y7b{bottom:606.848550px;}
.y10a{bottom:610.964700px;}
.y2e{bottom:611.841900px;}
.y55{bottom:613.214700px;}
.y14{bottom:613.576275px;}
.y9d{bottom:618.943050px;}
.y1{bottom:620.964300px;}
.yc4{bottom:627.419100px;}
.y1ae{bottom:627.694500px;}
.ye7{bottom:628.964700px;}
.y7a{bottom:632.348550px;}
.y109{bottom:636.464700px;}
.y186{bottom:636.874425px;}
.y2d{bottom:637.341900px;}
.y54{bottom:638.714700px;}
.y13{bottom:639.079500px;}
.y161{bottom:643.338750px;}
.ye6{bottom:654.464700px;}
.y9c{bottom:656.835150px;}
.y79{bottom:657.848550px;}
.y185{bottom:659.368050px;}
.y108{bottom:661.964700px;}
.y140{bottom:662.159550px;}
.y1ad{bottom:662.649750px;}
.y2c{bottom:662.841900px;}
.y53{bottom:664.214700px;}
.y12{bottom:664.582725px;}
.y160{bottom:665.840700px;}
.yc3{bottom:667.952850px;}
.ye5{bottom:679.964700px;}
.y184{bottom:681.861675px;}
.y9b{bottom:682.335150px;}
.y78{bottom:683.348550px;}
.y1ac{bottom:685.162500px;}
.y107{bottom:687.464700px;}
.y13f{bottom:687.659550px;}
.y15f{bottom:688.334325px;}
.yc2{bottom:693.452850px;}
.y2b{bottom:694.170000px;}
.y183{bottom:704.355300px;}
.y52{bottom:704.363025px;}
.ye4{bottom:705.464700px;}
.y1ab{bottom:707.656125px;}
.y9a{bottom:707.835150px;}
.y11{bottom:712.438500px;}
.y106{bottom:712.961475px;}
.y13e{bottom:713.159550px;}
.yc1{bottom:718.952850px;}
.y77{bottom:722.788275px;}
.y15e{bottom:726.252150px;}
.y51{bottom:729.866250px;}
.y1aa{bottom:730.149750px;}
.y5{bottom:732.295500px;}
.y99{bottom:733.335150px;}
.ye3{bottom:737.669850px;}
.y10{bottom:737.941725px;}
.y105{bottom:738.464700px;}
.y182{bottom:738.636525px;}
.y13d{bottom:738.659550px;}
.yc0{bottom:744.452850px;}
.y76{bottom:748.291500px;}
.y15d{bottom:748.821525px;}
.y1a9{bottom:752.649300px;}
.y14d{bottom:753.647850px;}
.y50{bottom:755.366250px;}
.y98{bottom:758.835150px;}
.y181{bottom:761.130150px;}
.yf{bottom:763.444950px;}
.y104{bottom:763.964700px;}
.y13c{bottom:764.159550px;}
.ybf{bottom:769.952850px;}
.y1b9{bottom:770.073900px;}
.y15c{bottom:771.315150px;}
.y75{bottom:773.791500px;}
.y14c{bottom:779.147850px;}
.y4f{bottom:780.866250px;}
.y180{bottom:783.631800px;}
.y97{bottom:784.335150px;}
.y1b8{bottom:788.073900px;}
.y103{bottom:789.464700px;}
.y13b{bottom:789.659550px;}
.y1a8{bottom:790.911975px;}
.ybe{bottom:795.452850px;}
.y74{bottom:799.291500px;}
.ye2{bottom:802.474500px;}
.y14b{bottom:804.647850px;}
.y1b7{bottom:806.073900px;}
.y4e{bottom:806.366250px;}
.y96{bottom:809.835150px;}
.y15b{bottom:810.251850px;}
.ye{bottom:811.285050px;}
.y1a7{bottom:813.405600px;}
.y102{bottom:814.964700px;}
.y13a{bottom:815.159550px;}
.y17f{bottom:816.423900px;}
.ybd{bottom:820.952850px;}
.y1b6{bottom:824.073900px;}
.y73{bottom:824.791500px;}
.ye1{bottom:827.974500px;}
.y14a{bottom:830.147850px;}
.y4d{bottom:831.866250px;}
.y15a{bottom:832.745475px;}
.y95{bottom:835.335150px;}
.y1a6{bottom:835.907025px;}
.yd{bottom:836.788275px;}
.y17e{bottom:838.917525px;}
.y101{bottom:840.464700px;}
.ybc{bottom:846.452850px;}
.y72{bottom:850.285050px;}
.ye0{bottom:853.474500px;}
.y159{bottom:855.239100px;}
.y149{bottom:855.647850px;}
.y139{bottom:855.907650px;}
.y4c{bottom:857.359800px;}
.y17d{bottom:861.411150px;}
.yc{bottom:862.291500px;}
.y1a5{bottom:871.693050px;}
.ybb{bottom:871.952850px;}
.y100{bottom:872.669850px;}
.y94{bottom:872.803200px;}
.y71{bottom:875.788275px;}
.y158{bottom:877.732725px;}
.ydf{bottom:878.974500px;}
.y148{bottom:881.147850px;}
.y138{bottom:881.407650px;}
.y4b{bottom:882.863025px;}
.yb{bottom:887.786100px;}
.y1a4{bottom:894.193050px;}
.y17c{bottom:898.090650px;}
.y93{bottom:898.303200px;}
.y157{bottom:900.226350px;}
.y70{bottom:901.291500px;}
.y1b5{bottom:904.053900px;}
.yde{bottom:904.474500px;}
.y147{bottom:906.647700px;}
.y137{bottom:906.907650px;}
.y4a{bottom:908.366250px;}
.yba{bottom:911.185875px;}
.y1a3{bottom:916.733925px;}
.y17b{bottom:920.590650px;}
.y1b4{bottom:922.053900px;}
.y92{bottom:923.803200px;}
.y6f{bottom:926.791500px;}
.ydd{bottom:929.974500px;}
.y146{bottom:932.147700px;}
.y136{bottom:932.401050px;}
.y49{bottom:933.866250px;}
.yfe{bottom:934.784325px;}
.ya{bottom:935.202975px;}
.yb9{bottom:936.689100px;}
.y156{bottom:939.899775px;}
.y1b3{bottom:940.053900px;}
.y17a{bottom:943.128825px;}
.y91{bottom:949.303200px;}
.y6e{bottom:952.291500px;}
.y1a2{bottom:952.519950px;}
.ydc{bottom:955.474500px;}
.y145{bottom:957.647700px;}
.y135{bottom:957.904275px;}
.y1b2{bottom:958.053900px;}
.y48{bottom:959.366250px;}
.yfd{bottom:960.287550px;}
.y9{bottom:960.706200px;}
.yb8{bottom:962.189100px;}
.y155{bottom:962.393400px;}
.y179{bottom:965.622450px;}
.y90{bottom:974.803200px;}
.y1a1{bottom:975.013575px;}
.y1b1{bottom:976.053900px;}
.y6d{bottom:977.791500px;}
.y144{bottom:983.147700px;}
.y134{bottom:983.407500px;}
.y47{bottom:984.866250px;}
.y154{bottom:984.887025px;}
.yfc{bottom:985.787550px;}
.y8{bottom:986.209425px;}
.yb7{bottom:987.689100px;}
.ydb{bottom:995.614200px;}
.y1a0{bottom:997.507200px;}
.y178{bottom:1001.408475px;}
.y6c{bottom:1003.291500px;}
.y8f{bottom:1007.008350px;}
.y143{bottom:1008.647700px;}
.y133{bottom:1008.907500px;}
.y46{bottom:1010.366250px;}
.yfb{bottom:1011.287550px;}
.y7{bottom:1011.712650px;}
.yb6{bottom:1013.189100px;}
.yda{bottom:1021.114200px;}
.y153{bottom:1023.431850px;}
.y177{bottom:1023.902100px;}
.y19f{bottom:1033.136475px;}
.y142{bottom:1034.147700px;}
.y132{bottom:1034.407500px;}
.y6b{bottom:1035.496650px;}
.y45{bottom:1035.866250px;}
.yfa{bottom:1036.787550px;}
.yb5{bottom:1038.689100px;}
.y152{bottom:1045.925475px;}
.y176{bottom:1046.395725px;}
.yd9{bottom:1046.614200px;}
.y19e{bottom:1055.630100px;}
.y6{bottom:1059.526800px;}
.y141{bottom:1059.647700px;}
.y131{bottom:1059.907500px;}
.y44{bottom:1061.366250px;}
.yb4{bottom:1064.189100px;}
.y151{bottom:1068.419100px;}
.y8e{bottom:1072.114200px;}
.yff{bottom:1072.114350px;}
.y19d{bottom:1078.123725px;}
.y175{bottom:1080.755325px;}
.y130{bottom:1085.407500px;}
.yb3{bottom:1089.689100px;}
.y8d{bottom:1097.610975px;}
.y43{bottom:1097.614200px;}
.y6a{bottom:1097.614350px;}
.y19c{bottom:1100.617350px;}
.y150{bottom:1103.248950px;}
.yb2{bottom:1115.189100px;}
.y19b{bottom:1123.110975px;}
.y42{bottom:1123.114200px;}
.y69{bottom:1123.114350px;}
.y14f{bottom:1125.742575px;}
.yb1{bottom:1147.394250px;}
.y14e{bottom:1148.236200px;}
.y41{bottom:1148.614200px;}
.y68{bottom:1148.614350px;}
.y20{bottom:1194.940800px;}
.h1b{height:32.422852px;}
.h1a{height:33.550781px;}
.ha{height:45.325500px;}
.h18{height:46.318359px;}
.h19{height:47.929688px;}
.h16{height:48.078457px;}
.h5{height:48.402686px;}
.hd{height:48.415586px;}
.h6{height:48.424286px;}
.h12{height:48.428486px;}
.h7{height:48.444386px;}
.h13{height:49.415508px;}
.hb{height:49.434000px;}
.he{height:50.086523px;}
.h14{height:50.261250px;}
.hf{height:50.943750px;}
.h15{height:51.650684px;}
.h17{height:51.770361px;}
.h10{height:52.352051px;}
.hc{height:52.921080px;}
.h9{height:53.625000px;}
.h8{height:55.704000px;}
.h11{height:72.165109px;}
.h4{height:73.431164px;}
.h3{height:90.972000px;}
.h2{height:151.926545px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:34.015800px;}
.xd{left:40.644600px;}
.xe{left:44.580600px;}
.x5{left:54.758100px;}
.x8{left:65.844225px;}
.xf{left:68.161050px;}
.x9{left:70.179975px;}
.xb{left:78.036600px;}
.x1{left:79.964850px;}
.xa{left:83.248725px;}
.xc{left:102.405975px;}
.x2{left:160.064850px;}
.x14{left:162.588450px;}
.x11{left:169.866150px;}
.x12{left:171.779550px;}
.x13{left:198.693450px;}
.x15{left:209.565300px;}
.x6{left:219.188850px;}
.x3{left:273.689850px;}
.x10{left:578.650500px;}
.x4{left:595.014600px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-1.058933pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.009067pt;}
.ls8{letter-spacing:0.054987pt;}
.ls5{letter-spacing:0.055733pt;}
.ls4{letter-spacing:0.083600pt;}
.lsa{letter-spacing:0.110720pt;}
.ls3{letter-spacing:0.111467pt;}
.ls6{letter-spacing:0.167200pt;}
.ls9{letter-spacing:0.219947pt;}
.ls2{letter-spacing:0.222933pt;}
.ls7{letter-spacing:0.278667pt;}
.lsb{letter-spacing:0.334400pt;}
.lsc{letter-spacing:0.557333pt;}
.lse{letter-spacing:1.058933pt;}
.lsd{letter-spacing:1.672000pt;}
.ws53{word-spacing:-15.549600pt;}
.ws3{word-spacing:-15.326667pt;}
.ws57{word-spacing:-14.936533pt;}
.ws1{word-spacing:-14.213333pt;}
.ws56{word-spacing:-14.212000pt;}
.ws19{word-spacing:-14.016933pt;}
.ws50{word-spacing:-13.877600pt;}
.ws39{word-spacing:-13.320267pt;}
.ws35{word-spacing:-13.264533pt;}
.ws3a{word-spacing:-13.208800pt;}
.ws3b{word-spacing:-13.086827pt;}
.ws42{word-spacing:-13.041600pt;}
.ws58{word-spacing:-12.818667pt;}
.ws16{word-spacing:-4.180000pt;}
.ws36{word-spacing:-4.012800pt;}
.ws1f{word-spacing:-3.957067pt;}
.ws3c{word-spacing:-3.849067pt;}
.ws45{word-spacing:-3.845600pt;}
.ws48{word-spacing:-3.789867pt;}
.ws2c{word-spacing:-3.734133pt;}
.ws4c{word-spacing:-3.678400pt;}
.ws2f{word-spacing:-3.622667pt;}
.ws31{word-spacing:-3.566933pt;}
.ws26{word-spacing:-3.399733pt;}
.ws1c{word-spacing:-3.344000pt;}
.ws1d{word-spacing:-3.232533pt;}
.ws25{word-spacing:-3.176800pt;}
.ws44{word-spacing:-3.065333pt;}
.ws37{word-spacing:-3.009600pt;}
.ws30{word-spacing:-2.953867pt;}
.ws33{word-spacing:-2.898133pt;}
.ws2e{word-spacing:-2.842400pt;}
.ws34{word-spacing:-2.730933pt;}
.ws4f{word-spacing:-2.675200pt;}
.ws22{word-spacing:-2.619467pt;}
.ws1a{word-spacing:-2.563733pt;}
.ws46{word-spacing:-2.508000pt;}
.ws4b{word-spacing:-2.452267pt;}
.ws4d{word-spacing:-2.340800pt;}
.ws32{word-spacing:-2.285067pt;}
.ws38{word-spacing:-2.229333pt;}
.ws2d{word-spacing:-2.173600pt;}
.ws18{word-spacing:-2.062133pt;}
.ws40{word-spacing:-2.048320pt;}
.ws4{word-spacing:-1.950667pt;}
.ws2b{word-spacing:-1.894933pt;}
.ws9{word-spacing:-1.839200pt;}
.ws20{word-spacing:-1.672000pt;}
.ws4a{word-spacing:-1.449067pt;}
.ws1e{word-spacing:-1.281867pt;}
.ws28{word-spacing:-1.170400pt;}
.ws17{word-spacing:-1.114667pt;}
.ws43{word-spacing:-1.003200pt;}
.ws24{word-spacing:-0.947467pt;}
.ws2a{word-spacing:-0.724533pt;}
.ws29{word-spacing:-0.668800pt;}
.ws41{word-spacing:-0.613067pt;}
.ws27{word-spacing:-0.278667pt;}
.ws6{word-spacing:-0.222933pt;}
.ws3e{word-spacing:-0.219947pt;}
.ws21{word-spacing:-0.167200pt;}
.ws1b{word-spacing:-0.111467pt;}
.ws2{word-spacing:-0.058667pt;}
.ws23{word-spacing:-0.055733pt;}
.ws3f{word-spacing:-0.055360pt;}
.ws3d{word-spacing:-0.054987pt;}
.ws0{word-spacing:0.000000pt;}
.ws49{word-spacing:0.111467pt;}
.ws47{word-spacing:0.334400pt;}
.ws13{word-spacing:0.613067pt;}
.ws12{word-spacing:0.947467pt;}
.ws14{word-spacing:1.003200pt;}
.ws59{word-spacing:1.546667pt;}
.ws5b{word-spacing:1.653333pt;}
.wse{word-spacing:1.672000pt;}
.ws4e{word-spacing:1.950667pt;}
.ws15{word-spacing:2.842400pt;}
.ws10{word-spacing:2.898133pt;}
.ws55{word-spacing:3.009600pt;}
.wsf{word-spacing:3.734133pt;}
.ws5a{word-spacing:3.893333pt;}
.ws54{word-spacing:4.793067pt;}
.ws5{word-spacing:5.740533pt;}
.ws51{word-spacing:6.074933pt;}
.ws11{word-spacing:7.356800pt;}
.wsc{word-spacing:7.579733pt;}
.wsd{word-spacing:9.028800pt;}
.ws8{word-spacing:9.363200pt;}
.ws7{word-spacing:9.586133pt;}
.wsa{word-spacing:10.254933pt;}
.wsb{word-spacing:11.926933pt;}
.ws52{word-spacing:41.019733pt;}
._0{margin-left:-6.416000pt;}
._4{margin-left:-4.987200pt;}
._2{margin-left:-3.643200pt;}
._1{margin-left:-2.416000pt;}
._3{margin-left:-1.344000pt;}
._5{width:1.702133pt;}
._8{width:3.036533pt;}
._10{width:4.136347pt;}
._15{width:5.244507pt;}
._7{width:6.318933pt;}
._11{width:7.501707pt;}
._17{width:9.262880pt;}
._18{width:10.533600pt;}
._14{width:11.648267pt;}
._1a{width:12.846533pt;}
._e{width:14.546400pt;}
._f{width:15.583040pt;}
._19{width:16.480347pt;}
._22{width:21.273413pt;}
._23{width:23.536187pt;}
._16{width:24.556107pt;}
._1b{width:32.197147pt;}
._1e{width:34.019627pt;}
._1f{width:35.036720pt;}
._1d{width:39.375600pt;}
._13{width:40.462400pt;}
._12{width:51.893307pt;}
._21{width:77.369013pt;}
._c{width:422.928000pt;}
._20{width:427.210667pt;}
._1c{width:429.146667pt;}
._d{width:440.938667pt;}
._a{width:448.624000pt;}
._9{width:450.560000pt;}
._b{width:451.674667pt;}
._6{width:462.352000pt;}
.fsa{font-size:37.333333pt;}
.fs9{font-size:53.333333pt;}
.fs5{font-size:54.666667pt;}
.fs7{font-size:54.986667pt;}
.fs8{font-size:55.360000pt;}
.fs3{font-size:55.733333pt;}
.fs4{font-size:58.666667pt;}
.fs6{font-size:76.000000pt;}
.fs2{font-size:77.333333pt;}
.fs1{font-size:112.000000pt;}
.fs0{font-size:160.000000pt;}
.y0{bottom:0.000000pt;}
.yd8{bottom:41.720400pt;}
.y40{bottom:42.187600pt;}
.y16{bottom:42.276800pt;}
.y2a{bottom:43.520933pt;}
.y67{bottom:43.610133pt;}
.y1be{bottom:81.681200pt;}
.y1bd{bottom:92.881200pt;}
.y1bc{bottom:104.081200pt;}
.y11c{bottom:112.008800pt;}
.y12f{bottom:112.502267pt;}
.y66{bottom:113.174133pt;}
.yd7{bottom:114.318533pt;}
.yb0{bottom:115.106133pt;}
.y19a{bottom:115.658000pt;}
.y3f{bottom:119.674933pt;}
.y16e{bottom:122.869733pt;}
.yf9{bottom:125.615200pt;}
.y1bb{bottom:126.481200pt;}
.y8c{bottom:127.462933pt;}
.y11b{bottom:134.675467pt;}
.y12e{bottom:135.166067pt;}
.y199{bottom:135.652333pt;}
.y65{bottom:135.840800pt;}
.yd6{bottom:136.985200pt;}
.yaf{bottom:137.371600pt;}
.y1ba{bottom:137.681200pt;}
.y3e{bottom:142.341600pt;}
.y16d{bottom:142.884200pt;}
.yf8{bottom:148.281867pt;}
.y8b{bottom:150.129600pt;}
.y198{bottom:155.646667pt;}
.y11a{bottom:157.342133pt;}
.y12d{bottom:157.835600pt;}
.y64{bottom:158.507467pt;}
.yae{bottom:159.638267pt;}
.yd5{bottom:159.651867pt;}
.y16c{bottom:162.878533pt;}
.y3d{bottom:165.008267pt;}
.yf7{bottom:170.948533pt;}
.y8a{bottom:172.796267pt;}
.y197{bottom:175.645333pt;}
.y119{bottom:180.008933pt;}
.y12c{bottom:180.502267pt;}
.y63{bottom:181.174133pt;}
.yad{bottom:181.904933pt;}
.yd4{bottom:182.318533pt;}
.y3c{bottom:192.855467pt;}
.yf6{bottom:193.615200pt;}
.y89{bottom:195.462933pt;}
.y174{bottom:196.681600pt;}
.y1e{bottom:200.351600pt;}
.y118{bottom:202.675600pt;}
.y12b{bottom:203.168933pt;}
.y62{bottom:203.840800pt;}
.yac{bottom:204.171600pt;}
.yd3{bottom:204.985200pt;}
.y196{bottom:206.911733pt;}
.yf5{bottom:216.279000pt;}
.y173{bottom:216.675933pt;}
.y88{bottom:218.129600pt;}
.y117{bottom:225.342267pt;}
.y12a{bottom:225.835600pt;}
.yab{bottom:226.438267pt;}
.y61{bottom:226.507467pt;}
.y195{bottom:226.971667pt;}
.yd2{bottom:227.651867pt;}
.y1d{bottom:236.349600pt;}
.y172{bottom:236.670267pt;}
.yf4{bottom:238.948533pt;}
.y194{bottom:246.966000pt;}
.y116{bottom:248.011333pt;}
.y129{bottom:248.502267pt;}
.yaa{bottom:248.706133pt;}
.y60{bottom:249.174133pt;}
.y3b{bottom:249.192800pt;}
.yd1{bottom:250.318533pt;}
.y87{bottom:254.077067pt;}
.y171{bottom:256.675933pt;}
.yf3{bottom:261.615200pt;}
.y193{bottom:266.960333pt;}
.ya9{bottom:270.971600pt;}
.y128{bottom:271.168933pt;}
.y5f{bottom:271.840800pt;}
.y3a{bottom:271.859467pt;}
.yd0{bottom:272.985200pt;}
.y1c{bottom:273.686933pt;}
.y170{bottom:276.670267pt;}
.y86{bottom:276.743733pt;}
.y29{bottom:278.050800pt;}
.y115{bottom:283.457733pt;}
.yf2{bottom:284.281867pt;}
.ya8{bottom:293.238267pt;}
.y1b{bottom:293.681267pt;}
.y127{bottom:293.835600pt;}
.y5e{bottom:294.507600pt;}
.y39{bottom:294.526133pt;}
.ycf{bottom:295.651867pt;}
.y192{bottom:296.345733pt;}
.y16f{bottom:296.674133pt;}
.y85{bottom:299.410400pt;}
.y28{bottom:300.717467pt;}
.y114{bottom:306.124400pt;}
.yf1{bottom:306.948000pt;}
.ya7{bottom:315.509533pt;}
.y191{bottom:316.340067pt;}
.y5d{bottom:317.174267pt;}
.y38{bottom:317.187067pt;}
.yce{bottom:318.318533pt;}
.y84{bottom:322.077067pt;}
.y27{bottom:323.384133pt;}
.y126{bottom:326.869733pt;}
.y1a{bottom:327.014267pt;}
.y113{bottom:328.788200pt;}
.y16b{bottom:330.287533pt;}
.y190{bottom:336.334400pt;}
.y37{bottom:339.856600pt;}
.ycd{bottom:340.985200pt;}
.yf0{bottom:342.896000pt;}
.y83{bottom:344.750533pt;}
.y26{bottom:346.047933pt;}
.y125{bottom:349.530667pt;}
.ya6{bottom:349.771600pt;}
.y16a{bottom:350.281867pt;}
.y112{bottom:351.457733pt;}
.y5c{bottom:353.354800pt;}
.y18f{bottom:356.328733pt;}
.y19{bottom:357.682267pt;}
.y36{bottom:362.526133pt;}
.ycc{bottom:363.651867pt;}
.yef{bottom:365.562667pt;}
.y25{bottom:368.717467pt;}
.y169{bottom:370.297067pt;}
.y4{bottom:371.237333pt;}
.ya5{bottom:372.038267pt;}
.y124{bottom:372.200200pt;}
.y111{bottom:374.124400pt;}
.y5b{bottom:376.021467pt;}
.y18e{bottom:376.323067pt;}
.y18{bottom:377.676600pt;}
.y82{bottom:380.754267pt;}
.y35{bottom:385.192800pt;}
.ycb{bottom:386.318533pt;}
.yee{bottom:388.229333pt;}
.y168{bottom:390.291400pt;}
.ya4{bottom:394.304933pt;}
.y123{bottom:394.869733pt;}
.y110{bottom:396.791067pt;}
.y17{bottom:397.664800pt;}
.y5a{bottom:398.688133pt;}
.y81{bottom:403.415200pt;}
.y18d{bottom:406.795267pt;}
.y34{bottom:407.859467pt;}
.yed{bottom:410.896000pt;}
.y24{bottom:410.929933pt;}
.ya3{bottom:416.571600pt;}
.y122{bottom:417.536400pt;}
.y10f{bottom:419.457733pt;}
.y59{bottom:421.351933pt;}
.yca{bottom:421.705867pt;}
.y1f{bottom:423.388133pt;}
.y167{bottom:423.996133pt;}
.y80{bottom:426.084733pt;}
.y18c{bottom:426.789600pt;}
.y33{bottom:430.526133pt;}
.yec{bottom:433.565800pt;}
.y23{bottom:433.599467pt;}
.ya2{bottom:438.838267pt;}
.y121{bottom:440.203067pt;}
.y166{bottom:443.990467pt;}
.y58{bottom:444.021467pt;}
.yc9{bottom:444.372533pt;}
.y18b{bottom:446.783933pt;}
.y7f{bottom:448.754267pt;}
.y10e{bottom:452.413067pt;}
.y32{bottom:453.192800pt;}
.y22{bottom:456.266133pt;}
.y3{bottom:458.608267pt;}
.ya1{bottom:461.104933pt;}
.y120{bottom:462.869733pt;}
.y165{bottom:463.984800pt;}
.yc8{bottom:467.039200pt;}
.yeb{bottom:468.413067pt;}
.y57{bottom:470.535333pt;}
.y7e{bottom:471.420933pt;}
.y10d{bottom:475.079733pt;}
.y31{bottom:475.859467pt;}
.y18a{bottom:476.712733pt;}
.y21{bottom:478.934200pt;}
.ya0{bottom:483.371600pt;}
.y11f{bottom:485.536400pt;}
.yc7{bottom:489.705867pt;}
.yea{bottom:491.079733pt;}
.y7d{bottom:494.081867pt;}
.y189{bottom:496.707067pt;}
.y164{bottom:497.689533pt;}
.y10c{bottom:497.746400pt;}
.y30{bottom:498.526133pt;}
.y2{bottom:505.288267pt;}
.y9f{bottom:505.638267pt;}
.y11e{bottom:508.203067pt;}
.yc6{bottom:512.372533pt;}
.ye9{bottom:513.746400pt;}
.y188{bottom:516.707067pt;}
.y7c{bottom:516.751400pt;}
.y163{bottom:517.683867pt;}
.y1b0{bottom:517.945867pt;}
.y10b{bottom:520.413067pt;}
.y2f{bottom:521.192800pt;}
.y56{bottom:522.410200pt;}
.y15{bottom:522.743733pt;}
.y9e{bottom:527.904933pt;}
.y11d{bottom:534.163200pt;}
.yc5{bottom:535.039200pt;}
.ye8{bottom:536.410200pt;}
.y187{bottom:536.739133pt;}
.y162{bottom:537.678200pt;}
.y1af{bottom:537.956333pt;}
.y7b{bottom:539.420933pt;}
.y10a{bottom:543.079733pt;}
.y2e{bottom:543.859467pt;}
.y55{bottom:545.079733pt;}
.y14{bottom:545.401133pt;}
.y9d{bottom:550.171600pt;}
.y1{bottom:551.968267pt;}
.yc4{bottom:557.705867pt;}
.y1ae{bottom:557.950667pt;}
.ye7{bottom:559.079733pt;}
.y7a{bottom:562.087600pt;}
.y109{bottom:565.746400pt;}
.y186{bottom:566.110600pt;}
.y2d{bottom:566.526133pt;}
.y54{bottom:567.746400pt;}
.y13{bottom:568.070667pt;}
.y161{bottom:571.856667pt;}
.ye6{bottom:581.746400pt;}
.y9c{bottom:583.853467pt;}
.y79{bottom:584.754267pt;}
.y185{bottom:586.104933pt;}
.y108{bottom:588.413067pt;}
.y140{bottom:588.586267pt;}
.y1ad{bottom:589.022000pt;}
.y2c{bottom:589.192800pt;}
.y53{bottom:590.413067pt;}
.y12{bottom:590.740200pt;}
.y160{bottom:591.858400pt;}
.yc3{bottom:593.735867pt;}
.ye5{bottom:604.413067pt;}
.y184{bottom:606.099267pt;}
.y9b{bottom:606.520133pt;}
.y78{bottom:607.420933pt;}
.y1ac{bottom:609.033333pt;}
.y107{bottom:611.079733pt;}
.y13f{bottom:611.252933pt;}
.y15f{bottom:611.852733pt;}
.yc2{bottom:616.402533pt;}
.y2b{bottom:617.040000pt;}
.y183{bottom:626.093600pt;}
.y52{bottom:626.100467pt;}
.ye4{bottom:627.079733pt;}
.y1ab{bottom:629.027667pt;}
.y9a{bottom:629.186800pt;}
.y11{bottom:633.278667pt;}
.y106{bottom:633.743533pt;}
.y13e{bottom:633.919600pt;}
.yc1{bottom:639.069200pt;}
.y77{bottom:642.478467pt;}
.y15e{bottom:645.557467pt;}
.y51{bottom:648.770000pt;}
.y1aa{bottom:649.022000pt;}
.y5{bottom:650.929333pt;}
.y99{bottom:651.853467pt;}
.ye3{bottom:655.706533pt;}
.y10{bottom:655.948200pt;}
.y105{bottom:656.413067pt;}
.y182{bottom:656.565800pt;}
.y13d{bottom:656.586267pt;}
.yc0{bottom:661.735867pt;}
.y76{bottom:665.148000pt;}
.y15d{bottom:665.619133pt;}
.y1a9{bottom:669.021600pt;}
.y14d{bottom:669.909200pt;}
.y50{bottom:671.436667pt;}
.y98{bottom:674.520133pt;}
.y181{bottom:676.560133pt;}
.yf{bottom:678.617733pt;}
.y104{bottom:679.079733pt;}
.y13c{bottom:679.252933pt;}
.ybf{bottom:684.402533pt;}
.y1b9{bottom:684.510133pt;}
.y15c{bottom:685.613467pt;}
.y75{bottom:687.814667pt;}
.y14c{bottom:692.575867pt;}
.y4f{bottom:694.103333pt;}
.y180{bottom:696.561600pt;}
.y97{bottom:697.186800pt;}
.y1b8{bottom:700.510133pt;}
.y103{bottom:701.746400pt;}
.y13b{bottom:701.919600pt;}
.y1a8{bottom:703.032867pt;}
.ybe{bottom:707.069200pt;}
.y74{bottom:710.481333pt;}
.ye2{bottom:713.310667pt;}
.y14b{bottom:715.242533pt;}
.y1b7{bottom:716.510133pt;}
.y4e{bottom:716.770000pt;}
.y96{bottom:719.853467pt;}
.y15b{bottom:720.223867pt;}
.ye{bottom:721.142267pt;}
.y1a7{bottom:723.027200pt;}
.y102{bottom:724.413067pt;}
.y13a{bottom:724.586267pt;}
.y17f{bottom:725.710133pt;}
.ybd{bottom:729.735867pt;}
.y1b6{bottom:732.510133pt;}
.y73{bottom:733.148000pt;}
.ye1{bottom:735.977333pt;}
.y14a{bottom:737.909200pt;}
.y4d{bottom:739.436667pt;}
.y15a{bottom:740.218200pt;}
.y95{bottom:742.520133pt;}
.y1a6{bottom:743.028467pt;}
.yd{bottom:743.811800pt;}
.y17e{bottom:745.704467pt;}
.y101{bottom:747.079733pt;}
.ybc{bottom:752.402533pt;}
.y72{bottom:755.808933pt;}
.ye0{bottom:758.644000pt;}
.y159{bottom:760.212533pt;}
.y149{bottom:760.575867pt;}
.y139{bottom:760.806800pt;}
.y4c{bottom:762.097600pt;}
.y17d{bottom:765.698800pt;}
.yc{bottom:766.481333pt;}
.y1a5{bottom:774.838267pt;}
.ybb{bottom:775.069200pt;}
.y100{bottom:775.706533pt;}
.y94{bottom:775.825067pt;}
.y71{bottom:778.478467pt;}
.y158{bottom:780.206867pt;}
.ydf{bottom:781.310667pt;}
.y148{bottom:783.242533pt;}
.y138{bottom:783.473467pt;}
.y4b{bottom:784.767133pt;}
.yb{bottom:789.143200pt;}
.y1a4{bottom:794.838267pt;}
.y17c{bottom:798.302800pt;}
.y93{bottom:798.491733pt;}
.y157{bottom:800.201200pt;}
.y70{bottom:801.148000pt;}
.y1b5{bottom:803.603467pt;}
.yde{bottom:803.977333pt;}
.y147{bottom:805.909067pt;}
.y137{bottom:806.140133pt;}
.y4a{bottom:807.436667pt;}
.yba{bottom:809.943000pt;}
.y1a3{bottom:814.874600pt;}
.y17b{bottom:818.302800pt;}
.y1b4{bottom:819.603467pt;}
.y92{bottom:821.158400pt;}
.y6f{bottom:823.814667pt;}
.ydd{bottom:826.644000pt;}
.y146{bottom:828.575733pt;}
.y136{bottom:828.800933pt;}
.y49{bottom:830.103333pt;}
.yfe{bottom:830.919400pt;}
.ya{bottom:831.291533pt;}
.yb9{bottom:832.612533pt;}
.y156{bottom:835.466467pt;}
.y1b3{bottom:835.603467pt;}
.y17a{bottom:838.336733pt;}
.y91{bottom:843.825067pt;}
.y6e{bottom:846.481333pt;}
.y1a2{bottom:846.684400pt;}
.ydc{bottom:849.310667pt;}
.y145{bottom:851.242400pt;}
.y135{bottom:851.470467pt;}
.y1b2{bottom:851.603467pt;}
.y48{bottom:852.770000pt;}
.yfd{bottom:853.588933pt;}
.y9{bottom:853.961067pt;}
.yb8{bottom:855.279200pt;}
.y155{bottom:855.460800pt;}
.y179{bottom:858.331067pt;}
.y90{bottom:866.491733pt;}
.y1a1{bottom:866.678733pt;}
.y1b1{bottom:867.603467pt;}
.y6d{bottom:869.148000pt;}
.y144{bottom:873.909067pt;}
.y134{bottom:874.140000pt;}
.y47{bottom:875.436667pt;}
.y154{bottom:875.455133pt;}
.yfc{bottom:876.255600pt;}
.y8{bottom:876.630600pt;}
.yb7{bottom:877.945867pt;}
.ydb{bottom:884.990400pt;}
.y1a0{bottom:886.673067pt;}
.y178{bottom:890.140867pt;}
.y6c{bottom:891.814667pt;}
.y8f{bottom:895.118533pt;}
.y143{bottom:896.575733pt;}
.y133{bottom:896.806667pt;}
.y46{bottom:898.103333pt;}
.yfb{bottom:898.922267pt;}
.y7{bottom:899.300133pt;}
.yb6{bottom:900.612533pt;}
.yda{bottom:907.657067pt;}
.y153{bottom:909.717200pt;}
.y177{bottom:910.135200pt;}
.y19f{bottom:918.343533pt;}
.y142{bottom:919.242400pt;}
.y132{bottom:919.473333pt;}
.y6b{bottom:920.441467pt;}
.y45{bottom:920.770000pt;}
.yfa{bottom:921.588933pt;}
.yb5{bottom:923.279200pt;}
.y152{bottom:929.711533pt;}
.y176{bottom:930.129533pt;}
.yd9{bottom:930.323733pt;}
.y19e{bottom:938.337867pt;}
.y6{bottom:941.801600pt;}
.y141{bottom:941.909067pt;}
.y131{bottom:942.140000pt;}
.y44{bottom:943.436667pt;}
.yb4{bottom:945.945867pt;}
.y151{bottom:949.705867pt;}
.y8e{bottom:952.990400pt;}
.yff{bottom:952.990533pt;}
.y19d{bottom:958.332200pt;}
.y175{bottom:960.671400pt;}
.y130{bottom:964.806667pt;}
.yb3{bottom:968.612533pt;}
.y8d{bottom:975.654200pt;}
.y43{bottom:975.657067pt;}
.y6a{bottom:975.657200pt;}
.y19c{bottom:978.326533pt;}
.y150{bottom:980.665733pt;}
.yb2{bottom:991.279200pt;}
.y19b{bottom:998.320867pt;}
.y42{bottom:998.323733pt;}
.y69{bottom:998.323867pt;}
.y14f{bottom:1000.660067pt;}
.yb1{bottom:1019.906000pt;}
.y14e{bottom:1020.654400pt;}
.y41{bottom:1020.990400pt;}
.y68{bottom:1020.990533pt;}
.y20{bottom:1062.169600pt;}
.h1b{height:28.820312pt;}
.h1a{height:29.822917pt;}
.ha{height:40.289333pt;}
.h18{height:41.171875pt;}
.h19{height:42.604167pt;}
.h16{height:42.736406pt;}
.h5{height:43.024609pt;}
.hd{height:43.036076pt;}
.h6{height:43.043809pt;}
.h12{height:43.047543pt;}
.h7{height:43.061676pt;}
.h13{height:43.924896pt;}
.hb{height:43.941333pt;}
.he{height:44.521354pt;}
.h14{height:44.676667pt;}
.hf{height:45.283333pt;}
.h15{height:45.911719pt;}
.h17{height:46.018099pt;}
.h10{height:46.535156pt;}
.hc{height:47.040960pt;}
.h9{height:47.666667pt;}
.h8{height:49.514667pt;}
.h11{height:64.146764pt;}
.h4{height:65.272145pt;}
.h3{height:80.864000pt;}
.h2{height:135.045818pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:30.236267pt;}
.xd{left:36.128533pt;}
.xe{left:39.627200pt;}
.x5{left:48.673867pt;}
.x8{left:58.528200pt;}
.xf{left:60.587600pt;}
.x9{left:62.382200pt;}
.xb{left:69.365867pt;}
.x1{left:71.079867pt;}
.xa{left:73.998867pt;}
.xc{left:91.027533pt;}
.x2{left:142.279867pt;}
.x14{left:144.523067pt;}
.x11{left:150.992133pt;}
.x12{left:152.692933pt;}
.x13{left:176.616400pt;}
.x15{left:186.280267pt;}
.x6{left:194.834533pt;}
.x3{left:243.279867pt;}
.x10{left:514.356000pt;}
.x4{left:528.901867pt;}
}




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