
    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_e4ad81898f558c6147428df1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.984000;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_9c51e1e0c59d1ec34d7563ec.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.666504;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_6dc4c226c7c89438c14cb62c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.984000;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_c4ee28596c3c7c8875938555.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.990000;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_c0530e5d6b373d07526b0e31.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.999000;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_5bf6bc4048d90c5518dca972.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.747000;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_53ac3983fd67ebf22d6fb4b7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.940000;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_0f8eff4b3d85211323d69dee.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.943000;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_3bc0015ad4bf03c8556f5269.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.747000;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_d90817ecbbacc40f34c86e3f.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.150000;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_b39196462ce56ff184591cea.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.926000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_f42ef4fb434297f4035b26d0.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.131000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_58e3f5786a86d642d3d6078a.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.090000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_374157875e869a93f09f6d32.woff2')format("woff");}.ffe{font-family:ffe;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;}
@font-face{font-family:fff;src:url('chunks/assets/font_06025977a12606a0c833921e.woff2')format("woff");}.fff{font-family:fff;line-height:1.000048;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_d813c69e278aa5b21e099f94.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_931b99468a332b151794901c.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.090000;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:ff12;src:url('chunks/assets/font_28a4c813cea211a78c85bc44.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.000048;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:ff13;src:url('chunks/assets/font_54c859112068a3f4e7f4fa3d.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.060000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_28a4c813cea211a78c85bc44.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.000048;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:ff15;src:url('chunks/assets/font_931b99468a332b151794901c.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.090000;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:ff16;src:url('chunks/assets/font_d813c69e278aa5b21e099f94.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.999000;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:ff17;src:url('chunks/assets/font_b9d04a16ace0924cc8fad2be.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.747000;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:ff18;src:url('chunks/assets/font_d813c69e278aa5b21e099f94.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.999000;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:ff19;src:url('chunks/assets/font_931b99468a332b151794901c.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.090000;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:ff1a;src:url('chunks/assets/font_28a4c813cea211a78c85bc44.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.000048;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:ff1b;src:url('chunks/assets/font_e78bb724bc3d4bc93febdfcc.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.747000;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:ff1c;src:url('chunks/assets/font_28a4c813cea211a78c85bc44.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.000048;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:ff1d;src:url('chunks/assets/font_931b99468a332b151794901c.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.090000;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:ff1e;src:url('chunks/assets/font_d813c69e278aa5b21e099f94.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.999000;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:ff1f;src:url('chunks/assets/font_2f32810cbb9d205f9715740d.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.739000;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;}
.m5a{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);}
.m61{transform:matrix(0.245221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245221,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.245598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245598,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.246255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246255,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.246434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246434,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.246436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246436,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.246703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246703,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.246737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246737,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.246739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246739,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.246845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246845,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.246924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246924,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.247097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247097,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.247307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247307,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.247348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247348,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.247400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247400,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.247629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247629,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.247712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247712,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.248017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248017,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.248262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248262,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.248352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248352,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.248388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248388,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.248403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248403,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.248557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248557,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.248631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248631,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.248633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248633,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.248757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248757,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.248840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248840,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.248852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248852,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.248869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248869,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.248871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248871,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.248912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248912,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.248914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248914,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.248974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248974,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.248995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248995,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.249039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249039,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.249042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249042,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.249050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249050,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.249053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249053,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249148,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.249298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249298,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.249393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249393,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.249547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249547,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.249633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249633,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.249643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249643,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.249669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249669,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.249686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249686,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.249736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249736,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249740,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.249762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249762,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.249771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249771,0.000000,0.000000,0.250000,0,0);}
.m50{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);}
.m2{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);}
.m63{transform:matrix(0.249861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249861,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.249867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249867,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.249912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249912,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249984,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249988,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);}
.m3a{transform:matrix(0.250002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250002,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.250012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250012,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.250029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250029,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.250076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250076,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250098,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.250124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250124,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250200,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.250217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250217,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250226,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.250240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250240,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.250264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250264,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.250429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250429,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.250445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250445,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.250474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250474,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250487,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.250519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250519,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.250524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250524,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.250576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250576,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.250586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250586,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.250631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250631,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250639,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.250689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250689,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.250721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250721,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.250798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250798,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.250871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250871,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.250879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250879,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.250883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250883,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.250889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250889,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.250891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250891,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.250895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250895,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.250912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250912,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.250976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250976,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.250992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250992,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.251004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251004,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.251005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251005,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.251029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251029,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.251067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251067,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.251074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251074,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.251079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251079,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.251090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251090,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.251118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251118,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.251155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251155,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.251238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251238,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.251264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251264,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.251345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251345,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.251543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251543,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.251545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251545,0.000000,0.000000,0.250000,0,0);}
.m6b{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);}
.m43{transform:matrix(0.251890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251890,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.251905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251905,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.251971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251971,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.252145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252145,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.252355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252355,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.252355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252355,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.252379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252379,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.252471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252471,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.252488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252488,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.252524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252524,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.252587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252587,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.252795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252795,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.252871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252871,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.252874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252874,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.253290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253290,0.000000,0.000000,0.250000,0,0);}
.m5e{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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:9.600000px;}
.v1{vertical-align:18.000000px;}
.ls15{letter-spacing:-1.764000px;}
.ls17{letter-spacing:-1.386000px;}
.ls46{letter-spacing:-1.254000px;}
.ls13{letter-spacing:-1.197000px;}
.ls1e{letter-spacing:-1.134000px;}
.ls40{letter-spacing:-1.083000px;}
.ls18{letter-spacing:-1.071000px;}
.ls16{letter-spacing:-0.945000px;}
.ls14{letter-spacing:-0.882000px;}
.ls3f{letter-spacing:-0.855000px;}
.ls1a{letter-spacing:-0.819000px;}
.ls3d{letter-spacing:-0.741000px;}
.ls23{letter-spacing:-0.693000px;}
.ls3c{letter-spacing:-0.684000px;}
.ls29{letter-spacing:-0.630000px;}
.ls19{letter-spacing:-0.567000px;}
.ls1d{letter-spacing:-0.441000px;}
.ls1b{letter-spacing:-0.378000px;}
.ls43{letter-spacing:-0.342000px;}
.ls24{letter-spacing:-0.315000px;}
.ls1c{letter-spacing:-0.252000px;}
.ls3e{letter-spacing:-0.228000px;}
.ls25{letter-spacing:-0.189000px;}
.ls22{letter-spacing:-0.126000px;}
.ls41{letter-spacing:-0.114000px;}
.ls1f{letter-spacing:-0.063000px;}
.ls42{letter-spacing:-0.057000px;}
.ls5{letter-spacing:-0.042000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.010200px;}
.ls4{letter-spacing:0.057000px;}
.ls9{letter-spacing:0.063000px;}
.ls3{letter-spacing:0.114000px;}
.ls10{letter-spacing:0.126000px;}
.ls11{letter-spacing:0.157500px;}
.ls12{letter-spacing:0.171000px;}
.ls21{letter-spacing:0.189000px;}
.ls2e{letter-spacing:0.199500px;}
.lsa{letter-spacing:0.220500px;}
.ls2d{letter-spacing:0.228000px;}
.ls7{letter-spacing:0.252000px;}
.ls31{letter-spacing:0.252225px;}
.ls30{letter-spacing:0.253581px;}
.ls38{letter-spacing:0.285000px;}
.lsb{letter-spacing:0.315000px;}
.ls33{letter-spacing:0.341700px;}
.ls32{letter-spacing:0.342000px;}
.lsc{letter-spacing:0.378000px;}
.ls36{letter-spacing:0.427500px;}
.ls35{letter-spacing:0.456000px;}
.ls28{letter-spacing:0.472500px;}
.lsf{letter-spacing:0.504000px;}
.ls45{letter-spacing:0.513000px;}
.ls3b{letter-spacing:0.530100px;}
.ls3a{letter-spacing:0.531432px;}
.ls2b{letter-spacing:0.535500px;}
.ls44{letter-spacing:0.536660px;}
.ls2a{letter-spacing:0.567000px;}
.ls2c{letter-spacing:0.627000px;}
.lse{letter-spacing:0.630000px;}
.ls8{letter-spacing:0.819000px;}
.ls6{letter-spacing:0.882000px;}
.ls34{letter-spacing:0.912000px;}
.ls2f{letter-spacing:1.026000px;}
.ls1{letter-spacing:3.000000px;}
.ls39{letter-spacing:3.848250px;}
.ls37{letter-spacing:3.961534px;}
.lsd{letter-spacing:4.189953px;}
.ls27{letter-spacing:827.460000px;}
.ls26{letter-spacing:839.626800px;}
.ls20{letter-spacing:1172.220000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc2{text-shadow:-0.015em 0 rgb(0,173,239),0 0.015em rgb(0,173,239),0.015em 0 rgb(0,173,239),0 -0.015em  rgb(0,173,239);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(0,173,239);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5d{word-spacing:-827.520000px;}
.ws49{word-spacing:-16.680000px;}
.ws13{word-spacing:-16.632000px;}
.ws64{word-spacing:-16.380000px;}
.ws63{word-spacing:-16.128000px;}
.ws17{word-spacing:-16.002000px;}
.ws19{word-spacing:-15.876000px;}
.ws18{word-spacing:-15.750000px;}
.ws65{word-spacing:-15.435000px;}
.ws6c{word-spacing:-15.276000px;}
.ws15{word-spacing:-15.183000px;}
.ws5f{word-spacing:-15.120000px;}
.ws16{word-spacing:-14.931000px;}
.ws14{word-spacing:-14.868000px;}
.ws71{word-spacing:-14.706000px;}
.ws74{word-spacing:-14.535000px;}
.ws6b{word-spacing:-14.449500px;}
.ws73{word-spacing:-14.364000px;}
.ws66{word-spacing:-14.250000px;}
.ws6f{word-spacing:-14.193000px;}
.ws8{word-spacing:-14.178000px;}
.ws69{word-spacing:-13.566000px;}
.ws6a{word-spacing:-13.509000px;}
.ws5{word-spacing:-13.344000px;}
.ws6e{word-spacing:-13.167000px;}
.ws8f{word-spacing:-13.053000px;}
.ws90{word-spacing:-12.996000px;}
.ws1a{word-spacing:-11.812500px;}
.ws4{word-spacing:-11.676000px;}
.ws75{word-spacing:-11.217600px;}
.ws72{word-spacing:-11.115000px;}
.ws3{word-spacing:-11.088000px;}
.ws70{word-spacing:-11.029500px;}
.ws2{word-spacing:-11.004000px;}
.ws6d{word-spacing:-10.939725px;}
.ws67{word-spacing:-10.687500px;}
.ws7{word-spacing:-10.008000px;}
.ws6{word-spacing:-8.757000px;}
.ws27{word-spacing:-4.032000px;}
.ws24{word-spacing:-3.969000px;}
.ws3e{word-spacing:-3.906000px;}
.ws3f{word-spacing:-3.843000px;}
.ws83{word-spacing:-3.648000px;}
.ws11{word-spacing:-3.591000px;}
.ws88{word-spacing:-3.534000px;}
.ws0{word-spacing:-3.300000px;}
.ws46{word-spacing:-3.213000px;}
.ws59{word-spacing:-3.024000px;}
.ws26{word-spacing:-2.961000px;}
.wsa{word-spacing:-2.898000px;}
.ws47{word-spacing:-2.709000px;}
.ws87{word-spacing:-2.565000px;}
.ws5c{word-spacing:-2.520000px;}
.ws53{word-spacing:-2.457000px;}
.ws4c{word-spacing:-2.331000px;}
.ws56{word-spacing:-2.268000px;}
.ws4b{word-spacing:-2.205000px;}
.ws4a{word-spacing:-2.184000px;}
.ws31{word-spacing:-2.079000px;}
.ws79{word-spacing:-1.953000px;}
.wsb{word-spacing:-1.848000px;}
.ws8e{word-spacing:-1.710000px;}
.ws3d{word-spacing:-1.701000px;}
.ws2e{word-spacing:-1.638000px;}
.ws48{word-spacing:-1.512000px;}
.ws81{word-spacing:-1.482000px;}
.ws29{word-spacing:-1.449000px;}
.ws36{word-spacing:-1.134000px;}
.ws4f{word-spacing:-1.008000px;}
.ws3c{word-spacing:-0.945000px;}
.ws80{word-spacing:-0.882000px;}
.ws33{word-spacing:-0.756000px;}
.wsf{word-spacing:-0.741000px;}
.ws60{word-spacing:-0.693000px;}
.ws4e{word-spacing:-0.630000px;}
.ws40{word-spacing:-0.567000px;}
.ws38{word-spacing:-0.504000px;}
.ws8b{word-spacing:-0.456000px;}
.ws3b{word-spacing:-0.441000px;}
.ws20{word-spacing:-0.399000px;}
.ws5b{word-spacing:-0.378000px;}
.ws8c{word-spacing:-0.342000px;}
.ws2a{word-spacing:-0.315000px;}
.ws1c{word-spacing:-0.285000px;}
.ws57{word-spacing:-0.252000px;}
.ws58{word-spacing:-0.189000px;}
.ws1f{word-spacing:-0.171000px;}
.ws50{word-spacing:-0.063000px;}
.ws68{word-spacing:-0.057000px;}
.ws1{word-spacing:0.000000px;}
.ws9{word-spacing:0.042000px;}
.ws1b{word-spacing:0.114000px;}
.ws5a{word-spacing:0.189000px;}
.ws3a{word-spacing:0.252000px;}
.ws32{word-spacing:0.315000px;}
.ws4d{word-spacing:0.441000px;}
.ws51{word-spacing:0.567000px;}
.ws84{word-spacing:0.684000px;}
.ws78{word-spacing:0.693000px;}
.ws82{word-spacing:0.798000px;}
.ws2c{word-spacing:0.882000px;}
.ws28{word-spacing:0.945000px;}
.ws22{word-spacing:0.969000px;}
.ws7a{word-spacing:1.008000px;}
.ws42{word-spacing:1.071000px;}
.ws25{word-spacing:1.197000px;}
.ws91{word-spacing:1.254000px;}
.wsd{word-spacing:1.311000px;}
.ws7e{word-spacing:1.323000px;}
.ws2f{word-spacing:1.449000px;}
.ws5e{word-spacing:1.470000px;}
.ws7b{word-spacing:1.512000px;}
.ws77{word-spacing:1.638000px;}
.ws8a{word-spacing:1.653000px;}
.ws45{word-spacing:1.701000px;}
.ws10{word-spacing:1.881000px;}
.ws44{word-spacing:1.890000px;}
.ws55{word-spacing:2.079000px;}
.ws52{word-spacing:2.205000px;}
.ws21{word-spacing:2.223000px;}
.ws41{word-spacing:2.268000px;}
.ws23{word-spacing:2.280000px;}
.ws8d{word-spacing:2.451000px;}
.ws54{word-spacing:2.457000px;}
.ws7f{word-spacing:2.520000px;}
.ws89{word-spacing:2.622000px;}
.ws37{word-spacing:2.646000px;}
.ws62{word-spacing:2.709000px;}
.ws1d{word-spacing:2.736000px;}
.ws7d{word-spacing:2.772000px;}
.ws7c{word-spacing:2.835000px;}
.ws61{word-spacing:2.961000px;}
.ws1e{word-spacing:3.078000px;}
.ws39{word-spacing:3.213000px;}
.wse{word-spacing:3.249000px;}
.ws43{word-spacing:3.276000px;}
.ws30{word-spacing:3.402000px;}
.ws85{word-spacing:3.477000px;}
.wsc{word-spacing:3.534000px;}
.ws86{word-spacing:3.591000px;}
.ws76{word-spacing:3.654000px;}
.ws34{word-spacing:3.717000px;}
.ws35{word-spacing:3.780000px;}
.ws2d{word-spacing:3.906000px;}
.ws2b{word-spacing:3.969000px;}
.ws12{word-spacing:2147.802600px;}
._2{margin-left:-1105.500000px;}
._e{margin-left:-147.660000px;}
._9{margin-left:-16.546200px;}
._8{margin-left:-14.230200px;}
._d{margin-left:-12.690000px;}
._b{margin-left:-8.179500px;}
._4{margin-left:-6.426000px;}
._6{margin-left:-4.620000px;}
._5{margin-left:-2.902200px;}
._0{margin-left:-1.800000px;}
._3{width:1.344000px;}
._c{width:2.559000px;}
._a{width:3.878941px;}
._f{width:5.334118px;}
._1{width:8.400000px;}
._7{width:127.465200px;}
.fc3{color:rgb(35,80,169);}
.fc2{color:rgb(16,154,149);}
.fc1{color:transparent;}
.fc4{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:31.500000px;}
.fs5{font-size:33.600000px;}
.fs8{font-size:36.000000px;}
.fs3{font-size:42.000000px;}
.fse{font-size:42.750000px;}
.fsd{font-size:47.250000px;}
.fs4{font-size:48.000000px;}
.fsa{font-size:51.000000px;}
.fs1{font-size:54.000000px;}
.fsb{font-size:57.000000px;}
.fs7{font-size:60.000000px;}
.fsc{font-size:63.000000px;}
.fs9{font-size:96.000000px;}
.fs0{font-size:102.000000px;}
.fs2{font-size:300.000000px;}
.y0{bottom:0.000000px;}
.y5d{bottom:53.145300px;}
.y34{bottom:53.318100px;}
.y33{bottom:53.318250px;}
.yce{bottom:126.028350px;}
.y9b{bottom:126.047400px;}
.yc7{bottom:126.047550px;}
.ycd{bottom:138.784200px;}
.y12a{bottom:140.958900px;}
.y9a{bottom:143.985150px;}
.yc6{bottom:143.985300px;}
.yc{bottom:148.818900px;}
.y129{bottom:155.889450px;}
.yb{bottom:160.818900px;}
.y99{bottom:161.922900px;}
.yc5{bottom:161.923050px;}
.y57{bottom:165.318900px;}
.y128{bottom:170.819850px;}
.y5c{bottom:172.818900px;}
.ya{bottom:173.418900px;}
.y98{bottom:179.860650px;}
.yc4{bottom:179.860800px;}
.y56{bottom:181.818900px;}
.y5b{bottom:184.818900px;}
.y9{bottom:185.418900px;}
.y127{bottom:185.750400px;}
.y5a{bottom:196.818900px;}
.y8{bottom:197.418900px;}
.y97{bottom:197.798400px;}
.yc3{bottom:197.798550px;}
.y55{bottom:198.318900px;}
.y126{bottom:200.680950px;}
.y59{bottom:208.818900px;}
.y7{bottom:209.418900px;}
.y54{bottom:214.818900px;}
.y125{bottom:215.611500px;}
.y96{bottom:215.736150px;}
.yc2{bottom:215.736300px;}
.y58{bottom:220.818900px;}
.yc9{bottom:226.417500px;}
.y6{bottom:229.922850px;}
.y124{bottom:230.541900px;}
.y53{bottom:231.318900px;}
.y95{bottom:233.673900px;}
.yc8{bottom:233.674050px;}
.yd0{bottom:234.546150px;}
.y5{bottom:242.522850px;}
.y123{bottom:245.472450px;}
.ycf{bottom:247.302000px;}
.y52{bottom:247.818900px;}
.y94{bottom:251.611650px;}
.y122{bottom:260.403150px;}
.y4{bottom:263.626800px;}
.y51{bottom:264.318900px;}
.y93{bottom:269.549400px;}
.yc1{bottom:269.549550px;}
.y121{bottom:275.333550px;}
.y3{bottom:276.226800px;}
.y50{bottom:280.818900px;}
.y92{bottom:287.487150px;}
.yc0{bottom:287.487300px;}
.y120{bottom:290.264100px;}
.y4f{bottom:297.318900px;}
.y11f{bottom:305.194650px;}
.y91{bottom:305.424900px;}
.ybf{bottom:305.425050px;}
.y11e{bottom:320.125050px;}
.y90{bottom:323.362650px;}
.ybe{bottom:323.362800px;}
.y4e{bottom:331.449750px;}
.y11d{bottom:335.055600px;}
.y8f{bottom:341.300400px;}
.ybd{bottom:341.300550px;}
.y4d{bottom:342.699750px;}
.y11c{bottom:349.986150px;}
.y4c{bottom:353.949750px;}
.y8e{bottom:359.238150px;}
.ybc{bottom:359.238300px;}
.y11b{bottom:364.916700px;}
.y8d{bottom:377.175900px;}
.ybb{bottom:377.176050px;}
.y11a{bottom:379.847100px;}
.y119{bottom:394.777650px;}
.y8c{bottom:395.113650px;}
.yba{bottom:395.113800px;}
.y118{bottom:409.708200px;}
.y8b{bottom:413.051400px;}
.yb9{bottom:413.051550px;}
.y117{bottom:424.638750px;}
.y8a{bottom:430.989150px;}
.yb8{bottom:430.989300px;}
.y116{bottom:439.569150px;}
.y89{bottom:448.926900px;}
.yb7{bottom:448.927050px;}
.y13{bottom:452.519100px;}
.y115{bottom:454.499700px;}
.y88{bottom:466.864650px;}
.yb6{bottom:466.864800px;}
.y12{bottom:468.771000px;}
.y114{bottom:469.430250px;}
.y113{bottom:484.360800px;}
.y87{bottom:484.802400px;}
.yb5{bottom:484.802550px;}
.y11{bottom:497.778900px;}
.y112{bottom:499.291200px;}
.y86{bottom:502.740150px;}
.yb4{bottom:502.740300px;}
.y4b{bottom:507.174300px;}
.y10{bottom:514.030950px;}
.y111{bottom:514.221750px;}
.y85{bottom:520.678050px;}
.ycc{bottom:521.561850px;}
.y110{bottom:529.152300px;}
.yf{bottom:530.282850px;}
.y84{bottom:538.615650px;}
.yb3{bottom:538.615800px;}
.y10f{bottom:544.082850px;}
.y4a{bottom:544.686000px;}
.ye{bottom:546.534900px;}
.y83{bottom:556.553400px;}
.yb2{bottom:556.553550px;}
.y10e{bottom:559.013250px;}
.y49{bottom:561.186000px;}
.yd{bottom:562.786800px;}
.y10d{bottom:573.943800px;}
.y82{bottom:574.491150px;}
.yb1{bottom:574.491300px;}
.y48{bottom:577.686000px;}
.y10c{bottom:588.874350px;}
.y81{bottom:592.428900px;}
.yec{bottom:592.429050px;}
.y47{bottom:594.186000px;}
.y10b{bottom:603.804900px;}
.y80{bottom:610.366650px;}
.yeb{bottom:610.366800px;}
.y46{bottom:610.686000px;}
.y32{bottom:611.466600px;}
.y10a{bottom:618.735450px;}
.yb0{bottom:619.160250px;}
.y31{bottom:626.466600px;}
.y45{bottom:627.186000px;}
.y7f{bottom:628.304400px;}
.yea{bottom:628.304550px;}
.yaf{bottom:631.916100px;}
.y109{bottom:633.665850px;}
.y44{bottom:643.686000px;}
.y7e{bottom:646.242150px;}
.ye9{bottom:646.242300px;}
.y108{bottom:648.596400px;}
.y30{bottom:658.474500px;}
.y43{bottom:660.186000px;}
.y107{bottom:663.526950px;}
.y7d{bottom:664.179900px;}
.ye8{bottom:664.180050px;}
.y2f{bottom:671.074500px;}
.y42{bottom:677.193900px;}
.ya6{bottom:677.545050px;}
.y106{bottom:678.457500px;}
.y7c{bottom:682.117650px;}
.ye7{bottom:682.117800px;}
.y9f{bottom:685.033050px;}
.y2e{bottom:686.863500px;}
.y105{bottom:693.387900px;}
.y41{bottom:694.201800px;}
.yab{bottom:694.600050px;}
.y7b{bottom:700.055400px;}
.ye6{bottom:700.055550px;}
.ya5{bottom:700.681050px;}
.y2d{bottom:703.715400px;}
.y104{bottom:708.318450px;}
.y2c{bottom:716.315400px;}
.y7a{bottom:717.993150px;}
.ye5{bottom:717.993300px;}
.ya4{bottom:723.157050px;}
.y103{bottom:723.249000px;}
.y40{bottom:726.091500px;}
.y2b{bottom:732.104400px;}
.ya7{bottom:735.163050px;}
.y79{bottom:735.930900px;}
.ye4{bottom:735.931050px;}
.y102{bottom:738.179550px;}
.y3f{bottom:742.591500px;}
.ya3{bottom:746.437050px;}
.y2a{bottom:748.956450px;}
.y101{bottom:753.109950px;}
.y78{bottom:753.868650px;}
.ye3{bottom:753.868800px;}
.y3e{bottom:759.091500px;}
.y29{bottom:761.556450px;}
.y100{bottom:768.040500px;}
.ya2{bottom:768.529050px;}
.y77{bottom:771.806400px;}
.ye2{bottom:771.806550px;}
.y3d{bottom:775.591500px;}
.y28{bottom:777.345300px;}
.yff{bottom:782.971050px;}
.y76{bottom:789.744300px;}
.ya1{bottom:792.877050px;}
.y27{bottom:794.197350px;}
.yfe{bottom:797.901600px;}
.y26{bottom:806.797350px;}
.y3c{bottom:807.481350px;}
.y75{bottom:807.682050px;}
.yfd{bottom:812.832150px;}
.ya0{bottom:815.641050px;}
.y25{bottom:822.586350px;}
.y3b{bottom:823.981350px;}
.y74{bottom:825.619650px;}
.ye1{bottom:825.619800px;}
.yfc{bottom:827.762550px;}
.ya9{bottom:833.308050px;}
.y24{bottom:839.438250px;}
.y3a{bottom:840.481350px;}
.yfb{bottom:842.693100px;}
.y9c{bottom:843.557400px;}
.ye0{bottom:843.557550px;}
.ycb{bottom:845.701350px;}
.y23{bottom:852.038250px;}
.y39{bottom:856.981350px;}
.yac{bottom:857.224050px;}
.yfa{bottom:857.623650px;}
.y73{bottom:861.495150px;}
.ydf{bottom:861.495300px;}
.y22{bottom:867.827250px;}
.yf9{bottom:872.554200px;}
.yaa{bottom:872.680050px;}
.y38{bottom:873.481350px;}
.yde{bottom:879.433050px;}
.y21{bottom:884.679150px;}
.yf8{bottom:887.484600px;}
.y37{bottom:889.981350px;}
.y20{bottom:897.279300px;}
.ydd{bottom:897.370800px;}
.yca{bottom:899.725050px;}
.yf7{bottom:902.415150px;}
.y1f{bottom:913.068300px;}
.ydc{bottom:915.308550px;}
.yf6{bottom:917.345700px;}
.y1e{bottom:925.668300px;}
.yf5{bottom:932.276250px;}
.ydb{bottom:933.246300px;}
.y72{bottom:933.307050px;}
.y6b{bottom:933.747600px;}
.y1d{bottom:941.457300px;}
.y71{bottom:945.307050px;}
.yf4{bottom:947.206650px;}
.y6a{bottom:950.247600px;}
.y70{bottom:957.307050px;}
.y1c{bottom:958.309350px;}
.yf3{bottom:962.137200px;}
.y69{bottom:966.747600px;}
.yda{bottom:969.121800px;}
.y6f{bottom:969.307050px;}
.y1b{bottom:970.909200px;}
.yf2{bottom:977.067750px;}
.y6e{bottom:981.307050px;}
.y133{bottom:982.572450px;}
.y68{bottom:983.247600px;}
.y1a{bottom:986.698200px;}
.yd9{bottom:987.059550px;}
.y36{bottom:989.007900px;}
.y6d{bottom:993.307050px;}
.y132{bottom:997.454250px;}
.y67{bottom:999.747600px;}
.y19{bottom:1003.550100px;}
.yf1{bottom:1004.754150px;}
.yd8{bottom:1004.997300px;}
.y6c{bottom:1005.307050px;}
.y131{bottom:1012.336200px;}
.y66{bottom:1016.247600px;}
.y35{bottom:1019.007900px;}
.yd7{bottom:1022.935050px;}
.y2{bottom:1030.783500px;}
.y65{bottom:1032.747600px;}
.y18{bottom:1033.158000px;}
.y1{bottom:1039.245750px;}
.yd6{bottom:1040.872800px;}
.y64{bottom:1049.247600px;}
.y130{bottom:1056.981750px;}
.yf0{bottom:1058.616000px;}
.yd5{bottom:1058.810550px;}
.y17{bottom:1062.765900px;}
.y63{bottom:1065.747600px;}
.y12f{bottom:1071.863700px;}
.yad{bottom:1073.212050px;}
.yef{bottom:1076.602350px;}
.yd4{bottom:1076.748300px;}
.y62{bottom:1082.247600px;}
.ya8{bottom:1083.613050px;}
.y12e{bottom:1086.745650px;}
.y16{bottom:1092.373800px;}
.yee{bottom:1094.588700px;}
.yd3{bottom:1094.685900px;}
.y61{bottom:1098.747600px;}
.y12d{bottom:1101.627450px;}
.yed{bottom:1112.575050px;}
.yd2{bottom:1112.623800px;}
.y9e{bottom:1113.312750px;}
.y60{bottom:1115.247600px;}
.y12c{bottom:1116.509400px;}
.y15{bottom:1121.981700px;}
.yae{bottom:1124.458650px;}
.yd1{bottom:1130.561550px;}
.y12b{bottom:1131.391350px;}
.y5f{bottom:1131.747600px;}
.y14{bottom:1134.581700px;}
.y5e{bottom:1202.244000px;}
.y9d{bottom:1202.244150px;}
.hc{height:28.296000px;}
.h5{height:30.828000px;}
.h6{height:31.080000px;}
.h4{height:33.012000px;}
.h14{height:34.482000px;}
.h18{height:35.088000px;}
.h1e{height:35.952750px;}
.h7{height:37.728000px;}
.ha{height:38.892000px;}
.h8{height:38.934000px;}
.hf{height:40.086000px;}
.h9{height:40.110000px;}
.h1f{height:40.757714px;}
.h19{height:43.860000px;}
.h13{height:44.334000px;}
.h11{height:46.797000px;}
.h12{height:46.872000px;}
.h1d{height:47.937000px;}
.hb{height:49.260000px;}
.h10{height:49.476000px;}
.h15{height:51.723000px;}
.h16{height:52.983000px;}
.h1b{height:53.262000px;}
.h1c{height:54.684000px;}
.he{height:57.300000px;}
.h17{height:62.280000px;}
.h2{height:74.868000px;}
.hd{height:91.680000px;}
.h3{height:214.500000px;}
.h1a{height:915.660000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:718.200000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x33{left:23.528700px;}
.x3{left:74.409450px;}
.x40{left:82.196700px;}
.x1d{left:83.475900px;}
.x1e{left:87.217650px;}
.x27{left:88.578600px;}
.x47{left:91.417350px;}
.x4{left:97.157400px;}
.x5{left:109.913250px;}
.x34{left:111.720000px;}
.x35{left:112.886700px;}
.x7{left:116.929200px;}
.x2a{left:119.414700px;}
.x29{left:120.974700px;}
.x8{left:129.685050px;}
.x23{left:135.611700px;}
.x41{left:141.181200px;}
.x48{left:148.742700px;}
.x17{left:170.825700px;}
.x1f{left:174.733950px;}
.x49{left:186.183150px;}
.x1c{left:187.930350px;}
.x20{left:189.219750px;}
.x1b{left:191.359350px;}
.x21{left:193.512600px;}
.x19{left:196.894200px;}
.x1a{left:200.498550px;}
.x22{left:202.368000px;}
.x18{left:215.820900px;}
.x42{left:222.425850px;}
.x2{left:267.023700px;}
.x43{left:268.999200px;}
.x16{left:275.314950px;}
.x44{left:315.455550px;}
.x2d{left:317.182200px;}
.x45{left:380.788800px;}
.x15{left:390.529050px;}
.xa{left:396.039450px;}
.xb{left:401.929200px;}
.x46{left:406.220550px;}
.x2e{left:414.694200px;}
.x2c{left:426.829200px;}
.x2b{left:431.194200px;}
.x25{left:457.086600px;}
.x37{left:468.104250px;}
.x24{left:469.842450px;}
.x36{left:474.094500px;}
.x4a{left:481.147950px;}
.x3b{left:483.064950px;}
.x38{left:503.654100px;}
.x4b{left:538.741500px;}
.x31{left:546.718200px;}
.x2f{left:547.990200px;}
.x39{left:558.185100px;}
.x3c{left:564.023250px;}
.xd{left:568.850250px;}
.xc{left:576.475050px;}
.x3a{left:580.740300px;}
.x26{left:584.768250px;}
.x4c{left:602.286300px;}
.x11{left:619.875300px;}
.xf{left:627.586050px;}
.x10{left:629.700600px;}
.x50{left:641.620800px;}
.x4d{left:646.263150px;}
.x4e{left:655.756200px;}
.x9{left:664.605450px;}
.x30{left:676.678200px;}
.x4f{left:685.224900px;}
.x1{left:691.382700px;}
.x13{left:706.994100px;}
.x12{left:711.240450px;}
.x14{left:716.416500px;}
.x3d{left:720.691350px;}
.xe{left:734.069700px;}
.x28{left:736.178700px;}
.x3e{left:759.950250px;}
.x6{left:794.302350px;}
.x32{left:796.240200px;}
.x3f{left:801.079950px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:8.533333pt;}
.v1{vertical-align:16.000000pt;}
.ls15{letter-spacing:-1.568000pt;}
.ls17{letter-spacing:-1.232000pt;}
.ls46{letter-spacing:-1.114667pt;}
.ls13{letter-spacing:-1.064000pt;}
.ls1e{letter-spacing:-1.008000pt;}
.ls40{letter-spacing:-0.962667pt;}
.ls18{letter-spacing:-0.952000pt;}
.ls16{letter-spacing:-0.840000pt;}
.ls14{letter-spacing:-0.784000pt;}
.ls3f{letter-spacing:-0.760000pt;}
.ls1a{letter-spacing:-0.728000pt;}
.ls3d{letter-spacing:-0.658667pt;}
.ls23{letter-spacing:-0.616000pt;}
.ls3c{letter-spacing:-0.608000pt;}
.ls29{letter-spacing:-0.560000pt;}
.ls19{letter-spacing:-0.504000pt;}
.ls1d{letter-spacing:-0.392000pt;}
.ls1b{letter-spacing:-0.336000pt;}
.ls43{letter-spacing:-0.304000pt;}
.ls24{letter-spacing:-0.280000pt;}
.ls1c{letter-spacing:-0.224000pt;}
.ls3e{letter-spacing:-0.202667pt;}
.ls25{letter-spacing:-0.168000pt;}
.ls22{letter-spacing:-0.112000pt;}
.ls41{letter-spacing:-0.101333pt;}
.ls1f{letter-spacing:-0.056000pt;}
.ls42{letter-spacing:-0.050667pt;}
.ls5{letter-spacing:-0.037333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.009067pt;}
.ls4{letter-spacing:0.050667pt;}
.ls9{letter-spacing:0.056000pt;}
.ls3{letter-spacing:0.101333pt;}
.ls10{letter-spacing:0.112000pt;}
.ls11{letter-spacing:0.140000pt;}
.ls12{letter-spacing:0.152000pt;}
.ls21{letter-spacing:0.168000pt;}
.ls2e{letter-spacing:0.177333pt;}
.lsa{letter-spacing:0.196000pt;}
.ls2d{letter-spacing:0.202667pt;}
.ls7{letter-spacing:0.224000pt;}
.ls31{letter-spacing:0.224200pt;}
.ls30{letter-spacing:0.225405pt;}
.ls38{letter-spacing:0.253333pt;}
.lsb{letter-spacing:0.280000pt;}
.ls33{letter-spacing:0.303733pt;}
.ls32{letter-spacing:0.304000pt;}
.lsc{letter-spacing:0.336000pt;}
.ls36{letter-spacing:0.380000pt;}
.ls35{letter-spacing:0.405333pt;}
.ls28{letter-spacing:0.420000pt;}
.lsf{letter-spacing:0.448000pt;}
.ls45{letter-spacing:0.456000pt;}
.ls3b{letter-spacing:0.471200pt;}
.ls3a{letter-spacing:0.472384pt;}
.ls2b{letter-spacing:0.476000pt;}
.ls44{letter-spacing:0.477031pt;}
.ls2a{letter-spacing:0.504000pt;}
.ls2c{letter-spacing:0.557333pt;}
.lse{letter-spacing:0.560000pt;}
.ls8{letter-spacing:0.728000pt;}
.ls6{letter-spacing:0.784000pt;}
.ls34{letter-spacing:0.810667pt;}
.ls2f{letter-spacing:0.912000pt;}
.ls1{letter-spacing:2.666667pt;}
.ls39{letter-spacing:3.420667pt;}
.ls37{letter-spacing:3.521364pt;}
.lsd{letter-spacing:3.724403pt;}
.ls27{letter-spacing:735.520000pt;}
.ls26{letter-spacing:746.334933pt;}
.ls20{letter-spacing:1041.973333pt;}
.ws5d{word-spacing:-735.573333pt;}
.ws49{word-spacing:-14.826667pt;}
.ws13{word-spacing:-14.784000pt;}
.ws64{word-spacing:-14.560000pt;}
.ws63{word-spacing:-14.336000pt;}
.ws17{word-spacing:-14.224000pt;}
.ws19{word-spacing:-14.112000pt;}
.ws18{word-spacing:-14.000000pt;}
.ws65{word-spacing:-13.720000pt;}
.ws6c{word-spacing:-13.578667pt;}
.ws15{word-spacing:-13.496000pt;}
.ws5f{word-spacing:-13.440000pt;}
.ws16{word-spacing:-13.272000pt;}
.ws14{word-spacing:-13.216000pt;}
.ws71{word-spacing:-13.072000pt;}
.ws74{word-spacing:-12.920000pt;}
.ws6b{word-spacing:-12.844000pt;}
.ws73{word-spacing:-12.768000pt;}
.ws66{word-spacing:-12.666667pt;}
.ws6f{word-spacing:-12.616000pt;}
.ws8{word-spacing:-12.602667pt;}
.ws69{word-spacing:-12.058667pt;}
.ws6a{word-spacing:-12.008000pt;}
.ws5{word-spacing:-11.861333pt;}
.ws6e{word-spacing:-11.704000pt;}
.ws8f{word-spacing:-11.602667pt;}
.ws90{word-spacing:-11.552000pt;}
.ws1a{word-spacing:-10.500000pt;}
.ws4{word-spacing:-10.378667pt;}
.ws75{word-spacing:-9.971200pt;}
.ws72{word-spacing:-9.880000pt;}
.ws3{word-spacing:-9.856000pt;}
.ws70{word-spacing:-9.804000pt;}
.ws2{word-spacing:-9.781333pt;}
.ws6d{word-spacing:-9.724200pt;}
.ws67{word-spacing:-9.500000pt;}
.ws7{word-spacing:-8.896000pt;}
.ws6{word-spacing:-7.784000pt;}
.ws27{word-spacing:-3.584000pt;}
.ws24{word-spacing:-3.528000pt;}
.ws3e{word-spacing:-3.472000pt;}
.ws3f{word-spacing:-3.416000pt;}
.ws83{word-spacing:-3.242667pt;}
.ws11{word-spacing:-3.192000pt;}
.ws88{word-spacing:-3.141333pt;}
.ws0{word-spacing:-2.933333pt;}
.ws46{word-spacing:-2.856000pt;}
.ws59{word-spacing:-2.688000pt;}
.ws26{word-spacing:-2.632000pt;}
.wsa{word-spacing:-2.576000pt;}
.ws47{word-spacing:-2.408000pt;}
.ws87{word-spacing:-2.280000pt;}
.ws5c{word-spacing:-2.240000pt;}
.ws53{word-spacing:-2.184000pt;}
.ws4c{word-spacing:-2.072000pt;}
.ws56{word-spacing:-2.016000pt;}
.ws4b{word-spacing:-1.960000pt;}
.ws4a{word-spacing:-1.941333pt;}
.ws31{word-spacing:-1.848000pt;}
.ws79{word-spacing:-1.736000pt;}
.wsb{word-spacing:-1.642667pt;}
.ws8e{word-spacing:-1.520000pt;}
.ws3d{word-spacing:-1.512000pt;}
.ws2e{word-spacing:-1.456000pt;}
.ws48{word-spacing:-1.344000pt;}
.ws81{word-spacing:-1.317333pt;}
.ws29{word-spacing:-1.288000pt;}
.ws36{word-spacing:-1.008000pt;}
.ws4f{word-spacing:-0.896000pt;}
.ws3c{word-spacing:-0.840000pt;}
.ws80{word-spacing:-0.784000pt;}
.ws33{word-spacing:-0.672000pt;}
.wsf{word-spacing:-0.658667pt;}
.ws60{word-spacing:-0.616000pt;}
.ws4e{word-spacing:-0.560000pt;}
.ws40{word-spacing:-0.504000pt;}
.ws38{word-spacing:-0.448000pt;}
.ws8b{word-spacing:-0.405333pt;}
.ws3b{word-spacing:-0.392000pt;}
.ws20{word-spacing:-0.354667pt;}
.ws5b{word-spacing:-0.336000pt;}
.ws8c{word-spacing:-0.304000pt;}
.ws2a{word-spacing:-0.280000pt;}
.ws1c{word-spacing:-0.253333pt;}
.ws57{word-spacing:-0.224000pt;}
.ws58{word-spacing:-0.168000pt;}
.ws1f{word-spacing:-0.152000pt;}
.ws50{word-spacing:-0.056000pt;}
.ws68{word-spacing:-0.050667pt;}
.ws1{word-spacing:0.000000pt;}
.ws9{word-spacing:0.037333pt;}
.ws1b{word-spacing:0.101333pt;}
.ws5a{word-spacing:0.168000pt;}
.ws3a{word-spacing:0.224000pt;}
.ws32{word-spacing:0.280000pt;}
.ws4d{word-spacing:0.392000pt;}
.ws51{word-spacing:0.504000pt;}
.ws84{word-spacing:0.608000pt;}
.ws78{word-spacing:0.616000pt;}
.ws82{word-spacing:0.709333pt;}
.ws2c{word-spacing:0.784000pt;}
.ws28{word-spacing:0.840000pt;}
.ws22{word-spacing:0.861333pt;}
.ws7a{word-spacing:0.896000pt;}
.ws42{word-spacing:0.952000pt;}
.ws25{word-spacing:1.064000pt;}
.ws91{word-spacing:1.114667pt;}
.wsd{word-spacing:1.165333pt;}
.ws7e{word-spacing:1.176000pt;}
.ws2f{word-spacing:1.288000pt;}
.ws5e{word-spacing:1.306667pt;}
.ws7b{word-spacing:1.344000pt;}
.ws77{word-spacing:1.456000pt;}
.ws8a{word-spacing:1.469333pt;}
.ws45{word-spacing:1.512000pt;}
.ws10{word-spacing:1.672000pt;}
.ws44{word-spacing:1.680000pt;}
.ws55{word-spacing:1.848000pt;}
.ws52{word-spacing:1.960000pt;}
.ws21{word-spacing:1.976000pt;}
.ws41{word-spacing:2.016000pt;}
.ws23{word-spacing:2.026667pt;}
.ws8d{word-spacing:2.178667pt;}
.ws54{word-spacing:2.184000pt;}
.ws7f{word-spacing:2.240000pt;}
.ws89{word-spacing:2.330667pt;}
.ws37{word-spacing:2.352000pt;}
.ws62{word-spacing:2.408000pt;}
.ws1d{word-spacing:2.432000pt;}
.ws7d{word-spacing:2.464000pt;}
.ws7c{word-spacing:2.520000pt;}
.ws61{word-spacing:2.632000pt;}
.ws1e{word-spacing:2.736000pt;}
.ws39{word-spacing:2.856000pt;}
.wse{word-spacing:2.888000pt;}
.ws43{word-spacing:2.912000pt;}
.ws30{word-spacing:3.024000pt;}
.ws85{word-spacing:3.090667pt;}
.wsc{word-spacing:3.141333pt;}
.ws86{word-spacing:3.192000pt;}
.ws76{word-spacing:3.248000pt;}
.ws34{word-spacing:3.304000pt;}
.ws35{word-spacing:3.360000pt;}
.ws2d{word-spacing:3.472000pt;}
.ws2b{word-spacing:3.528000pt;}
.ws12{word-spacing:1909.157867pt;}
._2{margin-left:-982.666667pt;}
._e{margin-left:-131.253333pt;}
._9{margin-left:-14.707733pt;}
._8{margin-left:-12.649067pt;}
._d{margin-left:-11.280000pt;}
._b{margin-left:-7.270667pt;}
._4{margin-left:-5.712000pt;}
._6{margin-left:-4.106667pt;}
._5{margin-left:-2.579733pt;}
._0{margin-left:-1.600000pt;}
._3{width:1.194667pt;}
._c{width:2.274667pt;}
._a{width:3.447948pt;}
._f{width:4.741438pt;}
._1{width:7.466667pt;}
._7{width:113.302400pt;}
.fs6{font-size:28.000000pt;}
.fs5{font-size:29.866667pt;}
.fs8{font-size:32.000000pt;}
.fs3{font-size:37.333333pt;}
.fse{font-size:38.000000pt;}
.fsd{font-size:42.000000pt;}
.fs4{font-size:42.666667pt;}
.fsa{font-size:45.333333pt;}
.fs1{font-size:48.000000pt;}
.fsb{font-size:50.666667pt;}
.fs7{font-size:53.333333pt;}
.fsc{font-size:56.000000pt;}
.fs9{font-size:85.333333pt;}
.fs0{font-size:90.666667pt;}
.fs2{font-size:266.666667pt;}
.y0{bottom:0.000000pt;}
.y5d{bottom:47.240267pt;}
.y34{bottom:47.393867pt;}
.y33{bottom:47.394000pt;}
.yce{bottom:112.025200pt;}
.y9b{bottom:112.042133pt;}
.yc7{bottom:112.042267pt;}
.ycd{bottom:123.363733pt;}
.y12a{bottom:125.296800pt;}
.y9a{bottom:127.986800pt;}
.yc6{bottom:127.986933pt;}
.yc{bottom:132.283467pt;}
.y129{bottom:138.568400pt;}
.yb{bottom:142.950133pt;}
.y99{bottom:143.931467pt;}
.yc5{bottom:143.931600pt;}
.y57{bottom:146.950133pt;}
.y128{bottom:151.839867pt;}
.y5c{bottom:153.616800pt;}
.ya{bottom:154.150133pt;}
.y98{bottom:159.876133pt;}
.yc4{bottom:159.876267pt;}
.y56{bottom:161.616800pt;}
.y5b{bottom:164.283467pt;}
.y9{bottom:164.816800pt;}
.y127{bottom:165.111467pt;}
.y5a{bottom:174.950133pt;}
.y8{bottom:175.483467pt;}
.y97{bottom:175.820800pt;}
.yc3{bottom:175.820933pt;}
.y55{bottom:176.283467pt;}
.y126{bottom:178.383067pt;}
.y59{bottom:185.616800pt;}
.y7{bottom:186.150133pt;}
.y54{bottom:190.950133pt;}
.y125{bottom:191.654667pt;}
.y96{bottom:191.765467pt;}
.yc2{bottom:191.765600pt;}
.y58{bottom:196.283467pt;}
.yc9{bottom:201.260000pt;}
.y6{bottom:204.375867pt;}
.y124{bottom:204.926133pt;}
.y53{bottom:205.616800pt;}
.y95{bottom:207.710133pt;}
.yc8{bottom:207.710267pt;}
.yd0{bottom:208.485467pt;}
.y5{bottom:215.575867pt;}
.y123{bottom:218.197733pt;}
.ycf{bottom:219.824000pt;}
.y52{bottom:220.283467pt;}
.y94{bottom:223.654800pt;}
.y122{bottom:231.469467pt;}
.y4{bottom:234.334933pt;}
.y51{bottom:234.950133pt;}
.y93{bottom:239.599467pt;}
.yc1{bottom:239.599600pt;}
.y121{bottom:244.740933pt;}
.y3{bottom:245.534933pt;}
.y50{bottom:249.616800pt;}
.y92{bottom:255.544133pt;}
.yc0{bottom:255.544267pt;}
.y120{bottom:258.012533pt;}
.y4f{bottom:264.283467pt;}
.y11f{bottom:271.284133pt;}
.y91{bottom:271.488800pt;}
.ybf{bottom:271.488933pt;}
.y11e{bottom:284.555600pt;}
.y90{bottom:287.433467pt;}
.ybe{bottom:287.433600pt;}
.y4e{bottom:294.622000pt;}
.y11d{bottom:297.827200pt;}
.y8f{bottom:303.378133pt;}
.ybd{bottom:303.378267pt;}
.y4d{bottom:304.622000pt;}
.y11c{bottom:311.098800pt;}
.y4c{bottom:314.622000pt;}
.y8e{bottom:319.322800pt;}
.ybc{bottom:319.322933pt;}
.y11b{bottom:324.370400pt;}
.y8d{bottom:335.267467pt;}
.ybb{bottom:335.267600pt;}
.y11a{bottom:337.641867pt;}
.y119{bottom:350.913467pt;}
.y8c{bottom:351.212133pt;}
.yba{bottom:351.212267pt;}
.y118{bottom:364.185067pt;}
.y8b{bottom:367.156800pt;}
.yb9{bottom:367.156933pt;}
.y117{bottom:377.456667pt;}
.y8a{bottom:383.101467pt;}
.yb8{bottom:383.101600pt;}
.y116{bottom:390.728133pt;}
.y89{bottom:399.046133pt;}
.yb7{bottom:399.046267pt;}
.y13{bottom:402.239200pt;}
.y115{bottom:403.999733pt;}
.y88{bottom:414.990800pt;}
.yb6{bottom:414.990933pt;}
.y12{bottom:416.685333pt;}
.y114{bottom:417.271333pt;}
.y113{bottom:430.542933pt;}
.y87{bottom:430.935467pt;}
.yb5{bottom:430.935600pt;}
.y11{bottom:442.470133pt;}
.y112{bottom:443.814400pt;}
.y86{bottom:446.880133pt;}
.yb4{bottom:446.880267pt;}
.y4b{bottom:450.821600pt;}
.y10{bottom:456.916400pt;}
.y111{bottom:457.086000pt;}
.y85{bottom:462.824933pt;}
.ycc{bottom:463.610533pt;}
.y110{bottom:470.357600pt;}
.yf{bottom:471.362533pt;}
.y84{bottom:478.769467pt;}
.yb3{bottom:478.769600pt;}
.y10f{bottom:483.629200pt;}
.y4a{bottom:484.165333pt;}
.ye{bottom:485.808800pt;}
.y83{bottom:494.714133pt;}
.yb2{bottom:494.714267pt;}
.y10e{bottom:496.900667pt;}
.y49{bottom:498.832000pt;}
.yd{bottom:500.254933pt;}
.y10d{bottom:510.172267pt;}
.y82{bottom:510.658800pt;}
.yb1{bottom:510.658933pt;}
.y48{bottom:513.498667pt;}
.y10c{bottom:523.443867pt;}
.y81{bottom:526.603467pt;}
.yec{bottom:526.603600pt;}
.y47{bottom:528.165333pt;}
.y10b{bottom:536.715467pt;}
.y80{bottom:542.548133pt;}
.yeb{bottom:542.548267pt;}
.y46{bottom:542.832000pt;}
.y32{bottom:543.525867pt;}
.y10a{bottom:549.987067pt;}
.yb0{bottom:550.364667pt;}
.y31{bottom:556.859200pt;}
.y45{bottom:557.498667pt;}
.y7f{bottom:558.492800pt;}
.yea{bottom:558.492933pt;}
.yaf{bottom:561.703200pt;}
.y109{bottom:563.258533pt;}
.y44{bottom:572.165333pt;}
.y7e{bottom:574.437467pt;}
.ye9{bottom:574.437600pt;}
.y108{bottom:576.530133pt;}
.y30{bottom:585.310667pt;}
.y43{bottom:586.832000pt;}
.y107{bottom:589.801733pt;}
.y7d{bottom:590.382133pt;}
.ye8{bottom:590.382267pt;}
.y2f{bottom:596.510667pt;}
.y42{bottom:601.950133pt;}
.ya6{bottom:602.262267pt;}
.y106{bottom:603.073333pt;}
.y7c{bottom:606.326800pt;}
.ye7{bottom:606.326933pt;}
.y9f{bottom:608.918267pt;}
.y2e{bottom:610.545333pt;}
.y105{bottom:616.344800pt;}
.y41{bottom:617.068267pt;}
.yab{bottom:617.422267pt;}
.y7b{bottom:622.271467pt;}
.ye6{bottom:622.271600pt;}
.ya5{bottom:622.827600pt;}
.y2d{bottom:625.524800pt;}
.y104{bottom:629.616400pt;}
.y2c{bottom:636.724800pt;}
.y7a{bottom:638.216133pt;}
.ye5{bottom:638.216267pt;}
.ya4{bottom:642.806267pt;}
.y103{bottom:642.888000pt;}
.y40{bottom:645.414667pt;}
.y2b{bottom:650.759467pt;}
.ya7{bottom:653.478267pt;}
.y79{bottom:654.160800pt;}
.ye4{bottom:654.160933pt;}
.y102{bottom:656.159600pt;}
.y3f{bottom:660.081333pt;}
.ya3{bottom:663.499600pt;}
.y2a{bottom:665.739067pt;}
.y101{bottom:669.431067pt;}
.y78{bottom:670.105467pt;}
.ye3{bottom:670.105600pt;}
.y3e{bottom:674.748000pt;}
.y29{bottom:676.939067pt;}
.y100{bottom:682.702667pt;}
.ya2{bottom:683.136933pt;}
.y77{bottom:686.050133pt;}
.ye2{bottom:686.050267pt;}
.y3d{bottom:689.414667pt;}
.y28{bottom:690.973600pt;}
.yff{bottom:695.974267pt;}
.y76{bottom:701.994933pt;}
.ya1{bottom:704.779600pt;}
.y27{bottom:705.953200pt;}
.yfe{bottom:709.245867pt;}
.y26{bottom:717.153200pt;}
.y3c{bottom:717.761200pt;}
.y75{bottom:717.939600pt;}
.yfd{bottom:722.517467pt;}
.ya0{bottom:725.014267pt;}
.y25{bottom:731.187867pt;}
.y3b{bottom:732.427867pt;}
.y74{bottom:733.884133pt;}
.ye1{bottom:733.884267pt;}
.yfc{bottom:735.788933pt;}
.ya9{bottom:740.718267pt;}
.y24{bottom:746.167333pt;}
.y3a{bottom:747.094533pt;}
.yfb{bottom:749.060533pt;}
.y9c{bottom:749.828800pt;}
.ye0{bottom:749.828933pt;}
.ycb{bottom:751.734533pt;}
.y23{bottom:757.367333pt;}
.y39{bottom:761.761200pt;}
.yac{bottom:761.976933pt;}
.yfa{bottom:762.332133pt;}
.y73{bottom:765.773467pt;}
.ydf{bottom:765.773600pt;}
.y22{bottom:771.402000pt;}
.yf9{bottom:775.603733pt;}
.yaa{bottom:775.715600pt;}
.y38{bottom:776.427867pt;}
.yde{bottom:781.718267pt;}
.y21{bottom:786.381467pt;}
.yf8{bottom:788.875200pt;}
.y37{bottom:791.094533pt;}
.y20{bottom:797.581600pt;}
.ydd{bottom:797.662933pt;}
.yca{bottom:799.755600pt;}
.yf7{bottom:802.146800pt;}
.y1f{bottom:811.616267pt;}
.ydc{bottom:813.607600pt;}
.yf6{bottom:815.418400pt;}
.y1e{bottom:822.816267pt;}
.yf5{bottom:828.690000pt;}
.ydb{bottom:829.552267pt;}
.y72{bottom:829.606267pt;}
.y6b{bottom:829.997867pt;}
.y1d{bottom:836.850933pt;}
.y71{bottom:840.272933pt;}
.yf4{bottom:841.961467pt;}
.y6a{bottom:844.664533pt;}
.y70{bottom:850.939600pt;}
.y1c{bottom:851.830533pt;}
.yf3{bottom:855.233067pt;}
.y69{bottom:859.331200pt;}
.yda{bottom:861.441600pt;}
.y6f{bottom:861.606267pt;}
.y1b{bottom:863.030400pt;}
.yf2{bottom:868.504667pt;}
.y6e{bottom:872.272933pt;}
.y133{bottom:873.397733pt;}
.y68{bottom:873.997867pt;}
.y1a{bottom:877.065067pt;}
.yd9{bottom:877.386267pt;}
.y36{bottom:879.118133pt;}
.y6d{bottom:882.939600pt;}
.y132{bottom:886.626000pt;}
.y67{bottom:888.664533pt;}
.y19{bottom:892.044533pt;}
.yf1{bottom:893.114800pt;}
.yd8{bottom:893.330933pt;}
.y6c{bottom:893.606267pt;}
.y131{bottom:899.854400pt;}
.y66{bottom:903.331200pt;}
.y35{bottom:905.784800pt;}
.yd7{bottom:909.275600pt;}
.y2{bottom:916.252000pt;}
.y65{bottom:917.997867pt;}
.y18{bottom:918.362667pt;}
.y1{bottom:923.774000pt;}
.yd6{bottom:925.220267pt;}
.y64{bottom:932.664533pt;}
.y130{bottom:939.539333pt;}
.yf0{bottom:940.992000pt;}
.yd5{bottom:941.164933pt;}
.y17{bottom:944.680800pt;}
.y63{bottom:947.331200pt;}
.y12f{bottom:952.767733pt;}
.yad{bottom:953.966267pt;}
.yef{bottom:956.979867pt;}
.yd4{bottom:957.109600pt;}
.y62{bottom:961.997867pt;}
.ya8{bottom:963.211600pt;}
.y12e{bottom:965.996133pt;}
.y16{bottom:970.998933pt;}
.yee{bottom:972.967733pt;}
.yd3{bottom:973.054133pt;}
.y61{bottom:976.664533pt;}
.y12d{bottom:979.224400pt;}
.yed{bottom:988.955600pt;}
.yd2{bottom:988.998933pt;}
.y9e{bottom:989.611333pt;}
.y60{bottom:991.331200pt;}
.y12c{bottom:992.452800pt;}
.y15{bottom:997.317067pt;}
.yae{bottom:999.518800pt;}
.yd1{bottom:1004.943600pt;}
.y12b{bottom:1005.681200pt;}
.y5f{bottom:1005.997867pt;}
.y14{bottom:1008.517067pt;}
.y5e{bottom:1068.661333pt;}
.y9d{bottom:1068.661467pt;}
.hc{height:25.152000pt;}
.h5{height:27.402667pt;}
.h6{height:27.626667pt;}
.h4{height:29.344000pt;}
.h14{height:30.650667pt;}
.h18{height:31.189333pt;}
.h1e{height:31.958000pt;}
.h7{height:33.536000pt;}
.ha{height:34.570667pt;}
.h8{height:34.608000pt;}
.hf{height:35.632000pt;}
.h9{height:35.653333pt;}
.h1f{height:36.229079pt;}
.h19{height:38.986667pt;}
.h13{height:39.408000pt;}
.h11{height:41.597333pt;}
.h12{height:41.664000pt;}
.h1d{height:42.610667pt;}
.hb{height:43.786667pt;}
.h10{height:43.978667pt;}
.h15{height:45.976000pt;}
.h16{height:47.096000pt;}
.h1b{height:47.344000pt;}
.h1c{height:48.608000pt;}
.he{height:50.933333pt;}
.h17{height:55.360000pt;}
.h2{height:66.549333pt;}
.hd{height:81.493333pt;}
.h3{height:190.666667pt;}
.h1a{height:813.920000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:638.400000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x33{left:20.914400pt;}
.x3{left:66.141733pt;}
.x40{left:73.063733pt;}
.x1d{left:74.200800pt;}
.x1e{left:77.526800pt;}
.x27{left:78.736533pt;}
.x47{left:81.259867pt;}
.x4{left:86.362133pt;}
.x5{left:97.700667pt;}
.x34{left:99.306667pt;}
.x35{left:100.343733pt;}
.x7{left:103.937067pt;}
.x2a{left:106.146400pt;}
.x29{left:107.533067pt;}
.x8{left:115.275600pt;}
.x23{left:120.543733pt;}
.x41{left:125.494400pt;}
.x48{left:132.215733pt;}
.x17{left:151.845067pt;}
.x1f{left:155.319067pt;}
.x49{left:165.496133pt;}
.x1c{left:167.049200pt;}
.x20{left:168.195333pt;}
.x1b{left:170.097200pt;}
.x21{left:172.011200pt;}
.x19{left:175.017067pt;}
.x1a{left:178.220933pt;}
.x22{left:179.882667pt;}
.x18{left:191.840800pt;}
.x42{left:197.711867pt;}
.x2{left:237.354400pt;}
.x43{left:239.110400pt;}
.x16{left:244.724400pt;}
.x44{left:280.404933pt;}
.x2d{left:281.939733pt;}
.x45{left:338.478933pt;}
.x15{left:347.136933pt;}
.xa{left:352.035067pt;}
.xb{left:357.270400pt;}
.x46{left:361.084933pt;}
.x2e{left:368.617067pt;}
.x2c{left:379.403733pt;}
.x2b{left:383.283733pt;}
.x25{left:406.299200pt;}
.x37{left:416.092667pt;}
.x24{left:417.637733pt;}
.x36{left:421.417333pt;}
.x4a{left:427.687067pt;}
.x3b{left:429.391067pt;}
.x38{left:447.692533pt;}
.x4b{left:478.881333pt;}
.x31{left:485.971733pt;}
.x2f{left:487.102400pt;}
.x39{left:496.164533pt;}
.x3c{left:501.354000pt;}
.xd{left:505.644667pt;}
.xc{left:512.422267pt;}
.x3a{left:516.213600pt;}
.x26{left:519.794000pt;}
.x4c{left:535.365600pt;}
.x11{left:551.000267pt;}
.xf{left:557.854267pt;}
.x10{left:559.733867pt;}
.x50{left:570.329600pt;}
.x4d{left:574.456133pt;}
.x4e{left:582.894400pt;}
.x9{left:590.760400pt;}
.x30{left:601.491733pt;}
.x4f{left:609.088800pt;}
.x1{left:614.562400pt;}
.x13{left:628.439200pt;}
.x12{left:632.213733pt;}
.x14{left:636.814667pt;}
.x3d{left:640.614533pt;}
.xe{left:652.506400pt;}
.x28{left:654.381067pt;}
.x3e{left:675.511333pt;}
.x6{left:706.046533pt;}
.x32{left:707.769067pt;}
.x3f{left:712.071067pt;}
}




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