
    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_f1347e3603cf907faac29e92.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.132000;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_e811e1749cefc65042199be5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.146000;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_3c52cd52c8ff43bdeecfb8d3.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.121000;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;}
.mb8{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);}
.m2f{transform:matrix(0.245111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245111,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.245198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245198,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.245339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245339,0.000000,0.000000,0.250000,0,0);}
.mcb{transform:matrix(0.245352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245352,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.245377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245377,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.245539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245539,0.000000,0.000000,0.250000,0,0);}
.md9{transform:matrix(0.245550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245550,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.245673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245673,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.245714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245714,0.000000,0.000000,0.250000,0,0);}
.md4{transform:matrix(0.245791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245791,0.000000,0.000000,0.250000,0,0);}
.md0{transform:matrix(0.245802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245802,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.245841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245841,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.245857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245857,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.245982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245982,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.246006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246006,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.246009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246009,0.000000,0.000000,0.250000,0,0);}
.me0{transform:matrix(0.246047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246047,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(0.246114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246114,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.246186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246186,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);}
.mcd{transform:matrix(0.246416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246416,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.246425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246425,0.000000,0.000000,0.250000,0,0);}
.mc7{transform:matrix(0.246468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246468,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.246484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246484,0.000000,0.000000,0.250000,0,0);}
.me4{transform:matrix(0.246535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246535,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.246536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246536,0.000000,0.000000,0.250000,0,0);}
.m42{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);}
.m3e{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);}
.mbe{transform:matrix(0.246816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246816,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.246848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246848,0.000000,0.000000,0.250000,0,0);}
.me9{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);}
.md8{transform:matrix(0.246952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246952,0.000000,0.000000,0.250000,0,0);}
.md6{transform:matrix(0.246968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246968,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.247111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247111,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.247114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247114,0.000000,0.000000,0.250000,0,0);}
.mdb{transform:matrix(0.247135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247135,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.247177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247177,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.247202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247202,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.247225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247225,0.000000,0.000000,0.250000,0,0);}
.ma7{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);}
.ma3{transform:matrix(0.247384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247384,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.247423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247423,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.247425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247425,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.247427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247427,0.000000,0.000000,0.250000,0,0);}
.md7{transform:matrix(0.247434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247434,0.000000,0.000000,0.250000,0,0);}
.m4a{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);}
.mb{transform:matrix(0.247497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247497,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.247541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247541,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.247564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247564,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.247577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247577,0.000000,0.000000,0.250000,0,0);}
.mce{transform:matrix(0.247593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247593,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.247625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247625,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.247764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247764,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.247770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247770,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.247777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247777,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.247805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247805,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.247818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247818,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.247827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247827,0.000000,0.000000,0.250000,0,0);}
.mde{transform:matrix(0.247972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247972,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.247992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247992,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.248002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248002,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.248064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248064,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.248080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248080,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.248130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248130,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.248139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248139,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.248195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248195,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.248205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248205,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.248241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248241,0.000000,0.000000,0.250000,0,0);}
.mc8{transform:matrix(0.248264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248264,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.248266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248266,0.000000,0.000000,0.250000,0,0);}
.mdf{transform:matrix(0.248282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248282,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.248298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248298,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.248316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248316,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.248339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248339,0.000000,0.000000,0.250000,0,0);}
.md5{transform:matrix(0.248345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248345,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.248369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248369,0.000000,0.000000,0.250000,0,0);}
.m9{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);}
.ma4{transform:matrix(0.248434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248434,0.000000,0.000000,0.250000,0,0);}
.mb0{transform:matrix(0.248495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248495,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.248517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248517,0.000000,0.000000,0.250000,0,0);}
.mcc{transform:matrix(0.248520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248520,0.000000,0.000000,0.250000,0,0);}
.md2{transform:matrix(0.248536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248536,0.000000,0.000000,0.250000,0,0);}
.mdd{transform:matrix(0.248597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248597,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.248623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248623,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.248666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248666,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.248686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248686,0.000000,0.000000,0.250000,0,0);}
.m8f{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);}
.m6a{transform:matrix(0.248709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248709,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.248755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248755,0.000000,0.000000,0.250000,0,0);}
.me5{transform:matrix(0.248795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248795,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.248811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248811,0.000000,0.000000,0.250000,0,0);}
.md1{transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);}
.mbf{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.249048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249048,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.249106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249106,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.249118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249118,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.249164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249164,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.249177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249177,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.249198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249198,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.249241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249241,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249269,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.249380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249380,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.249391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249391,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.249418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249418,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.249455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249455,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.249461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249461,0.000000,0.000000,0.250000,0,0);}
.mb9{transform:matrix(0.249511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249511,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.249558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249558,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.249664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249664,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.mdc{transform:matrix(0.249803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249803,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.249807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249807,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.249823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249823,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.249877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249877,0.000000,0.000000,0.250000,0,0);}
.mc2{transform:matrix(0.249936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249936,0.000000,0.000000,0.250000,0,0);}
.mcf{transform:matrix(0.249939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249939,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.249961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249961,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);}
.m32{transform:matrix(0.250073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250073,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.250180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250180,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.250198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250198,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.250207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250207,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.250209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250209,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.250223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250223,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.250236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250236,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.250241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250241,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.250266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250266,0.000000,0.000000,0.250000,0,0);}
.me2{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);}
.m53{transform:matrix(0.250323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250323,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.250332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250332,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.250389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250389,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.250391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250391,0.000000,0.000000,0.250000,0,0);}
.mc6{transform:matrix(0.250400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250400,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.250445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250445,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.250491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250491,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.250530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250530,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(0.250586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250586,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.250616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250616,0.000000,0.000000,0.250000,0,0);}
.mc1{transform:matrix(0.250668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250668,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.250809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250809,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.250836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250836,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.250868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250868,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.250918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250918,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.250957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250957,0.000000,0.000000,0.250000,0,0);}
.me7{transform:matrix(0.250960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250960,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.250982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250982,0.000000,0.000000,0.250000,0,0);}
.mba{transform:matrix(0.251023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251023,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.251039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251039,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.251056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251056,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.251111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251111,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.251152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251152,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.251159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251159,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.251211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251211,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.251216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251216,0.000000,0.000000,0.250000,0,0);}
.mea{transform:matrix(0.251235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251235,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.251270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251270,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.251314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251314,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.251389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251389,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.251443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251443,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.251445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251445,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.251525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251525,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.251580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251580,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.251586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251586,0.000000,0.000000,0.250000,0,0);}
.mc4{transform:matrix(0.251661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251661,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.251668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251668,0.000000,0.000000,0.250000,0,0);}
.mab{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);}
.m4d{transform:matrix(0.251714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251714,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.251736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251736,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.251739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251739,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.251839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251839,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.251891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251891,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.251925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251925,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.251982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251982,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.251984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251984,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.252018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252018,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.252044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252044,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.252127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252127,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.252200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252200,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.252209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252209,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.252223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252223,0.000000,0.000000,0.250000,0,0);}
.md3{transform:matrix(0.252255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252255,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.252264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252264,0.000000,0.000000,0.250000,0,0);}
.me1{transform:matrix(0.252273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252273,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.252305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252305,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.252355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252355,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.252373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252373,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.252407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252407,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.252486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252486,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.252525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252525,0.000000,0.000000,0.250000,0,0);}
.mc5{transform:matrix(0.252536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252536,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.252561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252561,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.252598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252598,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.252611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252611,0.000000,0.000000,0.250000,0,0);}
.mda{transform:matrix(0.252660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252660,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.252666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252666,0.000000,0.000000,0.250000,0,0);}
.me6{transform:matrix(0.252763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252763,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.252775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252775,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.252780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252780,0.000000,0.000000,0.250000,0,0);}
.mbd{transform:matrix(0.252889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252889,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.252898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252898,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.252952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252952,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.253143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253143,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.253182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253182,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.253325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253325,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.253455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253455,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.253486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253486,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.253680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253680,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.253753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253753,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.253780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253780,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.253792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253792,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.253798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253798,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.253800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253800,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.253873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253873,0.000000,0.000000,0.250000,0,0);}
.me3{transform:matrix(0.253933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253933,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.253964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253964,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.254027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254027,0.000000,0.000000,0.250000,0,0);}
.mc9{transform:matrix(0.254055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254055,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.254077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254077,0.000000,0.000000,0.250000,0,0);}
.mca{transform:matrix(0.254155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254155,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.254348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254348,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.254352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254352,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.254370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254370,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.254531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254531,0.000000,0.000000,0.250000,0,0);}
.mc0{transform:matrix(0.254716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254716,0.000000,0.000000,0.250000,0,0);}
.mc3{transform:matrix(0.254752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254752,0.000000,0.000000,0.250000,0,0);}
.me8{transform:matrix(0.254760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254760,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.254761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254761,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.254791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254791,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.254873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254873,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.254959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254959,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m18{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;}
.ls19{letter-spacing:-0.756000px;}
.ls1d{letter-spacing:-0.702000px;}
.ls2d{letter-spacing:-0.660000px;}
.ls14{letter-spacing:-0.648000px;}
.ls1c{letter-spacing:-0.594000px;}
.ls18{letter-spacing:-0.540000px;}
.ls25{letter-spacing:-0.528000px;}
.ls17{letter-spacing:-0.486000px;}
.ls27{letter-spacing:-0.462000px;}
.ls1b{letter-spacing:-0.432000px;}
.ls26{letter-spacing:-0.396000px;}
.ls16{letter-spacing:-0.378000px;}
.ls24{letter-spacing:-0.330000px;}
.ls15{letter-spacing:-0.324000px;}
.ls2e{letter-spacing:-0.264000px;}
.ls40{letter-spacing:-0.240000px;}
.ls2c{letter-spacing:-0.198000px;}
.ls3f{letter-spacing:-0.180000px;}
.ls1a{letter-spacing:-0.162000px;}
.ls22{letter-spacing:-0.132000px;}
.ls45{letter-spacing:-0.120000px;}
.ls12{letter-spacing:-0.108000px;}
.ls2f{letter-spacing:-0.066000px;}
.ls44{letter-spacing:-0.060000px;}
.ls13{letter-spacing:-0.054000px;}
.ls11{letter-spacing:0.000000px;}
.ls32{letter-spacing:0.033000px;}
.ls7{letter-spacing:0.054000px;}
.ls46{letter-spacing:0.060000px;}
.ls20{letter-spacing:0.066000px;}
.ls3c{letter-spacing:0.099000px;}
.ls43{letter-spacing:0.120000px;}
.ls1e{letter-spacing:0.132000px;}
.ls2a{letter-spacing:0.165000px;}
.ls3e{letter-spacing:0.180000px;}
.ls1f{letter-spacing:0.198000px;}
.lsa{letter-spacing:0.216000px;}
.ls3d{letter-spacing:0.231000px;}
.ls10{letter-spacing:0.240000px;}
.ls29{letter-spacing:0.264000px;}
.lsb{letter-spacing:0.270000px;}
.ls48{letter-spacing:0.300000px;}
.ls28{letter-spacing:0.330000px;}
.ls41{letter-spacing:0.360000px;}
.ls36{letter-spacing:0.363000px;}
.ls2{letter-spacing:0.378000px;}
.ls23{letter-spacing:0.396000px;}
.ls42{letter-spacing:0.420000px;}
.ls35{letter-spacing:0.462000px;}
.ls47{letter-spacing:0.480000px;}
.ls5{letter-spacing:0.486000px;}
.ls34{letter-spacing:0.528000px;}
.ls3{letter-spacing:0.540000px;}
.ls4{letter-spacing:0.594000px;}
.ls6{letter-spacing:0.648000px;}
.ls2b{letter-spacing:0.660000px;}
.ls4a{letter-spacing:0.684000px;}
.ls33{letter-spacing:0.726000px;}
.ls30{letter-spacing:0.792000px;}
.ls0{letter-spacing:0.840000px;}
.ls3a{letter-spacing:0.858000px;}
.ls49{letter-spacing:0.900000px;}
.ls39{letter-spacing:0.924000px;}
.ls37{letter-spacing:0.990000px;}
.ls38{letter-spacing:1.188000px;}
.ls8{letter-spacing:1.242000px;}
.ls9{letter-spacing:1.296000px;}
.ls31{letter-spacing:1.320000px;}
.ls3b{letter-spacing:1.386000px;}
.lse{letter-spacing:3.120000px;}
.lsc{letter-spacing:3.360000px;}
.lsd{letter-spacing:3.840000px;}
.ls21{letter-spacing:6.960000px;}
.lsf{letter-spacing:7.440000px;}
.ls1{letter-spacing:10.260000px;}
.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;}
}
.ws63{word-spacing:-17.280000px;}
.ws58{word-spacing:-16.830000px;}
.ws34{word-spacing:-16.500000px;}
.ws29{word-spacing:-15.000000px;}
.ws1{word-spacing:-13.500000px;}
.ws0{word-spacing:-13.176000px;}
.ws1a{word-spacing:-10.500000px;}
.ws73{word-spacing:-4.980000px;}
.ws17{word-spacing:-3.120000px;}
.ws54{word-spacing:-2.574000px;}
.ws1c{word-spacing:-2.508000px;}
.ws20{word-spacing:-2.442000px;}
.ws3a{word-spacing:-2.376000px;}
.ws69{word-spacing:-2.340000px;}
.ws68{word-spacing:-2.280000px;}
.ws52{word-spacing:-2.244000px;}
.ws6e{word-spacing:-2.220000px;}
.ws5c{word-spacing:-2.178000px;}
.ws8{word-spacing:-2.052000px;}
.wse{word-spacing:-1.998000px;}
.ws25{word-spacing:-1.980000px;}
.ws56{word-spacing:-1.914000px;}
.ws50{word-spacing:-1.848000px;}
.ws2f{word-spacing:-1.782000px;}
.ws23{word-spacing:-1.650000px;}
.ws75{word-spacing:-1.620000px;}
.ws64{word-spacing:-1.386000px;}
.ws37{word-spacing:-1.320000px;}
.ws42{word-spacing:-1.254000px;}
.ws3b{word-spacing:-1.188000px;}
.ws66{word-spacing:-1.122000px;}
.ws5a{word-spacing:-1.056000px;}
.ws4c{word-spacing:-0.924000px;}
.ws6d{word-spacing:-0.900000px;}
.ws67{word-spacing:-0.858000px;}
.ws3{word-spacing:-0.840000px;}
.ws3e{word-spacing:-0.792000px;}
.ws48{word-spacing:-0.726000px;}
.ws5b{word-spacing:-0.660000px;}
.ws3f{word-spacing:-0.594000px;}
.ws55{word-spacing:-0.528000px;}
.ws35{word-spacing:-0.462000px;}
.ws28{word-spacing:-0.396000px;}
.ws72{word-spacing:-0.360000px;}
.ws4f{word-spacing:-0.330000px;}
.ws9{word-spacing:-0.270000px;}
.ws2a{word-spacing:-0.264000px;}
.ws41{word-spacing:-0.198000px;}
.ws77{word-spacing:-0.180000px;}
.ws70{word-spacing:-0.120000px;}
.ws2{word-spacing:0.000000px;}
.ws39{word-spacing:0.066000px;}
.ws4a{word-spacing:0.132000px;}
.ws33{word-spacing:0.198000px;}
.ws6f{word-spacing:0.240000px;}
.ws32{word-spacing:0.264000px;}
.ws78{word-spacing:0.300000px;}
.ws53{word-spacing:0.330000px;}
.ws46{word-spacing:0.396000px;}
.ws30{word-spacing:0.528000px;}
.ws65{word-spacing:0.594000px;}
.ws44{word-spacing:0.660000px;}
.ws59{word-spacing:0.726000px;}
.ws5e{word-spacing:0.858000px;}
.ws47{word-spacing:0.990000px;}
.ws2b{word-spacing:1.056000px;}
.ws1f{word-spacing:1.122000px;}
.ws2d{word-spacing:1.188000px;}
.ws36{word-spacing:1.254000px;}
.ws76{word-spacing:1.260000px;}
.ws14{word-spacing:1.296000px;}
.ws3d{word-spacing:1.320000px;}
.ws3c{word-spacing:1.518000px;}
.ws51{word-spacing:1.584000px;}
.ws21{word-spacing:1.650000px;}
.ws43{word-spacing:1.716000px;}
.ws45{word-spacing:1.782000px;}
.ws2c{word-spacing:1.848000px;}
.ws7{word-spacing:1.944000px;}
.ws27{word-spacing:1.980000px;}
.wsd{word-spacing:1.998000px;}
.ws13{word-spacing:2.052000px;}
.ws2e{word-spacing:2.112000px;}
.ws38{word-spacing:2.178000px;}
.ws6a{word-spacing:2.220000px;}
.ws1b{word-spacing:2.244000px;}
.ws74{word-spacing:2.280000px;}
.ws40{word-spacing:2.310000px;}
.ws4b{word-spacing:2.376000px;}
.ws1d{word-spacing:2.442000px;}
.ws22{word-spacing:2.508000px;}
.ws6b{word-spacing:2.520000px;}
.ws24{word-spacing:2.574000px;}
.ws1e{word-spacing:2.640000px;}
.ws71{word-spacing:2.820000px;}
.ws5{word-spacing:2.862000px;}
.ws4d{word-spacing:2.904000px;}
.ws6c{word-spacing:2.940000px;}
.ws15{word-spacing:3.024000px;}
.ws49{word-spacing:3.036000px;}
.ws18{word-spacing:3.120000px;}
.ws61{word-spacing:3.168000px;}
.ws16{word-spacing:3.186000px;}
.ws60{word-spacing:3.498000px;}
.wsb{word-spacing:3.564000px;}
.ws26{word-spacing:3.696000px;}
.ws79{word-spacing:3.720000px;}
.ws6{word-spacing:4.050000px;}
.ws12{word-spacing:4.158000px;}
.wsa{word-spacing:4.482000px;}
.ws5f{word-spacing:4.620000px;}
.ws31{word-spacing:4.752000px;}
.wsc{word-spacing:4.968000px;}
.ws57{word-spacing:5.082000px;}
.ws5d{word-spacing:5.742000px;}
.ws7a{word-spacing:6.660000px;}
.ws4e{word-spacing:6.732000px;}
.ws62{word-spacing:7.062000px;}
.wsf{word-spacing:9.180000px;}
.ws10{word-spacing:9.612000px;}
.ws4{word-spacing:14.040000px;}
.ws11{word-spacing:15.930000px;}
.ws19{word-spacing:1024.656600px;}
._9{margin-left:-2074.000200px;}
._11{margin-left:-16.931959px;}
._f{margin-left:-14.156913px;}
._c{margin-left:-11.476800px;}
._13{margin-left:-10.440000px;}
._6{margin-left:-8.748000px;}
._10{margin-left:-7.189200px;}
._8{margin-left:-6.172800px;}
._3{margin-left:-4.698000px;}
._1{margin-left:-2.916000px;}
._0{margin-left:-1.260000px;}
._2{width:1.671600px;}
._4{width:3.134400px;}
._b{width:5.323200px;}
._a{width:6.960000px;}
._7{width:13.860000px;}
._12{width:17.160000px;}
._d{width:21.360000px;}
._e{width:26.160000px;}
._5{width:180.277800px;}
.fc1{color:rgb(42,62,146);}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:42.000000px;}
.fs3{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y20{bottom:69.448500px;}
.y78{bottom:70.935000px;}
.y6c{bottom:70.944000px;}
.y48{bottom:70.948500px;}
.y86{bottom:73.948500px;}
.y1b{bottom:85.948500px;}
.y77{bottom:91.939500px;}
.y47{bottom:91.948500px;}
.y6d{bottom:99.078600px;}
.y1a{bottom:102.448500px;}
.y85{bottom:109.948500px;}
.y50{bottom:112.944000px;}
.y46{bottom:112.948500px;}
.y19{bottom:118.948500px;}
.y84{bottom:127.948500px;}
.y76{bottom:133.944000px;}
.y45{bottom:133.948500px;}
.y83{bottom:145.948500px;}
.y1f{bottom:151.948500px;}
.y44{bottom:154.948500px;}
.y72{bottom:159.962250px;}
.y82{bottom:163.948500px;}
.y18{bottom:168.448500px;}
.y59{bottom:175.944000px;}
.y43{bottom:175.948500px;}
.y81{bottom:181.948500px;}
.y71{bottom:182.466750px;}
.y17{bottom:184.948500px;}
.y42{bottom:196.948500px;}
.y80{bottom:199.948500px;}
.y16{bottom:201.448500px;}
.y5c{bottom:217.939500px;}
.y6b{bottom:217.947000px;}
.y15{bottom:217.948500px;}
.y14{bottom:234.448500px;}
.ya3{bottom:235.948500px;}
.y5b{bottom:238.944000px;}
.y41{bottom:238.948500px;}
.y1e{bottom:250.948500px;}
.y13{bottom:250.954500px;}
.ya2{bottom:253.948500px;}
.y58{bottom:259.939500px;}
.y40{bottom:259.948500px;}
.y1d{bottom:267.448500px;}
.y12{bottom:267.451500px;}
.ya1{bottom:271.948500px;}
.y63{bottom:280.939500px;}
.y57{bottom:280.944000px;}
.y3f{bottom:280.948500px;}
.y11{bottom:283.948500px;}
.ya0{bottom:289.948500px;}
.y10{bottom:300.448500px;}
.y75{bottom:301.935000px;}
.y62{bottom:301.944000px;}
.y3e{bottom:301.948500px;}
.y9f{bottom:307.948500px;}
.yf{bottom:316.948500px;}
.y74{bottom:322.939500px;}
.y3d{bottom:322.948500px;}
.y9e{bottom:325.948500px;}
.ye{bottom:333.448500px;}
.y65{bottom:343.944000px;}
.y3c{bottom:343.948500px;}
.yd{bottom:349.948500px;}
.y9d{bottom:361.948500px;}
.y61{bottom:364.944000px;}
.y3b{bottom:364.948500px;}
.yc{bottom:366.448500px;}
.y9c{bottom:379.948500px;}
.yb{bottom:382.948500px;}
.y7f{bottom:385.939500px;}
.y3a{bottom:385.948500px;}
.y9b{bottom:397.948500px;}
.y4f{bottom:406.944000px;}
.y39{bottom:406.948500px;}
.y1c{bottom:414.444000px;}
.ya{bottom:414.453150px;}
.y9a{bottom:415.948500px;}
.y60{bottom:427.944000px;}
.y38{bottom:427.948500px;}
.y99{bottom:433.948500px;}
.y37{bottom:448.948500px;}
.y98{bottom:451.948500px;}
.y7a{bottom:457.410750px;}
.y36{bottom:469.948500px;}
.y9{bottom:473.326650px;}
.y79{bottom:479.915250px;}
.y97{bottom:487.948500px;}
.y8{bottom:489.823650px;}
.y7e{bottom:490.935000px;}
.y35{bottom:490.948500px;}
.y96{bottom:505.948500px;}
.y7d{bottom:511.939500px;}
.y67{bottom:511.942500px;}
.y34{bottom:511.948500px;}
.y95{bottom:523.948500px;}
.y7{bottom:531.061650px;}
.y5f{bottom:532.939500px;}
.y7c{bottom:532.944000px;}
.y56{bottom:532.948500px;}
.y94{bottom:541.948500px;}
.y5e{bottom:553.944000px;}
.y33{bottom:553.948500px;}
.y6{bottom:558.067650px;}
.y93{bottom:559.948500px;}
.y55{bottom:574.944000px;}
.y4e{bottom:574.948500px;}
.y92{bottom:577.948500px;}
.y70{bottom:583.372350px;}
.y5{bottom:585.073650px;}
.y4d{bottom:595.948500px;}
.y6a{bottom:595.954500px;}
.y6f{bottom:605.876850px;}
.y91{bottom:613.948500px;}
.y32{bottom:616.948500px;}
.y69{bottom:616.959000px;}
.y90{bottom:631.948500px;}
.y4c{bottom:637.935000px;}
.y64{bottom:637.939500px;}
.y7b{bottom:637.942500px;}
.y5d{bottom:637.944000px;}
.y31{bottom:637.948500px;}
.y8f{bottom:649.948500px;}
.y54{bottom:658.935000px;}
.y4b{bottom:658.939500px;}
.y5a{bottom:658.944000px;}
.y30{bottom:658.948500px;}
.y68{bottom:658.951500px;}
.ya4{bottom:667.948500px;}
.y4{bottom:675.073650px;}
.y53{bottom:679.939500px;}
.y4a{bottom:679.944000px;}
.y2f{bottom:679.948500px;}
.y8e{bottom:685.948500px;}
.y3{bottom:693.073650px;}
.y52{bottom:700.944000px;}
.y2e{bottom:700.948500px;}
.y8d{bottom:703.948500px;}
.y2d{bottom:721.948500px;}
.y2{bottom:732.073650px;}
.y8c{bottom:739.948500px;}
.y2c{bottom:742.948500px;}
.y1{bottom:750.073650px;}
.y8b{bottom:757.948500px;}
.y2b{bottom:763.948500px;}
.y8a{bottom:775.948500px;}
.y2a{bottom:784.948500px;}
.y89{bottom:793.948500px;}
.y73{bottom:805.939500px;}
.y66{bottom:805.944000px;}
.y29{bottom:805.948500px;}
.y88{bottom:811.948500px;}
.y51{bottom:826.944000px;}
.y49{bottom:826.948500px;}
.y87{bottom:829.948500px;}
.y25{bottom:846.087300px;}
.y28{bottom:847.948500px;}
.y24{bottom:861.087300px;}
.y23{bottom:876.087300px;}
.y27{bottom:883.948500px;}
.y22{bottom:891.087300px;}
.y6e{bottom:894.966750px;}
.y26{bottom:897.448500px;}
.y21{bottom:906.087300px;}
.h7{height:36.246000px;}
.h6{height:41.424000px;}
.h3{height:46.602000px;}
.h5{height:47.358000px;}
.h2{height:51.780000px;}
.hb{height:52.620000px;}
.h9{height:56.958000px;}
.ha{height:57.882000px;}
.h8{height:63.144000px;}
.h4{height:73.668000px;}
.h0{height:969.448500px;}
.h1{height:969.750000px;}
.w0{width:671.811000px;}
.w1{width:672.000000px;}
.x0{left:0.000000px;}
.x1{left:76.500000px;}
.x6{left:99.000000px;}
.xc{left:109.500000px;}
.xd{left:132.000000px;}
.x3{left:177.750000px;}
.x2{left:341.910000px;}
.xb{left:355.500000px;}
.x4{left:559.601400px;}
.xa{left:562.900200px;}
.x5{left:572.500050px;}
.x8{left:588.922650px;}
.x7{left:590.000700px;}
.x9{left:611.427150px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls19{letter-spacing:-0.672000pt;}
.ls1d{letter-spacing:-0.624000pt;}
.ls2d{letter-spacing:-0.586667pt;}
.ls14{letter-spacing:-0.576000pt;}
.ls1c{letter-spacing:-0.528000pt;}
.ls18{letter-spacing:-0.480000pt;}
.ls25{letter-spacing:-0.469333pt;}
.ls17{letter-spacing:-0.432000pt;}
.ls27{letter-spacing:-0.410667pt;}
.ls1b{letter-spacing:-0.384000pt;}
.ls26{letter-spacing:-0.352000pt;}
.ls16{letter-spacing:-0.336000pt;}
.ls24{letter-spacing:-0.293333pt;}
.ls15{letter-spacing:-0.288000pt;}
.ls2e{letter-spacing:-0.234667pt;}
.ls40{letter-spacing:-0.213333pt;}
.ls2c{letter-spacing:-0.176000pt;}
.ls3f{letter-spacing:-0.160000pt;}
.ls1a{letter-spacing:-0.144000pt;}
.ls22{letter-spacing:-0.117333pt;}
.ls45{letter-spacing:-0.106667pt;}
.ls12{letter-spacing:-0.096000pt;}
.ls2f{letter-spacing:-0.058667pt;}
.ls44{letter-spacing:-0.053333pt;}
.ls13{letter-spacing:-0.048000pt;}
.ls11{letter-spacing:0.000000pt;}
.ls32{letter-spacing:0.029333pt;}
.ls7{letter-spacing:0.048000pt;}
.ls46{letter-spacing:0.053333pt;}
.ls20{letter-spacing:0.058667pt;}
.ls3c{letter-spacing:0.088000pt;}
.ls43{letter-spacing:0.106667pt;}
.ls1e{letter-spacing:0.117333pt;}
.ls2a{letter-spacing:0.146667pt;}
.ls3e{letter-spacing:0.160000pt;}
.ls1f{letter-spacing:0.176000pt;}
.lsa{letter-spacing:0.192000pt;}
.ls3d{letter-spacing:0.205333pt;}
.ls10{letter-spacing:0.213333pt;}
.ls29{letter-spacing:0.234667pt;}
.lsb{letter-spacing:0.240000pt;}
.ls48{letter-spacing:0.266667pt;}
.ls28{letter-spacing:0.293333pt;}
.ls41{letter-spacing:0.320000pt;}
.ls36{letter-spacing:0.322667pt;}
.ls2{letter-spacing:0.336000pt;}
.ls23{letter-spacing:0.352000pt;}
.ls42{letter-spacing:0.373333pt;}
.ls35{letter-spacing:0.410667pt;}
.ls47{letter-spacing:0.426667pt;}
.ls5{letter-spacing:0.432000pt;}
.ls34{letter-spacing:0.469333pt;}
.ls3{letter-spacing:0.480000pt;}
.ls4{letter-spacing:0.528000pt;}
.ls6{letter-spacing:0.576000pt;}
.ls2b{letter-spacing:0.586667pt;}
.ls4a{letter-spacing:0.608000pt;}
.ls33{letter-spacing:0.645333pt;}
.ls30{letter-spacing:0.704000pt;}
.ls0{letter-spacing:0.746667pt;}
.ls3a{letter-spacing:0.762667pt;}
.ls49{letter-spacing:0.800000pt;}
.ls39{letter-spacing:0.821333pt;}
.ls37{letter-spacing:0.880000pt;}
.ls38{letter-spacing:1.056000pt;}
.ls8{letter-spacing:1.104000pt;}
.ls9{letter-spacing:1.152000pt;}
.ls31{letter-spacing:1.173333pt;}
.ls3b{letter-spacing:1.232000pt;}
.lse{letter-spacing:2.773333pt;}
.lsc{letter-spacing:2.986667pt;}
.lsd{letter-spacing:3.413333pt;}
.ls21{letter-spacing:6.186667pt;}
.lsf{letter-spacing:6.613333pt;}
.ls1{letter-spacing:9.120000pt;}
.ws63{word-spacing:-15.360000pt;}
.ws58{word-spacing:-14.960000pt;}
.ws34{word-spacing:-14.666667pt;}
.ws29{word-spacing:-13.333333pt;}
.ws1{word-spacing:-12.000000pt;}
.ws0{word-spacing:-11.712000pt;}
.ws1a{word-spacing:-9.333333pt;}
.ws73{word-spacing:-4.426667pt;}
.ws17{word-spacing:-2.773333pt;}
.ws54{word-spacing:-2.288000pt;}
.ws1c{word-spacing:-2.229333pt;}
.ws20{word-spacing:-2.170667pt;}
.ws3a{word-spacing:-2.112000pt;}
.ws69{word-spacing:-2.080000pt;}
.ws68{word-spacing:-2.026667pt;}
.ws52{word-spacing:-1.994667pt;}
.ws6e{word-spacing:-1.973333pt;}
.ws5c{word-spacing:-1.936000pt;}
.ws8{word-spacing:-1.824000pt;}
.wse{word-spacing:-1.776000pt;}
.ws25{word-spacing:-1.760000pt;}
.ws56{word-spacing:-1.701333pt;}
.ws50{word-spacing:-1.642667pt;}
.ws2f{word-spacing:-1.584000pt;}
.ws23{word-spacing:-1.466667pt;}
.ws75{word-spacing:-1.440000pt;}
.ws64{word-spacing:-1.232000pt;}
.ws37{word-spacing:-1.173333pt;}
.ws42{word-spacing:-1.114667pt;}
.ws3b{word-spacing:-1.056000pt;}
.ws66{word-spacing:-0.997333pt;}
.ws5a{word-spacing:-0.938667pt;}
.ws4c{word-spacing:-0.821333pt;}
.ws6d{word-spacing:-0.800000pt;}
.ws67{word-spacing:-0.762667pt;}
.ws3{word-spacing:-0.746667pt;}
.ws3e{word-spacing:-0.704000pt;}
.ws48{word-spacing:-0.645333pt;}
.ws5b{word-spacing:-0.586667pt;}
.ws3f{word-spacing:-0.528000pt;}
.ws55{word-spacing:-0.469333pt;}
.ws35{word-spacing:-0.410667pt;}
.ws28{word-spacing:-0.352000pt;}
.ws72{word-spacing:-0.320000pt;}
.ws4f{word-spacing:-0.293333pt;}
.ws9{word-spacing:-0.240000pt;}
.ws2a{word-spacing:-0.234667pt;}
.ws41{word-spacing:-0.176000pt;}
.ws77{word-spacing:-0.160000pt;}
.ws70{word-spacing:-0.106667pt;}
.ws2{word-spacing:0.000000pt;}
.ws39{word-spacing:0.058667pt;}
.ws4a{word-spacing:0.117333pt;}
.ws33{word-spacing:0.176000pt;}
.ws6f{word-spacing:0.213333pt;}
.ws32{word-spacing:0.234667pt;}
.ws78{word-spacing:0.266667pt;}
.ws53{word-spacing:0.293333pt;}
.ws46{word-spacing:0.352000pt;}
.ws30{word-spacing:0.469333pt;}
.ws65{word-spacing:0.528000pt;}
.ws44{word-spacing:0.586667pt;}
.ws59{word-spacing:0.645333pt;}
.ws5e{word-spacing:0.762667pt;}
.ws47{word-spacing:0.880000pt;}
.ws2b{word-spacing:0.938667pt;}
.ws1f{word-spacing:0.997333pt;}
.ws2d{word-spacing:1.056000pt;}
.ws36{word-spacing:1.114667pt;}
.ws76{word-spacing:1.120000pt;}
.ws14{word-spacing:1.152000pt;}
.ws3d{word-spacing:1.173333pt;}
.ws3c{word-spacing:1.349333pt;}
.ws51{word-spacing:1.408000pt;}
.ws21{word-spacing:1.466667pt;}
.ws43{word-spacing:1.525333pt;}
.ws45{word-spacing:1.584000pt;}
.ws2c{word-spacing:1.642667pt;}
.ws7{word-spacing:1.728000pt;}
.ws27{word-spacing:1.760000pt;}
.wsd{word-spacing:1.776000pt;}
.ws13{word-spacing:1.824000pt;}
.ws2e{word-spacing:1.877333pt;}
.ws38{word-spacing:1.936000pt;}
.ws6a{word-spacing:1.973333pt;}
.ws1b{word-spacing:1.994667pt;}
.ws74{word-spacing:2.026667pt;}
.ws40{word-spacing:2.053333pt;}
.ws4b{word-spacing:2.112000pt;}
.ws1d{word-spacing:2.170667pt;}
.ws22{word-spacing:2.229333pt;}
.ws6b{word-spacing:2.240000pt;}
.ws24{word-spacing:2.288000pt;}
.ws1e{word-spacing:2.346667pt;}
.ws71{word-spacing:2.506667pt;}
.ws5{word-spacing:2.544000pt;}
.ws4d{word-spacing:2.581333pt;}
.ws6c{word-spacing:2.613333pt;}
.ws15{word-spacing:2.688000pt;}
.ws49{word-spacing:2.698667pt;}
.ws18{word-spacing:2.773333pt;}
.ws61{word-spacing:2.816000pt;}
.ws16{word-spacing:2.832000pt;}
.ws60{word-spacing:3.109333pt;}
.wsb{word-spacing:3.168000pt;}
.ws26{word-spacing:3.285333pt;}
.ws79{word-spacing:3.306667pt;}
.ws6{word-spacing:3.600000pt;}
.ws12{word-spacing:3.696000pt;}
.wsa{word-spacing:3.984000pt;}
.ws5f{word-spacing:4.106667pt;}
.ws31{word-spacing:4.224000pt;}
.wsc{word-spacing:4.416000pt;}
.ws57{word-spacing:4.517333pt;}
.ws5d{word-spacing:5.104000pt;}
.ws7a{word-spacing:5.920000pt;}
.ws4e{word-spacing:5.984000pt;}
.ws62{word-spacing:6.277333pt;}
.wsf{word-spacing:8.160000pt;}
.ws10{word-spacing:8.544000pt;}
.ws4{word-spacing:12.480000pt;}
.ws11{word-spacing:14.160000pt;}
.ws19{word-spacing:910.805867pt;}
._9{margin-left:-1843.555733pt;}
._11{margin-left:-15.050631pt;}
._f{margin-left:-12.583923pt;}
._c{margin-left:-10.201600pt;}
._13{margin-left:-9.280000pt;}
._6{margin-left:-7.776000pt;}
._10{margin-left:-6.390400pt;}
._8{margin-left:-5.486933pt;}
._3{margin-left:-4.176000pt;}
._1{margin-left:-2.592000pt;}
._0{margin-left:-1.120000pt;}
._2{width:1.485867pt;}
._4{width:2.786133pt;}
._b{width:4.731733pt;}
._a{width:6.186667pt;}
._7{width:12.320000pt;}
._12{width:15.253333pt;}
._d{width:18.986667pt;}
._e{width:23.253333pt;}
._5{width:160.246933pt;}
.fs4{font-size:37.333333pt;}
.fs3{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:61.732000pt;}
.y78{bottom:63.053333pt;}
.y6c{bottom:63.061333pt;}
.y48{bottom:63.065333pt;}
.y86{bottom:65.732000pt;}
.y1b{bottom:76.398667pt;}
.y77{bottom:81.724000pt;}
.y47{bottom:81.732000pt;}
.y6d{bottom:88.069867pt;}
.y1a{bottom:91.065333pt;}
.y85{bottom:97.732000pt;}
.y50{bottom:100.394667pt;}
.y46{bottom:100.398667pt;}
.y19{bottom:105.732000pt;}
.y84{bottom:113.732000pt;}
.y76{bottom:119.061333pt;}
.y45{bottom:119.065333pt;}
.y83{bottom:129.732000pt;}
.y1f{bottom:135.065333pt;}
.y44{bottom:137.732000pt;}
.y72{bottom:142.188667pt;}
.y82{bottom:145.732000pt;}
.y18{bottom:149.732000pt;}
.y59{bottom:156.394667pt;}
.y43{bottom:156.398667pt;}
.y81{bottom:161.732000pt;}
.y71{bottom:162.192667pt;}
.y17{bottom:164.398667pt;}
.y42{bottom:175.065333pt;}
.y80{bottom:177.732000pt;}
.y16{bottom:179.065333pt;}
.y5c{bottom:193.724000pt;}
.y6b{bottom:193.730667pt;}
.y15{bottom:193.732000pt;}
.y14{bottom:208.398667pt;}
.ya3{bottom:209.732000pt;}
.y5b{bottom:212.394667pt;}
.y41{bottom:212.398667pt;}
.y1e{bottom:223.065333pt;}
.y13{bottom:223.070667pt;}
.ya2{bottom:225.732000pt;}
.y58{bottom:231.057333pt;}
.y40{bottom:231.065333pt;}
.y1d{bottom:237.732000pt;}
.y12{bottom:237.734667pt;}
.ya1{bottom:241.732000pt;}
.y63{bottom:249.724000pt;}
.y57{bottom:249.728000pt;}
.y3f{bottom:249.732000pt;}
.y11{bottom:252.398667pt;}
.ya0{bottom:257.732000pt;}
.y10{bottom:267.065333pt;}
.y75{bottom:268.386667pt;}
.y62{bottom:268.394667pt;}
.y3e{bottom:268.398667pt;}
.y9f{bottom:273.732000pt;}
.yf{bottom:281.732000pt;}
.y74{bottom:287.057333pt;}
.y3d{bottom:287.065333pt;}
.y9e{bottom:289.732000pt;}
.ye{bottom:296.398667pt;}
.y65{bottom:305.728000pt;}
.y3c{bottom:305.732000pt;}
.yd{bottom:311.065333pt;}
.y9d{bottom:321.732000pt;}
.y61{bottom:324.394667pt;}
.y3b{bottom:324.398667pt;}
.yc{bottom:325.732000pt;}
.y9c{bottom:337.732000pt;}
.yb{bottom:340.398667pt;}
.y7f{bottom:343.057333pt;}
.y3a{bottom:343.065333pt;}
.y9b{bottom:353.732000pt;}
.y4f{bottom:361.728000pt;}
.y39{bottom:361.732000pt;}
.y1c{bottom:368.394667pt;}
.ya{bottom:368.402800pt;}
.y9a{bottom:369.732000pt;}
.y60{bottom:380.394667pt;}
.y38{bottom:380.398667pt;}
.y99{bottom:385.732000pt;}
.y37{bottom:399.065333pt;}
.y98{bottom:401.732000pt;}
.y7a{bottom:406.587333pt;}
.y36{bottom:417.732000pt;}
.y9{bottom:420.734800pt;}
.y79{bottom:426.591333pt;}
.y97{bottom:433.732000pt;}
.y8{bottom:435.398800pt;}
.y7e{bottom:436.386667pt;}
.y35{bottom:436.398667pt;}
.y96{bottom:449.732000pt;}
.y7d{bottom:455.057333pt;}
.y67{bottom:455.060000pt;}
.y34{bottom:455.065333pt;}
.y95{bottom:465.732000pt;}
.y7{bottom:472.054800pt;}
.y5f{bottom:473.724000pt;}
.y7c{bottom:473.728000pt;}
.y56{bottom:473.732000pt;}
.y94{bottom:481.732000pt;}
.y5e{bottom:492.394667pt;}
.y33{bottom:492.398667pt;}
.y6{bottom:496.060133pt;}
.y93{bottom:497.732000pt;}
.y55{bottom:511.061333pt;}
.y4e{bottom:511.065333pt;}
.y92{bottom:513.732000pt;}
.y70{bottom:518.553200pt;}
.y5{bottom:520.065467pt;}
.y4d{bottom:529.732000pt;}
.y6a{bottom:529.737333pt;}
.y6f{bottom:538.557200pt;}
.y91{bottom:545.732000pt;}
.y32{bottom:548.398667pt;}
.y69{bottom:548.408000pt;}
.y90{bottom:561.732000pt;}
.y4c{bottom:567.053333pt;}
.y64{bottom:567.057333pt;}
.y7b{bottom:567.060000pt;}
.y5d{bottom:567.061333pt;}
.y31{bottom:567.065333pt;}
.y8f{bottom:577.732000pt;}
.y54{bottom:585.720000pt;}
.y4b{bottom:585.724000pt;}
.y5a{bottom:585.728000pt;}
.y30{bottom:585.732000pt;}
.y68{bottom:585.734667pt;}
.ya4{bottom:593.732000pt;}
.y4{bottom:600.065467pt;}
.y53{bottom:604.390667pt;}
.y4a{bottom:604.394667pt;}
.y2f{bottom:604.398667pt;}
.y8e{bottom:609.732000pt;}
.y3{bottom:616.065467pt;}
.y52{bottom:623.061333pt;}
.y2e{bottom:623.065333pt;}
.y8d{bottom:625.732000pt;}
.y2d{bottom:641.732000pt;}
.y2{bottom:650.732133pt;}
.y8c{bottom:657.732000pt;}
.y2c{bottom:660.398667pt;}
.y1{bottom:666.732133pt;}
.y8b{bottom:673.732000pt;}
.y2b{bottom:679.065333pt;}
.y8a{bottom:689.732000pt;}
.y2a{bottom:697.732000pt;}
.y89{bottom:705.732000pt;}
.y73{bottom:716.390667pt;}
.y66{bottom:716.394667pt;}
.y29{bottom:716.398667pt;}
.y88{bottom:721.732000pt;}
.y51{bottom:735.061333pt;}
.y49{bottom:735.065333pt;}
.y87{bottom:737.732000pt;}
.y25{bottom:752.077600pt;}
.y28{bottom:753.732000pt;}
.y24{bottom:765.410933pt;}
.y23{bottom:778.744267pt;}
.y27{bottom:785.732000pt;}
.y22{bottom:792.077600pt;}
.y6e{bottom:795.526000pt;}
.y26{bottom:797.732000pt;}
.y21{bottom:805.410933pt;}
.h7{height:32.218667pt;}
.h6{height:36.821333pt;}
.h3{height:41.424000pt;}
.h5{height:42.096000pt;}
.h2{height:46.026667pt;}
.hb{height:46.773333pt;}
.h9{height:50.629333pt;}
.ha{height:51.450667pt;}
.h8{height:56.128000pt;}
.h4{height:65.482667pt;}
.h0{height:861.732000pt;}
.h1{height:862.000000pt;}
.w0{width:597.165333pt;}
.w1{width:597.333333pt;}
.x0{left:0.000000pt;}
.x1{left:68.000000pt;}
.x6{left:88.000000pt;}
.xc{left:97.333333pt;}
.xd{left:117.333333pt;}
.x3{left:158.000000pt;}
.x2{left:303.920000pt;}
.xb{left:316.000000pt;}
.x4{left:497.423467pt;}
.xa{left:500.355733pt;}
.x5{left:508.888933pt;}
.x8{left:523.486800pt;}
.x7{left:524.445067pt;}
.x9{left:543.490800pt;}
}




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