
    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_ff22d50c976ed9ca92079ff1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_967a236e4b37b99c57ddec2d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_7eddc5b06d5f493f3da65eb6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.281250;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_36ab0f7b1ebaf6a4b74639ed.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_a3ea6c0d0d0b4595120bcb62.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.364746;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_616810412d5f221fa3c21221.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_ddfb8c21d3f97ddd78e55db1.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_3480d5f7d336d348d220bfea.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284668;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_6476b3ca92e6fb93e5108cce.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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_49e4822ac2f92323cf9689ff.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284180;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_ca8b691f4d4b357433493c08.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.432129;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_58f50c4fdff27d268b6a25bc.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.432129;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_d3319e795058c4a724c9c3e9.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.364746;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_38dfc16978c74da64373d884.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.284668;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_e3dc4b20c9c65a7c28e2c5b4.woff2')format("woff");}.fff{font-family:fff;line-height:1.284180;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_5a9a9f33a35ea5844b525fec.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.432129;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_22d55f975005c170a12223de.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.432129;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_147a08105480f6a8cc9db0f6.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.284180;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_eb5ac95358d7a27670c17c91.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.311035;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_be7e92f1c15d3dc860758bf1.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.364746;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_fdce735fee9ac99cacdb1b6b.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.284668;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_6e26bfd2000ab5408b7330c2.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.432129;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_cc625637a5d9029da9a89fae.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.284180;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_ef316c8e182b1fc03188c313.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.311035;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_6eeefe7de3a41ff45fe34148.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.284180;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_5046f07ac7c1ab64d455c9f5.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.432129;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_a60a4d21a229e0d3e3e7d17e.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.432129;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_e3b43808b56f4f58b927ceb5.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.364746;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_b1403b1053fe3ad2dbf38de0.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.284668;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;}
.m5e{transform:matrix(0.028409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.028409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.028409,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.029412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.029412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.029412,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.033186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.033186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.033186,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.114706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114706,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.148333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148333,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.148810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148810,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.154321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154321,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.158046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158046,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.161111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161111,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.161765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161765,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.168831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168831,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.195652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195652,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.195783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195783,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.196043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196043,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.200521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200521,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.208696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208696,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.212025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212025,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.212838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212838,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.219136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219136,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.220779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220779,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.220833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220833,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.222561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222561,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.224359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224359,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.225309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225309,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.231707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231707,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.232353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232353,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.233974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233974,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.235119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235119,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.237288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237288,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.237654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237654,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.237805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237805,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.237952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237952,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.239510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239510,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.240506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240506,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.240625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240625,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.240854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240854,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.242574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242574,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.243590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243590,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.243671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243671,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.243827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243827,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.243902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243902,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.244048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244048,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.244186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244186,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.246951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246951,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.247573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247573,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.m6c{transform:matrix(0.252451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252451,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.252551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252551,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.252976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252976,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.253049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253049,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.253086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253086,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.253125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253125,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.253165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253165,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.253205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253205,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.255155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255155,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.256024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256024,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.258929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258929,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.259091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259091,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.259259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259259,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.259494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259494,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.260135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260135,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.262376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262376,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.264881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264881,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.267241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267241,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.267647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267647,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.268116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268116,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.269444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269444,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.274390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274390,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.274691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274691,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.276786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276786,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.279762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279762,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.282407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282407,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.287037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287037,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.290625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290625,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.292683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292683,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.298193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298193,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.303922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303922,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.305556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305556,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.311688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311688,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.314815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314815,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.317073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317073,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.324405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324405,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.326705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326705,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.338415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338415,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.360619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360619,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.373239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373239,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.377119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377119,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.387324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387324,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.404321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404321,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.476891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476891,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.481250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481250,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.956522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.956522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.956522,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-70.565100px;}
.v0{vertical-align:0.000000px;}
.ls61{letter-spacing:-14.030400px;}
.ls3d{letter-spacing:-10.934700px;}
.ls13{letter-spacing:-10.913850px;}
.ls53{letter-spacing:-9.355575px;}
.ls1d{letter-spacing:-8.853750px;}
.ls5f{letter-spacing:-7.797893px;}
.ls7e{letter-spacing:-7.707375px;}
.ls2c{letter-spacing:-7.371000px;}
.ls52{letter-spacing:-7.014608px;}
.lsb{letter-spacing:-6.704325px;}
.ls81{letter-spacing:-6.305513px;}
.ls8c{letter-spacing:-6.002400px;}
.ls8d{letter-spacing:-5.786513px;}
.ls51{letter-spacing:-5.456925px;}
.ls34{letter-spacing:-5.385825px;}
.ls6a{letter-spacing:-5.203800px;}
.ls70{letter-spacing:-5.188050px;}
.ls7d{letter-spacing:-5.029800px;}
.ls80{letter-spacing:-4.902375px;}
.ls5a{letter-spacing:-4.674825px;}
.ls95{letter-spacing:-4.671675px;}
.ls7f{letter-spacing:-4.501800px;}
.lsf{letter-spacing:-3.898650px;}
.ls87{letter-spacing:-3.786750px;}
.ls17{letter-spacing:-3.607500px;}
.ls10{letter-spacing:-3.116550px;}
.ls92{letter-spacing:-3.028200px;}
.ls7c{letter-spacing:-3.001200px;}
.ls89{letter-spacing:-2.968200px;}
.ls11{letter-spacing:-2.910000px;}
.ls98{letter-spacing:-2.728283px;}
.ls3c{letter-spacing:-2.697300px;}
.ls4e{letter-spacing:-2.340968px;}
.ls30{letter-spacing:-2.310750px;}
.ls86{letter-spacing:-2.251515px;}
.ls88{letter-spacing:-2.226150px;}
.ls63{letter-spacing:-2.204325px;}
.ls6e{letter-spacing:-1.851300px;}
.ls97{letter-spacing:-1.593900px;}
.ls2d{letter-spacing:-1.579500px;}
.lse{letter-spacing:-1.558868px;}
.ls9b{letter-spacing:-1.555950px;}
.ls94{letter-spacing:-1.555200px;}
.ls62{letter-spacing:-1.545300px;}
.ls2b{letter-spacing:-1.540500px;}
.ls7a{letter-spacing:-1.500600px;}
.ls18{letter-spacing:-1.484700px;}
.ls77{letter-spacing:-1.462875px;}
.ls44{letter-spacing:-1.248000px;}
.ls36{letter-spacing:-1.190925px;}
.ls6b{letter-spacing:-1.187550px;}
.lsa{letter-spacing:-0.782100px;}
.ls93{letter-spacing:-0.777600px;}
.ls2e{letter-spacing:-0.770250px;}
.ls8e{letter-spacing:-0.768750px;}
.ls79{letter-spacing:-0.750915px;}
.ls8f{letter-spacing:-0.749700px;}
.ls12{letter-spacing:-0.742350px;}
.ls8a{letter-spacing:-0.742050px;}
.ls45{letter-spacing:-0.740625px;}
.ls64{letter-spacing:-0.734775px;}
.ls84{letter-spacing:-0.701250px;}
.ls67{letter-spacing:-0.698625px;}
.ls9{letter-spacing:0.000000px;}
.ls4f{letter-spacing:0.613575px;}
.ls1e{letter-spacing:0.624600px;}
.ls83{letter-spacing:0.628725px;}
.ls8b{letter-spacing:0.750915px;}
.ls1f{letter-spacing:0.770250px;}
.ls65{letter-spacing:0.771525px;}
.ls5e{letter-spacing:0.772200px;}
.ls16{letter-spacing:0.777600px;}
.ls15{letter-spacing:0.780000px;}
.ls0{letter-spacing:0.781853px;}
.ls6{letter-spacing:0.782100px;}
.lsc{letter-spacing:0.787200px;}
.ls99{letter-spacing:0.789750px;}
.ls27{letter-spacing:0.801450px;}
.ls38{letter-spacing:0.842550px;}
.ls50{letter-spacing:1.191308px;}
.ls82{letter-spacing:1.257450px;}
.ls75{letter-spacing:1.500600px;}
.ls20{letter-spacing:1.540500px;}
.ls4{letter-spacing:1.558868px;}
.ls1{letter-spacing:1.565850px;}
.ls59{letter-spacing:1.574370px;}
.ls9a{letter-spacing:1.579500px;}
.ls25{letter-spacing:1.602900px;}
.ls78{letter-spacing:1.612875px;}
.ls49{letter-spacing:1.672515px;}
.ls1a{letter-spacing:2.089035px;}
.ls24{letter-spacing:2.310750px;}
.ls91{letter-spacing:2.337000px;}
.ls73{letter-spacing:2.338875px;}
.ls7{letter-spacing:2.340968px;}
.ls56{letter-spacing:2.363130px;}
.ls1c{letter-spacing:2.580000px;}
.ls55{letter-spacing:2.891700px;}
.ls7b{letter-spacing:3.074400px;}
.ls21{letter-spacing:3.075075px;}
.ls6c{letter-spacing:3.089228px;}
.ls5{letter-spacing:3.116550px;}
.ls1b{letter-spacing:3.159450px;}
.ls57{letter-spacing:3.187800px;}
.ls3a{letter-spacing:3.205215px;}
.ls90{letter-spacing:3.502800px;}
.ls3{letter-spacing:3.898650px;}
.ls47{letter-spacing:3.978075px;}
.ls2f{letter-spacing:4.161375px;}
.ls60{letter-spacing:4.446900px;}
.ls96{letter-spacing:4.501800px;}
.ls22{letter-spacing:4.615575px;}
.ls33{letter-spacing:4.649805px;}
.ls2{letter-spacing:4.674825px;}
.ls23{letter-spacing:4.726350px;}
.ls48{letter-spacing:4.860000px;}
.ls19{letter-spacing:5.065500px;}
.ls28{letter-spacing:5.385825px;}
.ls35{letter-spacing:5.398650px;}
.ls8{letter-spacing:5.456925px;}
.ls3f{letter-spacing:5.726700px;}
.ls69{letter-spacing:5.931225px;}
.ls14{letter-spacing:5.989950px;}
.ls37{letter-spacing:6.156075px;}
.ls4b{letter-spacing:6.239025px;}
.ls6d{letter-spacing:6.300630px;}
.ls3e{letter-spacing:6.444270px;}
.ls3b{letter-spacing:6.750675px;}
.ls71{letter-spacing:6.752700px;}
.ls46{letter-spacing:6.926325px;}
.ls68{letter-spacing:6.955125px;}
.ls39{letter-spacing:7.103400px;}
.ls66{letter-spacing:7.646100px;}
.ls26{letter-spacing:7.696575px;}
.ls43{letter-spacing:7.786800px;}
.ls58{letter-spacing:7.797000px;}
.ls4c{letter-spacing:8.573475px;}
.ls40{letter-spacing:8.815950px;}
.ls29{letter-spacing:9.231743px;}
.ls4d{letter-spacing:9.355575px;}
.ls85{letter-spacing:9.984870px;}
.ls5d{letter-spacing:10.137675px;}
.ls6f{letter-spacing:10.498125px;}
.ls2a{letter-spacing:11.105903px;}
.ls41{letter-spacing:11.573483px;}
.ls32{letter-spacing:11.781045px;}
.ls72{letter-spacing:11.998650px;}
.ls4a{letter-spacing:13.253633px;}
.ls31{letter-spacing:16.876350px;}
.ls42{letter-spacing:16.983000px;}
.lsd{letter-spacing:18.911550px;}
.ls54{letter-spacing:23.385975px;}
.ls76{letter-spacing:39.553673px;}
.ls5c{letter-spacing:40.023900px;}
.ls74{letter-spacing:46.204290px;}
.ls5b{letter-spacing:184.872450px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:0.000000px;}
._29{margin-left:-54.225045px;}
._11{margin-left:-47.673487px;}
._14{margin-left:-46.388355px;}
._2b{margin-left:-43.406550px;}
._2a{margin-left:-40.413832px;}
._16{margin-left:-38.346008px;}
._e{margin-left:-36.438473px;}
._2c{margin-left:-24.392633px;}
._2e{margin-left:-21.094365px;}
._20{margin-left:-19.682850px;}
._21{margin-left:-17.929050px;}
._1d{margin-left:-16.285500px;}
._22{margin-left:-14.595645px;}
._1b{margin-left:-13.191210px;}
._1{margin-left:-10.875150px;}
._3{margin-left:-9.503700px;}
._5{margin-left:-7.495125px;}
._15{margin-left:-6.473273px;}
._2{margin-left:-5.351775px;}
._9{margin-left:-4.177193px;}
._0{margin-left:-2.847487px;}
._6{margin-left:-1.272098px;}
._b{width:1.279800px;}
._a{width:2.346300px;}
._7{width:3.577830px;}
._8{width:5.012550px;}
._c{width:6.151612px;}
._4{width:7.809150px;}
._12{width:8.828250px;}
._d{width:9.854700px;}
._f{width:11.460727px;}
._10{width:13.274055px;}
._24{width:14.278140px;}
._1f{width:16.199542px;}
._13{width:17.475300px;}
._19{width:19.461293px;}
._1e{width:20.965575px;}
._17{width:22.998240px;}
._28{width:24.388102px;}
._25{width:28.303725px;}
._1c{width:30.593258px;}
._26{width:32.775600px;}
._2d{width:41.863050px;}
._18{width:43.269893px;}
._23{width:46.103017px;}
._27{width:51.450922px;}
._1a{width:72.079995px;}
.fc0{color:transparent;}
.fs28{font-size:30.000000px;}
.fs25{font-size:31.500000px;}
.fs26{font-size:33.750000px;}
.fs21{font-size:34.500000px;}
.fs20{font-size:38.250000px;}
.fs11{font-size:40.500000px;}
.fs9{font-size:41.250000px;}
.fs23{font-size:42.000000px;}
.fsc{font-size:44.250000px;}
.fs14{font-size:45.000000px;}
.fs1d{font-size:51.750000px;}
.fs16{font-size:53.250000px;}
.fs18{font-size:54.000000px;}
.fs13{font-size:55.500000px;}
.fsf{font-size:57.750000px;}
.fsa{font-size:58.500000px;}
.fs1{font-size:59.250000px;}
.fs2{font-size:60.000000px;}
.fs7{font-size:60.750000px;}
.fs4{font-size:61.500000px;}
.fs3{font-size:62.250000px;}
.fs10{font-size:63.000000px;}
.fs15{font-size:63.750000px;}
.fs1b{font-size:64.500000px;}
.fsd{font-size:65.250000px;}
.fs29{font-size:66.000000px;}
.fs8{font-size:67.500000px;}
.fs17{font-size:72.000000px;}
.fs1c{font-size:72.750000px;}
.fs6{font-size:73.500000px;}
.fs5{font-size:75.000000px;}
.fs12{font-size:75.750000px;}
.fs27{font-size:76.500000px;}
.fs1f{font-size:77.250000px;}
.fs1e{font-size:78.750000px;}
.fs19{font-size:84.750000px;}
.fsb{font-size:86.250000px;}
.fs1a{font-size:89.250000px;}
.fs24{font-size:99.000000px;}
.fs22{font-size:104.250000px;}
.fs0{font-size:107.250000px;}
.fse{font-size:112.500000px;}
.y0{bottom:0.000000px;}
.y154{bottom:66.961294px;}
.y12e{bottom:80.278534px;}
.ya0{bottom:80.279850px;}
.y9f{bottom:80.280463px;}
.yd1{bottom:80.281234px;}
.y31{bottom:80.640171px;}
.y64{bottom:80.641333px;}
.y153{bottom:84.960000px;}
.y12d{bottom:98.279738px;}
.y103{bottom:98.279794px;}
.y82{bottom:98.280465px;}
.y9e{bottom:98.280581px;}
.yd0{bottom:98.281236px;}
.y30{bottom:98.640172px;}
.y62{bottom:98.640694px;}
.y63{bottom:98.641335px;}
.y102{bottom:115.920000px;}
.ycf{bottom:115.921442px;}
.y9d{bottom:116.279250px;}
.y2f{bottom:116.280527px;}
.y61{bottom:116.280900px;}
.y60{bottom:116.282156px;}
.y12c{bottom:133.920574px;}
.y9b{bottom:133.920577px;}
.y9c{bottom:133.920600px;}
.yce{bottom:133.921444px;}
.y2e{bottom:134.640621px;}
.y5f{bottom:135.720748px;}
.y101{bottom:136.799565px;}
.y9a{bottom:151.919565px;}
.y99{bottom:151.919998px;}
.ycd{bottom:151.920261px;}
.y2d{bottom:152.640623px;}
.y5e{bottom:153.720750px;}
.y12b{bottom:154.438511px;}
.y100{bottom:157.319850px;}
.y5d{bottom:161.281515px;}
.y2c{bottom:169.919552px;}
.y98{bottom:169.920000px;}
.y97{bottom:169.921161px;}
.ycb{bottom:170.639629px;}
.ycc{bottom:170.640150px;}
.y80{bottom:172.080465px;}
.y129{bottom:172.433047px;}
.y12a{bottom:172.439715px;}
.y5c{bottom:174.241513px;}
.y81{bottom:175.320300px;}
.y7f{bottom:183.240435px;}
.yff{bottom:187.559642px;}
.y2b{bottom:188.280979px;}
.yca{bottom:188.638446px;}
.y128{bottom:190.434251px;}
.y5a{bottom:191.880585px;}
.y5b{bottom:192.241515px;}
.y59{bottom:199.800585px;}
.yfe{bottom:205.559644px;}
.y2a{bottom:205.921185px;}
.yc9{bottom:206.638448px;}
.y127{bottom:208.073835px;}
.y58{bottom:212.760602px;}
.y7e{bottom:220.679944px;}
.yfd{bottom:223.199850px;}
.yfc{bottom:223.200433px;}
.yc8{bottom:224.278654px;}
.y126{bottom:226.075039px;}
.y57{bottom:231.840583px;}
.y152{bottom:235.439250px;}
.y151{bottom:235.439460px;}
.y7d{bottom:238.680094px;}
.yfb{bottom:241.200435px;}
.yfa{bottom:241.200510px;}
.y29{bottom:242.281515px;}
.yc7{bottom:242.459664px;}
.y125{bottom:244.074551px;}
.y56{bottom:249.840585px;}
.y55{bottom:249.840733px;}
.y14f{bottom:253.438425px;}
.y150{bottom:253.439685px;}
.y7b{bottom:256.319910px;}
.y7c{bottom:256.320300px;}
.yf9{bottom:259.199179px;}
.yc6{bottom:260.280435px;}
.y124{bottom:262.075755px;}
.y54{bottom:267.840735px;}
.y7a{bottom:274.318579px;}
.y96{bottom:274.319661px;}
.yf8{bottom:277.199329px;}
.yc5{bottom:278.999385px;}
.yc4{bottom:278.999756px;}
.y123{bottom:282.235455px;}
.y14e{bottom:283.319737px;}
.y53{bottom:285.481089px;}
.y79{bottom:292.318729px;}
.yf7{bottom:294.839535px;}
.y28{bottom:296.280979px;}
.y122{bottom:300.236659px;}
.y14d{bottom:301.319250px;}
.y14c{bottom:301.319625px;}
.y52{bottom:303.841183px;}
.y78{bottom:310.318731px;}
.yf6{bottom:313.199385px;}
.yf5{bottom:313.199777px;}
.y27{bottom:313.921185px;}
.y121{bottom:318.237862px;}
.y14a{bottom:319.319123px;}
.y14b{bottom:319.319850px;}
.y51{bottom:321.841185px;}
.y77{bottom:327.959085px;}
.yf4{bottom:330.841316px;}
.y120{bottom:336.237375px;}
.y76{bottom:346.319179px;}
.yc3{bottom:346.681031px;}
.y95{bottom:347.040000px;}
.y94{bottom:347.040598px;}
.yf3{bottom:348.840133px;}
.y148{bottom:349.199854px;}
.y149{bottom:349.200435px;}
.y26{bottom:351.720135px;}
.y11f{bottom:354.238579px;}
.y50{bottom:357.840439px;}
.y75{bottom:363.959385px;}
.y74{bottom:363.960999px;}
.yc2{bottom:364.679700px;}
.y93{bottom:365.040600px;}
.y92{bottom:365.042248px;}
.y147{bottom:366.839437px;}
.yf2{bottom:366.840135px;}
.y11e{bottom:372.239782px;}
.y4e{bottom:378.360900px;}
.y4f{bottom:378.720135px;}
.y73{bottom:381.961149px;}
.yc1{bottom:383.039385px;}
.yc0{bottom:383.040056px;}
.y91{bottom:383.040917px;}
.y11d{bottom:389.879366px;}
.yf1{bottom:393.119985px;}
.y145{bottom:396.720448px;}
.y146{bottom:396.720750px;}
.y72{bottom:399.961151px;}
.y90{bottom:402.121046px;}
.y11c{bottom:407.880570px;}
.y25{bottom:413.281543px;}
.y143{bottom:415.080135px;}
.y144{bottom:415.080465px;}
.y71{bottom:417.959968px;}
.y8f{bottom:420.121048px;}
.yef{bottom:423.720446px;}
.yf0{bottom:423.720750px;}
.y24{bottom:431.281545px;}
.y23{bottom:431.282274px;}
.y4d{bottom:431.640229px;}
.y6f{bottom:435.959927px;}
.y70{bottom:435.959970px;}
.y8e{bottom:438.121050px;}
.yee{bottom:442.080540px;}
.y142{bottom:444.600135px;}
.y11b{bottom:445.680146px;}
.y4b{bottom:449.279912px;}
.y4c{bottom:449.280435px;}
.y22{bottom:449.280943px;}
.ybf{bottom:451.079942px;}
.y6e{bottom:453.959929px;}
.y8d{bottom:456.119719px;}
.yed{bottom:459.720894px;}
.y141{bottom:462.780435px;}
.y140{bottom:462.780568px;}
.y11a{bottom:466.559100px;}
.y21{bottom:467.281093px;}
.y4a{bottom:467.640006px;}
.ybe{bottom:468.720148px;}
.y6d{bottom:471.600135px;}
.y6c{bottom:471.600401px;}
.y8c{bottom:475.199848px;}
.yec{bottom:477.720896px;}
.y13f{bottom:480.599910px;}
.y20{bottom:485.281095px;}
.y49{bottom:485.281545px;}
.y48{bottom:485.282229px;}
.ybd{bottom:486.720150px;}
.ybc{bottom:486.720694px;}
.y6b{bottom:489.599070px;}
.y6a{bottom:489.599891px;}
.y8b{bottom:493.199850px;}
.y8a{bottom:493.200360px;}
.yeb{bottom:495.719565px;}
.y13d{bottom:498.599633px;}
.y13e{bottom:498.600135px;}
.y1f{bottom:503.279764px;}
.y47{bottom:503.280898px;}
.ybb{bottom:505.439250px;}
.y69{bottom:510.839535px;}
.y68{bottom:510.839758px;}
.y89{bottom:511.200510px;}
.y13c{bottom:516.239216px;}
.y1e{bottom:520.920118px;}
.y46{bottom:521.280900px;}
.y45{bottom:521.281256px;}
.yea{bottom:521.999400px;}
.yba{bottom:523.439670px;}
.yb9{bottom:523.440313px;}
.y119{bottom:523.799434px;}
.y88{bottom:528.840716px;}
.y13b{bottom:534.240420px;}
.y44{bottom:539.281406px;}
.y1d{bottom:539.281545px;}
.y1c{bottom:539.282233px;}
.yb8{bottom:541.440315px;}
.y118{bottom:541.798946px;}
.y87{bottom:546.840866px;}
.ye9{bottom:552.600135px;}
.ye8{bottom:552.600401px;}
.y1b{bottom:556.922439px;}
.y43{bottom:558.361387px;}
.yb7{bottom:559.800150px;}
.y86{bottom:564.839535px;}
.y13a{bottom:567.720150px;}
.ye7{bottom:570.599070px;}
.y1a{bottom:574.921108px;}
.y42{bottom:576.360056px;}
.yb6{bottom:577.800570px;}
.yb5{bottom:577.801074px;}
.y85{bottom:583.918794px;}
.y19{bottom:592.921258px;}
.y40{bottom:594.718500px;}
.y41{bottom:594.720150px;}
.yb4{bottom:595.799743px;}
.y117{bottom:599.039385px;}
.y116{bottom:599.039445px;}
.y67{bottom:602.278802px;}
.y84{bottom:602.278888px;}
.ye6{bottom:604.439670px;}
.y18{bottom:610.921260px;}
.y139{bottom:612.359213px;}
.y3f{bottom:612.360188px;}
.yb3{bottom:613.799745px;}
.y115{bottom:616.680720px;}
.y114{bottom:616.680787px;}
.y66{bottom:619.920341px;}
.y83{bottom:619.920428px;}
.y17{bottom:628.561614px;}
.y138{bottom:629.998796px;}
.y3e{bottom:630.358856px;}
.y113{bottom:640.080000px;}
.y16{bottom:646.561616px;}
.y136{bottom:647.998196px;}
.y137{bottom:648.000000px;}
.y3d{bottom:648.359006px;}
.ye5{bottom:648.359424px;}
.y15{bottom:664.560285px;}
.y14{bottom:664.561650px;}
.y3c{bottom:665.999213px;}
.y135{bottom:665.999400px;}
.ye4{bottom:666.720851px;}
.y112{bottom:681.840585px;}
.y13{bottom:682.561800px;}
.y134{bottom:683.998912px;}
.y3b{bottom:683.999214px;}
.ye3{bottom:684.719520px;}
.ye2{bottom:684.721110px;}
.y65{bottom:698.039985px;}
.y111{bottom:699.839535px;}
.y12{bottom:700.561802px;}
.y3a{bottom:701.818800px;}
.y133{bottom:702.000116px;}
.ye1{bottom:702.361316px;}
.y11{bottom:718.560471px;}
.y132{bottom:719.639700px;}
.y39{bottom:719.999663px;}
.ye0{bottom:720.361466px;}
.yb1{bottom:723.240090px;}
.yb2{bottom:723.240420px;}
.y10{bottom:736.381241px;}
.y38{bottom:737.999664px;}
.ydf{bottom:738.361616px;}
.y110{bottom:744.119310px;}
.y131{bottom:753.119385px;}
.yf{bottom:754.200827px;}
.y37{bottom:755.640019px;}
.yde{bottom:756.360285px;}
.y10f{bottom:762.120514px;}
.ye{bottom:772.200829px;}
.y36{bottom:773.640021px;}
.ydd{bottom:774.001824px;}
.y10e{bottom:782.638451px;}
.yd{bottom:790.200979px;}
.yb0{bottom:790.920032px;}
.y35{bottom:792.000262px;}
.ydc{bottom:792.000493px;}
.y10c{bottom:800.639062px;}
.y10d{bottom:800.639655px;}
.yc{bottom:807.841185px;}
.yaf{bottom:808.560238px;}
.y34{bottom:809.640469px;}
.ydb{bottom:810.000643px;}
.y10b{bottom:818.278646px;}
.yae{bottom:826.560240px;}
.yad{bottom:826.561253px;}
.y33{bottom:827.640471px;}
.yda{bottom:828.000793px;}
.y130{bottom:831.240420px;}
.y109{bottom:836.279505px;}
.y10a{bottom:836.279850px;}
.yac{bottom:845.279809px;}
.y32{bottom:845.639288px;}
.yb{bottom:845.640105px;}
.yd9{bottom:845.640851px;}
.y108{bottom:856.439205px;}
.y12f{bottom:865.079400px;}
.yaa{bottom:865.798999px;}
.yab{bottom:865.799565px;}
.ya9{bottom:883.439205px;}
.ya8{bottom:883.439704px;}
.y107{bottom:885.240420px;}
.y9{bottom:892.800964px;}
.ya{bottom:892.801215px;}
.y8{bottom:910.441318px;}
.y6{bottom:928.441196px;}
.y7{bottom:928.441320px;}
.yd8{bottom:940.680814px;}
.y5{bottom:946.801290px;}
.ya7{bottom:951.840866px;}
.yd7{bottom:958.679631px;}
.y4{bottom:964.081404px;}
.y106{bottom:968.039985px;}
.ya6{bottom:969.839535px;}
.ya5{bottom:969.840015px;}
.y3{bottom:982.441646px;}
.ya4{bottom:987.840165px;}
.y2{bottom:1000.440315px;}
.ya3{bottom:1005.480371px;}
.ya2{bottom:1023.480521px;}
.y1{bottom:1035.001005px;}
.yd6{bottom:1037.519162px;}
.ya1{bottom:1041.479190px;}
.yd5{bottom:1055.519164px;}
.yd4{bottom:1073.159370px;}
.yd3{bottom:1073.161628px;}
.y105{bottom:1074.240420px;}
.yd2{bottom:1091.161629px;}
.y104{bottom:1093.320285px;}
.h43{height:31.289062px;}
.h3d{height:32.853516px;}
.h42{height:34.095703px;}
.h3e{height:35.200195px;}
.h36{height:35.982422px;}
.h16{height:39.728760px;}
.h17{height:39.748535px;}
.h35{height:39.893555px;}
.ha{height:40.464478px;}
.h37{height:40.484619px;}
.h39{height:41.507812px;}
.hd{height:43.407349px;}
.h3f{height:43.804688px;}
.h21{height:44.143066px;}
.h30{height:53.973633px;}
.h1e{height:54.470215px;}
.h23{height:55.538086px;}
.h26{height:56.320312px;}
.h13{height:56.678467px;}
.h1c{height:57.385986px;}
.h25{height:57.414551px;}
.h2e{height:57.884766px;}
.h2{height:58.150635px;}
.h2b{height:58.151227px;}
.hf{height:58.857422px;}
.h3{height:58.886719px;}
.h15{height:59.593140px;}
.h8{height:59.622803px;}
.h19{height:60.231445px;}
.h1f{height:60.328857px;}
.h2a{height:60.358887px;}
.hb{height:61.013672px;}
.h4{height:61.064575px;}
.h3b{height:61.094971px;}
.h2f{height:61.224609px;}
.h1a{height:61.795898px;}
.h20{height:61.800293px;}
.h14{height:61.831055px;}
.h5{height:61.980469px;}
.h3c{height:62.536011px;}
.h31{height:62.567139px;}
.h11{height:62.578125px;}
.h22{height:63.002930px;}
.h29{height:63.303223px;}
.h41{height:63.492188px;}
.he{height:64.007446px;}
.h33{height:64.039307px;}
.h1b{height:64.142578px;}
.h1d{height:66.214600px;}
.h9{height:66.708984px;}
.h45{height:68.835938px;}
.h2d{height:73.318359px;}
.h7{height:74.074219px;}
.h24{height:75.093750px;}
.h6{height:75.585938px;}
.h2c{height:76.341797px;}
.h40{height:77.097656px;}
.h44{height:77.853516px;}
.h18{height:79.004883px;}
.h34{height:80.569336px;}
.h32{height:82.133789px;}
.h28{height:87.593994px;}
.h27{height:88.391602px;}
.hc{height:89.956055px;}
.h3a{height:103.253906px;}
.h1{height:108.087891px;}
.h38{height:108.729492px;}
.h10{height:117.333984px;}
.h12{height:1187.638500px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xc{left:81.000000px;}
.x14{left:82.079400px;}
.xa0{left:96.838515px;}
.x43{left:102.599700px;}
.xa1{left:110.878950px;}
.x44{left:112.319250px;}
.xd{left:113.398665px;}
.x1{left:117.358665px;}
.x10{left:122.038950px;}
.xbd{left:124.919565px;}
.xa7{left:127.439250px;}
.x40{left:129.599700px;}
.x41{left:142.918350px;}
.x11{left:145.078815px;}
.xa2{left:147.959400px;}
.x70{left:153.359850px;}
.xa5{left:165.599100px;}
.x71{left:169.918350px;}
.x99{left:173.159850px;}
.xac{left:175.679700px;}
.x42{left:176.759100px;}
.x37{left:178.919535px;}
.x7f{left:179.998950px;}
.xa8{left:181.080000px;}
.x3a{left:182.159415px;}
.x3e{left:186.478665px;}
.x9f{left:188.639100px;}
.x74{left:191.158785px;}
.x4a{left:195.479685px;}
.xad{left:196.559100px;}
.xa3{left:197.999400px;}
.x6c{left:199.078785px;}
.x3b{left:205.558635px;}
.x3f{left:207.359850px;}
.xa9{left:215.279850px;}
.x82{left:218.878950px;}
.x9d{left:221.759535px;}
.xa4{left:229.318800px;}
.x9a{left:231.838515px;}
.x7a{left:240.119385px;}
.x75{left:243.359250px;}
.x46{left:244.438635px;}
.x83{left:247.319250px;}
.x78{left:251.279250px;}
.x12{left:253.078785px;}
.x9c{left:254.519100px;}
.x80{left:256.318800px;}
.x47{left:263.518635px;}
.x2{left:268.559685px;}
.x81{left:272.519685px;}
.x38{left:273.958350px;}
.x13{left:275.759535px;}
.x48{left:282.239250px;}
.x34{left:287.278800px;}
.x45{left:294.119385px;}
.x9b{left:297.718500px;}
.xaa{left:301.319250px;}
.x39{left:304.559100px;}
.x9{left:307.800210px;}
.x7b{left:310.318800px;}
.x7d{left:318.238785px;}
.xab{left:319.679100px;}
.x6d{left:320.758500px;}
.x4{left:327.239760px;}
.x6e{left:330.118785px;}
.x35{left:332.279250px;}
.x7e{left:335.159850px;}
.x3{left:336.959685px;}
.x7c{left:343.798515px;}
.x36{left:345.958950px;}
.x76{left:350.279850px;}
.xa{left:352.800285px;}
.xe{left:354.239850px;}
.x3d{left:360.358635px;}
.x72{left:362.159850px;}
.x77{left:364.318800px;}
.x5{left:365.401403px;}
.x73{left:373.319850px;}
.xf{left:378.718530px;}
.x6{left:379.802310px;}
.x9e{left:388.078815px;}
.x3c{left:389.519070px;}
.x79{left:392.399820px;}
.xb{left:393.838530px;}
.x49{left:402.478635px;}
.x7{left:410.039385px;}
.xa6{left:416.878320px;}
.x8{left:420.479235px;}
.x6f{left:422.998950px;}
.x2f{left:484.918920px;}
.x15{left:486.723720px;}
.xb2{left:494.638500px;}
.xb3{left:516.238050px;}
.x23{left:517.319235px;}
.x18{left:518.758853px;}
.x28{left:521.999400px;}
.xaf{left:523.439670px;}
.x1d{left:527.038920px;}
.x4b{left:532.798515px;}
.x27{left:533.879520px;}
.x53{left:536.399235px;}
.x1e{left:544.678530px;}
.x19{left:547.199850px;}
.x1a{left:557.998950px;}
.x4c{left:559.798515px;}
.x4e{left:562.679070px;}
.x54{left:564.119385px;}
.x25{left:567.359250px;}
.xb8{left:570.239820px;}
.x29{left:574.918350px;}
.x26{left:577.798920px;}
.x55{left:579.598530px;}
.x4d{left:581.399820px;}
.x2a{left:582.479235px;}
.x4f{left:586.439250px;}
.xb6{left:589.319820px;}
.xb9{left:591.119385px;}
.xbc{left:599.398635px;}
.x5c{left:604.078770px;}
.x50{left:608.759085px;}
.xb4{left:612.359850px;}
.x87{left:617.758530px;}
.x5d{left:630.719520px;}
.x89{left:637.199385px;}
.x96{left:642.238770px;}
.x8f{left:644.039985px;}
.x5e{left:648.359250px;}
.x98{left:649.438620px;}
.xae{left:652.319235px;}
.x56{left:654.838950px;}
.x8a{left:657.358605px;}
.x97{left:661.318770px;}
.x60{left:662.399820px;}
.x90{left:663.479235px;}
.x30{left:665.278800px;}
.x2e{left:671.039985px;}
.x8b{left:672.478635px;}
.x6b{left:676.799520px;}
.x91{left:678.958335px;}
.x57{left:680.759535px;}
.x61{left:681.838950px;}
.x2c{left:688.679670px;}
.x92{left:689.759085px;}
.x8c{left:690.838530px;}
.x69{left:692.639700px;}
.x16{left:694.439250px;}
.x58{left:698.399235px;}
.x62{left:699.478635px;}
.x2b{left:700.559685px;}
.xbb{left:704.519670px;}
.x31{left:705.599070px;}
.x51{left:707.398635px;}
.x59{left:708.479685px;}
.xba{left:710.279250px;}
.x17{left:712.078770px;}
.x93{left:714.598530px;}
.x5a{left:722.159370px;}
.x52{left:723.599670px;}
.x63{left:725.399235px;}
.x6a{left:727.198785px;}
.x5f{left:729.718545px;}
.x32{left:734.759535px;}
.x5b{left:735.838950px;}
.x84{left:736.918350px;}
.x1f{left:741.959385px;}
.x33{left:746.998950px;}
.x2d{left:750.238770px;}
.x86{left:751.679070px;}
.x1b{left:756.718545px;}
.x20{left:759.599070px;}
.x94{left:761.398635px;}
.x64{left:765.719520px;}
.x85{left:766.798920px;}
.x8d{left:770.399865px;}
.x1c{left:772.199340px;}
.x24{left:775.798560px;}
.x95{left:777.238770px;}
.x65{left:791.638545px;}
.xb0{left:799.199340px;}
.x66{left:805.679070px;}
.x21{left:807.119385px;}
.x67{left:810.000000px;}
.x88{left:811.079400px;}
.x8e{left:813.958380px;}
.xb7{left:815.398590px;}
.xb1{left:818.638545px;}
.x22{left:819.719520px;}
.x68{left:824.038965px;}
.xb5{left:833.758575px;}
@media print{
.v1{vertical-align:-62.724533pt;}
.v0{vertical-align:0.000000pt;}
.ls61{letter-spacing:-12.471467pt;}
.ls3d{letter-spacing:-9.719733pt;}
.ls13{letter-spacing:-9.701200pt;}
.ls53{letter-spacing:-8.316067pt;}
.ls1d{letter-spacing:-7.870000pt;}
.ls5f{letter-spacing:-6.931460pt;}
.ls7e{letter-spacing:-6.851000pt;}
.ls2c{letter-spacing:-6.552000pt;}
.ls52{letter-spacing:-6.235207pt;}
.lsb{letter-spacing:-5.959400pt;}
.ls81{letter-spacing:-5.604900pt;}
.ls8c{letter-spacing:-5.335467pt;}
.ls8d{letter-spacing:-5.143567pt;}
.ls51{letter-spacing:-4.850600pt;}
.ls34{letter-spacing:-4.787400pt;}
.ls6a{letter-spacing:-4.625600pt;}
.ls70{letter-spacing:-4.611600pt;}
.ls7d{letter-spacing:-4.470933pt;}
.ls80{letter-spacing:-4.357667pt;}
.ls5a{letter-spacing:-4.155400pt;}
.ls95{letter-spacing:-4.152600pt;}
.ls7f{letter-spacing:-4.001600pt;}
.lsf{letter-spacing:-3.465467pt;}
.ls87{letter-spacing:-3.366000pt;}
.ls17{letter-spacing:-3.206667pt;}
.ls10{letter-spacing:-2.770267pt;}
.ls92{letter-spacing:-2.691733pt;}
.ls7c{letter-spacing:-2.667733pt;}
.ls89{letter-spacing:-2.638400pt;}
.ls11{letter-spacing:-2.586667pt;}
.ls98{letter-spacing:-2.425140pt;}
.ls3c{letter-spacing:-2.397600pt;}
.ls4e{letter-spacing:-2.080860pt;}
.ls30{letter-spacing:-2.054000pt;}
.ls86{letter-spacing:-2.001347pt;}
.ls88{letter-spacing:-1.978800pt;}
.ls63{letter-spacing:-1.959400pt;}
.ls6e{letter-spacing:-1.645600pt;}
.ls97{letter-spacing:-1.416800pt;}
.ls2d{letter-spacing:-1.404000pt;}
.lse{letter-spacing:-1.385660pt;}
.ls9b{letter-spacing:-1.383067pt;}
.ls94{letter-spacing:-1.382400pt;}
.ls62{letter-spacing:-1.373600pt;}
.ls2b{letter-spacing:-1.369333pt;}
.ls7a{letter-spacing:-1.333867pt;}
.ls18{letter-spacing:-1.319733pt;}
.ls77{letter-spacing:-1.300333pt;}
.ls44{letter-spacing:-1.109333pt;}
.ls36{letter-spacing:-1.058600pt;}
.ls6b{letter-spacing:-1.055600pt;}
.lsa{letter-spacing:-0.695200pt;}
.ls93{letter-spacing:-0.691200pt;}
.ls2e{letter-spacing:-0.684667pt;}
.ls8e{letter-spacing:-0.683333pt;}
.ls79{letter-spacing:-0.667480pt;}
.ls8f{letter-spacing:-0.666400pt;}
.ls12{letter-spacing:-0.659867pt;}
.ls8a{letter-spacing:-0.659600pt;}
.ls45{letter-spacing:-0.658333pt;}
.ls64{letter-spacing:-0.653133pt;}
.ls84{letter-spacing:-0.623333pt;}
.ls67{letter-spacing:-0.621000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls4f{letter-spacing:0.545400pt;}
.ls1e{letter-spacing:0.555200pt;}
.ls83{letter-spacing:0.558867pt;}
.ls8b{letter-spacing:0.667480pt;}
.ls1f{letter-spacing:0.684667pt;}
.ls65{letter-spacing:0.685800pt;}
.ls5e{letter-spacing:0.686400pt;}
.ls16{letter-spacing:0.691200pt;}
.ls15{letter-spacing:0.693333pt;}
.ls0{letter-spacing:0.694980pt;}
.ls6{letter-spacing:0.695200pt;}
.lsc{letter-spacing:0.699733pt;}
.ls99{letter-spacing:0.702000pt;}
.ls27{letter-spacing:0.712400pt;}
.ls38{letter-spacing:0.748933pt;}
.ls50{letter-spacing:1.058940pt;}
.ls82{letter-spacing:1.117733pt;}
.ls75{letter-spacing:1.333867pt;}
.ls20{letter-spacing:1.369333pt;}
.ls4{letter-spacing:1.385660pt;}
.ls1{letter-spacing:1.391867pt;}
.ls59{letter-spacing:1.399440pt;}
.ls9a{letter-spacing:1.404000pt;}
.ls25{letter-spacing:1.424800pt;}
.ls78{letter-spacing:1.433667pt;}
.ls49{letter-spacing:1.486680pt;}
.ls1a{letter-spacing:1.856920pt;}
.ls24{letter-spacing:2.054000pt;}
.ls91{letter-spacing:2.077333pt;}
.ls73{letter-spacing:2.079000pt;}
.ls7{letter-spacing:2.080860pt;}
.ls56{letter-spacing:2.100560pt;}
.ls1c{letter-spacing:2.293333pt;}
.ls55{letter-spacing:2.570400pt;}
.ls7b{letter-spacing:2.732800pt;}
.ls21{letter-spacing:2.733400pt;}
.ls6c{letter-spacing:2.745980pt;}
.ls5{letter-spacing:2.770267pt;}
.ls1b{letter-spacing:2.808400pt;}
.ls57{letter-spacing:2.833600pt;}
.ls3a{letter-spacing:2.849080pt;}
.ls90{letter-spacing:3.113600pt;}
.ls3{letter-spacing:3.465467pt;}
.ls47{letter-spacing:3.536067pt;}
.ls2f{letter-spacing:3.699000pt;}
.ls60{letter-spacing:3.952800pt;}
.ls96{letter-spacing:4.001600pt;}
.ls22{letter-spacing:4.102733pt;}
.ls33{letter-spacing:4.133160pt;}
.ls2{letter-spacing:4.155400pt;}
.ls23{letter-spacing:4.201200pt;}
.ls48{letter-spacing:4.320000pt;}
.ls19{letter-spacing:4.502667pt;}
.ls28{letter-spacing:4.787400pt;}
.ls35{letter-spacing:4.798800pt;}
.ls8{letter-spacing:4.850600pt;}
.ls3f{letter-spacing:5.090400pt;}
.ls69{letter-spacing:5.272200pt;}
.ls14{letter-spacing:5.324400pt;}
.ls37{letter-spacing:5.472067pt;}
.ls4b{letter-spacing:5.545800pt;}
.ls6d{letter-spacing:5.600560pt;}
.ls3e{letter-spacing:5.728240pt;}
.ls3b{letter-spacing:6.000600pt;}
.ls71{letter-spacing:6.002400pt;}
.ls46{letter-spacing:6.156733pt;}
.ls68{letter-spacing:6.182333pt;}
.ls39{letter-spacing:6.314133pt;}
.ls66{letter-spacing:6.796533pt;}
.ls26{letter-spacing:6.841400pt;}
.ls43{letter-spacing:6.921600pt;}
.ls58{letter-spacing:6.930667pt;}
.ls4c{letter-spacing:7.620867pt;}
.ls40{letter-spacing:7.836400pt;}
.ls29{letter-spacing:8.205993pt;}
.ls4d{letter-spacing:8.316067pt;}
.ls85{letter-spacing:8.875440pt;}
.ls5d{letter-spacing:9.011267pt;}
.ls6f{letter-spacing:9.331667pt;}
.ls2a{letter-spacing:9.871913pt;}
.ls41{letter-spacing:10.287540pt;}
.ls32{letter-spacing:10.472040pt;}
.ls72{letter-spacing:10.665467pt;}
.ls4a{letter-spacing:11.781007pt;}
.ls31{letter-spacing:15.001200pt;}
.ls42{letter-spacing:15.096000pt;}
.lsd{letter-spacing:16.810267pt;}
.ls54{letter-spacing:20.787533pt;}
.ls76{letter-spacing:35.158820pt;}
.ls5c{letter-spacing:35.576800pt;}
.ls74{letter-spacing:41.070480pt;}
.ls5b{letter-spacing:164.331067pt;}
.ws0{word-spacing:0.000000pt;}
._29{margin-left:-48.200040pt;}
._11{margin-left:-42.376433pt;}
._14{margin-left:-41.234093pt;}
._2b{margin-left:-38.583600pt;}
._2a{margin-left:-35.923407pt;}
._16{margin-left:-34.085340pt;}
._e{margin-left:-32.389753pt;}
._2c{margin-left:-21.682340pt;}
._2e{margin-left:-18.750547pt;}
._20{margin-left:-17.495867pt;}
._21{margin-left:-15.936933pt;}
._1d{margin-left:-14.476000pt;}
._22{margin-left:-12.973907pt;}
._1b{margin-left:-11.725520pt;}
._1{margin-left:-9.666800pt;}
._3{margin-left:-8.447733pt;}
._5{margin-left:-6.662333pt;}
._15{margin-left:-5.754020pt;}
._2{margin-left:-4.757133pt;}
._9{margin-left:-3.713060pt;}
._0{margin-left:-2.531100pt;}
._6{margin-left:-1.130753pt;}
._b{width:1.137600pt;}
._a{width:2.085600pt;}
._7{width:3.180293pt;}
._8{width:4.455600pt;}
._c{width:5.468100pt;}
._4{width:6.941467pt;}
._12{width:7.847333pt;}
._d{width:8.759733pt;}
._f{width:10.187313pt;}
._10{width:11.799160pt;}
._24{width:12.691680pt;}
._1f{width:14.399593pt;}
._13{width:15.533600pt;}
._19{width:17.298927pt;}
._1e{width:18.636067pt;}
._17{width:20.442880pt;}
._28{width:21.678313pt;}
._25{width:25.158867pt;}
._1c{width:27.194007pt;}
._26{width:29.133867pt;}
._2d{width:37.211600pt;}
._18{width:38.462127pt;}
._23{width:40.980460pt;}
._27{width:45.734153pt;}
._1a{width:64.071107pt;}
.fs28{font-size:26.666667pt;}
.fs25{font-size:28.000000pt;}
.fs26{font-size:30.000000pt;}
.fs21{font-size:30.666667pt;}
.fs20{font-size:34.000000pt;}
.fs11{font-size:36.000000pt;}
.fs9{font-size:36.666667pt;}
.fs23{font-size:37.333333pt;}
.fsc{font-size:39.333333pt;}
.fs14{font-size:40.000000pt;}
.fs1d{font-size:46.000000pt;}
.fs16{font-size:47.333333pt;}
.fs18{font-size:48.000000pt;}
.fs13{font-size:49.333333pt;}
.fsf{font-size:51.333333pt;}
.fsa{font-size:52.000000pt;}
.fs1{font-size:52.666667pt;}
.fs2{font-size:53.333333pt;}
.fs7{font-size:54.000000pt;}
.fs4{font-size:54.666667pt;}
.fs3{font-size:55.333333pt;}
.fs10{font-size:56.000000pt;}
.fs15{font-size:56.666667pt;}
.fs1b{font-size:57.333333pt;}
.fsd{font-size:58.000000pt;}
.fs29{font-size:58.666667pt;}
.fs8{font-size:60.000000pt;}
.fs17{font-size:64.000000pt;}
.fs1c{font-size:64.666667pt;}
.fs6{font-size:65.333333pt;}
.fs5{font-size:66.666667pt;}
.fs12{font-size:67.333333pt;}
.fs27{font-size:68.000000pt;}
.fs1f{font-size:68.666667pt;}
.fs1e{font-size:70.000000pt;}
.fs19{font-size:75.333333pt;}
.fsb{font-size:76.666667pt;}
.fs1a{font-size:79.333333pt;}
.fs24{font-size:88.000000pt;}
.fs22{font-size:92.666667pt;}
.fs0{font-size:95.333333pt;}
.fse{font-size:100.000000pt;}
.y0{bottom:0.000000pt;}
.y154{bottom:59.521150pt;}
.y12e{bottom:71.358697pt;}
.ya0{bottom:71.359867pt;}
.y9f{bottom:71.360412pt;}
.yd1{bottom:71.361097pt;}
.y31{bottom:71.680152pt;}
.y64{bottom:71.681185pt;}
.y153{bottom:75.520000pt;}
.y12d{bottom:87.359767pt;}
.y103{bottom:87.359817pt;}
.y82{bottom:87.360413pt;}
.y9e{bottom:87.360517pt;}
.yd0{bottom:87.361098pt;}
.y30{bottom:87.680153pt;}
.y62{bottom:87.680617pt;}
.y63{bottom:87.681187pt;}
.y102{bottom:103.040000pt;}
.ycf{bottom:103.041282pt;}
.y9d{bottom:103.359333pt;}
.y2f{bottom:103.360468pt;}
.y61{bottom:103.360800pt;}
.y60{bottom:103.361917pt;}
.y12c{bottom:119.040510pt;}
.y9b{bottom:119.040513pt;}
.y9c{bottom:119.040533pt;}
.yce{bottom:119.041283pt;}
.y2e{bottom:119.680552pt;}
.y5f{bottom:120.640665pt;}
.y101{bottom:121.599613pt;}
.y9a{bottom:135.039613pt;}
.y99{bottom:135.039998pt;}
.ycd{bottom:135.040232pt;}
.y2d{bottom:135.680553pt;}
.y5e{bottom:136.640667pt;}
.y12b{bottom:137.278677pt;}
.y100{bottom:139.839867pt;}
.y5d{bottom:143.361347pt;}
.y2c{bottom:151.039602pt;}
.y98{bottom:151.040000pt;}
.y97{bottom:151.041032pt;}
.ycb{bottom:151.679670pt;}
.ycc{bottom:151.680133pt;}
.y80{bottom:152.960413pt;}
.y129{bottom:153.273820pt;}
.y12a{bottom:153.279747pt;}
.y5c{bottom:154.881345pt;}
.y81{bottom:155.840267pt;}
.y7f{bottom:162.880387pt;}
.yff{bottom:166.719682pt;}
.y2b{bottom:167.360870pt;}
.yca{bottom:167.678618pt;}
.y128{bottom:169.274890pt;}
.y5a{bottom:170.560520pt;}
.y5b{bottom:170.881347pt;}
.y59{bottom:177.600520pt;}
.yfe{bottom:182.719683pt;}
.y2a{bottom:183.041053pt;}
.yc9{bottom:183.678620pt;}
.y127{bottom:184.954520pt;}
.y58{bottom:189.120535pt;}
.y7e{bottom:196.159950pt;}
.yfd{bottom:198.399867pt;}
.yfc{bottom:198.400385pt;}
.yc8{bottom:199.358803pt;}
.y126{bottom:200.955590pt;}
.y57{bottom:206.080518pt;}
.y152{bottom:209.279333pt;}
.y151{bottom:209.279520pt;}
.y7d{bottom:212.160083pt;}
.yfb{bottom:214.400387pt;}
.yfa{bottom:214.400453pt;}
.y29{bottom:215.361347pt;}
.yc7{bottom:215.519702pt;}
.y125{bottom:216.955157pt;}
.y56{bottom:222.080520pt;}
.y55{bottom:222.080652pt;}
.y14f{bottom:225.278600pt;}
.y150{bottom:225.279720pt;}
.y7b{bottom:227.839920pt;}
.y7c{bottom:227.840267pt;}
.yf9{bottom:230.399270pt;}
.yc6{bottom:231.360387pt;}
.y124{bottom:232.956227pt;}
.y54{bottom:238.080653pt;}
.y7a{bottom:243.838737pt;}
.y96{bottom:243.839698pt;}
.yf8{bottom:246.399403pt;}
.yc5{bottom:247.999453pt;}
.yc4{bottom:247.999783pt;}
.y123{bottom:250.875960pt;}
.y14e{bottom:251.839767pt;}
.y53{bottom:253.760968pt;}
.y79{bottom:259.838870pt;}
.yf7{bottom:262.079587pt;}
.y28{bottom:263.360870pt;}
.y122{bottom:266.877030pt;}
.y14d{bottom:267.839333pt;}
.y14c{bottom:267.839667pt;}
.y52{bottom:270.081052pt;}
.y78{bottom:275.838872pt;}
.yf6{bottom:278.399453pt;}
.yf5{bottom:278.399802pt;}
.y27{bottom:279.041053pt;}
.y121{bottom:282.878100pt;}
.y14a{bottom:283.839220pt;}
.y14b{bottom:283.839867pt;}
.y51{bottom:286.081053pt;}
.y77{bottom:291.519187pt;}
.yf4{bottom:294.081170pt;}
.y120{bottom:298.877667pt;}
.y76{bottom:307.839270pt;}
.yc3{bottom:308.160917pt;}
.y95{bottom:308.480000pt;}
.y94{bottom:308.480532pt;}
.yf3{bottom:310.080118pt;}
.y148{bottom:310.399870pt;}
.y149{bottom:310.400387pt;}
.y26{bottom:312.640120pt;}
.y11f{bottom:314.878737pt;}
.y50{bottom:318.080390pt;}
.y75{bottom:323.519453pt;}
.y74{bottom:323.520888pt;}
.yc2{bottom:324.159733pt;}
.y93{bottom:324.480533pt;}
.y92{bottom:324.481998pt;}
.y147{bottom:326.079500pt;}
.yf2{bottom:326.080120pt;}
.y11e{bottom:330.879807pt;}
.y4e{bottom:336.320800pt;}
.y4f{bottom:336.640120pt;}
.y73{bottom:339.521022pt;}
.yc1{bottom:340.479453pt;}
.yc0{bottom:340.480050pt;}
.y91{bottom:340.480815pt;}
.y11d{bottom:346.559437pt;}
.yf1{bottom:349.439987pt;}
.y145{bottom:352.640398pt;}
.y146{bottom:352.640667pt;}
.y72{bottom:355.521023pt;}
.y90{bottom:357.440930pt;}
.y11c{bottom:362.560507pt;}
.y25{bottom:367.361372pt;}
.y143{bottom:368.960120pt;}
.y144{bottom:368.960413pt;}
.y71{bottom:371.519972pt;}
.y8f{bottom:373.440932pt;}
.yef{bottom:376.640397pt;}
.yf0{bottom:376.640667pt;}
.y24{bottom:383.361373pt;}
.y23{bottom:383.362022pt;}
.y4d{bottom:383.680203pt;}
.y6f{bottom:387.519935pt;}
.y70{bottom:387.519973pt;}
.y8e{bottom:389.440933pt;}
.yee{bottom:392.960480pt;}
.y142{bottom:395.200120pt;}
.y11b{bottom:396.160130pt;}
.y4b{bottom:399.359922pt;}
.y4c{bottom:399.360387pt;}
.y22{bottom:399.360838pt;}
.ybf{bottom:400.959948pt;}
.y6e{bottom:403.519937pt;}
.y8d{bottom:405.439750pt;}
.yed{bottom:408.640795pt;}
.y141{bottom:411.360387pt;}
.y140{bottom:411.360505pt;}
.y11a{bottom:414.719200pt;}
.y21{bottom:415.360972pt;}
.y4a{bottom:415.680005pt;}
.ybe{bottom:416.640132pt;}
.y6d{bottom:419.200120pt;}
.y6c{bottom:419.200357pt;}
.y8c{bottom:422.399865pt;}
.yec{bottom:424.640797pt;}
.y13f{bottom:427.199920pt;}
.y20{bottom:431.360973pt;}
.y49{bottom:431.361373pt;}
.y48{bottom:431.361982pt;}
.ybd{bottom:432.640133pt;}
.ybc{bottom:432.640617pt;}
.y6b{bottom:435.199173pt;}
.y6a{bottom:435.199903pt;}
.y8b{bottom:438.399867pt;}
.y8a{bottom:438.400320pt;}
.yeb{bottom:440.639613pt;}
.y13d{bottom:443.199673pt;}
.y13e{bottom:443.200120pt;}
.y1f{bottom:447.359790pt;}
.y47{bottom:447.360798pt;}
.ybb{bottom:449.279333pt;}
.y69{bottom:454.079587pt;}
.y68{bottom:454.079785pt;}
.y89{bottom:454.400453pt;}
.y13c{bottom:458.879303pt;}
.y1e{bottom:463.040105pt;}
.y46{bottom:463.360800pt;}
.y45{bottom:463.361117pt;}
.yea{bottom:463.999467pt;}
.yba{bottom:465.279707pt;}
.yb9{bottom:465.280278pt;}
.y119{bottom:465.599497pt;}
.y88{bottom:470.080637pt;}
.y13b{bottom:474.880373pt;}
.y44{bottom:479.361250pt;}
.y1d{bottom:479.361373pt;}
.y1c{bottom:479.361985pt;}
.yb8{bottom:481.280280pt;}
.y118{bottom:481.599063pt;}
.y87{bottom:486.080770pt;}
.ye9{bottom:491.200120pt;}
.ye8{bottom:491.200357pt;}
.y1b{bottom:495.042168pt;}
.y43{bottom:496.321233pt;}
.yb7{bottom:497.600133pt;}
.y86{bottom:502.079587pt;}
.y13a{bottom:504.640133pt;}
.ye7{bottom:507.199173pt;}
.y1a{bottom:511.040985pt;}
.y42{bottom:512.320050pt;}
.yb6{bottom:513.600507pt;}
.yb5{bottom:513.600955pt;}
.y85{bottom:519.038928pt;}
.y19{bottom:527.041118pt;}
.y40{bottom:528.638667pt;}
.y41{bottom:528.640133pt;}
.yb4{bottom:529.599772pt;}
.y117{bottom:532.479453pt;}
.y116{bottom:532.479507pt;}
.y67{bottom:535.358935pt;}
.y84{bottom:535.359012pt;}
.ye6{bottom:537.279707pt;}
.y18{bottom:543.041120pt;}
.y139{bottom:544.319300pt;}
.y3f{bottom:544.320167pt;}
.yb3{bottom:545.599773pt;}
.y115{bottom:548.160640pt;}
.y114{bottom:548.160700pt;}
.y66{bottom:551.040303pt;}
.y83{bottom:551.040380pt;}
.y17{bottom:558.721435pt;}
.y138{bottom:559.998930pt;}
.y3e{bottom:560.318983pt;}
.y113{bottom:568.960000pt;}
.y16{bottom:574.721437pt;}
.y136{bottom:575.998397pt;}
.y137{bottom:576.000000pt;}
.y3d{bottom:576.319117pt;}
.ye5{bottom:576.319488pt;}
.y15{bottom:590.720253pt;}
.y14{bottom:590.721467pt;}
.y3c{bottom:591.999300pt;}
.y135{bottom:591.999467pt;}
.ye4{bottom:592.640757pt;}
.y112{bottom:606.080520pt;}
.y13{bottom:606.721600pt;}
.y134{bottom:607.999033pt;}
.y3b{bottom:607.999302pt;}
.ye3{bottom:608.639573pt;}
.ye2{bottom:608.640987pt;}
.y65{bottom:620.479987pt;}
.y111{bottom:622.079587pt;}
.y12{bottom:622.721602pt;}
.y3a{bottom:623.838933pt;}
.y133{bottom:624.000103pt;}
.ye1{bottom:624.321170pt;}
.y11{bottom:638.720418pt;}
.y132{bottom:639.679733pt;}
.y39{bottom:639.999700pt;}
.ye0{bottom:640.321303pt;}
.yb1{bottom:642.880080pt;}
.yb2{bottom:642.880373pt;}
.y10{bottom:654.561103pt;}
.y38{bottom:655.999702pt;}
.ydf{bottom:656.321437pt;}
.y110{bottom:661.439387pt;}
.y131{bottom:669.439453pt;}
.yf{bottom:670.400735pt;}
.y37{bottom:671.680017pt;}
.yde{bottom:672.320253pt;}
.y10f{bottom:677.440457pt;}
.ye{bottom:686.400737pt;}
.y36{bottom:687.680018pt;}
.ydd{bottom:688.001622pt;}
.y10e{bottom:695.678623pt;}
.yd{bottom:702.400870pt;}
.yb0{bottom:703.040028pt;}
.y35{bottom:704.000233pt;}
.ydc{bottom:704.000438pt;}
.y10c{bottom:711.679167pt;}
.y10d{bottom:711.679693pt;}
.yc{bottom:718.081053pt;}
.yaf{bottom:718.720212pt;}
.y34{bottom:719.680417pt;}
.ydb{bottom:720.000572pt;}
.y10b{bottom:727.358797pt;}
.yae{bottom:734.720213pt;}
.yad{bottom:734.721113pt;}
.y33{bottom:735.680418pt;}
.yda{bottom:736.000705pt;}
.y130{bottom:738.880373pt;}
.y109{bottom:743.359560pt;}
.y10a{bottom:743.359867pt;}
.yac{bottom:751.359830pt;}
.y32{bottom:751.679367pt;}
.yb{bottom:751.680093pt;}
.yd9{bottom:751.680757pt;}
.y108{bottom:761.279293pt;}
.y12f{bottom:768.959467pt;}
.yaa{bottom:769.599110pt;}
.yab{bottom:769.599613pt;}
.ya9{bottom:785.279293pt;}
.ya8{bottom:785.279737pt;}
.y107{bottom:786.880373pt;}
.y9{bottom:793.600857pt;}
.ya{bottom:793.601080pt;}
.y8{bottom:809.281172pt;}
.y6{bottom:825.281063pt;}
.y7{bottom:825.281173pt;}
.yd8{bottom:836.160723pt;}
.y5{bottom:841.601147pt;}
.ya7{bottom:846.080770pt;}
.yd7{bottom:852.159672pt;}
.y4{bottom:856.961248pt;}
.y106{bottom:860.479987pt;}
.ya6{bottom:862.079587pt;}
.ya5{bottom:862.080013pt;}
.y3{bottom:873.281463pt;}
.ya4{bottom:878.080147pt;}
.y2{bottom:889.280280pt;}
.ya3{bottom:893.760330pt;}
.ya2{bottom:909.760463pt;}
.y1{bottom:920.000893pt;}
.yd6{bottom:922.239255pt;}
.ya1{bottom:925.759280pt;}
.yd5{bottom:938.239257pt;}
.yd4{bottom:953.919440pt;}
.yd3{bottom:953.921447pt;}
.y105{bottom:954.880373pt;}
.yd2{bottom:969.921448pt;}
.y104{bottom:971.840253pt;}
.h43{height:27.812500pt;}
.h3d{height:29.203125pt;}
.h42{height:30.307292pt;}
.h3e{height:31.289062pt;}
.h36{height:31.984375pt;}
.h16{height:35.314453pt;}
.h17{height:35.332031pt;}
.h35{height:35.460938pt;}
.ha{height:35.968424pt;}
.h37{height:35.986328pt;}
.h39{height:36.895833pt;}
.hd{height:38.584310pt;}
.h3f{height:38.937500pt;}
.h21{height:39.238281pt;}
.h30{height:47.976562pt;}
.h1e{height:48.417969pt;}
.h23{height:49.367188pt;}
.h26{height:50.062500pt;}
.h13{height:50.380859pt;}
.h1c{height:51.009766pt;}
.h25{height:51.035156pt;}
.h2e{height:51.453125pt;}
.h2{height:51.689453pt;}
.h2b{height:51.689980pt;}
.hf{height:52.317708pt;}
.h3{height:52.343750pt;}
.h15{height:52.971680pt;}
.h8{height:52.998047pt;}
.h19{height:53.539062pt;}
.h1f{height:53.625651pt;}
.h2a{height:53.652344pt;}
.hb{height:54.234375pt;}
.h4{height:54.279622pt;}
.h3b{height:54.306641pt;}
.h2f{height:54.421875pt;}
.h1a{height:54.929688pt;}
.h20{height:54.933594pt;}
.h14{height:54.960938pt;}
.h5{height:55.093750pt;}
.h3c{height:55.587565pt;}
.h31{height:55.615234pt;}
.h11{height:55.625000pt;}
.h22{height:56.002604pt;}
.h29{height:56.269531pt;}
.h41{height:56.437500pt;}
.he{height:56.895508pt;}
.h33{height:56.923828pt;}
.h1b{height:57.015625pt;}
.h1d{height:58.857422pt;}
.h9{height:59.296875pt;}
.h45{height:61.187500pt;}
.h2d{height:65.171875pt;}
.h7{height:65.843750pt;}
.h24{height:66.750000pt;}
.h6{height:67.187500pt;}
.h2c{height:67.859375pt;}
.h40{height:68.531250pt;}
.h44{height:69.203125pt;}
.h18{height:70.226562pt;}
.h34{height:71.617188pt;}
.h32{height:73.007812pt;}
.h28{height:77.861328pt;}
.h27{height:78.570312pt;}
.hc{height:79.960938pt;}
.h3a{height:91.781250pt;}
.h1{height:96.078125pt;}
.h38{height:96.648438pt;}
.h10{height:104.296875pt;}
.h12{height:1055.678667pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xc{left:72.000000pt;}
.x14{left:72.959467pt;}
.xa0{left:86.078680pt;}
.x43{left:91.199733pt;}
.xa1{left:98.559067pt;}
.x44{left:99.839333pt;}
.xd{left:100.798813pt;}
.x1{left:104.318813pt;}
.x10{left:108.479067pt;}
.xbd{left:111.039613pt;}
.xa7{left:113.279333pt;}
.x40{left:115.199733pt;}
.x41{left:127.038533pt;}
.x11{left:128.958947pt;}
.xa2{left:131.519467pt;}
.x70{left:136.319867pt;}
.xa5{left:147.199200pt;}
.x71{left:151.038533pt;}
.x99{left:153.919867pt;}
.xac{left:156.159733pt;}
.x42{left:157.119200pt;}
.x37{left:159.039587pt;}
.x7f{left:159.999067pt;}
.xa8{left:160.960000pt;}
.x3a{left:161.919480pt;}
.x3e{left:165.758813pt;}
.x9f{left:167.679200pt;}
.x74{left:169.918920pt;}
.x4a{left:173.759720pt;}
.xad{left:174.719200pt;}
.xa3{left:175.999467pt;}
.x6c{left:176.958920pt;}
.x3b{left:182.718787pt;}
.x3f{left:184.319867pt;}
.xa9{left:191.359867pt;}
.x82{left:194.559067pt;}
.x9d{left:197.119587pt;}
.xa4{left:203.838933pt;}
.x9a{left:206.078680pt;}
.x7a{left:213.439453pt;}
.x75{left:216.319333pt;}
.x46{left:217.278787pt;}
.x83{left:219.839333pt;}
.x78{left:223.359333pt;}
.x12{left:224.958920pt;}
.x9c{left:226.239200pt;}
.x80{left:227.838933pt;}
.x47{left:234.238787pt;}
.x2{left:238.719720pt;}
.x81{left:242.239720pt;}
.x38{left:243.518533pt;}
.x13{left:245.119587pt;}
.x48{left:250.879333pt;}
.x34{left:255.358933pt;}
.x45{left:261.439453pt;}
.x9b{left:264.638667pt;}
.xaa{left:267.839333pt;}
.x39{left:270.719200pt;}
.x9{left:273.600187pt;}
.x7b{left:275.838933pt;}
.x7d{left:282.878920pt;}
.xab{left:284.159200pt;}
.x6d{left:285.118667pt;}
.x4{left:290.879787pt;}
.x6e{left:293.438920pt;}
.x35{left:295.359333pt;}
.x7e{left:297.919867pt;}
.x3{left:299.519720pt;}
.x7c{left:305.598680pt;}
.x36{left:307.519067pt;}
.x76{left:311.359867pt;}
.xa{left:313.600253pt;}
.xe{left:314.879867pt;}
.x3d{left:320.318787pt;}
.x72{left:321.919867pt;}
.x77{left:323.838933pt;}
.x5{left:324.801247pt;}
.x73{left:331.839867pt;}
.xf{left:336.638693pt;}
.x6{left:337.602053pt;}
.x9e{left:344.958947pt;}
.x3c{left:346.239173pt;}
.x79{left:348.799840pt;}
.xb{left:350.078693pt;}
.x49{left:357.758787pt;}
.x7{left:364.479453pt;}
.xa6{left:370.558507pt;}
.x8{left:373.759320pt;}
.x6f{left:375.999067pt;}
.x2f{left:431.039040pt;}
.x15{left:432.643307pt;}
.xb2{left:439.678667pt;}
.xb3{left:458.878267pt;}
.x23{left:459.839320pt;}
.x18{left:461.118980pt;}
.x28{left:463.999467pt;}
.xaf{left:465.279707pt;}
.x1d{left:468.479040pt;}
.x4b{left:473.598680pt;}
.x27{left:474.559573pt;}
.x53{left:476.799320pt;}
.x1e{left:484.158693pt;}
.x19{left:486.399867pt;}
.x1a{left:495.999067pt;}
.x4c{left:497.598680pt;}
.x4e{left:500.159173pt;}
.x54{left:501.439453pt;}
.x25{left:504.319333pt;}
.xb8{left:506.879840pt;}
.x29{left:511.038533pt;}
.x26{left:513.599040pt;}
.x55{left:515.198693pt;}
.x4d{left:516.799840pt;}
.x2a{left:517.759320pt;}
.x4f{left:521.279333pt;}
.xb6{left:523.839840pt;}
.xb9{left:525.439453pt;}
.xbc{left:532.798787pt;}
.x5c{left:536.958907pt;}
.x50{left:541.119187pt;}
.xb4{left:544.319867pt;}
.x87{left:549.118693pt;}
.x5d{left:560.639573pt;}
.x89{left:566.399453pt;}
.x96{left:570.878907pt;}
.x8f{left:572.479987pt;}
.x5e{left:576.319333pt;}
.x98{left:577.278773pt;}
.xae{left:579.839320pt;}
.x56{left:582.079067pt;}
.x8a{left:584.318760pt;}
.x97{left:587.838907pt;}
.x60{left:588.799840pt;}
.x90{left:589.759320pt;}
.x30{left:591.358933pt;}
.x2e{left:596.479987pt;}
.x8b{left:597.758787pt;}
.x6b{left:601.599573pt;}
.x91{left:603.518520pt;}
.x57{left:605.119587pt;}
.x61{left:606.079067pt;}
.x2c{left:612.159707pt;}
.x92{left:613.119187pt;}
.x8c{left:614.078693pt;}
.x69{left:615.679733pt;}
.x16{left:617.279333pt;}
.x58{left:620.799320pt;}
.x62{left:621.758787pt;}
.x2b{left:622.719720pt;}
.xbb{left:626.239707pt;}
.x31{left:627.199173pt;}
.x51{left:628.798787pt;}
.x59{left:629.759720pt;}
.xba{left:631.359333pt;}
.x17{left:632.958907pt;}
.x93{left:635.198693pt;}
.x5a{left:641.919440pt;}
.x52{left:643.199707pt;}
.x63{left:644.799320pt;}
.x6a{left:646.398920pt;}
.x5f{left:648.638707pt;}
.x32{left:653.119587pt;}
.x5b{left:654.079067pt;}
.x84{left:655.038533pt;}
.x1f{left:659.519453pt;}
.x33{left:663.999067pt;}
.x2d{left:666.878907pt;}
.x86{left:668.159173pt;}
.x1b{left:672.638707pt;}
.x20{left:675.199173pt;}
.x94{left:676.798787pt;}
.x64{left:680.639573pt;}
.x85{left:681.599040pt;}
.x8d{left:684.799880pt;}
.x1c{left:686.399413pt;}
.x24{left:689.598720pt;}
.x95{left:690.878907pt;}
.x65{left:703.678707pt;}
.xb0{left:710.399413pt;}
.x66{left:716.159173pt;}
.x21{left:717.439453pt;}
.x67{left:720.000000pt;}
.x88{left:720.959467pt;}
.x8e{left:723.518560pt;}
.xb7{left:724.798747pt;}
.xb1{left:727.678707pt;}
.x22{left:728.639573pt;}
.x68{left:732.479080pt;}
.xb5{left:741.118733pt;}
}




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