
    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_01e88d7322596bf72dfaa340.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_47e98dc48574cb76ead13834.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_cb03399cfbb74f9541621dd6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.126000;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_46e55a99c08eedf91342684b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.137000;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;}
.m67{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.245134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245134,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.245366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245366,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.245373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245373,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.245400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245400,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.245475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245475,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.245736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245736,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.245886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245886,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.246041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246041,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.246043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246043,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.246207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246207,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.246309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246309,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.246334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246334,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.246384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246384,0.000000,0.000000,0.250000,0,0);}
.mc1{transform:matrix(0.246470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246470,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.246498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246498,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.246511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246511,0.000000,0.000000,0.250000,0,0);}
.mc6{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);}
.m19{transform:matrix(0.246666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246666,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.246734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246734,0.000000,0.000000,0.250000,0,0);}
.mcb{transform:matrix(0.246735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246735,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.246777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246777,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.246789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246789,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.246818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246818,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.246857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246857,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.246868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246868,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.246916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246916,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.246977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246977,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.246991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246991,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.247036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247036,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.247123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247123,0.000000,0.000000,0.250000,0,0);}
.mbf{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);}
.m72{transform:matrix(0.247148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247148,0.000000,0.000000,0.250000,0,0);}
.m15{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);}
.mb1{transform:matrix(0.247280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247280,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.247282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247282,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.247319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247319,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.247339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247339,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.247364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247364,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.247407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247407,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.247418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247418,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.247584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247584,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.247598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247598,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.247639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247639,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.247645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247645,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.247732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247732,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.247739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247739,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.247755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247755,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.247768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247768,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.247786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247786,0.000000,0.000000,0.250000,0,0);}
.mc4{transform:matrix(0.247820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247820,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.247857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247857,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.247859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247859,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.247909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247909,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.247952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247952,0.000000,0.000000,0.250000,0,0);}
.mc3{transform:matrix(0.247955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247955,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.247982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247982,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.248086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248086,0.000000,0.000000,0.250000,0,0);}
.m2d{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);}
.m10{transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(0.248200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248200,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.248255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248255,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.248259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248259,0.000000,0.000000,0.250000,0,0);}
.m52{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);}
.mb{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);}
.m75{transform:matrix(0.248300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248300,0.000000,0.000000,0.250000,0,0);}
.m16{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);}
.m8{transform:matrix(0.248361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248361,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.248373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248373,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.248400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248400,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.248411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248411,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.248459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248459,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.248482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248482,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.248489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248489,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.248548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248548,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.248561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248561,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.248573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248573,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.248614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248614,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.248720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248720,0.000000,0.000000,0.250000,0,0);}
.mc5{transform:matrix(0.248740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248740,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.248767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248767,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.248786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248786,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.248789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248789,0.000000,0.000000,0.250000,0,0);}
.mc7{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);}
.m9a{transform:matrix(0.248825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248825,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.248907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248907,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.248941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248941,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.249080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249080,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.249084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249084,0.000000,0.000000,0.250000,0,0);}
.mca{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);}
.m36{transform:matrix(0.249127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249127,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.249227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249227,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.249295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249295,0.000000,0.000000,0.250000,0,0);}
.mb9{transform:matrix(0.249541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249541,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.249559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249559,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249608,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.249661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249661,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.249702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249702,0.000000,0.000000,0.250000,0,0);}
.mc8{transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.249802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249802,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249918,0.000000,0.000000,0.250000,0,0);}
.mbe{transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.249973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249973,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);}
.m69{transform:matrix(0.250036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250036,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.250064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250064,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.250080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250080,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.250109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250109,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.250136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250136,0.000000,0.000000,0.250000,0,0);}
.ma9{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);}
.mb6{transform:matrix(0.250157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250157,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.250161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250161,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.250202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250202,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.250205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250205,0.000000,0.000000,0.250000,0,0);}
.mc9{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.250305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250305,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.250336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250336,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.250459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250459,0.000000,0.000000,0.250000,0,0);}
.mba{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);}
.m58{transform:matrix(0.250725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250725,0.000000,0.000000,0.250000,0,0);}
.m68{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);}
.mab{transform:matrix(0.250934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250934,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.250977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250977,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.251002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251002,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.251011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251011,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.251141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251141,0.000000,0.000000,0.250000,0,0);}
.mc{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);}
.m3b{transform:matrix(0.251164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251164,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.251179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251179,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.251183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251183,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.251194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251194,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.251205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251205,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.251214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251214,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.251293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251293,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.251295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251295,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.251395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251395,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.251409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251409,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.251414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251414,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.251416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251416,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.251418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251418,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.251452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251452,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.251459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251459,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.251511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251511,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.251519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251519,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.251589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251589,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.251631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251631,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.251742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251742,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.251748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251748,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.251766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251766,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.251791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251791,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.251802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251802,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.251807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251807,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.251823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251823,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.251857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251857,0.000000,0.000000,0.250000,0,0);}
.mc2{transform:matrix(0.251897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251897,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.252502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252502,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.252506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252506,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.252511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252511,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.252636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252636,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.252900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252900,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.252958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252958,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.252961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252961,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.253045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253045,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.253091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253091,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.253132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253132,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.253139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253139,0.000000,0.000000,0.250000,0,0);}
.mc0{transform:matrix(0.253285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253285,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.253300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253300,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.253311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253311,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.253332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253332,0.000000,0.000000,0.250000,0,0);}
.mbd{transform:matrix(0.253366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253366,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.253382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253382,0.000000,0.000000,0.250000,0,0);}
.mb0{transform:matrix(0.253400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253400,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.253411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253411,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.253445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253445,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.253523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253523,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.253564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253564,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.253570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253570,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.253630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253630,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.253632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253632,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.253677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253677,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.253839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253839,0.000000,0.000000,0.250000,0,0);}
.mcc{transform:matrix(0.253893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253893,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.253952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253952,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.254118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254118,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.254175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254175,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.254178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254178,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.254230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254230,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.254241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254241,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.254380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254380,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.254384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254384,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.254389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254389,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(0.254425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254425,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.254493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254493,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.254557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254557,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.254592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254592,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.254841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254841,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.254864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254864,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.254930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254930,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);}
.m9{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);}
.v2{vertical-align:-13.800000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.800000px;}
.ls40{letter-spacing:-7.200000px;}
.ls3e{letter-spacing:-1.800000px;}
.ls3f{letter-spacing:-1.440000px;}
.ls3c{letter-spacing:-1.080000px;}
.ls29{letter-spacing:-0.924000px;}
.ls2c{letter-spacing:-0.792000px;}
.ls2a{letter-spacing:-0.726000px;}
.ls3b{letter-spacing:-0.720000px;}
.ls2b{letter-spacing:-0.660000px;}
.ls2d{letter-spacing:-0.594000px;}
.ls3d{letter-spacing:-0.360000px;}
.ls26{letter-spacing:-0.330000px;}
.ls1d{letter-spacing:-0.264000px;}
.ls38{letter-spacing:-0.240000px;}
.ls1b{letter-spacing:-0.198000px;}
.ls37{letter-spacing:-0.180000px;}
.ls31{letter-spacing:-0.162000px;}
.ls1c{letter-spacing:-0.132000px;}
.ls39{letter-spacing:-0.120000px;}
.ls14{letter-spacing:-0.108000px;}
.ls1e{letter-spacing:-0.066000px;}
.ls3a{letter-spacing:-0.060000px;}
.ls13{letter-spacing:-0.054000px;}
.ls12{letter-spacing:0.000000px;}
.ls32{letter-spacing:0.033000px;}
.ls22{letter-spacing:0.054000px;}
.ls21{letter-spacing:0.054045px;}
.ls20{letter-spacing:0.065329px;}
.ls15{letter-spacing:0.066000px;}
.ls2f{letter-spacing:0.081000px;}
.ls5{letter-spacing:0.108000px;}
.ls35{letter-spacing:0.120000px;}
.ls28{letter-spacing:0.132000px;}
.ls24{letter-spacing:0.135000px;}
.ls23{letter-spacing:0.162000px;}
.ls2e{letter-spacing:0.165000px;}
.ls34{letter-spacing:0.180000px;}
.ls16{letter-spacing:0.198000px;}
.ls9{letter-spacing:0.216000px;}
.ls1f{letter-spacing:0.231000px;}
.ls11{letter-spacing:0.240000px;}
.ls3{letter-spacing:0.243000px;}
.ls18{letter-spacing:0.264000px;}
.ls36{letter-spacing:0.300000px;}
.lsc{letter-spacing:0.324000px;}
.ls19{letter-spacing:0.330000px;}
.ls6{letter-spacing:0.378000px;}
.ls30{letter-spacing:0.396000px;}
.ls33{letter-spacing:0.420000px;}
.ls7{letter-spacing:0.432000px;}
.ls17{letter-spacing:0.462000px;}
.lsa{letter-spacing:0.513000px;}
.ls27{letter-spacing:0.528000px;}
.lsb{letter-spacing:0.540000px;}
.ls8{letter-spacing:0.594000px;}
.ls25{letter-spacing:0.660000px;}
.ls0{letter-spacing:0.840000px;}
.ls2{letter-spacing:1.134000px;}
.ls4{letter-spacing:1.674000px;}
.lsf{letter-spacing:3.120000px;}
.lsd{letter-spacing:3.360000px;}
.lse{letter-spacing:3.840000px;}
.ls1a{letter-spacing:6.960000px;}
.ls10{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;}
}
.ws3{word-spacing:-20.160000px;}
.ws6a{word-spacing:-17.280000px;}
.ws60{word-spacing:-16.830000px;}
.ws49{word-spacing:-16.698000px;}
.ws36{word-spacing:-16.500000px;}
.ws48{word-spacing:-16.302000px;}
.ws27{word-spacing:-15.000000px;}
.ws6b{word-spacing:-14.880000px;}
.ws46{word-spacing:-13.662000px;}
.ws47{word-spacing:-13.581000px;}
.ws0{word-spacing:-12.852000px;}
.ws19{word-spacing:-10.500000px;}
.ws15{word-spacing:-3.120000px;}
.ws74{word-spacing:-2.700000px;}
.ws40{word-spacing:-2.574000px;}
.ws1a{word-spacing:-2.508000px;}
.ws1b{word-spacing:-2.442000px;}
.ws3e{word-spacing:-2.376000px;}
.ws69{word-spacing:-2.310000px;}
.ws6c{word-spacing:-2.280000px;}
.ws82{word-spacing:-2.220000px;}
.ws50{word-spacing:-2.112000px;}
.wsa{word-spacing:-2.052000px;}
.ws3b{word-spacing:-2.046000px;}
.ws14{word-spacing:-1.998000px;}
.ws53{word-spacing:-1.914000px;}
.ws63{word-spacing:-1.848000px;}
.ws68{word-spacing:-1.650000px;}
.ws4d{word-spacing:-1.584000px;}
.ws4e{word-spacing:-1.518000px;}
.ws45{word-spacing:-1.320000px;}
.ws2f{word-spacing:-1.254000px;}
.ws51{word-spacing:-1.188000px;}
.ws30{word-spacing:-0.990000px;}
.ws76{word-spacing:-0.900000px;}
.ws65{word-spacing:-0.858000px;}
.ws2{word-spacing:-0.840000px;}
.ws5c{word-spacing:-0.792000px;}
.ws73{word-spacing:-0.780000px;}
.ws71{word-spacing:-0.720000px;}
.ws62{word-spacing:-0.660000px;}
.ws77{word-spacing:-0.600000px;}
.ws43{word-spacing:-0.594000px;}
.ws41{word-spacing:-0.528000px;}
.ws54{word-spacing:-0.462000px;}
.ws4a{word-spacing:-0.432000px;}
.ws83{word-spacing:-0.360000px;}
.ws2e{word-spacing:-0.330000px;}
.ws7a{word-spacing:-0.300000px;}
.ws42{word-spacing:-0.264000px;}
.ws16{word-spacing:-0.240000px;}
.ws35{word-spacing:-0.162000px;}
.ws66{word-spacing:-0.132000px;}
.ws28{word-spacing:-0.066000px;}
.ws1{word-spacing:0.000000px;}
.ws72{word-spacing:0.060000px;}
.ws29{word-spacing:0.066000px;}
.ws70{word-spacing:0.120000px;}
.ws56{word-spacing:0.132000px;}
.ws84{word-spacing:0.180000px;}
.ws5a{word-spacing:0.198000px;}
.ws6f{word-spacing:0.240000px;}
.ws4b{word-spacing:0.330000px;}
.ws67{word-spacing:0.396000px;}
.ws1f{word-spacing:0.462000px;}
.ws75{word-spacing:0.480000px;}
.ws8e{word-spacing:0.540000px;}
.ws2c{word-spacing:0.594000px;}
.ws31{word-spacing:0.660000px;}
.ws25{word-spacing:0.726000px;}
.ws57{word-spacing:0.792000px;}
.wsf{word-spacing:0.810000px;}
.ws37{word-spacing:0.858000px;}
.ws6d{word-spacing:0.900000px;}
.ws5e{word-spacing:0.990000px;}
.ws2b{word-spacing:1.056000px;}
.ws3a{word-spacing:1.122000px;}
.ws85{word-spacing:1.140000px;}
.ws23{word-spacing:1.320000px;}
.ws39{word-spacing:1.350000px;}
.ws21{word-spacing:1.386000px;}
.ws2d{word-spacing:1.518000px;}
.ws22{word-spacing:1.584000px;}
.ws52{word-spacing:1.650000px;}
.ws4f{word-spacing:1.716000px;}
.ws9{word-spacing:1.728000px;}
.ws55{word-spacing:1.848000px;}
.ws26{word-spacing:1.914000px;}
.ws6{word-spacing:1.944000px;}
.ws5d{word-spacing:1.980000px;}
.ws8{word-spacing:1.998000px;}
.ws44{word-spacing:2.046000px;}
.ws34{word-spacing:2.052000px;}
.ws24{word-spacing:2.112000px;}
.ws5f{word-spacing:2.178000px;}
.ws6e{word-spacing:2.220000px;}
.ws3d{word-spacing:2.244000px;}
.ws78{word-spacing:2.280000px;}
.ws59{word-spacing:2.310000px;}
.ws13{word-spacing:2.322000px;}
.ws1d{word-spacing:2.376000px;}
.ws79{word-spacing:2.400000px;}
.ws1e{word-spacing:2.442000px;}
.ws1c{word-spacing:2.508000px;}
.ws3f{word-spacing:2.640000px;}
.ws5b{word-spacing:2.706000px;}
.ws4c{word-spacing:2.772000px;}
.wsb{word-spacing:3.024000px;}
.wsc{word-spacing:3.078000px;}
.ws17{word-spacing:3.120000px;}
.ws10{word-spacing:3.294000px;}
.ws61{word-spacing:3.366000px;}
.ws20{word-spacing:3.498000px;}
.ws32{word-spacing:3.630000px;}
.wse{word-spacing:3.780000px;}
.ws11{word-spacing:3.834000px;}
.ws58{word-spacing:4.092000px;}
.ws12{word-spacing:4.212000px;}
.wsd{word-spacing:4.590000px;}
.ws2a{word-spacing:4.620000px;}
.ws3c{word-spacing:4.752000px;}
.ws38{word-spacing:4.950000px;}
.ws64{word-spacing:5.082000px;}
.ws5{word-spacing:8.640000px;}
.ws7{word-spacing:12.636000px;}
.ws4{word-spacing:14.040000px;}
.ws33{word-spacing:41.910000px;}
.ws7b{word-spacing:91.740000px;}
.ws8a{word-spacing:213.960000px;}
.ws89{word-spacing:221.640000px;}
.ws87{word-spacing:247.140000px;}
.ws8d{word-spacing:253.200000px;}
.ws7e{word-spacing:253.500000px;}
.ws7c{word-spacing:256.440000px;}
.ws8c{word-spacing:259.680000px;}
.ws7d{word-spacing:261.960000px;}
.ws86{word-spacing:265.380000px;}
.ws88{word-spacing:265.620000px;}
.ws7f{word-spacing:276.240000px;}
.ws80{word-spacing:279.180000px;}
.ws8b{word-spacing:283.140000px;}
.ws81{word-spacing:288.060000px;}
.ws18{word-spacing:1054.656600px;}
._e{margin-left:-2074.000200px;}
._11{margin-left:-12.422400px;}
._19{margin-left:-11.310000px;}
._b{margin-left:-8.748000px;}
._d{margin-left:-7.747800px;}
._5{margin-left:-6.720000px;}
._2{margin-left:-5.040000px;}
._7{margin-left:-3.987000px;}
._1{margin-left:-2.916000px;}
._0{margin-left:-1.260000px;}
._6{width:1.032000px;}
._4{width:2.143200px;}
._9{width:4.080000px;}
._10{width:5.323200px;}
._f{width:6.960000px;}
._8{width:10.260000px;}
._16{width:11.448000px;}
._18{width:12.870000px;}
._c{width:14.931000px;}
._3{width:19.320000px;}
._12{width:21.360000px;}
._13{width:26.160000px;}
._15{width:36.768000px;}
._17{width:38.940000px;}
._14{width:41.910000px;}
._3e{width:51.660000px;}
._33{width:85.080000px;}
._40{width:91.080000px;}
._1b{width:96.300000px;}
._44{width:97.860000px;}
._34{width:101.820000px;}
._3d{width:107.820000px;}
._29{width:112.380000px;}
._48{width:114.900000px;}
._2f{width:124.776000px;}
._52{width:127.260000px;}
._3f{width:128.880000px;}
._2e{width:130.860000px;}
._3b{width:133.500000px;}
._4a{width:135.300000px;}
._27{width:138.060000px;}
._20{width:139.320000px;}
._36{width:141.420000px;}
._5a{width:148.776000px;}
._41{width:151.860000px;}
._46{width:159.060000px;}
._32{width:164.340000px;}
._45{width:171.360000px;}
._31{width:172.860000px;}
._23{width:174.720000px;}
._a{width:179.782800px;}
._47{width:182.520000px;}
._1f{width:184.320000px;}
._24{width:186.360000px;}
._2b{width:189.300000px;}
._28{width:191.040000px;}
._2d{width:193.320000px;}
._43{width:195.180000px;}
._39{width:196.896000px;}
._2c{width:198.780000px;}
._2a{width:200.160000px;}
._3a{width:203.040000px;}
._4e{width:205.260000px;}
._30{width:207.516000px;}
._1e{width:209.700000px;}
._25{width:213.660000px;}
._42{width:214.920000px;}
._4f{width:218.880000px;}
._54{width:221.820000px;}
._35{width:223.200000px;}
._1a{width:225.840000px;}
._51{width:229.440000px;}
._26{width:232.260000px;}
._1c{width:234.180000px;}
._59{width:235.500000px;}
._50{width:237.540000px;}
._55{width:239.220000px;}
._22{width:240.600000px;}
._4c{width:241.800000px;}
._49{width:242.820000px;}
._37{width:244.860000px;}
._53{width:248.280000px;}
._4b{width:250.020000px;}
._58{width:251.760000px;}
._38{width:252.840000px;}
._21{width:256.680000px;}
._3c{width:257.760000px;}
._1d{width:260.340000px;}
._56{width:263.940000px;}
._4d{width:273.360000px;}
._57{width:286.920000px;}
.fc2{color:rgb(42,62,146);}
.fc1{color:rgb(57,87,167);}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:42.000000px;}
.fs7{font-size:46.200000px;}
.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;}
.y63{bottom:70.500000px;}
.y53{bottom:70.503000px;}
.y79{bottom:70.944000px;}
.y45{bottom:70.948500px;}
.y5f{bottom:70.951500px;}
.y9b{bottom:76.948500px;}
.y52{bottom:87.000000px;}
.y5e{bottom:87.448500px;}
.y44{bottom:91.948500px;}
.y62{bottom:94.200000px;}
.y9a{bottom:94.948500px;}
.yc0{bottom:102.758700px;}
.y51{bottom:103.500000px;}
.y43{bottom:112.948500px;}
.y50{bottom:120.000000px;}
.ybf{bottom:121.133700px;}
.y99{bottom:130.948500px;}
.y77{bottom:133.939500px;}
.y42{bottom:133.948500px;}
.ybe{bottom:139.508700px;}
.y4f{bottom:139.950000px;}
.y98{bottom:148.948500px;}
.y76{bottom:154.944000px;}
.y41{bottom:154.948500px;}
.ybd{bottom:157.883700px;}
.ye5{bottom:157.948650px;}
.y97{bottom:166.948500px;}
.y17{bottom:172.948500px;}
.y4e{bottom:175.939500px;}
.y40{bottom:175.948500px;}
.ye4{bottom:175.948650px;}
.ybc{bottom:176.258700px;}
.y96{bottom:184.948500px;}
.y1a{bottom:189.448500px;}
.y16{bottom:189.451500px;}
.ybb{bottom:194.633700px;}
.y4d{bottom:196.944000px;}
.y3f{bottom:196.948500px;}
.y95{bottom:202.948500px;}
.y15{bottom:205.948500px;}
.ye3{bottom:207.823650px;}
.yba{bottom:213.008700px;}
.y3e{bottom:217.948500px;}
.y94{bottom:220.948500px;}
.ye2{bottom:226.198650px;}
.yb9{bottom:231.383700px;}
.y14{bottom:238.948500px;}
.ye1{bottom:244.573650px;}
.yb8{bottom:249.758700px;}
.y13{bottom:255.448500px;}
.y93{bottom:256.948500px;}
.y4c{bottom:259.944000px;}
.y3d{bottom:259.948500px;}
.ye0{bottom:262.948650px;}
.yb7{bottom:268.133700px;}
.y12{bottom:271.948500px;}
.y92{bottom:274.948500px;}
.y75{bottom:280.939500px;}
.y3c{bottom:280.948500px;}
.ydf{bottom:281.323650px;}
.yb6{bottom:286.508700px;}
.y11{bottom:288.448500px;}
.y19{bottom:288.451500px;}
.y91{bottom:292.948500px;}
.yde{bottom:299.698650px;}
.y74{bottom:301.944000px;}
.y3b{bottom:301.948500px;}
.yb5{bottom:304.883700px;}
.y10{bottom:304.948500px;}
.y90{bottom:310.948500px;}
.ydd{bottom:318.073650px;}
.yf{bottom:321.448500px;}
.y6c{bottom:322.944000px;}
.y3a{bottom:322.948500px;}
.yb4{bottom:323.258700px;}
.y8f{bottom:328.948500px;}
.ydc{bottom:336.448650px;}
.ye{bottom:337.948500px;}
.yb3{bottom:341.633700px;}
.y4b{bottom:343.944000px;}
.y39{bottom:343.948500px;}
.y8e{bottom:346.948500px;}
.yd{bottom:354.448500px;}
.ydb{bottom:354.823650px;}
.yb2{bottom:360.008700px;}
.y38{bottom:364.948500px;}
.yda{bottom:373.198650px;}
.yb1{bottom:378.383700px;}
.y8d{bottom:382.948500px;}
.y37{bottom:385.948500px;}
.y18{bottom:385.951500px;}
.yc{bottom:385.954650px;}
.yd9{bottom:391.573650px;}
.yb0{bottom:396.758700px;}
.y6b{bottom:397.198500px;}
.y8c{bottom:400.948500px;}
.y36{bottom:406.948500px;}
.yd8{bottom:409.948650px;}
.y6a{bottom:413.698500px;}
.yaf{bottom:415.133700px;}
.y8b{bottom:418.948500px;}
.y5d{bottom:427.944000px;}
.y35{bottom:427.948500px;}
.yd7{bottom:428.323650px;}
.y69{bottom:430.198500px;}
.yae{bottom:433.508700px;}
.y8a{bottom:436.948500px;}
.yb{bottom:443.329650px;}
.y68{bottom:446.698500px;}
.yd6{bottom:446.698650px;}
.y73{bottom:448.935000px;}
.y6f{bottom:448.944000px;}
.y34{bottom:448.948500px;}
.yad{bottom:451.883700px;}
.y89{bottom:454.948500px;}
.ya{bottom:459.826650px;}
.y67{bottom:463.198500px;}
.yd5{bottom:465.073650px;}
.y4a{bottom:469.939500px;}
.y33{bottom:469.948500px;}
.yac{bottom:470.258700px;}
.y88{bottom:472.948500px;}
.y9{bottom:476.323650px;}
.y66{bottom:479.698500px;}
.yd4{bottom:483.448650px;}
.yab{bottom:488.633700px;}
.y49{bottom:490.944000px;}
.y32{bottom:490.948500px;}
.y61{bottom:490.951500px;}
.yd3{bottom:501.823650px;}
.yaa{bottom:507.008700px;}
.y60{bottom:507.448500px;}
.y87{bottom:508.948500px;}
.y7b{bottom:511.939500px;}
.y31{bottom:511.948500px;}
.y8{bottom:517.555650px;}
.yd2{bottom:520.198650px;}
.ya9{bottom:525.383700px;}
.y86{bottom:526.948500px;}
.y78{bottom:532.944000px;}
.y30{bottom:532.948500px;}
.yd1{bottom:538.573650px;}
.ya8{bottom:543.758700px;}
.y7{bottom:544.561650px;}
.y85{bottom:544.948500px;}
.y65{bottom:553.944000px;}
.y2f{bottom:553.948500px;}
.yd0{bottom:556.948650px;}
.ya7{bottom:562.133700px;}
.y84{bottom:562.948500px;}
.y6{bottom:571.567650px;}
.y2e{bottom:574.944000px;}
.y48{bottom:574.948500px;}
.ycf{bottom:575.323650px;}
.ya6{bottom:580.508700px;}
.y83{bottom:580.948500px;}
.yce{bottom:593.698650px;}
.y5c{bottom:595.926000px;}
.y6e{bottom:595.939500px;}
.y2d{bottom:595.948500px;}
.y5{bottom:598.573650px;}
.ya5{bottom:598.883700px;}
.y82{bottom:598.948500px;}
.ycd{bottom:612.073650px;}
.y5b{bottom:616.930500px;}
.y6d{bottom:616.944000px;}
.y2c{bottom:616.948500px;}
.ya4{bottom:621.758700px;}
.ycc{bottom:630.448650px;}
.y81{bottom:634.948500px;}
.y5a{bottom:637.935000px;}
.y2b{bottom:637.948500px;}
.ycb{bottom:648.823650px;}
.ya3{bottom:649.948500px;}
.y80{bottom:652.948500px;}
.y59{bottom:658.939500px;}
.y47{bottom:658.944000px;}
.y2a{bottom:658.948500px;}
.yca{bottom:667.198650px;}
.y7f{bottom:670.948500px;}
.y58{bottom:679.944000px;}
.y29{bottom:679.948500px;}
.yc9{bottom:685.573650px;}
.y4{bottom:688.573650px;}
.y7e{bottom:688.948500px;}
.y72{bottom:700.935000px;}
.y64{bottom:700.944000px;}
.y28{bottom:700.948500px;}
.ya2{bottom:703.948500px;}
.yc8{bottom:703.948650px;}
.y3{bottom:706.573650px;}
.y7d{bottom:706.948500px;}
.y71{bottom:721.939500px;}
.y7a{bottom:721.944000px;}
.y27{bottom:721.948500px;}
.yc7{bottom:722.323650px;}
.y7c{bottom:724.948500px;}
.y2{bottom:732.073650px;}
.ya1{bottom:739.948500px;}
.yc6{bottom:740.698650px;}
.y70{bottom:742.944000px;}
.y26{bottom:742.948500px;}
.y1{bottom:750.073650px;}
.ya0{bottom:757.948500px;}
.yc5{bottom:759.073650px;}
.y57{bottom:763.930500px;}
.y25{bottom:763.948500px;}
.y9f{bottom:775.948500px;}
.yc4{bottom:777.448650px;}
.y56{bottom:784.935000px;}
.y24{bottom:784.948500px;}
.y9e{bottom:793.948500px;}
.yc3{bottom:795.823650px;}
.y55{bottom:805.939500px;}
.y23{bottom:805.948500px;}
.y9d{bottom:811.948500px;}
.yc2{bottom:814.198650px;}
.y54{bottom:826.944000px;}
.y46{bottom:826.948500px;}
.y9c{bottom:829.948500px;}
.yc1{bottom:837.073650px;}
.y1f{bottom:846.087300px;}
.y22{bottom:847.948500px;}
.y1e{bottom:861.087300px;}
.y1d{bottom:876.087300px;}
.y21{bottom:883.948500px;}
.y1c{bottom:891.087300px;}
.y20{bottom:897.448500px;}
.y1b{bottom:906.087300px;}
.h7{height:36.246000px;}
.hb{height:39.870600px;}
.h6{height:41.424000px;}
.h3{height:46.602000px;}
.h5{height:47.358000px;}
.h2{height:51.780000px;}
.hc{height:52.080000px;}
.h9{height:56.958000px;}
.ha{height:59.670600px;}
.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;}
.x5{left:99.000000px;}
.x9{left:109.311000px;}
.x7{left:114.004500px;}
.xb{left:131.998500px;}
.x8{left:135.000000px;}
.x3{left:177.750000px;}
.x2{left:341.910000px;}
.xc{left:344.905500px;}
.x4{left:559.601400px;}
.xa{left:570.400200px;}
.x6{left:580.000050px;}
@media print{
.v2{vertical-align:-12.266667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.600000pt;}
.ls40{letter-spacing:-6.400000pt;}
.ls3e{letter-spacing:-1.600000pt;}
.ls3f{letter-spacing:-1.280000pt;}
.ls3c{letter-spacing:-0.960000pt;}
.ls29{letter-spacing:-0.821333pt;}
.ls2c{letter-spacing:-0.704000pt;}
.ls2a{letter-spacing:-0.645333pt;}
.ls3b{letter-spacing:-0.640000pt;}
.ls2b{letter-spacing:-0.586667pt;}
.ls2d{letter-spacing:-0.528000pt;}
.ls3d{letter-spacing:-0.320000pt;}
.ls26{letter-spacing:-0.293333pt;}
.ls1d{letter-spacing:-0.234667pt;}
.ls38{letter-spacing:-0.213333pt;}
.ls1b{letter-spacing:-0.176000pt;}
.ls37{letter-spacing:-0.160000pt;}
.ls31{letter-spacing:-0.144000pt;}
.ls1c{letter-spacing:-0.117333pt;}
.ls39{letter-spacing:-0.106667pt;}
.ls14{letter-spacing:-0.096000pt;}
.ls1e{letter-spacing:-0.058667pt;}
.ls3a{letter-spacing:-0.053333pt;}
.ls13{letter-spacing:-0.048000pt;}
.ls12{letter-spacing:0.000000pt;}
.ls32{letter-spacing:0.029333pt;}
.ls22{letter-spacing:0.048000pt;}
.ls21{letter-spacing:0.048040pt;}
.ls20{letter-spacing:0.058070pt;}
.ls15{letter-spacing:0.058667pt;}
.ls2f{letter-spacing:0.072000pt;}
.ls5{letter-spacing:0.096000pt;}
.ls35{letter-spacing:0.106667pt;}
.ls28{letter-spacing:0.117333pt;}
.ls24{letter-spacing:0.120000pt;}
.ls23{letter-spacing:0.144000pt;}
.ls2e{letter-spacing:0.146667pt;}
.ls34{letter-spacing:0.160000pt;}
.ls16{letter-spacing:0.176000pt;}
.ls9{letter-spacing:0.192000pt;}
.ls1f{letter-spacing:0.205333pt;}
.ls11{letter-spacing:0.213333pt;}
.ls3{letter-spacing:0.216000pt;}
.ls18{letter-spacing:0.234667pt;}
.ls36{letter-spacing:0.266667pt;}
.lsc{letter-spacing:0.288000pt;}
.ls19{letter-spacing:0.293333pt;}
.ls6{letter-spacing:0.336000pt;}
.ls30{letter-spacing:0.352000pt;}
.ls33{letter-spacing:0.373333pt;}
.ls7{letter-spacing:0.384000pt;}
.ls17{letter-spacing:0.410667pt;}
.lsa{letter-spacing:0.456000pt;}
.ls27{letter-spacing:0.469333pt;}
.lsb{letter-spacing:0.480000pt;}
.ls8{letter-spacing:0.528000pt;}
.ls25{letter-spacing:0.586667pt;}
.ls0{letter-spacing:0.746667pt;}
.ls2{letter-spacing:1.008000pt;}
.ls4{letter-spacing:1.488000pt;}
.lsf{letter-spacing:2.773333pt;}
.lsd{letter-spacing:2.986667pt;}
.lse{letter-spacing:3.413333pt;}
.ls1a{letter-spacing:6.186667pt;}
.ls10{letter-spacing:6.613333pt;}
.ls1{letter-spacing:9.120000pt;}
.ws3{word-spacing:-17.920000pt;}
.ws6a{word-spacing:-15.360000pt;}
.ws60{word-spacing:-14.960000pt;}
.ws49{word-spacing:-14.842667pt;}
.ws36{word-spacing:-14.666667pt;}
.ws48{word-spacing:-14.490667pt;}
.ws27{word-spacing:-13.333333pt;}
.ws6b{word-spacing:-13.226667pt;}
.ws46{word-spacing:-12.144000pt;}
.ws47{word-spacing:-12.072000pt;}
.ws0{word-spacing:-11.424000pt;}
.ws19{word-spacing:-9.333333pt;}
.ws15{word-spacing:-2.773333pt;}
.ws74{word-spacing:-2.400000pt;}
.ws40{word-spacing:-2.288000pt;}
.ws1a{word-spacing:-2.229333pt;}
.ws1b{word-spacing:-2.170667pt;}
.ws3e{word-spacing:-2.112000pt;}
.ws69{word-spacing:-2.053333pt;}
.ws6c{word-spacing:-2.026667pt;}
.ws82{word-spacing:-1.973333pt;}
.ws50{word-spacing:-1.877333pt;}
.wsa{word-spacing:-1.824000pt;}
.ws3b{word-spacing:-1.818667pt;}
.ws14{word-spacing:-1.776000pt;}
.ws53{word-spacing:-1.701333pt;}
.ws63{word-spacing:-1.642667pt;}
.ws68{word-spacing:-1.466667pt;}
.ws4d{word-spacing:-1.408000pt;}
.ws4e{word-spacing:-1.349333pt;}
.ws45{word-spacing:-1.173333pt;}
.ws2f{word-spacing:-1.114667pt;}
.ws51{word-spacing:-1.056000pt;}
.ws30{word-spacing:-0.880000pt;}
.ws76{word-spacing:-0.800000pt;}
.ws65{word-spacing:-0.762667pt;}
.ws2{word-spacing:-0.746667pt;}
.ws5c{word-spacing:-0.704000pt;}
.ws73{word-spacing:-0.693333pt;}
.ws71{word-spacing:-0.640000pt;}
.ws62{word-spacing:-0.586667pt;}
.ws77{word-spacing:-0.533333pt;}
.ws43{word-spacing:-0.528000pt;}
.ws41{word-spacing:-0.469333pt;}
.ws54{word-spacing:-0.410667pt;}
.ws4a{word-spacing:-0.384000pt;}
.ws83{word-spacing:-0.320000pt;}
.ws2e{word-spacing:-0.293333pt;}
.ws7a{word-spacing:-0.266667pt;}
.ws42{word-spacing:-0.234667pt;}
.ws16{word-spacing:-0.213333pt;}
.ws35{word-spacing:-0.144000pt;}
.ws66{word-spacing:-0.117333pt;}
.ws28{word-spacing:-0.058667pt;}
.ws1{word-spacing:0.000000pt;}
.ws72{word-spacing:0.053333pt;}
.ws29{word-spacing:0.058667pt;}
.ws70{word-spacing:0.106667pt;}
.ws56{word-spacing:0.117333pt;}
.ws84{word-spacing:0.160000pt;}
.ws5a{word-spacing:0.176000pt;}
.ws6f{word-spacing:0.213333pt;}
.ws4b{word-spacing:0.293333pt;}
.ws67{word-spacing:0.352000pt;}
.ws1f{word-spacing:0.410667pt;}
.ws75{word-spacing:0.426667pt;}
.ws8e{word-spacing:0.480000pt;}
.ws2c{word-spacing:0.528000pt;}
.ws31{word-spacing:0.586667pt;}
.ws25{word-spacing:0.645333pt;}
.ws57{word-spacing:0.704000pt;}
.wsf{word-spacing:0.720000pt;}
.ws37{word-spacing:0.762667pt;}
.ws6d{word-spacing:0.800000pt;}
.ws5e{word-spacing:0.880000pt;}
.ws2b{word-spacing:0.938667pt;}
.ws3a{word-spacing:0.997333pt;}
.ws85{word-spacing:1.013333pt;}
.ws23{word-spacing:1.173333pt;}
.ws39{word-spacing:1.200000pt;}
.ws21{word-spacing:1.232000pt;}
.ws2d{word-spacing:1.349333pt;}
.ws22{word-spacing:1.408000pt;}
.ws52{word-spacing:1.466667pt;}
.ws4f{word-spacing:1.525333pt;}
.ws9{word-spacing:1.536000pt;}
.ws55{word-spacing:1.642667pt;}
.ws26{word-spacing:1.701333pt;}
.ws6{word-spacing:1.728000pt;}
.ws5d{word-spacing:1.760000pt;}
.ws8{word-spacing:1.776000pt;}
.ws44{word-spacing:1.818667pt;}
.ws34{word-spacing:1.824000pt;}
.ws24{word-spacing:1.877333pt;}
.ws5f{word-spacing:1.936000pt;}
.ws6e{word-spacing:1.973333pt;}
.ws3d{word-spacing:1.994667pt;}
.ws78{word-spacing:2.026667pt;}
.ws59{word-spacing:2.053333pt;}
.ws13{word-spacing:2.064000pt;}
.ws1d{word-spacing:2.112000pt;}
.ws79{word-spacing:2.133333pt;}
.ws1e{word-spacing:2.170667pt;}
.ws1c{word-spacing:2.229333pt;}
.ws3f{word-spacing:2.346667pt;}
.ws5b{word-spacing:2.405333pt;}
.ws4c{word-spacing:2.464000pt;}
.wsb{word-spacing:2.688000pt;}
.wsc{word-spacing:2.736000pt;}
.ws17{word-spacing:2.773333pt;}
.ws10{word-spacing:2.928000pt;}
.ws61{word-spacing:2.992000pt;}
.ws20{word-spacing:3.109333pt;}
.ws32{word-spacing:3.226667pt;}
.wse{word-spacing:3.360000pt;}
.ws11{word-spacing:3.408000pt;}
.ws58{word-spacing:3.637333pt;}
.ws12{word-spacing:3.744000pt;}
.wsd{word-spacing:4.080000pt;}
.ws2a{word-spacing:4.106667pt;}
.ws3c{word-spacing:4.224000pt;}
.ws38{word-spacing:4.400000pt;}
.ws64{word-spacing:4.517333pt;}
.ws5{word-spacing:7.680000pt;}
.ws7{word-spacing:11.232000pt;}
.ws4{word-spacing:12.480000pt;}
.ws33{word-spacing:37.253333pt;}
.ws7b{word-spacing:81.546667pt;}
.ws8a{word-spacing:190.186667pt;}
.ws89{word-spacing:197.013333pt;}
.ws87{word-spacing:219.680000pt;}
.ws8d{word-spacing:225.066667pt;}
.ws7e{word-spacing:225.333333pt;}
.ws7c{word-spacing:227.946667pt;}
.ws8c{word-spacing:230.826667pt;}
.ws7d{word-spacing:232.853333pt;}
.ws86{word-spacing:235.893333pt;}
.ws88{word-spacing:236.106667pt;}
.ws7f{word-spacing:245.546667pt;}
.ws80{word-spacing:248.160000pt;}
.ws8b{word-spacing:251.680000pt;}
.ws81{word-spacing:256.053333pt;}
.ws18{word-spacing:937.472533pt;}
._e{margin-left:-1843.555733pt;}
._11{margin-left:-11.042133pt;}
._19{margin-left:-10.053333pt;}
._b{margin-left:-7.776000pt;}
._d{margin-left:-6.886933pt;}
._5{margin-left:-5.973333pt;}
._2{margin-left:-4.480000pt;}
._7{margin-left:-3.544000pt;}
._1{margin-left:-2.592000pt;}
._0{margin-left:-1.120000pt;}
._6{width:0.917333pt;}
._4{width:1.905067pt;}
._9{width:3.626667pt;}
._10{width:4.731733pt;}
._f{width:6.186667pt;}
._8{width:9.120000pt;}
._16{width:10.176000pt;}
._18{width:11.440000pt;}
._c{width:13.272000pt;}
._3{width:17.173333pt;}
._12{width:18.986667pt;}
._13{width:23.253333pt;}
._15{width:32.682667pt;}
._17{width:34.613333pt;}
._14{width:37.253333pt;}
._3e{width:45.920000pt;}
._33{width:75.626667pt;}
._40{width:80.960000pt;}
._1b{width:85.600000pt;}
._44{width:86.986667pt;}
._34{width:90.506667pt;}
._3d{width:95.840000pt;}
._29{width:99.893333pt;}
._48{width:102.133333pt;}
._2f{width:110.912000pt;}
._52{width:113.120000pt;}
._3f{width:114.560000pt;}
._2e{width:116.320000pt;}
._3b{width:118.666667pt;}
._4a{width:120.266667pt;}
._27{width:122.720000pt;}
._20{width:123.840000pt;}
._36{width:125.706667pt;}
._5a{width:132.245333pt;}
._41{width:134.986667pt;}
._46{width:141.386667pt;}
._32{width:146.080000pt;}
._45{width:152.320000pt;}
._31{width:153.653333pt;}
._23{width:155.306667pt;}
._a{width:159.806933pt;}
._47{width:162.240000pt;}
._1f{width:163.840000pt;}
._24{width:165.653333pt;}
._2b{width:168.266667pt;}
._28{width:169.813333pt;}
._2d{width:171.840000pt;}
._43{width:173.493333pt;}
._39{width:175.018667pt;}
._2c{width:176.693333pt;}
._2a{width:177.920000pt;}
._3a{width:180.480000pt;}
._4e{width:182.453333pt;}
._30{width:184.458667pt;}
._1e{width:186.400000pt;}
._25{width:189.920000pt;}
._42{width:191.040000pt;}
._4f{width:194.560000pt;}
._54{width:197.173333pt;}
._35{width:198.400000pt;}
._1a{width:200.746667pt;}
._51{width:203.946667pt;}
._26{width:206.453333pt;}
._1c{width:208.160000pt;}
._59{width:209.333333pt;}
._50{width:211.146667pt;}
._55{width:212.640000pt;}
._22{width:213.866667pt;}
._4c{width:214.933333pt;}
._49{width:215.840000pt;}
._37{width:217.653333pt;}
._53{width:220.693333pt;}
._4b{width:222.240000pt;}
._58{width:223.786667pt;}
._38{width:224.746667pt;}
._21{width:228.160000pt;}
._3c{width:229.120000pt;}
._1d{width:231.413333pt;}
._56{width:234.613333pt;}
._4d{width:242.986667pt;}
._57{width:255.040000pt;}
.fs4{font-size:37.333333pt;}
.fs7{font-size:41.066667pt;}
.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;}
.y63{bottom:62.666667pt;}
.y53{bottom:62.669333pt;}
.y79{bottom:63.061333pt;}
.y45{bottom:63.065333pt;}
.y5f{bottom:63.068000pt;}
.y9b{bottom:68.398667pt;}
.y52{bottom:77.333333pt;}
.y5e{bottom:77.732000pt;}
.y44{bottom:81.732000pt;}
.y62{bottom:83.733333pt;}
.y9a{bottom:84.398667pt;}
.yc0{bottom:91.341067pt;}
.y51{bottom:92.000000pt;}
.y43{bottom:100.398667pt;}
.y50{bottom:106.666667pt;}
.ybf{bottom:107.674400pt;}
.y99{bottom:116.398667pt;}
.y77{bottom:119.057333pt;}
.y42{bottom:119.065333pt;}
.ybe{bottom:124.007733pt;}
.y4f{bottom:124.400000pt;}
.y98{bottom:132.398667pt;}
.y76{bottom:137.728000pt;}
.y41{bottom:137.732000pt;}
.ybd{bottom:140.341067pt;}
.ye5{bottom:140.398800pt;}
.y97{bottom:148.398667pt;}
.y17{bottom:153.732000pt;}
.y4e{bottom:156.390667pt;}
.y40{bottom:156.398667pt;}
.ye4{bottom:156.398800pt;}
.ybc{bottom:156.674400pt;}
.y96{bottom:164.398667pt;}
.y1a{bottom:168.398667pt;}
.y16{bottom:168.401333pt;}
.ybb{bottom:173.007733pt;}
.y4d{bottom:175.061333pt;}
.y3f{bottom:175.065333pt;}
.y95{bottom:180.398667pt;}
.y15{bottom:183.065333pt;}
.ye3{bottom:184.732133pt;}
.yba{bottom:189.341067pt;}
.y3e{bottom:193.732000pt;}
.y94{bottom:196.398667pt;}
.ye2{bottom:201.065467pt;}
.yb9{bottom:205.674400pt;}
.y14{bottom:212.398667pt;}
.ye1{bottom:217.398800pt;}
.yb8{bottom:222.007733pt;}
.y13{bottom:227.065333pt;}
.y93{bottom:228.398667pt;}
.y4c{bottom:231.061333pt;}
.y3d{bottom:231.065333pt;}
.ye0{bottom:233.732133pt;}
.yb7{bottom:238.341067pt;}
.y12{bottom:241.732000pt;}
.y92{bottom:244.398667pt;}
.y75{bottom:249.724000pt;}
.y3c{bottom:249.732000pt;}
.ydf{bottom:250.065467pt;}
.yb6{bottom:254.674400pt;}
.y11{bottom:256.398667pt;}
.y19{bottom:256.401333pt;}
.y91{bottom:260.398667pt;}
.yde{bottom:266.398800pt;}
.y74{bottom:268.394667pt;}
.y3b{bottom:268.398667pt;}
.yb5{bottom:271.007733pt;}
.y10{bottom:271.065333pt;}
.y90{bottom:276.398667pt;}
.ydd{bottom:282.732133pt;}
.yf{bottom:285.732000pt;}
.y6c{bottom:287.061333pt;}
.y3a{bottom:287.065333pt;}
.yb4{bottom:287.341067pt;}
.y8f{bottom:292.398667pt;}
.ydc{bottom:299.065467pt;}
.ye{bottom:300.398667pt;}
.yb3{bottom:303.674400pt;}
.y4b{bottom:305.728000pt;}
.y39{bottom:305.732000pt;}
.y8e{bottom:308.398667pt;}
.yd{bottom:315.065333pt;}
.ydb{bottom:315.398800pt;}
.yb2{bottom:320.007733pt;}
.y38{bottom:324.398667pt;}
.yda{bottom:331.732133pt;}
.yb1{bottom:336.341067pt;}
.y8d{bottom:340.398667pt;}
.y37{bottom:343.065333pt;}
.y18{bottom:343.068000pt;}
.yc{bottom:343.070800pt;}
.yd9{bottom:348.065467pt;}
.yb0{bottom:352.674400pt;}
.y6b{bottom:353.065333pt;}
.y8c{bottom:356.398667pt;}
.y36{bottom:361.732000pt;}
.yd8{bottom:364.398800pt;}
.y6a{bottom:367.732000pt;}
.yaf{bottom:369.007733pt;}
.y8b{bottom:372.398667pt;}
.y5d{bottom:380.394667pt;}
.y35{bottom:380.398667pt;}
.yd7{bottom:380.732133pt;}
.y69{bottom:382.398667pt;}
.yae{bottom:385.341067pt;}
.y8a{bottom:388.398667pt;}
.yb{bottom:394.070800pt;}
.y68{bottom:397.065333pt;}
.yd6{bottom:397.065467pt;}
.y73{bottom:399.053333pt;}
.y6f{bottom:399.061333pt;}
.y34{bottom:399.065333pt;}
.yad{bottom:401.674400pt;}
.y89{bottom:404.398667pt;}
.ya{bottom:408.734800pt;}
.y67{bottom:411.732000pt;}
.yd5{bottom:413.398800pt;}
.y4a{bottom:417.724000pt;}
.y33{bottom:417.732000pt;}
.yac{bottom:418.007733pt;}
.y88{bottom:420.398667pt;}
.y9{bottom:423.398800pt;}
.y66{bottom:426.398667pt;}
.yd4{bottom:429.732133pt;}
.yab{bottom:434.341067pt;}
.y49{bottom:436.394667pt;}
.y32{bottom:436.398667pt;}
.y61{bottom:436.401333pt;}
.yd3{bottom:446.065467pt;}
.yaa{bottom:450.674400pt;}
.y60{bottom:451.065333pt;}
.y87{bottom:452.398667pt;}
.y7b{bottom:455.057333pt;}
.y31{bottom:455.065333pt;}
.y8{bottom:460.049467pt;}
.yd2{bottom:462.398800pt;}
.ya9{bottom:467.007733pt;}
.y86{bottom:468.398667pt;}
.y78{bottom:473.728000pt;}
.y30{bottom:473.732000pt;}
.yd1{bottom:478.732133pt;}
.ya8{bottom:483.341067pt;}
.y7{bottom:484.054800pt;}
.y85{bottom:484.398667pt;}
.y65{bottom:492.394667pt;}
.y2f{bottom:492.398667pt;}
.yd0{bottom:495.065467pt;}
.ya7{bottom:499.674400pt;}
.y84{bottom:500.398667pt;}
.y6{bottom:508.060133pt;}
.y2e{bottom:511.061333pt;}
.y48{bottom:511.065333pt;}
.ycf{bottom:511.398800pt;}
.ya6{bottom:516.007733pt;}
.y83{bottom:516.398667pt;}
.yce{bottom:527.732133pt;}
.y5c{bottom:529.712000pt;}
.y6e{bottom:529.724000pt;}
.y2d{bottom:529.732000pt;}
.y5{bottom:532.065467pt;}
.ya5{bottom:532.341067pt;}
.y82{bottom:532.398667pt;}
.ycd{bottom:544.065467pt;}
.y5b{bottom:548.382667pt;}
.y6d{bottom:548.394667pt;}
.y2c{bottom:548.398667pt;}
.ya4{bottom:552.674400pt;}
.ycc{bottom:560.398800pt;}
.y81{bottom:564.398667pt;}
.y5a{bottom:567.053333pt;}
.y2b{bottom:567.065333pt;}
.ycb{bottom:576.732133pt;}
.ya3{bottom:577.732000pt;}
.y80{bottom:580.398667pt;}
.y59{bottom:585.724000pt;}
.y47{bottom:585.728000pt;}
.y2a{bottom:585.732000pt;}
.yca{bottom:593.065467pt;}
.y7f{bottom:596.398667pt;}
.y58{bottom:604.394667pt;}
.y29{bottom:604.398667pt;}
.yc9{bottom:609.398800pt;}
.y4{bottom:612.065467pt;}
.y7e{bottom:612.398667pt;}
.y72{bottom:623.053333pt;}
.y64{bottom:623.061333pt;}
.y28{bottom:623.065333pt;}
.ya2{bottom:625.732000pt;}
.yc8{bottom:625.732133pt;}
.y3{bottom:628.065467pt;}
.y7d{bottom:628.398667pt;}
.y71{bottom:641.724000pt;}
.y7a{bottom:641.728000pt;}
.y27{bottom:641.732000pt;}
.yc7{bottom:642.065467pt;}
.y7c{bottom:644.398667pt;}
.y2{bottom:650.732133pt;}
.ya1{bottom:657.732000pt;}
.yc6{bottom:658.398800pt;}
.y70{bottom:660.394667pt;}
.y26{bottom:660.398667pt;}
.y1{bottom:666.732133pt;}
.ya0{bottom:673.732000pt;}
.yc5{bottom:674.732133pt;}
.y57{bottom:679.049333pt;}
.y25{bottom:679.065333pt;}
.y9f{bottom:689.732000pt;}
.yc4{bottom:691.065467pt;}
.y56{bottom:697.720000pt;}
.y24{bottom:697.732000pt;}
.y9e{bottom:705.732000pt;}
.yc3{bottom:707.398800pt;}
.y55{bottom:716.390667pt;}
.y23{bottom:716.398667pt;}
.y9d{bottom:721.732000pt;}
.yc2{bottom:723.732133pt;}
.y54{bottom:735.061333pt;}
.y46{bottom:735.065333pt;}
.y9c{bottom:737.732000pt;}
.yc1{bottom:744.065467pt;}
.y1f{bottom:752.077600pt;}
.y22{bottom:753.732000pt;}
.y1e{bottom:765.410933pt;}
.y1d{bottom:778.744267pt;}
.y21{bottom:785.732000pt;}
.y1c{bottom:792.077600pt;}
.y20{bottom:797.732000pt;}
.y1b{bottom:805.410933pt;}
.h7{height:32.218667pt;}
.hb{height:35.440533pt;}
.h6{height:36.821333pt;}
.h3{height:41.424000pt;}
.h5{height:42.096000pt;}
.h2{height:46.026667pt;}
.hc{height:46.293333pt;}
.h9{height:50.629333pt;}
.ha{height:53.040533pt;}
.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;}
.x5{left:88.000000pt;}
.x9{left:97.165333pt;}
.x7{left:101.337333pt;}
.xb{left:117.332000pt;}
.x8{left:120.000000pt;}
.x3{left:158.000000pt;}
.x2{left:303.920000pt;}
.xc{left:306.582667pt;}
.x4{left:497.423467pt;}
.xa{left:507.022400pt;}
.x6{left:515.555600pt;}
}




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