
    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_e8d5eaeb89361713319ea146.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.956000;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_4df2ac88f6ca591442ad0e37.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.956000;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_6b6cd7fb9b7b8ff75635ff60.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_b0a2d561dbaac849a313b8d9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_2e31314f1494f52fff2d585c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_0ae495f37e0eec89a9437b0f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.706000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_237b1796c8038db55498ee21.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_ff905a4feac25985556f4358.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_a9d599d2bec1b9ec0d73a990.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_9e2fe48b401cfcb49779673d.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_aa2b8af11c7fda577ba1d787.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.722656;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;}
.m27{transform:matrix(0.244998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244998,0.000000,0.000000,0.250000,0,0);}
.m1a{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);}
.m20{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);}
.m11{transform:matrix(0.245082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245082,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.245109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245109,0.000000,0.000000,0.250000,0,0);}
.m99{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);}
.m7a{transform:matrix(0.245259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245259,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.245414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245414,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.245493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245493,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.245516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245516,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.245530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245530,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.245602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245602,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.245657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245657,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.245682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245682,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.245909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245909,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.246216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246216,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.246227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246227,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.246310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246310,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.246382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246382,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.246407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246407,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.246445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246445,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.246532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246532,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.246745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246745,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.246793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246793,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.246802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246802,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.246864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246864,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.246932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246932,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.246986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246986,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.246993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246993,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.247007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247007,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.247361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247361,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.247536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247536,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.247608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247608,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.247693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247693,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.247707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247707,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.247757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247757,0.000000,0.000000,0.250000,0,0);}
.m50{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);}
.m6c{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);}
.m90{transform:matrix(0.247841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247841,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.247891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247891,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.247920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247920,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.247925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247925,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.247984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247984,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.247998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247998,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.248095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248095,0.000000,0.000000,0.250000,0,0);}
.md{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);}
.m6d{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);}
.m56{transform:matrix(0.248452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248452,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.248468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248468,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.248530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248530,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.248532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248532,0.000000,0.000000,0.250000,0,0);}
.ma6{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);}
.m4b{transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.248759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248759,0.000000,0.000000,0.250000,0,0);}
.m12{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);}
.m34{transform:matrix(0.248836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248836,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.248902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248902,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.249111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249111,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.249116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249116,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.249170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249170,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.249207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249207,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249218,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.249266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249266,0.000000,0.000000,0.250000,0,0);}
.mb{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);}
.m92{transform:matrix(0.249343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249343,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.249395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249395,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.249577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249577,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.249598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249598,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.249605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249605,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249658,0.000000,0.000000,0.250000,0,0);}
.m87{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);}
.m7b{transform:matrix(0.249818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249818,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.249909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249909,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.249930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249930,0.000000,0.000000,0.250000,0,0);}
.ma4{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);}
.m8c{transform:matrix(0.250123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250123,0.000000,0.000000,0.250000,0,0);}
.m17{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);}
.m54{transform:matrix(0.250193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250193,0.000000,0.000000,0.250000,0,0);}
.m67{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);}
.m38{transform:matrix(0.250316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250316,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.250384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250384,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.250443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250443,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.250484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250484,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.250532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250532,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.250568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250568,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.250582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250582,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.250711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250711,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.250723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250723,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.250748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250748,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.250755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250755,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.250882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250882,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.250920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250920,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.250930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250930,0.000000,0.000000,0.250000,0,0);}
.m37{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);}
.m6e{transform:matrix(0.250961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250961,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.250994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250994,0.000000,0.000000,0.250000,0,0);}
.m70{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);}
.mf{transform:matrix(0.251061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251061,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.251093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251093,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.251202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251202,0.000000,0.000000,0.250000,0,0);}
.m5d{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);}
.m4e{transform:matrix(0.251361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251361,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.251450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251450,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.251491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251491,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.251507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251507,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.251564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251564,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.251614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251614,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.251716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251716,0.000000,0.000000,0.250000,0,0);}
.m61{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);}
.m3c{transform:matrix(0.251773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251773,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.251827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251827,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.251861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251861,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.251882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251882,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.251923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251923,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.251998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251998,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.252009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252009,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.252023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252023,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.252311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252311,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.252322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252322,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.252339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252339,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.252366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252366,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.252448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252448,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.252545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252545,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.252570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252570,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.252616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252616,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.252702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252702,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.252709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252709,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.252734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252734,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.252825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252825,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.252826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252826,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.252834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252834,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.252873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252873,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.253025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253025,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.253055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253055,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.253257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253257,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.253266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253266,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.253391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253391,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.253416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253416,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.253548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253548,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.253582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253582,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.253636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253636,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.253698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253698,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.253755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253755,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.253880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253880,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.253889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253889,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.254100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254100,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.254145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254145,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.254255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254255,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.254266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254266,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.254284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254284,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.254300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254300,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.254325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254325,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.254366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254366,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.254448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254448,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.254563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254563,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.254573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254573,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.254730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254730,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.254757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254757,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.254975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254975,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.254991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254991,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.m8{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.978000px;}
.lsc{letter-spacing:-0.660000px;}
.lsb{letter-spacing:-0.330000px;}
.ls1{letter-spacing:0.000000px;}
.ls9{letter-spacing:2.518465px;}
.ls2{letter-spacing:2.850000px;}
.ls0{letter-spacing:8.160000px;}
.lsa{letter-spacing:15.425882px;}
.ls8{letter-spacing:23.517059px;}
.ls3{letter-spacing:35.436000px;}
.ls5{letter-spacing:196.199400px;}
.ls7{letter-spacing:250.709400px;}
.ls6{letter-spacing:279.610800px;}
.ls4{letter-spacing:411.889200px;}
.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;}
}
.ws20{word-spacing:-30.000000px;}
.ws9{word-spacing:-19.500000px;}
.wsa{word-spacing:-18.720000px;}
.ws14{word-spacing:-17.160000px;}
.ws21{word-spacing:-16.830000px;}
.wse{word-spacing:-14.040000px;}
.ws1a{word-spacing:-10.004280px;}
.ws2a{word-spacing:-5.412000px;}
.wsc{word-spacing:-3.384000px;}
.ws1c{word-spacing:-2.772000px;}
.ws23{word-spacing:-2.640000px;}
.ws7{word-spacing:-2.574000px;}
.ws3{word-spacing:-2.340000px;}
.ws16{word-spacing:-2.310000px;}
.wsd{word-spacing:-2.304000px;}
.ws1d{word-spacing:-2.178000px;}
.ws28{word-spacing:-1.782000px;}
.ws12{word-spacing:-1.650000px;}
.ws10{word-spacing:-1.386000px;}
.ws13{word-spacing:-0.858000px;}
.ws8{word-spacing:-0.330000px;}
.ws0{word-spacing:0.000000px;}
.ws25{word-spacing:0.330000px;}
.ws1b{word-spacing:0.462000px;}
.ws26{word-spacing:0.660000px;}
.ws2{word-spacing:2.220000px;}
.ws6{word-spacing:2.244000px;}
.ws18{word-spacing:2.508000px;}
.ws5{word-spacing:2.574000px;}
.wsb{word-spacing:3.816000px;}
.ws19{word-spacing:4.290000px;}
.ws22{word-spacing:5.478000px;}
.wsf{word-spacing:7.326000px;}
.ws24{word-spacing:7.524000px;}
.ws1e{word-spacing:8.052000px;}
.ws11{word-spacing:12.276000px;}
.ws27{word-spacing:12.474000px;}
.ws29{word-spacing:16.302000px;}
.ws1f{word-spacing:18.942000px;}
.ws15{word-spacing:20.526000px;}
.ws17{word-spacing:23.562000px;}
.ws1{word-spacing:1178.604000px;}
.ws4{word-spacing:1287.888000px;}
._25{margin-left:-53.737200px;}
._30{margin-left:-16.696200px;}
._7{margin-left:-15.611765px;}
._2{margin-left:-8.460000px;}
._2e{margin-left:-6.984000px;}
._1d{margin-left:-5.868000px;}
._0{margin-left:-4.032000px;}
._4{margin-left:-2.448000px;}
._1{margin-left:-1.152000px;}
._3{width:1.110000px;}
._10{width:2.826000px;}
._12{width:4.554000px;}
._20{width:5.577000px;}
._b{width:6.654000px;}
._14{width:8.160000px;}
._f{width:9.828000px;}
._9{width:11.832000px;}
._5{width:12.864000px;}
._d{width:13.944000px;}
._2d{width:15.417376px;}
._a{width:16.626000px;}
._6{width:18.240000px;}
._e{width:19.446000px;}
._22{width:20.944800px;}
._c{width:23.028000px;}
._2b{width:24.164506px;}
._13{width:25.374000px;}
._2c{width:26.505000px;}
._2f{width:28.122600px;}
._8{width:29.274000px;}
._11{width:32.778000px;}
._2a{width:39.744000px;}
._24{width:44.496000px;}
._23{width:45.648000px;}
._31{width:48.252000px;}
._21{width:52.344000px;}
._32{width:56.106000px;}
._1c{width:84.684000px;}
._27{width:188.215800px;}
._28{width:229.795800px;}
._29{width:236.395800px;}
._33{width:280.621800px;}
._34{width:391.458600px;}
._1e{width:466.908000px;}
._16{width:515.997000px;}
._26{width:689.815800px;}
._18{width:877.860000px;}
._15{width:1126.164000px;}
._1f{width:1188.504000px;}
._1a{width:1231.125000px;}
._1b{width:1242.540000px;}
._17{width:1378.797000px;}
._19{width:1451.061000px;}
.fc5{color:rgb(62,62,58);}
.fc3{color:rgb(90,87,88);}
.fc6{color:rgb(0,0,0);}
.fc4{color:rgb(62,143,191);}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(93,213,253);}
.fsa{font-size:38.478000px;}
.fsb{font-size:54.000000px;}
.fs5{font-size:57.000000px;}
.fs6{font-size:60.000000px;}
.fsc{font-size:63.000000px;}
.fs4{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs9{font-size:78.000000px;}
.fs3{font-size:84.000000px;}
.fs1{font-size:96.000000px;}
.fs7{font-size:120.000000px;}
.fs2{font-size:180.000000px;}
.fs0{font-size:252.000000px;}
.y0{bottom:0.000000px;}
.y27{bottom:43.535400px;}
.y5f{bottom:96.165300px;}
.y81{bottom:106.535400px;}
.y92{bottom:113.834700px;}
.y9a{bottom:116.834550px;}
.y5e{bottom:117.165300px;}
.y80{bottom:127.535400px;}
.y91{bottom:131.834700px;}
.y99{bottom:134.834550px;}
.y23{bottom:148.535400px;}
.ye4{bottom:148.535550px;}
.y90{bottom:149.834700px;}
.y98{bottom:152.834550px;}
.y5d{bottom:159.165300px;}
.y22{bottom:169.535400px;}
.ye3{bottom:169.535550px;}
.y97{bottom:170.834550px;}
.y5{bottom:172.094100px;}
.y7f{bottom:180.035400px;}
.y5c{bottom:180.165300px;}
.y38{bottom:185.149500px;}
.y21{bottom:190.535400px;}
.ye2{bottom:190.535550px;}
.ybb{bottom:199.535400px;}
.y7e{bottom:201.035400px;}
.y4{bottom:209.594100px;}
.y20{bottom:211.535400px;}
.ye1{bottom:211.535550px;}
.y37{bottom:216.649500px;}
.yba{bottom:220.535400px;}
.y7d{bottom:222.035400px;}
.y5b{bottom:222.165300px;}
.y1f{bottom:232.535400px;}
.ye0{bottom:232.535550px;}
.yb9{bottom:241.535400px;}
.y7c{bottom:243.035400px;}
.y5a{bottom:243.165300px;}
.y1e{bottom:253.535400px;}
.ydf{bottom:253.535550px;}
.y36{bottom:258.649500px;}
.yb8{bottom:262.535400px;}
.y59{bottom:264.165300px;}
.y1d{bottom:274.535400px;}
.yde{bottom:274.535550px;}
.yb7{bottom:283.535400px;}
.y58{bottom:285.165300px;}
.y1c{bottom:295.535400px;}
.ydd{bottom:295.535550px;}
.y35{bottom:300.649500px;}
.yb6{bottom:304.535400px;}
.y1b{bottom:316.535400px;}
.ydc{bottom:316.535550px;}
.y57{bottom:316.665300px;}
.yb5{bottom:325.535400px;}
.y34{bottom:332.149500px;}
.y1a{bottom:337.535400px;}
.ydb{bottom:337.535550px;}
.y56{bottom:337.665300px;}
.yb4{bottom:346.535400px;}
.y26{bottom:358.535400px;}
.yda{bottom:358.535550px;}
.y7b{bottom:369.035400px;}
.y33{bottom:374.149500px;}
.y19{bottom:379.535400px;}
.y55{bottom:379.665300px;}
.y7a{bottom:390.035400px;}
.y18{bottom:400.535400px;}
.yd9{bottom:409.535550px;}
.y79{bottom:411.035400px;}
.y32{bottom:416.149500px;}
.y17{bottom:421.535400px;}
.y54{bottom:421.665300px;}
.yaa{bottom:430.535400px;}
.yd8{bottom:430.535550px;}
.y78{bottom:432.035400px;}
.y25{bottom:442.535400px;}
.y53{bottom:442.665300px;}
.y31{bottom:447.649500px;}
.ya9{bottom:451.535400px;}
.yd7{bottom:451.535550px;}
.y16{bottom:463.535400px;}
.y52{bottom:463.665300px;}
.y77{bottom:466.535400px;}
.ya8{bottom:472.535400px;}
.yd6{bottom:472.535550px;}
.y15{bottom:484.535400px;}
.y51{bottom:484.665300px;}
.y76{bottom:487.535400px;}
.y30{bottom:489.649500px;}
.ya7{bottom:493.535400px;}
.yd5{bottom:493.535550px;}
.y14{bottom:505.535400px;}
.y2f{bottom:510.649500px;}
.ya6{bottom:514.535400px;}
.yd4{bottom:514.535550px;}
.y50{bottom:516.165300px;}
.y13{bottom:526.535400px;}
.y2e{bottom:531.649500px;}
.ya5{bottom:535.535400px;}
.yd3{bottom:535.535550px;}
.y4f{bottom:537.165300px;}
.y12{bottom:547.535400px;}
.ya4{bottom:556.535400px;}
.y4e{bottom:558.165300px;}
.y2d{bottom:563.149500px;}
.y24{bottom:568.535400px;}
.yd2{bottom:568.535550px;}
.ya3{bottom:577.535400px;}
.y11{bottom:589.535400px;}
.ya2{bottom:598.535400px;}
.y75{bottom:600.035400px;}
.y4d{bottom:600.165300px;}
.y2c{bottom:605.149500px;}
.y10{bottom:610.535400px;}
.yd1{bottom:610.535550px;}
.ya1{bottom:619.535400px;}
.y74{bottom:621.035400px;}
.y2b{bottom:626.149500px;}
.yf{bottom:631.535400px;}
.yd0{bottom:631.535550px;}
.ya0{bottom:640.535400px;}
.y73{bottom:642.035400px;}
.y4c{bottom:642.165300px;}
.y2a{bottom:647.149500px;}
.ye{bottom:652.535400px;}
.ycf{bottom:652.535550px;}
.y9f{bottom:661.535400px;}
.y72{bottom:663.035400px;}
.y4b{bottom:663.165300px;}
.y8f{bottom:673.535400px;}
.yce{bottom:673.535550px;}
.y29{bottom:678.649500px;}
.y9e{bottom:682.535400px;}
.y71{bottom:684.035400px;}
.y4a{bottom:684.165300px;}
.yd{bottom:694.535400px;}
.ycd{bottom:694.535550px;}
.y9d{bottom:703.535400px;}
.y70{bottom:705.035400px;}
.y8e{bottom:715.535400px;}
.ycc{bottom:715.535550px;}
.y49{bottom:715.665300px;}
.y9c{bottom:724.535400px;}
.yc{bottom:736.535400px;}
.ycb{bottom:736.535550px;}
.y48{bottom:736.665300px;}
.y28{bottom:741.649500px;}
.y8d{bottom:742.029900px;}
.yb3{bottom:745.535400px;}
.y6f{bottom:747.035400px;}
.yb{bottom:757.535400px;}
.yca{bottom:757.535550px;}
.y47{bottom:757.665300px;}
.yb2{bottom:766.535400px;}
.y6e{bottom:768.035400px;}
.ya{bottom:778.535400px;}
.yc9{bottom:778.535550px;}
.y46{bottom:778.665300px;}
.yb1{bottom:787.535400px;}
.y96{bottom:792.035400px;}
.y8c{bottom:799.535400px;}
.yc8{bottom:799.535550px;}
.yb0{bottom:808.535400px;}
.y6d{bottom:810.035400px;}
.y95{bottom:813.035400px;}
.y9{bottom:820.535400px;}
.yc7{bottom:820.535550px;}
.y45{bottom:820.665300px;}
.yaf{bottom:829.535400px;}
.y6c{bottom:831.035400px;}
.y8b{bottom:841.535400px;}
.yc6{bottom:841.535550px;}
.yae{bottom:850.535400px;}
.y6b{bottom:852.035400px;}
.y8{bottom:862.535400px;}
.yc5{bottom:862.535550px;}
.y44{bottom:865.665300px;}
.yad{bottom:871.535400px;}
.y6a{bottom:873.035400px;}
.y8a{bottom:883.535400px;}
.yc4{bottom:883.535550px;}
.yac{bottom:892.535400px;}
.y69{bottom:894.035400px;}
.y89{bottom:904.535400px;}
.y43{bottom:904.665300px;}
.y88{bottom:925.535400px;}
.y42{bottom:925.665300px;}
.yc3{bottom:934.535550px;}
.y68{bottom:936.035400px;}
.y87{bottom:946.535400px;}
.y41{bottom:946.665300px;}
.yc2{bottom:955.535550px;}
.y86{bottom:967.535400px;}
.yc1{bottom:976.535550px;}
.y67{bottom:978.035400px;}
.y40{bottom:978.165300px;}
.y85{bottom:988.535400px;}
.yc0{bottom:997.535550px;}
.y66{bottom:999.035400px;}
.y3f{bottom:999.165300px;}
.y84{bottom:1009.535400px;}
.y65{bottom:1020.035400px;}
.y3e{bottom:1020.165300px;}
.y2{bottom:1027.093350px;}
.y83{bottom:1030.535400px;}
.ybf{bottom:1030.535550px;}
.y94{bottom:1036.029900px;}
.y64{bottom:1041.035400px;}
.y3d{bottom:1041.165300px;}
.y93{bottom:1051.535400px;}
.y63{bottom:1062.035400px;}
.y3c{bottom:1062.165300px;}
.y82{bottom:1065.035400px;}
.yab{bottom:1072.535400px;}
.ybe{bottom:1072.535550px;}
.y9b{bottom:1081.535400px;}
.y3b{bottom:1083.165300px;}
.y62{bottom:1093.535400px;}
.ybd{bottom:1093.535550px;}
.y3a{bottom:1104.165300px;}
.y1{bottom:1106.593350px;}
.y61{bottom:1114.535400px;}
.ybc{bottom:1114.535550px;}
.y60{bottom:1135.535400px;}
.y39{bottom:1135.665300px;}
.y3{bottom:1173.577200px;}
.y7{bottom:1203.852000px;}
.y6{bottom:1237.651800px;}
.h13{height:29.234262px;}
.h18{height:41.317383px;}
.h14{height:41.370117px;}
.h7{height:43.263000px;}
.h8{height:45.585938px;}
.h9{height:45.908203px;}
.ha{height:45.966797px;}
.h17{height:48.203613px;}
.h19{height:48.265137px;}
.h6{height:50.094000px;}
.h15{height:50.144531px;}
.hf{height:50.499023px;}
.h10{height:50.563477px;}
.h16{height:51.212262px;}
.he{height:54.648000px;}
.hd{height:55.089844px;}
.h12{height:55.160156px;}
.h11{height:59.202000px;}
.hb{height:59.304000px;}
.h5{height:63.756000px;}
.h3{height:72.864000px;}
.hc{height:91.080000px;}
.h4{height:136.620000px;}
.h2{height:191.268000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:105.159000px;}
.x7{left:106.299150px;}
.x12{left:115.443450px;}
.x1{left:117.779550px;}
.x2{left:121.181100px;}
.xa{left:127.299150px;}
.x15{left:131.811000px;}
.xc{left:137.799150px;}
.x3{left:142.404450px;}
.xb{left:148.299150px;}
.x10{left:171.280650px;}
.x11{left:176.843100px;}
.x4{left:206.044050px;}
.xd{left:256.370100px;}
.xe{left:261.760350px;}
.x13{left:433.710000px;}
.x14{left:434.791500px;}
.x9{left:438.277200px;}
.x8{left:459.212550px;}
.x6{left:519.286350px;}
.x5{left:624.354900px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.536000pt;}
.lsc{letter-spacing:-0.586667pt;}
.lsb{letter-spacing:-0.293333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls9{letter-spacing:2.238636pt;}
.ls2{letter-spacing:2.533333pt;}
.ls0{letter-spacing:7.253333pt;}
.lsa{letter-spacing:13.711895pt;}
.ls8{letter-spacing:20.904052pt;}
.ls3{letter-spacing:31.498667pt;}
.ls5{letter-spacing:174.399467pt;}
.ls7{letter-spacing:222.852800pt;}
.ls6{letter-spacing:248.542933pt;}
.ls4{letter-spacing:366.123733pt;}
.ws20{word-spacing:-26.666667pt;}
.ws9{word-spacing:-17.333333pt;}
.wsa{word-spacing:-16.640000pt;}
.ws14{word-spacing:-15.253333pt;}
.ws21{word-spacing:-14.960000pt;}
.wse{word-spacing:-12.480000pt;}
.ws1a{word-spacing:-8.892693pt;}
.ws2a{word-spacing:-4.810667pt;}
.wsc{word-spacing:-3.008000pt;}
.ws1c{word-spacing:-2.464000pt;}
.ws23{word-spacing:-2.346667pt;}
.ws7{word-spacing:-2.288000pt;}
.ws3{word-spacing:-2.080000pt;}
.ws16{word-spacing:-2.053333pt;}
.wsd{word-spacing:-2.048000pt;}
.ws1d{word-spacing:-1.936000pt;}
.ws28{word-spacing:-1.584000pt;}
.ws12{word-spacing:-1.466667pt;}
.ws10{word-spacing:-1.232000pt;}
.ws13{word-spacing:-0.762667pt;}
.ws8{word-spacing:-0.293333pt;}
.ws0{word-spacing:0.000000pt;}
.ws25{word-spacing:0.293333pt;}
.ws1b{word-spacing:0.410667pt;}
.ws26{word-spacing:0.586667pt;}
.ws2{word-spacing:1.973333pt;}
.ws6{word-spacing:1.994667pt;}
.ws18{word-spacing:2.229333pt;}
.ws5{word-spacing:2.288000pt;}
.wsb{word-spacing:3.392000pt;}
.ws19{word-spacing:3.813333pt;}
.ws22{word-spacing:4.869333pt;}
.wsf{word-spacing:6.512000pt;}
.ws24{word-spacing:6.688000pt;}
.ws1e{word-spacing:7.157333pt;}
.ws11{word-spacing:10.912000pt;}
.ws27{word-spacing:11.088000pt;}
.ws29{word-spacing:14.490667pt;}
.ws1f{word-spacing:16.837333pt;}
.ws15{word-spacing:18.245333pt;}
.ws17{word-spacing:20.944000pt;}
.ws1{word-spacing:1047.648000pt;}
.ws4{word-spacing:1144.789333pt;}
._25{margin-left:-47.766400pt;}
._30{margin-left:-14.841067pt;}
._7{margin-left:-13.877124pt;}
._2{margin-left:-7.520000pt;}
._2e{margin-left:-6.208000pt;}
._1d{margin-left:-5.216000pt;}
._0{margin-left:-3.584000pt;}
._4{margin-left:-2.176000pt;}
._1{margin-left:-1.024000pt;}
._3{width:0.986667pt;}
._10{width:2.512000pt;}
._12{width:4.048000pt;}
._20{width:4.957333pt;}
._b{width:5.914667pt;}
._14{width:7.253333pt;}
._f{width:8.736000pt;}
._9{width:10.517333pt;}
._5{width:11.434667pt;}
._d{width:12.394667pt;}
._2d{width:13.704335pt;}
._a{width:14.778667pt;}
._6{width:16.213333pt;}
._e{width:17.285333pt;}
._22{width:18.617600pt;}
._c{width:20.469333pt;}
._2b{width:21.479561pt;}
._13{width:22.554667pt;}
._2c{width:23.560000pt;}
._2f{width:24.997867pt;}
._8{width:26.021333pt;}
._11{width:29.136000pt;}
._2a{width:35.328000pt;}
._24{width:39.552000pt;}
._23{width:40.576000pt;}
._31{width:42.890667pt;}
._21{width:46.528000pt;}
._32{width:49.872000pt;}
._1c{width:75.274667pt;}
._27{width:167.302933pt;}
._28{width:204.262933pt;}
._29{width:210.129600pt;}
._33{width:249.441600pt;}
._34{width:347.963200pt;}
._1e{width:415.029333pt;}
._16{width:458.664000pt;}
._26{width:613.169600pt;}
._18{width:780.320000pt;}
._15{width:1001.034667pt;}
._1f{width:1056.448000pt;}
._1a{width:1094.333333pt;}
._1b{width:1104.480000pt;}
._17{width:1225.597333pt;}
._19{width:1289.832000pt;}
.fsa{font-size:34.202667pt;}
.fsb{font-size:48.000000pt;}
.fs5{font-size:50.666667pt;}
.fs6{font-size:53.333333pt;}
.fsc{font-size:56.000000pt;}
.fs4{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs9{font-size:69.333333pt;}
.fs3{font-size:74.666667pt;}
.fs1{font-size:85.333333pt;}
.fs7{font-size:106.666667pt;}
.fs2{font-size:160.000000pt;}
.fs0{font-size:224.000000pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:38.698133pt;}
.y5f{bottom:85.480267pt;}
.y81{bottom:94.698133pt;}
.y92{bottom:101.186400pt;}
.y9a{bottom:103.852933pt;}
.y5e{bottom:104.146933pt;}
.y80{bottom:113.364800pt;}
.y91{bottom:117.186400pt;}
.y99{bottom:119.852933pt;}
.y23{bottom:132.031467pt;}
.ye4{bottom:132.031600pt;}
.y90{bottom:133.186400pt;}
.y98{bottom:135.852933pt;}
.y5d{bottom:141.480267pt;}
.y22{bottom:150.698133pt;}
.ye3{bottom:150.698267pt;}
.y97{bottom:151.852933pt;}
.y5{bottom:152.972533pt;}
.y7f{bottom:160.031467pt;}
.y5c{bottom:160.146933pt;}
.y38{bottom:164.577333pt;}
.y21{bottom:169.364800pt;}
.ye2{bottom:169.364933pt;}
.ybb{bottom:177.364800pt;}
.y7e{bottom:178.698133pt;}
.y4{bottom:186.305867pt;}
.y20{bottom:188.031467pt;}
.ye1{bottom:188.031600pt;}
.y37{bottom:192.577333pt;}
.yba{bottom:196.031467pt;}
.y7d{bottom:197.364800pt;}
.y5b{bottom:197.480267pt;}
.y1f{bottom:206.698133pt;}
.ye0{bottom:206.698267pt;}
.yb9{bottom:214.698133pt;}
.y7c{bottom:216.031467pt;}
.y5a{bottom:216.146933pt;}
.y1e{bottom:225.364800pt;}
.ydf{bottom:225.364933pt;}
.y36{bottom:229.910667pt;}
.yb8{bottom:233.364800pt;}
.y59{bottom:234.813600pt;}
.y1d{bottom:244.031467pt;}
.yde{bottom:244.031600pt;}
.yb7{bottom:252.031467pt;}
.y58{bottom:253.480267pt;}
.y1c{bottom:262.698133pt;}
.ydd{bottom:262.698267pt;}
.y35{bottom:267.244000pt;}
.yb6{bottom:270.698133pt;}
.y1b{bottom:281.364800pt;}
.ydc{bottom:281.364933pt;}
.y57{bottom:281.480267pt;}
.yb5{bottom:289.364800pt;}
.y34{bottom:295.244000pt;}
.y1a{bottom:300.031467pt;}
.ydb{bottom:300.031600pt;}
.y56{bottom:300.146933pt;}
.yb4{bottom:308.031467pt;}
.y26{bottom:318.698133pt;}
.yda{bottom:318.698267pt;}
.y7b{bottom:328.031467pt;}
.y33{bottom:332.577333pt;}
.y19{bottom:337.364800pt;}
.y55{bottom:337.480267pt;}
.y7a{bottom:346.698133pt;}
.y18{bottom:356.031467pt;}
.yd9{bottom:364.031600pt;}
.y79{bottom:365.364800pt;}
.y32{bottom:369.910667pt;}
.y17{bottom:374.698133pt;}
.y54{bottom:374.813600pt;}
.yaa{bottom:382.698133pt;}
.yd8{bottom:382.698267pt;}
.y78{bottom:384.031467pt;}
.y25{bottom:393.364800pt;}
.y53{bottom:393.480267pt;}
.y31{bottom:397.910667pt;}
.ya9{bottom:401.364800pt;}
.yd7{bottom:401.364933pt;}
.y16{bottom:412.031467pt;}
.y52{bottom:412.146933pt;}
.y77{bottom:414.698133pt;}
.ya8{bottom:420.031467pt;}
.yd6{bottom:420.031600pt;}
.y15{bottom:430.698133pt;}
.y51{bottom:430.813600pt;}
.y76{bottom:433.364800pt;}
.y30{bottom:435.244000pt;}
.ya7{bottom:438.698133pt;}
.yd5{bottom:438.698267pt;}
.y14{bottom:449.364800pt;}
.y2f{bottom:453.910667pt;}
.ya6{bottom:457.364800pt;}
.yd4{bottom:457.364933pt;}
.y50{bottom:458.813600pt;}
.y13{bottom:468.031467pt;}
.y2e{bottom:472.577333pt;}
.ya5{bottom:476.031467pt;}
.yd3{bottom:476.031600pt;}
.y4f{bottom:477.480267pt;}
.y12{bottom:486.698133pt;}
.ya4{bottom:494.698133pt;}
.y4e{bottom:496.146933pt;}
.y2d{bottom:500.577333pt;}
.y24{bottom:505.364800pt;}
.yd2{bottom:505.364933pt;}
.ya3{bottom:513.364800pt;}
.y11{bottom:524.031467pt;}
.ya2{bottom:532.031467pt;}
.y75{bottom:533.364800pt;}
.y4d{bottom:533.480267pt;}
.y2c{bottom:537.910667pt;}
.y10{bottom:542.698133pt;}
.yd1{bottom:542.698267pt;}
.ya1{bottom:550.698133pt;}
.y74{bottom:552.031467pt;}
.y2b{bottom:556.577333pt;}
.yf{bottom:561.364800pt;}
.yd0{bottom:561.364933pt;}
.ya0{bottom:569.364800pt;}
.y73{bottom:570.698133pt;}
.y4c{bottom:570.813600pt;}
.y2a{bottom:575.244000pt;}
.ye{bottom:580.031467pt;}
.ycf{bottom:580.031600pt;}
.y9f{bottom:588.031467pt;}
.y72{bottom:589.364800pt;}
.y4b{bottom:589.480267pt;}
.y8f{bottom:598.698133pt;}
.yce{bottom:598.698267pt;}
.y29{bottom:603.244000pt;}
.y9e{bottom:606.698133pt;}
.y71{bottom:608.031467pt;}
.y4a{bottom:608.146933pt;}
.yd{bottom:617.364800pt;}
.ycd{bottom:617.364933pt;}
.y9d{bottom:625.364800pt;}
.y70{bottom:626.698133pt;}
.y8e{bottom:636.031467pt;}
.ycc{bottom:636.031600pt;}
.y49{bottom:636.146933pt;}
.y9c{bottom:644.031467pt;}
.yc{bottom:654.698133pt;}
.ycb{bottom:654.698267pt;}
.y48{bottom:654.813600pt;}
.y28{bottom:659.244000pt;}
.y8d{bottom:659.582133pt;}
.yb3{bottom:662.698133pt;}
.y6f{bottom:664.031467pt;}
.yb{bottom:673.364800pt;}
.yca{bottom:673.364933pt;}
.y47{bottom:673.480267pt;}
.yb2{bottom:681.364800pt;}
.y6e{bottom:682.698133pt;}
.ya{bottom:692.031467pt;}
.yc9{bottom:692.031600pt;}
.y46{bottom:692.146933pt;}
.yb1{bottom:700.031467pt;}
.y96{bottom:704.031467pt;}
.y8c{bottom:710.698133pt;}
.yc8{bottom:710.698267pt;}
.yb0{bottom:718.698133pt;}
.y6d{bottom:720.031467pt;}
.y95{bottom:722.698133pt;}
.y9{bottom:729.364800pt;}
.yc7{bottom:729.364933pt;}
.y45{bottom:729.480267pt;}
.yaf{bottom:737.364800pt;}
.y6c{bottom:738.698133pt;}
.y8b{bottom:748.031467pt;}
.yc6{bottom:748.031600pt;}
.yae{bottom:756.031467pt;}
.y6b{bottom:757.364800pt;}
.y8{bottom:766.698133pt;}
.yc5{bottom:766.698267pt;}
.y44{bottom:769.480267pt;}
.yad{bottom:774.698133pt;}
.y6a{bottom:776.031467pt;}
.y8a{bottom:785.364800pt;}
.yc4{bottom:785.364933pt;}
.yac{bottom:793.364800pt;}
.y69{bottom:794.698133pt;}
.y89{bottom:804.031467pt;}
.y43{bottom:804.146933pt;}
.y88{bottom:822.698133pt;}
.y42{bottom:822.813600pt;}
.yc3{bottom:830.698267pt;}
.y68{bottom:832.031467pt;}
.y87{bottom:841.364800pt;}
.y41{bottom:841.480267pt;}
.yc2{bottom:849.364933pt;}
.y86{bottom:860.031467pt;}
.yc1{bottom:868.031600pt;}
.y67{bottom:869.364800pt;}
.y40{bottom:869.480267pt;}
.y85{bottom:878.698133pt;}
.yc0{bottom:886.698267pt;}
.y66{bottom:888.031467pt;}
.y3f{bottom:888.146933pt;}
.y84{bottom:897.364800pt;}
.y65{bottom:906.698133pt;}
.y3e{bottom:906.813600pt;}
.y2{bottom:912.971867pt;}
.y83{bottom:916.031467pt;}
.ybf{bottom:916.031600pt;}
.y94{bottom:920.915467pt;}
.y64{bottom:925.364800pt;}
.y3d{bottom:925.480267pt;}
.y93{bottom:934.698133pt;}
.y63{bottom:944.031467pt;}
.y3c{bottom:944.146933pt;}
.y82{bottom:946.698133pt;}
.yab{bottom:953.364800pt;}
.ybe{bottom:953.364933pt;}
.y9b{bottom:961.364800pt;}
.y3b{bottom:962.813600pt;}
.y62{bottom:972.031467pt;}
.ybd{bottom:972.031600pt;}
.y3a{bottom:981.480267pt;}
.y1{bottom:983.638533pt;}
.y61{bottom:990.698133pt;}
.ybc{bottom:990.698267pt;}
.y60{bottom:1009.364800pt;}
.y39{bottom:1009.480267pt;}
.y3{bottom:1043.179733pt;}
.y7{bottom:1070.090667pt;}
.y6{bottom:1100.134933pt;}
.h13{height:25.986010pt;}
.h18{height:36.726562pt;}
.h14{height:36.773438pt;}
.h7{height:38.456000pt;}
.h8{height:40.520833pt;}
.h9{height:40.807292pt;}
.ha{height:40.859375pt;}
.h17{height:42.847656pt;}
.h19{height:42.902344pt;}
.h6{height:44.528000pt;}
.h15{height:44.572917pt;}
.hf{height:44.888021pt;}
.h10{height:44.945312pt;}
.h16{height:45.522010pt;}
.he{height:48.576000pt;}
.hd{height:48.968750pt;}
.h12{height:49.031250pt;}
.h11{height:52.624000pt;}
.hb{height:52.714667pt;}
.h5{height:56.672000pt;}
.h3{height:64.768000pt;}
.hc{height:80.960000pt;}
.h4{height:121.440000pt;}
.h2{height:170.016000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:93.474667pt;}
.x7{left:94.488133pt;}
.x12{left:102.616400pt;}
.x1{left:104.692933pt;}
.x2{left:107.716533pt;}
.xa{left:113.154800pt;}
.x15{left:117.165333pt;}
.xc{left:122.488133pt;}
.x3{left:126.581733pt;}
.xb{left:131.821467pt;}
.x10{left:152.249467pt;}
.x11{left:157.193867pt;}
.x4{left:183.150267pt;}
.xd{left:227.884533pt;}
.xe{left:232.675867pt;}
.x13{left:385.520000pt;}
.x14{left:386.481333pt;}
.x9{left:389.579733pt;}
.x8{left:408.188933pt;}
.x6{left:461.587867pt;}
.x5{left:554.982133pt;}
}




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