
    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_1e1d2feac4e27c372e1755b0.woff')format("woff");}.ff1{font-family:ff1;line-height:1.062000;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_6cfeec2a7a63bb0979b8e06c.woff')format("woff");}.ff2{font-family:ff2;line-height:0.888000;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_129fa36798e31a3edb042ebd.woff')format("woff");}.ff3{font-family:ff3;line-height:0.890000;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_ac07da9a072a1db940a8e59b.woff')format("woff");}.ff4{font-family:ff4;line-height:1.068000;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_6afe4c9eade7107d6aa2cffa.woff')format("woff");}.ff5{font-family:ff5;line-height:1.060000;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_038916bb017733914076550e.woff')format("woff");}.ff6{font-family:ff6;line-height:1.060000;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_d61850b55e84fd54163bbc75.woff')format("woff");}.ff7{font-family:ff7;line-height:0.681000;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_5c406c966478e9d56e1aa7dd.woff')format("woff");}.ff8{font-family:ff8;line-height:1.068000;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_cf616189b1629638aa037aed.woff')format("woff");}.ff9{font-family:ff9;line-height:1.062000;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_7f51da50bb6d341f10b348a0.woff')format("woff");}.ffa{font-family:ffa;line-height:1.098000;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_e60368aa1a7b8bcf35d5a766.woff')format("woff");}.ffb{font-family:ffb;line-height:1.060000;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_f7cb6e3a0f00d6d1539a8553.woff')format("woff");}.ffc{font-family:ffc;line-height:1.098000;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_eaf1b6045be31e2f28607507.woff')format("woff");}.ffd{font-family:ffd;line-height:1.060000;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_1e1d2feac4e27c372e1755b0.woff')format("woff");}.ffe{font-family:ffe;line-height:1.062000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_cf616189b1629638aa037aed.woff')format("woff");}.fff{font-family:fff;line-height:1.062000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_7f51da50bb6d341f10b348a0.woff')format("woff");}.ff10{font-family:ff10;line-height:1.098000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_6d14d4653384c5e413a7c5ac.woff')format("woff");}.ff11{font-family:ff11;line-height:0.886000;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;}
.m3a{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.245080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245080,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.245083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245083,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.245122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245122,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.245222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245222,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.245343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245343,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.245367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245367,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.245465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245465,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.245470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245470,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.245503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245503,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.245620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245620,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.245658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245658,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.245670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245670,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.245688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245688,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.245728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245728,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.245740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245740,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.245745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245745,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.245815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245815,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.245827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245827,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.245972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245972,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.246113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246113,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.246170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246170,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.246275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246275,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.246313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246313,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.246338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246338,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.246588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246588,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.246600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246600,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.246625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246625,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.246720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246720,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.246755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246755,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.246893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246893,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.246915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246915,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.246943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246943,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.246948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246948,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.246990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246990,0.000000,0.000000,0.250000,0,0);}
.m31{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);}
.mf{transform:matrix(0.247055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247055,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.247086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247086,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.247118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247118,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.247168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247168,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.247173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247173,0.000000,0.000000,0.250000,0,0);}
.m2a{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);}
.m4{transform:matrix(0.247345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247345,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.247378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247378,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.247478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247478,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.247605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247605,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.247675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247675,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.247752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247752,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.247863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247863,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.247910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247910,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.248047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248047,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.248090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248090,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.248092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248092,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.248133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248133,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.248155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248155,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.248185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248185,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.248383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248383,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.248397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248397,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.248410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248410,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.248417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248417,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.248420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248420,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.248467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248467,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.248572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248572,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.248582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248582,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.248588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248588,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.248622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248622,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.248655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248655,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.248664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248664,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.248675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248675,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.248702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248702,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.248764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248764,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.248768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248768,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.248918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248918,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.248938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248938,0.000000,0.000000,0.250000,0,0);}
.m26{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);}
.m20{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);}
.m21{transform:matrix(0.248957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248957,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.248983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248983,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.249243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249243,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.249320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249320,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249350,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.249405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249405,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.249622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249622,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.249730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249730,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249780,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.249972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249972,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);}
.m2c{transform:matrix(0.250143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250143,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.250213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250213,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.250345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250345,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.250362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250362,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.250370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250370,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.250371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250371,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.250379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250379,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.250380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250380,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.250502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250502,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.250527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250527,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.250537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250537,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.250563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250563,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.250660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250660,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.250690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250690,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.250700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250700,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m13{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);}
.m52{transform:matrix(0.250785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250785,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.250800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250800,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250872,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.250980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250980,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.251075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251075,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.251163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251163,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.251222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251222,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.251247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251247,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.251308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251308,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.251325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251325,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.251338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251338,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.251360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251360,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.251405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251405,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.251563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251563,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.251617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251617,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.251640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251640,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.251655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251655,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.251704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251704,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.251705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251705,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.251957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251957,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.252053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252053,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.252060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252060,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.252173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252173,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.252325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252325,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.252415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252415,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.252418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252418,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.252573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252573,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.252693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252693,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.252945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252945,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.252962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252962,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.253102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253102,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.253135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253135,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.253172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253172,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.253227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253227,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.253350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253350,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.253412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253412,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.253590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253590,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.253813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253813,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.253870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253870,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.253913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253913,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.253922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253922,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.254050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254050,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.254053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254053,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.m9{transform:matrix(0.254397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254397,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.254408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254408,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.254512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254512,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.254553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254553,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.254632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254632,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.254688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254688,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.254910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254910,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.254947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254947,0.000000,0.000000,0.250000,0,0);}
.m11{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;}
.v1{vertical-align:1.272000px;}
.ls39{letter-spacing:-6.600000px;}
.ls3e{letter-spacing:-3.540000px;}
.ls27{letter-spacing:-3.208738px;}
.ls26{letter-spacing:-2.673948px;}
.ls47{letter-spacing:-2.184000px;}
.ls48{letter-spacing:-2.058000px;}
.ls3a{letter-spacing:-1.800000px;}
.ls45{letter-spacing:-1.638000px;}
.ls4d{letter-spacing:-1.344000px;}
.ls24{letter-spacing:-1.134000px;}
.ls41{letter-spacing:-1.080000px;}
.ls52{letter-spacing:-1.026000px;}
.ls4f{letter-spacing:-0.798000px;}
.ls51{letter-spacing:-0.684000px;}
.ls9{letter-spacing:-0.540000px;}
.ls40{letter-spacing:-0.510000px;}
.ls38{letter-spacing:-0.240000px;}
.ls3d{letter-spacing:-0.060000px;}
.ls23{letter-spacing:-0.054000px;}
.ls3{letter-spacing:0.000000px;}
.ls28{letter-spacing:0.060000px;}
.ls50{letter-spacing:0.114000px;}
.ls33{letter-spacing:0.120000px;}
.ls2b{letter-spacing:0.150000px;}
.ls4e{letter-spacing:0.168000px;}
.ls32{letter-spacing:0.180000px;}
.ls34{letter-spacing:0.210000px;}
.ls31{letter-spacing:0.240000px;}
.ls4a{letter-spacing:0.252000px;}
.ls35{letter-spacing:0.270000px;}
.ls4c{letter-spacing:0.294000px;}
.ls3c{letter-spacing:0.300000px;}
.ls2e{letter-spacing:0.360000px;}
.ls2d{letter-spacing:0.420000px;}
.ls43{letter-spacing:0.450000px;}
.ls44{letter-spacing:0.462000px;}
.ls1{letter-spacing:0.480000px;}
.ls49{letter-spacing:0.504000px;}
.ls3f{letter-spacing:0.510000px;}
.ls2f{letter-spacing:0.540000px;}
.ls2a{letter-spacing:0.600000px;}
.ls3b{letter-spacing:0.648000px;}
.ls37{letter-spacing:0.660000px;}
.ls4b{letter-spacing:0.672000px;}
.ls46{letter-spacing:0.714000px;}
.ls2c{letter-spacing:0.720000px;}
.ls30{letter-spacing:0.780000px;}
.ls7{letter-spacing:0.810000px;}
.ls22{letter-spacing:0.840000px;}
.lsb{letter-spacing:0.900000px;}
.ls0{letter-spacing:0.960000px;}
.ls10{letter-spacing:1.020000px;}
.ls2{letter-spacing:1.080000px;}
.ls11{letter-spacing:1.140000px;}
.ls4{letter-spacing:1.198800px;}
.lsc{letter-spacing:1.200000px;}
.ls1b{letter-spacing:1.260000px;}
.lsd{letter-spacing:1.320000px;}
.ls1c{letter-spacing:1.380000px;}
.ls13{letter-spacing:1.440000px;}
.lsf{letter-spacing:1.500000px;}
.ls20{letter-spacing:1.560000px;}
.ls16{letter-spacing:1.620000px;}
.ls42{letter-spacing:1.650000px;}
.lse{letter-spacing:1.680000px;}
.lsa{letter-spacing:1.740000px;}
.ls8{letter-spacing:1.800000px;}
.ls19{letter-spacing:1.860000px;}
.ls21{letter-spacing:1.890000px;}
.ls17{letter-spacing:1.920000px;}
.ls18{letter-spacing:1.980000px;}
.ls1d{letter-spacing:2.040000px;}
.ls14{letter-spacing:2.100000px;}
.ls12{letter-spacing:2.160000px;}
.ls6{letter-spacing:2.250000px;}
.ls1a{letter-spacing:2.340000px;}
.ls15{letter-spacing:2.400000px;}
.ls1e{letter-spacing:2.460000px;}
.ls36{letter-spacing:2.520000px;}
.ls1f{letter-spacing:2.550000px;}
.ls25{letter-spacing:2.760000px;}
.ls29{letter-spacing:2.820000px;}
.ls5{letter-spacing:2.941344px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-24.000000px;}
.ws39{word-spacing:-19.440000px;}
.ws38{word-spacing:-18.000000px;}
.ws32{word-spacing:-15.840000px;}
.ws31{word-spacing:-15.540000px;}
.ws35{word-spacing:-15.240000px;}
.ws34{word-spacing:-15.180000px;}
.ws30{word-spacing:-15.120000px;}
.ws33{word-spacing:-15.060000px;}
.ws3b{word-spacing:-15.000000px;}
.ws3a{word-spacing:-14.940000px;}
.ws2f{word-spacing:-14.760000px;}
.ws3{word-spacing:-14.580000px;}
.ws5c{word-spacing:-13.770000px;}
.ws36{word-spacing:-13.200000px;}
.ws2d{word-spacing:-12.960000px;}
.ws5e{word-spacing:-12.750000px;}
.ws2e{word-spacing:-12.480000px;}
.ws3c{word-spacing:-11.460000px;}
.ws61{word-spacing:-11.214000px;}
.ws63{word-spacing:-10.752000px;}
.ws37{word-spacing:-9.648000px;}
.ws64{word-spacing:-9.156000px;}
.ws62{word-spacing:-8.316000px;}
.ws5{word-spacing:-2.941344px;}
.ws41{word-spacing:-2.340000px;}
.wsf{word-spacing:-2.280000px;}
.ws1b{word-spacing:-2.220000px;}
.ws13{word-spacing:-1.920000px;}
.ws4a{word-spacing:-1.860000px;}
.ws7{word-spacing:-1.800000px;}
.ws7d{word-spacing:-1.764000px;}
.ws22{word-spacing:-1.620000px;}
.ws74{word-spacing:-1.596000px;}
.ws2c{word-spacing:-1.560000px;}
.ws7b{word-spacing:-1.554000px;}
.ws15{word-spacing:-1.500000px;}
.ws4e{word-spacing:-1.320000px;}
.ws8{word-spacing:-1.080000px;}
.ws5f{word-spacing:-1.020000px;}
.ws1{word-spacing:-1.008000px;}
.ws18{word-spacing:-0.960000px;}
.ws25{word-spacing:-0.780000px;}
.ws3d{word-spacing:-0.720000px;}
.ws78{word-spacing:-0.714000px;}
.ws7e{word-spacing:-0.672000px;}
.ws1a{word-spacing:-0.660000px;}
.ws53{word-spacing:-0.540000px;}
.ws2{word-spacing:-0.528000px;}
.ws1f{word-spacing:-0.360000px;}
.ws70{word-spacing:-0.336000px;}
.ws7a{word-spacing:-0.252000px;}
.ws3e{word-spacing:-0.240000px;}
.ws73{word-spacing:-0.210000px;}
.ws26{word-spacing:-0.180000px;}
.ws60{word-spacing:-0.153000px;}
.ws29{word-spacing:-0.120000px;}
.ws4{word-spacing:0.000000px;}
.ws54{word-spacing:0.060000px;}
.ws79{word-spacing:0.210000px;}
.ws4f{word-spacing:0.360000px;}
.ws71{word-spacing:0.420000px;}
.ws9{word-spacing:0.540000px;}
.ws6b{word-spacing:0.600000px;}
.ws81{word-spacing:0.684000px;}
.ws56{word-spacing:0.720000px;}
.ws27{word-spacing:0.780000px;}
.ws7f{word-spacing:0.798000px;}
.ws51{word-spacing:0.840000px;}
.ws24{word-spacing:0.900000px;}
.ws7c{word-spacing:0.924000px;}
.ws80{word-spacing:1.026000px;}
.wsd{word-spacing:1.080000px;}
.ws44{word-spacing:1.200000px;}
.ws1d{word-spacing:1.260000px;}
.ws2a{word-spacing:1.336974px;}
.ws6a{word-spacing:1.380000px;}
.ws6{word-spacing:1.440000px;}
.ws10{word-spacing:1.500000px;}
.ws6e{word-spacing:1.680000px;}
.ws16{word-spacing:1.800000px;}
.ws2b{word-spacing:1.871764px;}
.ws69{word-spacing:1.920000px;}
.ws72{word-spacing:1.974000px;}
.ws1e{word-spacing:2.040000px;}
.ws6f{word-spacing:2.058000px;}
.ws77{word-spacing:2.310000px;}
.ws76{word-spacing:2.352000px;}
.ws11{word-spacing:2.400000px;}
.ws50{word-spacing:2.460000px;}
.ws75{word-spacing:2.478000px;}
.ws6d{word-spacing:2.604000px;}
.ws1c{word-spacing:2.640000px;}
.ws28{word-spacing:2.940000px;}
.ws21{word-spacing:3.060000px;}
.ws47{word-spacing:3.240000px;}
.ws14{word-spacing:3.300000px;}
.ws6c{word-spacing:3.480000px;}
.ws43{word-spacing:3.600000px;}
.wse{word-spacing:3.660000px;}
.ws12{word-spacing:3.720000px;}
.ws19{word-spacing:3.780000px;}
.ws20{word-spacing:3.960000px;}
.ws59{word-spacing:4.020000px;}
.ws4c{word-spacing:4.200000px;}
.ws68{word-spacing:4.320000px;}
.ws23{word-spacing:4.680000px;}
.ws52{word-spacing:4.740000px;}
.ws67{word-spacing:4.920000px;}
.ws66{word-spacing:5.400000px;}
.ws55{word-spacing:5.580000px;}
.ws4d{word-spacing:5.640000px;}
.ws17{word-spacing:5.760000px;}
.ws49{word-spacing:6.000000px;}
.ws40{word-spacing:6.600000px;}
.ws45{word-spacing:7.080000px;}
.ws65{word-spacing:7.260000px;}
.ws4b{word-spacing:7.740000px;}
.ws58{word-spacing:8.040000px;}
.ws57{word-spacing:8.160000px;}
.ws42{word-spacing:8.460000px;}
.ws48{word-spacing:10.020000px;}
.ws46{word-spacing:10.680000px;}
.wsc{word-spacing:11.183400px;}
.ws3f{word-spacing:13.260000px;}
.wsa{word-spacing:83.880000px;}
.ws5a{word-spacing:86.220000px;}
.ws5d{word-spacing:93.483000px;}
.ws5b{word-spacing:289.710000px;}
.wsb{word-spacing:2290.549200px;}
._c{margin-left:-1432.767600px;}
._7{margin-left:-10.568442px;}
._2{margin-left:-7.590800px;}
._9{margin-left:-5.892083px;}
._6{margin-left:-4.584083px;}
._4{margin-left:-3.031717px;}
._1{margin-left:-1.645020px;}
._0{width:1.531800px;}
._3{width:2.941344px;}
._8{width:4.291687px;}
._a{width:5.541026px;}
._5{width:6.678815px;}
._b{width:7.928974px;}
._d{width:68.713020px;}
._11{width:127.494900px;}
._12{width:134.032320px;}
._10{width:135.106920px;}
._e{width:387.612000px;}
._f{width:532.710000px;}
.fc3{color:rgb(179,31,47);}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(116,114,115);}
.fc5{color:rgb(101,98,99);}
.fc4{color:rgb(64,187,98);}
.fc0{color:rgb(79,76,77);}
.fsc{font-size:36.000000px;}
.fse{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fsd{font-size:51.000000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs1{font-size:66.600000px;}
.fs9{font-size:72.000000px;}
.fs8{font-size:81.000000px;}
.fsb{font-size:84.000000px;}
.fs4{font-size:90.000000px;}
.fs2{font-size:96.000000px;}
.fsf{font-size:114.000000px;}
.fsa{font-size:133.697400px;}
.fs3{font-size:147.067200px;}
.fs0{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y164{bottom:55.032150px;}
.y55{bottom:66.330750px;}
.yae{bottom:66.330900px;}
.yf{bottom:66.344250px;}
.y1f{bottom:66.380250px;}
.y2f{bottom:66.434250px;}
.y163{bottom:67.033650px;}
.y54{bottom:84.330750px;}
.yad{bottom:84.330900px;}
.ye{bottom:84.339750px;}
.y1e{bottom:84.375750px;}
.y2e{bottom:84.429750px;}
.y162{bottom:85.408650px;}
.y161{bottom:97.408650px;}
.y13e{bottom:99.384300px;}
.y53{bottom:102.330750px;}
.yac{bottom:102.330900px;}
.yd{bottom:102.335250px;}
.y1d{bottom:102.371250px;}
.y2d{bottom:102.425250px;}
.y13a{bottom:114.365550px;}
.y13d{bottom:114.378300px;}
.y160{bottom:115.785150px;}
.yc{bottom:120.330750px;}
.yab{bottom:120.330900px;}
.y1c{bottom:120.366750px;}
.y2c{bottom:120.420750px;}
.y15f{bottom:127.786650px;}
.y139{bottom:129.359550px;}
.y13c{bottom:129.372300px;}
.y52{bottom:138.330750px;}
.yaa{bottom:138.330900px;}
.y2b{bottom:138.416250px;}
.y138{bottom:144.353550px;}
.y13b{bottom:144.366300px;}
.y15e{bottom:146.164650px;}
.y51{bottom:156.330750px;}
.ya9{bottom:156.330900px;}
.y1b{bottom:156.371250px;}
.y2a{bottom:156.411750px;}
.y15d{bottom:158.164650px;}
.y137{bottom:169.904550px;}
.y50{bottom:174.330750px;}
.ya8{bottom:174.330900px;}
.y1a{bottom:174.366750px;}
.y29{bottom:174.407250px;}
.y15c{bottom:176.545500px;}
.y12d{bottom:184.197300px;}
.y130{bottom:184.873050px;}
.y133{bottom:184.885800px;}
.y136{bottom:184.898550px;}
.y4f{bottom:192.330750px;}
.ya7{bottom:192.330900px;}
.y19{bottom:192.362250px;}
.y15b{bottom:194.920500px;}
.y12c{bottom:199.191300px;}
.y12f{bottom:199.867050px;}
.y132{bottom:199.879800px;}
.y135{bottom:199.892550px;}
.y15a{bottom:206.920500px;}
.y4e{bottom:210.330750px;}
.ya6{bottom:210.330900px;}
.y18{bottom:210.357750px;}
.y28{bottom:210.411750px;}
.y12b{bottom:214.185300px;}
.y12e{bottom:214.861050px;}
.y131{bottom:214.873800px;}
.y134{bottom:214.886550px;}
.y159{bottom:225.299850px;}
.y4d{bottom:228.330750px;}
.ya5{bottom:228.330900px;}
.y17{bottom:228.353250px;}
.y27{bottom:228.407250px;}
.y72{bottom:233.741850px;}
.y158{bottom:237.301350px;}
.y126{bottom:240.386550px;}
.y12a{bottom:240.399300px;}
.y4c{bottom:246.330750px;}
.ya4{bottom:246.330900px;}
.y16{bottom:246.348750px;}
.y157{bottom:249.302850px;}
.y71{bottom:251.741850px;}
.y125{bottom:255.380550px;}
.y129{bottom:255.393300px;}
.y4b{bottom:264.330750px;}
.ya3{bottom:264.330900px;}
.y15{bottom:264.344250px;}
.y26{bottom:264.411750px;}
.y156{bottom:267.677850px;}
.y70{bottom:269.741850px;}
.y124{bottom:270.374550px;}
.y128{bottom:270.387300px;}
.y155{bottom:279.679350px;}
.y4a{bottom:282.330750px;}
.ya2{bottom:282.330900px;}
.y14{bottom:282.339750px;}
.y25{bottom:282.407250px;}
.y123{bottom:285.368550px;}
.y127{bottom:285.381300px;}
.y6f{bottom:287.741850px;}
.y154{bottom:298.054350px;}
.y49{bottom:300.330750px;}
.ya1{bottom:300.330900px;}
.y24{bottom:300.402750px;}
.y6e{bottom:305.741850px;}
.y153{bottom:310.054350px;}
.y119{bottom:310.881300px;}
.y48{bottom:318.330750px;}
.ya0{bottom:318.330900px;}
.y13{bottom:318.344250px;}
.y23{bottom:318.398250px;}
.y152{bottom:322.054350px;}
.y6d{bottom:323.741850px;}
.y118{bottom:325.875300px;}
.y11c{bottom:326.551050px;}
.y11f{bottom:326.563800px;}
.y122{bottom:326.576550px;}
.y47{bottom:336.330750px;}
.y9f{bottom:336.330900px;}
.y12{bottom:336.339750px;}
.y22{bottom:336.393750px;}
.y151{bottom:340.435350px;}
.y117{bottom:340.869300px;}
.y11b{bottom:341.545050px;}
.y11e{bottom:341.557800px;}
.y121{bottom:341.570550px;}
.y6c{bottom:341.741850px;}
.y46{bottom:354.330750px;}
.y9e{bottom:354.330900px;}
.y11{bottom:354.335250px;}
.y21{bottom:354.389250px;}
.y116{bottom:355.863300px;}
.y11a{bottom:356.539050px;}
.y11d{bottom:356.551800px;}
.y120{bottom:356.564550px;}
.y150{bottom:358.810350px;}
.y6b{bottom:359.741850px;}
.y14f{bottom:370.810350px;}
.y10{bottom:372.330750px;}
.y9d{bottom:372.330900px;}
.y20{bottom:372.384750px;}
.y6a{bottom:377.741850px;}
.y115{bottom:382.077300px;}
.y14e{bottom:389.198400px;}
.y45{bottom:390.330750px;}
.y9c{bottom:390.330900px;}
.y110{bottom:397.058550px;}
.y114{bottom:397.071300px;}
.y14d{bottom:407.573400px;}
.y44{bottom:408.330750px;}
.y9b{bottom:408.330900px;}
.y3{bottom:410.215350px;}
.y10f{bottom:412.052550px;}
.y113{bottom:412.065300px;}
.y14c{bottom:419.574900px;}
.y43{bottom:426.330750px;}
.y9a{bottom:426.330900px;}
.y10e{bottom:427.046550px;}
.y112{bottom:427.059300px;}
.y14b{bottom:437.949900px;}
.y10d{bottom:442.040550px;}
.y111{bottom:442.053300px;}
.y58{bottom:444.330750px;}
.y99{bottom:444.330900px;}
.y14a{bottom:449.951400px;}
.y42{bottom:462.330750px;}
.y98{bottom:462.330900px;}
.y106{bottom:467.566050px;}
.y109{bottom:467.578800px;}
.y10c{bottom:467.591550px;}
.y149{bottom:468.326400px;}
.y148{bottom:480.327900px;}
.y57{bottom:480.330750px;}
.y97{bottom:480.330900px;}
.y105{bottom:482.560050px;}
.y108{bottom:482.572800px;}
.y10b{bottom:482.585550px;}
.y104{bottom:497.554050px;}
.y107{bottom:497.566800px;}
.y10a{bottom:497.579550px;}
.y56{bottom:498.330750px;}
.y96{bottom:498.330900px;}
.y147{bottom:498.702900px;}
.y41{bottom:516.330750px;}
.y95{bottom:516.330900px;}
.y146{bottom:517.077900px;}
.yfd{bottom:523.079550px;}
.y100{bottom:523.092300px;}
.y103{bottom:523.105050px;}
.y145{bottom:529.079400px;}
.y40{bottom:534.330750px;}
.y94{bottom:534.330900px;}
.yfa{bottom:537.410550px;}
.yfc{bottom:538.073550px;}
.yff{bottom:538.086300px;}
.y102{bottom:538.099050px;}
.y144{bottom:547.454400px;}
.y69{bottom:548.876850px;}
.y3f{bottom:552.330750px;}
.y93{bottom:552.330900px;}
.yf9{bottom:552.404550px;}
.yfb{bottom:553.067550px;}
.yfe{bottom:553.080300px;}
.y101{bottom:553.093050px;}
.y143{bottom:559.455900px;}
.y68{bottom:566.876850px;}
.y3e{bottom:570.330750px;}
.y92{bottom:570.330900px;}
.y142{bottom:571.455900px;}
.yf5{bottom:578.605800px;}
.yf8{bottom:578.618550px;}
.y67{bottom:584.876850px;}
.yb{bottom:588.330750px;}
.y91{bottom:588.330900px;}
.y141{bottom:589.833900px;}
.yf4{bottom:593.599800px;}
.yf7{bottom:593.612550px;}
.y140{bottom:601.833900px;}
.y66{bottom:602.876850px;}
.ya{bottom:606.330750px;}
.y90{bottom:606.330900px;}
.yf3{bottom:608.593800px;}
.yf6{bottom:608.606550px;}
.y65{bottom:620.876850px;}
.y3d{bottom:624.330750px;}
.y8f{bottom:624.330900px;}
.yec{bottom:634.119300px;}
.yef{bottom:634.132050px;}
.yf2{bottom:634.144800px;}
.y64{bottom:638.876850px;}
.y3c{bottom:642.330750px;}
.y8e{bottom:642.330900px;}
.yeb{bottom:649.113300px;}
.yee{bottom:649.126050px;}
.yf1{bottom:649.138800px;}
.y63{bottom:656.876850px;}
.y3b{bottom:660.330750px;}
.y8d{bottom:660.330900px;}
.yea{bottom:664.107300px;}
.yed{bottom:664.120050px;}
.yf0{bottom:664.132800px;}
.y62{bottom:674.876850px;}
.y3a{bottom:678.330750px;}
.y8c{bottom:678.330900px;}
.y9{bottom:678.573150px;}
.ye9{bottom:689.658300px;}
.y61{bottom:692.876850px;}
.y39{bottom:696.330750px;}
.y8b{bottom:696.330900px;}
.ye5{bottom:703.976550px;}
.ye8{bottom:704.652300px;}
.y8{bottom:708.565650px;}
.y38{bottom:714.330750px;}
.y8a{bottom:714.330900px;}
.ye4{bottom:718.970550px;}
.ye7{bottom:719.646300px;}
.y73{bottom:720.185850px;}
.y37{bottom:732.330750px;}
.y89{bottom:732.330900px;}
.ye3{bottom:733.964550px;}
.ye6{bottom:734.640300px;}
.y7{bottom:738.558150px;}
.y36{bottom:750.330750px;}
.y88{bottom:750.330900px;}
.ydf{bottom:760.165800px;}
.ye2{bottom:760.178550px;}
.y35{bottom:768.330750px;}
.y87{bottom:768.330900px;}
.y6{bottom:768.550650px;}
.yde{bottom:775.159800px;}
.ye1{bottom:775.172550px;}
.y34{bottom:786.330750px;}
.y86{bottom:786.330900px;}
.ydd{bottom:790.153800px;}
.ye0{bottom:790.166550px;}
.y33{bottom:804.330750px;}
.y85{bottom:804.330900px;}
.yd9{bottom:815.692050px;}
.ydc{bottom:815.704800px;}
.y32{bottom:822.330750px;}
.y84{bottom:822.330900px;}
.yd8{bottom:830.686050px;}
.ydb{bottom:830.698800px;}
.y83{bottom:840.330900px;}
.yd7{bottom:845.680050px;}
.yda{bottom:845.692800px;}
.y82{bottom:858.330900px;}
.yb7{bottom:866.715900px;}
.y5{bottom:867.924421px;}
.yd3{bottom:871.218300px;}
.yd6{bottom:871.231050px;}
.y81{bottom:876.330900px;}
.yb6{bottom:884.715900px;}
.yd2{bottom:886.212300px;}
.yd5{bottom:886.225050px;}
.y80{bottom:894.330900px;}
.yd1{bottom:901.206300px;}
.yd4{bottom:901.219050px;}
.yb5{bottom:902.715900px;}
.y4{bottom:908.037000px;}
.y7f{bottom:912.330900px;}
.yb4{bottom:920.715900px;}
.y5f{bottom:921.147300px;}
.ycd{bottom:926.744550px;}
.yd0{bottom:926.757300px;}
.y7e{bottom:930.330900px;}
.yb3{bottom:938.715900px;}
.ycc{bottom:941.738550px;}
.ycf{bottom:941.751300px;}
.y5e{bottom:948.153300px;}
.y7d{bottom:948.330900px;}
.yb2{bottom:956.715900px;}
.ycb{bottom:956.732550px;}
.yce{bottom:956.745300px;}
.y7c{bottom:966.330900px;}
.yb1{bottom:974.715900px;}
.y5d{bottom:981.144300px;}
.yc4{bottom:982.258050px;}
.yc7{bottom:982.270800px;}
.yca{bottom:982.283550px;}
.y7b{bottom:984.330900px;}
.y169{bottom:989.313000px;}
.yb0{bottom:992.715900px;}
.yc3{bottom:997.252050px;}
.yc6{bottom:997.264800px;}
.yc9{bottom:997.277550px;}
.y7a{bottom:1002.330900px;}
.y5c{bottom:1011.153300px;}
.yc2{bottom:1012.246050px;}
.yc5{bottom:1012.258800px;}
.yc8{bottom:1012.271550px;}
.yb8{bottom:1020.020250px;}
.y79{bottom:1020.330900px;}
.y2{bottom:1021.381500px;}
.y168{bottom:1023.826500px;}
.ybe{bottom:1037.784300px;}
.yc1{bottom:1037.797050px;}
.y78{bottom:1038.330900px;}
.y5b{bottom:1041.162300px;}
.ybb{bottom:1052.115300px;}
.ybd{bottom:1052.778300px;}
.yc0{bottom:1052.791050px;}
.y77{bottom:1056.330900px;}
.y167{bottom:1058.340000px;}
.yba{bottom:1067.109300px;}
.ybc{bottom:1067.772300px;}
.ybf{bottom:1067.785050px;}
.y76{bottom:1074.330900px;}
.y5a{bottom:1084.259865px;}
.yb9{bottom:1092.079800px;}
.y75{bottom:1092.330900px;}
.y166{bottom:1092.853500px;}
.yaf{bottom:1110.330900px;}
.y59{bottom:1121.026650px;}
.y165{bottom:1127.367000px;}
.y74{bottom:1128.330900px;}
.y13f{bottom:1128.781800px;}
.y1{bottom:1199.642850px;}
.y30{bottom:1214.502000px;}
.y60{bottom:1214.517000px;}
.y31{bottom:1214.820000px;}
.h17{height:30.816000px;}
.h1b{height:35.658000px;}
.ha{height:37.098000px;}
.h9{height:41.088000px;}
.h8{height:41.568000px;}
.h19{height:43.656000px;}
.h18{height:44.421000px;}
.hb{height:45.846000px;}
.h1a{height:46.224000px;}
.he{height:46.386000px;}
.h15{height:47.034000px;}
.hf{height:50.940000px;}
.h16{height:51.360000px;}
.h14{height:51.540000px;}
.hc{height:51.960000px;}
.h3{height:57.209400px;}
.h7{height:61.830000px;}
.h6{height:62.100000px;}
.h10{height:62.352000px;}
.hd{height:69.579000px;}
.h12{height:71.904000px;}
.h13{height:72.156000px;}
.h1c{height:78.090000px;}
.h4{height:82.464000px;}
.h5{height:101.035166px;}
.h11{height:116.450435px;}
.h2{height:185.544000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:51.456150px;}
.x16{left:59.527500px;}
.x1b{left:72.283500px;}
.x1d{left:76.535400px;}
.x4{left:81.482250px;}
.xf{left:90.029250px;}
.xc{left:93.543300px;}
.x10{left:96.779250px;}
.x9{left:161.574750px;}
.x17{left:216.849750px;}
.x13{left:293.821950px;}
.x14{left:323.149650px;}
.x6{left:324.741150px;}
.x18{left:361.422000px;}
.x1c{left:403.936950px;}
.x2{left:422.029200px;}
.x1e{left:432.283500px;}
.x19{left:505.994250px;}
.xa{left:514.488150px;}
.x15{left:565.938450px;}
.x5{left:597.933000px;}
.x12{left:614.061450px;}
.x11{left:620.787450px;}
.x1a{left:676.079250px;}
.x1{left:680.784450px;}
.xe{left:696.955500px;}
.x7{left:808.372050px;}
.x8{left:815.122050px;}
.xd{left:825.115500px;}
.xb{left:838.051050px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.130667pt;}
.ls39{letter-spacing:-5.866667pt;}
.ls3e{letter-spacing:-3.146667pt;}
.ls27{letter-spacing:-2.852211pt;}
.ls26{letter-spacing:-2.376843pt;}
.ls47{letter-spacing:-1.941333pt;}
.ls48{letter-spacing:-1.829333pt;}
.ls3a{letter-spacing:-1.600000pt;}
.ls45{letter-spacing:-1.456000pt;}
.ls4d{letter-spacing:-1.194667pt;}
.ls24{letter-spacing:-1.008000pt;}
.ls41{letter-spacing:-0.960000pt;}
.ls52{letter-spacing:-0.912000pt;}
.ls4f{letter-spacing:-0.709333pt;}
.ls51{letter-spacing:-0.608000pt;}
.ls9{letter-spacing:-0.480000pt;}
.ls40{letter-spacing:-0.453333pt;}
.ls38{letter-spacing:-0.213333pt;}
.ls3d{letter-spacing:-0.053333pt;}
.ls23{letter-spacing:-0.048000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls28{letter-spacing:0.053333pt;}
.ls50{letter-spacing:0.101333pt;}
.ls33{letter-spacing:0.106667pt;}
.ls2b{letter-spacing:0.133333pt;}
.ls4e{letter-spacing:0.149333pt;}
.ls32{letter-spacing:0.160000pt;}
.ls34{letter-spacing:0.186667pt;}
.ls31{letter-spacing:0.213333pt;}
.ls4a{letter-spacing:0.224000pt;}
.ls35{letter-spacing:0.240000pt;}
.ls4c{letter-spacing:0.261333pt;}
.ls3c{letter-spacing:0.266667pt;}
.ls2e{letter-spacing:0.320000pt;}
.ls2d{letter-spacing:0.373333pt;}
.ls43{letter-spacing:0.400000pt;}
.ls44{letter-spacing:0.410667pt;}
.ls1{letter-spacing:0.426667pt;}
.ls49{letter-spacing:0.448000pt;}
.ls3f{letter-spacing:0.453333pt;}
.ls2f{letter-spacing:0.480000pt;}
.ls2a{letter-spacing:0.533333pt;}
.ls3b{letter-spacing:0.576000pt;}
.ls37{letter-spacing:0.586667pt;}
.ls4b{letter-spacing:0.597333pt;}
.ls46{letter-spacing:0.634667pt;}
.ls2c{letter-spacing:0.640000pt;}
.ls30{letter-spacing:0.693333pt;}
.ls7{letter-spacing:0.720000pt;}
.ls22{letter-spacing:0.746667pt;}
.lsb{letter-spacing:0.800000pt;}
.ls0{letter-spacing:0.853333pt;}
.ls10{letter-spacing:0.906667pt;}
.ls2{letter-spacing:0.960000pt;}
.ls11{letter-spacing:1.013333pt;}
.ls4{letter-spacing:1.065600pt;}
.lsc{letter-spacing:1.066667pt;}
.ls1b{letter-spacing:1.120000pt;}
.lsd{letter-spacing:1.173333pt;}
.ls1c{letter-spacing:1.226667pt;}
.ls13{letter-spacing:1.280000pt;}
.lsf{letter-spacing:1.333333pt;}
.ls20{letter-spacing:1.386667pt;}
.ls16{letter-spacing:1.440000pt;}
.ls42{letter-spacing:1.466667pt;}
.lse{letter-spacing:1.493333pt;}
.lsa{letter-spacing:1.546667pt;}
.ls8{letter-spacing:1.600000pt;}
.ls19{letter-spacing:1.653333pt;}
.ls21{letter-spacing:1.680000pt;}
.ls17{letter-spacing:1.706667pt;}
.ls18{letter-spacing:1.760000pt;}
.ls1d{letter-spacing:1.813333pt;}
.ls14{letter-spacing:1.866667pt;}
.ls12{letter-spacing:1.920000pt;}
.ls6{letter-spacing:2.000000pt;}
.ls1a{letter-spacing:2.080000pt;}
.ls15{letter-spacing:2.133333pt;}
.ls1e{letter-spacing:2.186667pt;}
.ls36{letter-spacing:2.240000pt;}
.ls1f{letter-spacing:2.266667pt;}
.ls25{letter-spacing:2.453333pt;}
.ls29{letter-spacing:2.506667pt;}
.ls5{letter-spacing:2.614528pt;}
.ws0{word-spacing:-21.333333pt;}
.ws39{word-spacing:-17.280000pt;}
.ws38{word-spacing:-16.000000pt;}
.ws32{word-spacing:-14.080000pt;}
.ws31{word-spacing:-13.813333pt;}
.ws35{word-spacing:-13.546667pt;}
.ws34{word-spacing:-13.493333pt;}
.ws30{word-spacing:-13.440000pt;}
.ws33{word-spacing:-13.386667pt;}
.ws3b{word-spacing:-13.333333pt;}
.ws3a{word-spacing:-13.280000pt;}
.ws2f{word-spacing:-13.120000pt;}
.ws3{word-spacing:-12.960000pt;}
.ws5c{word-spacing:-12.240000pt;}
.ws36{word-spacing:-11.733333pt;}
.ws2d{word-spacing:-11.520000pt;}
.ws5e{word-spacing:-11.333333pt;}
.ws2e{word-spacing:-11.093333pt;}
.ws3c{word-spacing:-10.186667pt;}
.ws61{word-spacing:-9.968000pt;}
.ws63{word-spacing:-9.557333pt;}
.ws37{word-spacing:-8.576000pt;}
.ws64{word-spacing:-8.138667pt;}
.ws62{word-spacing:-7.392000pt;}
.ws5{word-spacing:-2.614528pt;}
.ws41{word-spacing:-2.080000pt;}
.wsf{word-spacing:-2.026667pt;}
.ws1b{word-spacing:-1.973333pt;}
.ws13{word-spacing:-1.706667pt;}
.ws4a{word-spacing:-1.653333pt;}
.ws7{word-spacing:-1.600000pt;}
.ws7d{word-spacing:-1.568000pt;}
.ws22{word-spacing:-1.440000pt;}
.ws74{word-spacing:-1.418667pt;}
.ws2c{word-spacing:-1.386667pt;}
.ws7b{word-spacing:-1.381333pt;}
.ws15{word-spacing:-1.333333pt;}
.ws4e{word-spacing:-1.173333pt;}
.ws8{word-spacing:-0.960000pt;}
.ws5f{word-spacing:-0.906667pt;}
.ws1{word-spacing:-0.896000pt;}
.ws18{word-spacing:-0.853333pt;}
.ws25{word-spacing:-0.693333pt;}
.ws3d{word-spacing:-0.640000pt;}
.ws78{word-spacing:-0.634667pt;}
.ws7e{word-spacing:-0.597333pt;}
.ws1a{word-spacing:-0.586667pt;}
.ws53{word-spacing:-0.480000pt;}
.ws2{word-spacing:-0.469333pt;}
.ws1f{word-spacing:-0.320000pt;}
.ws70{word-spacing:-0.298667pt;}
.ws7a{word-spacing:-0.224000pt;}
.ws3e{word-spacing:-0.213333pt;}
.ws73{word-spacing:-0.186667pt;}
.ws26{word-spacing:-0.160000pt;}
.ws60{word-spacing:-0.136000pt;}
.ws29{word-spacing:-0.106667pt;}
.ws4{word-spacing:0.000000pt;}
.ws54{word-spacing:0.053333pt;}
.ws79{word-spacing:0.186667pt;}
.ws4f{word-spacing:0.320000pt;}
.ws71{word-spacing:0.373333pt;}
.ws9{word-spacing:0.480000pt;}
.ws6b{word-spacing:0.533333pt;}
.ws81{word-spacing:0.608000pt;}
.ws56{word-spacing:0.640000pt;}
.ws27{word-spacing:0.693333pt;}
.ws7f{word-spacing:0.709333pt;}
.ws51{word-spacing:0.746667pt;}
.ws24{word-spacing:0.800000pt;}
.ws7c{word-spacing:0.821333pt;}
.ws80{word-spacing:0.912000pt;}
.wsd{word-spacing:0.960000pt;}
.ws44{word-spacing:1.066667pt;}
.ws1d{word-spacing:1.120000pt;}
.ws2a{word-spacing:1.188421pt;}
.ws6a{word-spacing:1.226667pt;}
.ws6{word-spacing:1.280000pt;}
.ws10{word-spacing:1.333333pt;}
.ws6e{word-spacing:1.493333pt;}
.ws16{word-spacing:1.600000pt;}
.ws2b{word-spacing:1.663790pt;}
.ws69{word-spacing:1.706667pt;}
.ws72{word-spacing:1.754667pt;}
.ws1e{word-spacing:1.813333pt;}
.ws6f{word-spacing:1.829333pt;}
.ws77{word-spacing:2.053333pt;}
.ws76{word-spacing:2.090667pt;}
.ws11{word-spacing:2.133333pt;}
.ws50{word-spacing:2.186667pt;}
.ws75{word-spacing:2.202667pt;}
.ws6d{word-spacing:2.314667pt;}
.ws1c{word-spacing:2.346667pt;}
.ws28{word-spacing:2.613333pt;}
.ws21{word-spacing:2.720000pt;}
.ws47{word-spacing:2.880000pt;}
.ws14{word-spacing:2.933333pt;}
.ws6c{word-spacing:3.093333pt;}
.ws43{word-spacing:3.200000pt;}
.wse{word-spacing:3.253333pt;}
.ws12{word-spacing:3.306667pt;}
.ws19{word-spacing:3.360000pt;}
.ws20{word-spacing:3.520000pt;}
.ws59{word-spacing:3.573333pt;}
.ws4c{word-spacing:3.733333pt;}
.ws68{word-spacing:3.840000pt;}
.ws23{word-spacing:4.160000pt;}
.ws52{word-spacing:4.213333pt;}
.ws67{word-spacing:4.373333pt;}
.ws66{word-spacing:4.800000pt;}
.ws55{word-spacing:4.960000pt;}
.ws4d{word-spacing:5.013333pt;}
.ws17{word-spacing:5.120000pt;}
.ws49{word-spacing:5.333333pt;}
.ws40{word-spacing:5.866667pt;}
.ws45{word-spacing:6.293333pt;}
.ws65{word-spacing:6.453333pt;}
.ws4b{word-spacing:6.880000pt;}
.ws58{word-spacing:7.146667pt;}
.ws57{word-spacing:7.253333pt;}
.ws42{word-spacing:7.520000pt;}
.ws48{word-spacing:8.906667pt;}
.ws46{word-spacing:9.493333pt;}
.wsc{word-spacing:9.940800pt;}
.ws3f{word-spacing:11.786667pt;}
.wsa{word-spacing:74.560000pt;}
.ws5a{word-spacing:76.640000pt;}
.ws5d{word-spacing:83.096000pt;}
.ws5b{word-spacing:257.520000pt;}
.wsb{word-spacing:2036.043733pt;}
._c{margin-left:-1273.571200pt;}
._7{margin-left:-9.394171pt;}
._2{margin-left:-6.747378pt;}
._9{margin-left:-5.237407pt;}
._6{margin-left:-4.074740pt;}
._4{margin-left:-2.694860pt;}
._1{margin-left:-1.462240pt;}
._0{width:1.361600pt;}
._3{width:2.614528pt;}
._8{width:3.814832pt;}
._a{width:4.925356pt;}
._5{width:5.936724pt;}
._b{width:7.047977pt;}
._d{width:61.078240pt;}
._11{width:113.328800pt;}
._12{width:119.139840pt;}
._10{width:120.095040pt;}
._e{width:344.544000pt;}
._f{width:473.520000pt;}
.fsc{font-size:32.000000pt;}
.fse{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fsd{font-size:45.333333pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs1{font-size:59.200000pt;}
.fs9{font-size:64.000000pt;}
.fs8{font-size:72.000000pt;}
.fsb{font-size:74.666667pt;}
.fs4{font-size:80.000000pt;}
.fs2{font-size:85.333333pt;}
.fsf{font-size:101.333333pt;}
.fsa{font-size:118.842133pt;}
.fs3{font-size:130.726400pt;}
.fs0{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y164{bottom:48.917467pt;}
.y55{bottom:58.960667pt;}
.yae{bottom:58.960800pt;}
.yf{bottom:58.972667pt;}
.y1f{bottom:59.004667pt;}
.y2f{bottom:59.052667pt;}
.y163{bottom:59.585467pt;}
.y54{bottom:74.960667pt;}
.yad{bottom:74.960800pt;}
.ye{bottom:74.968667pt;}
.y1e{bottom:75.000667pt;}
.y2e{bottom:75.048667pt;}
.y162{bottom:75.918800pt;}
.y161{bottom:86.585467pt;}
.y13e{bottom:88.341600pt;}
.y53{bottom:90.960667pt;}
.yac{bottom:90.960800pt;}
.yd{bottom:90.964667pt;}
.y1d{bottom:90.996667pt;}
.y2d{bottom:91.044667pt;}
.y13a{bottom:101.658267pt;}
.y13d{bottom:101.669600pt;}
.y160{bottom:102.920133pt;}
.yc{bottom:106.960667pt;}
.yab{bottom:106.960800pt;}
.y1c{bottom:106.992667pt;}
.y2c{bottom:107.040667pt;}
.y15f{bottom:113.588133pt;}
.y139{bottom:114.986267pt;}
.y13c{bottom:114.997600pt;}
.y52{bottom:122.960667pt;}
.yaa{bottom:122.960800pt;}
.y2b{bottom:123.036667pt;}
.y138{bottom:128.314267pt;}
.y13b{bottom:128.325600pt;}
.y15e{bottom:129.924133pt;}
.y51{bottom:138.960667pt;}
.ya9{bottom:138.960800pt;}
.y1b{bottom:138.996667pt;}
.y2a{bottom:139.032667pt;}
.y15d{bottom:140.590800pt;}
.y137{bottom:151.026267pt;}
.y50{bottom:154.960667pt;}
.ya8{bottom:154.960800pt;}
.y1a{bottom:154.992667pt;}
.y29{bottom:155.028667pt;}
.y15c{bottom:156.929333pt;}
.y12d{bottom:163.730933pt;}
.y130{bottom:164.331600pt;}
.y133{bottom:164.342933pt;}
.y136{bottom:164.354267pt;}
.y4f{bottom:170.960667pt;}
.ya7{bottom:170.960800pt;}
.y19{bottom:170.988667pt;}
.y15b{bottom:173.262667pt;}
.y12c{bottom:177.058933pt;}
.y12f{bottom:177.659600pt;}
.y132{bottom:177.670933pt;}
.y135{bottom:177.682267pt;}
.y15a{bottom:183.929333pt;}
.y4e{bottom:186.960667pt;}
.ya6{bottom:186.960800pt;}
.y18{bottom:186.984667pt;}
.y28{bottom:187.032667pt;}
.y12b{bottom:190.386933pt;}
.y12e{bottom:190.987600pt;}
.y131{bottom:190.998933pt;}
.y134{bottom:191.010267pt;}
.y159{bottom:200.266533pt;}
.y4d{bottom:202.960667pt;}
.ya5{bottom:202.960800pt;}
.y17{bottom:202.980667pt;}
.y27{bottom:203.028667pt;}
.y72{bottom:207.770533pt;}
.y158{bottom:210.934533pt;}
.y126{bottom:213.676933pt;}
.y12a{bottom:213.688267pt;}
.y4c{bottom:218.960667pt;}
.ya4{bottom:218.960800pt;}
.y16{bottom:218.976667pt;}
.y157{bottom:221.602533pt;}
.y71{bottom:223.770533pt;}
.y125{bottom:227.004933pt;}
.y129{bottom:227.016267pt;}
.y4b{bottom:234.960667pt;}
.ya3{bottom:234.960800pt;}
.y15{bottom:234.972667pt;}
.y26{bottom:235.032667pt;}
.y156{bottom:237.935867pt;}
.y70{bottom:239.770533pt;}
.y124{bottom:240.332933pt;}
.y128{bottom:240.344267pt;}
.y155{bottom:248.603867pt;}
.y4a{bottom:250.960667pt;}
.ya2{bottom:250.960800pt;}
.y14{bottom:250.968667pt;}
.y25{bottom:251.028667pt;}
.y123{bottom:253.660933pt;}
.y127{bottom:253.672267pt;}
.y6f{bottom:255.770533pt;}
.y154{bottom:264.937200pt;}
.y49{bottom:266.960667pt;}
.ya1{bottom:266.960800pt;}
.y24{bottom:267.024667pt;}
.y6e{bottom:271.770533pt;}
.y153{bottom:275.603867pt;}
.y119{bottom:276.338933pt;}
.y48{bottom:282.960667pt;}
.ya0{bottom:282.960800pt;}
.y13{bottom:282.972667pt;}
.y23{bottom:283.020667pt;}
.y152{bottom:286.270533pt;}
.y6d{bottom:287.770533pt;}
.y118{bottom:289.666933pt;}
.y11c{bottom:290.267600pt;}
.y11f{bottom:290.278933pt;}
.y122{bottom:290.290267pt;}
.y47{bottom:298.960667pt;}
.y9f{bottom:298.960800pt;}
.y12{bottom:298.968667pt;}
.y22{bottom:299.016667pt;}
.y151{bottom:302.609200pt;}
.y117{bottom:302.994933pt;}
.y11b{bottom:303.595600pt;}
.y11e{bottom:303.606933pt;}
.y121{bottom:303.618267pt;}
.y6c{bottom:303.770533pt;}
.y46{bottom:314.960667pt;}
.y9e{bottom:314.960800pt;}
.y11{bottom:314.964667pt;}
.y21{bottom:315.012667pt;}
.y116{bottom:316.322933pt;}
.y11a{bottom:316.923600pt;}
.y11d{bottom:316.934933pt;}
.y120{bottom:316.946267pt;}
.y150{bottom:318.942533pt;}
.y6b{bottom:319.770533pt;}
.y14f{bottom:329.609200pt;}
.y10{bottom:330.960667pt;}
.y9d{bottom:330.960800pt;}
.y20{bottom:331.008667pt;}
.y6a{bottom:335.770533pt;}
.y115{bottom:339.624267pt;}
.y14e{bottom:345.954133pt;}
.y45{bottom:346.960667pt;}
.y9c{bottom:346.960800pt;}
.y110{bottom:352.940933pt;}
.y114{bottom:352.952267pt;}
.y14d{bottom:362.287467pt;}
.y44{bottom:362.960667pt;}
.y9b{bottom:362.960800pt;}
.y3{bottom:364.635867pt;}
.y10f{bottom:366.268933pt;}
.y113{bottom:366.280267pt;}
.y14c{bottom:372.955467pt;}
.y43{bottom:378.960667pt;}
.y9a{bottom:378.960800pt;}
.y10e{bottom:379.596933pt;}
.y112{bottom:379.608267pt;}
.y14b{bottom:389.288800pt;}
.y10d{bottom:392.924933pt;}
.y111{bottom:392.936267pt;}
.y58{bottom:394.960667pt;}
.y99{bottom:394.960800pt;}
.y14a{bottom:399.956800pt;}
.y42{bottom:410.960667pt;}
.y98{bottom:410.960800pt;}
.y106{bottom:415.614267pt;}
.y109{bottom:415.625600pt;}
.y10c{bottom:415.636933pt;}
.y149{bottom:416.290133pt;}
.y148{bottom:426.958133pt;}
.y57{bottom:426.960667pt;}
.y97{bottom:426.960800pt;}
.y105{bottom:428.942267pt;}
.y108{bottom:428.953600pt;}
.y10b{bottom:428.964933pt;}
.y104{bottom:442.270267pt;}
.y107{bottom:442.281600pt;}
.y10a{bottom:442.292933pt;}
.y56{bottom:442.960667pt;}
.y96{bottom:442.960800pt;}
.y147{bottom:443.291467pt;}
.y41{bottom:458.960667pt;}
.y95{bottom:458.960800pt;}
.y146{bottom:459.624800pt;}
.yfd{bottom:464.959600pt;}
.y100{bottom:464.970933pt;}
.y103{bottom:464.982267pt;}
.y145{bottom:470.292800pt;}
.y40{bottom:474.960667pt;}
.y94{bottom:474.960800pt;}
.yfa{bottom:477.698267pt;}
.yfc{bottom:478.287600pt;}
.yff{bottom:478.298933pt;}
.y102{bottom:478.310267pt;}
.y144{bottom:486.626133pt;}
.y69{bottom:487.890533pt;}
.y3f{bottom:490.960667pt;}
.y93{bottom:490.960800pt;}
.yf9{bottom:491.026267pt;}
.yfb{bottom:491.615600pt;}
.yfe{bottom:491.626933pt;}
.y101{bottom:491.638267pt;}
.y143{bottom:497.294133pt;}
.y68{bottom:503.890533pt;}
.y3e{bottom:506.960667pt;}
.y92{bottom:506.960800pt;}
.y142{bottom:507.960800pt;}
.yf5{bottom:514.316267pt;}
.yf8{bottom:514.327600pt;}
.y67{bottom:519.890533pt;}
.yb{bottom:522.960667pt;}
.y91{bottom:522.960800pt;}
.y141{bottom:524.296800pt;}
.yf4{bottom:527.644267pt;}
.yf7{bottom:527.655600pt;}
.y140{bottom:534.963467pt;}
.y66{bottom:535.890533pt;}
.ya{bottom:538.960667pt;}
.y90{bottom:538.960800pt;}
.yf3{bottom:540.972267pt;}
.yf6{bottom:540.983600pt;}
.y65{bottom:551.890533pt;}
.y3d{bottom:554.960667pt;}
.y8f{bottom:554.960800pt;}
.yec{bottom:563.661600pt;}
.yef{bottom:563.672933pt;}
.yf2{bottom:563.684267pt;}
.y64{bottom:567.890533pt;}
.y3c{bottom:570.960667pt;}
.y8e{bottom:570.960800pt;}
.yeb{bottom:576.989600pt;}
.yee{bottom:577.000933pt;}
.yf1{bottom:577.012267pt;}
.y63{bottom:583.890533pt;}
.y3b{bottom:586.960667pt;}
.y8d{bottom:586.960800pt;}
.yea{bottom:590.317600pt;}
.yed{bottom:590.328933pt;}
.yf0{bottom:590.340267pt;}
.y62{bottom:599.890533pt;}
.y3a{bottom:602.960667pt;}
.y8c{bottom:602.960800pt;}
.y9{bottom:603.176133pt;}
.ye9{bottom:613.029600pt;}
.y61{bottom:615.890533pt;}
.y39{bottom:618.960667pt;}
.y8b{bottom:618.960800pt;}
.ye5{bottom:625.756933pt;}
.ye8{bottom:626.357600pt;}
.y8{bottom:629.836133pt;}
.y38{bottom:634.960667pt;}
.y8a{bottom:634.960800pt;}
.ye4{bottom:639.084933pt;}
.ye7{bottom:639.685600pt;}
.y73{bottom:640.165200pt;}
.y37{bottom:650.960667pt;}
.y89{bottom:650.960800pt;}
.ye3{bottom:652.412933pt;}
.ye6{bottom:653.013600pt;}
.y7{bottom:656.496133pt;}
.y36{bottom:666.960667pt;}
.y88{bottom:666.960800pt;}
.ydf{bottom:675.702933pt;}
.ye2{bottom:675.714267pt;}
.y35{bottom:682.960667pt;}
.y87{bottom:682.960800pt;}
.y6{bottom:683.156133pt;}
.yde{bottom:689.030933pt;}
.ye1{bottom:689.042267pt;}
.y34{bottom:698.960667pt;}
.y86{bottom:698.960800pt;}
.ydd{bottom:702.358933pt;}
.ye0{bottom:702.370267pt;}
.y33{bottom:714.960667pt;}
.y85{bottom:714.960800pt;}
.yd9{bottom:725.059600pt;}
.ydc{bottom:725.070933pt;}
.y32{bottom:730.960667pt;}
.y84{bottom:730.960800pt;}
.yd8{bottom:738.387600pt;}
.ydb{bottom:738.398933pt;}
.y83{bottom:746.960800pt;}
.yd7{bottom:751.715600pt;}
.yda{bottom:751.726933pt;}
.y82{bottom:762.960800pt;}
.yb7{bottom:770.414133pt;}
.y5{bottom:771.488374pt;}
.yd3{bottom:774.416267pt;}
.yd6{bottom:774.427600pt;}
.y81{bottom:778.960800pt;}
.yb6{bottom:786.414133pt;}
.yd2{bottom:787.744267pt;}
.yd5{bottom:787.755600pt;}
.y80{bottom:794.960800pt;}
.yd1{bottom:801.072267pt;}
.yd4{bottom:801.083600pt;}
.yb5{bottom:802.414133pt;}
.y4{bottom:807.144000pt;}
.y7f{bottom:810.960800pt;}
.yb4{bottom:818.414133pt;}
.y5f{bottom:818.797600pt;}
.ycd{bottom:823.772933pt;}
.yd0{bottom:823.784267pt;}
.y7e{bottom:826.960800pt;}
.yb3{bottom:834.414133pt;}
.ycc{bottom:837.100933pt;}
.ycf{bottom:837.112267pt;}
.y5e{bottom:842.802933pt;}
.y7d{bottom:842.960800pt;}
.yb2{bottom:850.414133pt;}
.ycb{bottom:850.428933pt;}
.yce{bottom:850.440267pt;}
.y7c{bottom:858.960800pt;}
.yb1{bottom:866.414133pt;}
.y5d{bottom:872.128267pt;}
.yc4{bottom:873.118267pt;}
.yc7{bottom:873.129600pt;}
.yca{bottom:873.140933pt;}
.y7b{bottom:874.960800pt;}
.y169{bottom:879.389333pt;}
.yb0{bottom:882.414133pt;}
.yc3{bottom:886.446267pt;}
.yc6{bottom:886.457600pt;}
.yc9{bottom:886.468933pt;}
.y7a{bottom:890.960800pt;}
.y5c{bottom:898.802933pt;}
.yc2{bottom:899.774267pt;}
.yc5{bottom:899.785600pt;}
.yc8{bottom:899.796933pt;}
.yb8{bottom:906.684667pt;}
.y79{bottom:906.960800pt;}
.y2{bottom:907.894667pt;}
.y168{bottom:910.068000pt;}
.ybe{bottom:922.474933pt;}
.yc1{bottom:922.486267pt;}
.y78{bottom:922.960800pt;}
.y5b{bottom:925.477600pt;}
.ybb{bottom:935.213600pt;}
.ybd{bottom:935.802933pt;}
.yc0{bottom:935.814267pt;}
.y77{bottom:938.960800pt;}
.y167{bottom:940.746667pt;}
.yba{bottom:948.541600pt;}
.ybc{bottom:949.130933pt;}
.ybf{bottom:949.142267pt;}
.y76{bottom:954.960800pt;}
.y5a{bottom:963.786547pt;}
.yb9{bottom:970.737600pt;}
.y75{bottom:970.960800pt;}
.y166{bottom:971.425333pt;}
.yaf{bottom:986.960800pt;}
.y59{bottom:996.468133pt;}
.y165{bottom:1002.104000pt;}
.y74{bottom:1002.960800pt;}
.y13f{bottom:1003.361600pt;}
.y1{bottom:1066.349200pt;}
.y30{bottom:1079.557333pt;}
.y60{bottom:1079.570667pt;}
.y31{bottom:1079.840000pt;}
.h17{height:27.392000pt;}
.h1b{height:31.696000pt;}
.ha{height:32.976000pt;}
.h9{height:36.522667pt;}
.h8{height:36.949333pt;}
.h19{height:38.805333pt;}
.h18{height:39.485333pt;}
.hb{height:40.752000pt;}
.h1a{height:41.088000pt;}
.he{height:41.232000pt;}
.h15{height:41.808000pt;}
.hf{height:45.280000pt;}
.h16{height:45.653333pt;}
.h14{height:45.813333pt;}
.hc{height:46.186667pt;}
.h3{height:50.852800pt;}
.h7{height:54.960000pt;}
.h6{height:55.200000pt;}
.h10{height:55.424000pt;}
.hd{height:61.848000pt;}
.h12{height:63.914667pt;}
.h13{height:64.138667pt;}
.h1c{height:69.413333pt;}
.h4{height:73.301333pt;}
.h5{height:89.809037pt;}
.h11{height:103.511498pt;}
.h2{height:164.928000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:45.738800pt;}
.x16{left:52.913333pt;}
.x1b{left:64.252000pt;}
.x1d{left:68.031467pt;}
.x4{left:72.428667pt;}
.xf{left:80.026000pt;}
.xc{left:83.149600pt;}
.x10{left:86.026000pt;}
.x9{left:143.622000pt;}
.x17{left:192.755333pt;}
.x13{left:261.175067pt;}
.x14{left:287.244133pt;}
.x6{left:288.658800pt;}
.x18{left:321.264000pt;}
.x1c{left:359.055067pt;}
.x2{left:375.137067pt;}
.x1e{left:384.252000pt;}
.x19{left:449.772667pt;}
.xa{left:457.322800pt;}
.x15{left:503.056400pt;}
.x5{left:531.496000pt;}
.x12{left:545.832400pt;}
.x11{left:551.811067pt;}
.x1a{left:600.959333pt;}
.x1{left:605.141733pt;}
.xe{left:619.516000pt;}
.x7{left:718.552933pt;}
.x8{left:724.552933pt;}
.xd{left:733.436000pt;}
.xb{left:744.934267pt;}
}




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