
    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_52701f33be5485365ea65a47.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_870ce285b0f0d95390f8fee3.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_1f53fa728633978cdfd02686.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_73147dc9a94078a5f49afa18.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_f09312b79360dbeca824ae04.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a3e4b1d18d54a087a303c4d3.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_36eadbad8e6d8be5bc81d607.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_06017545f8f38928b037adec.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_364a25c19ee8dad89261dbd5.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_6fda7cdb7669cc1d5c878f92.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_a034139b02f907e303596008.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_e6fa9bf71931e595b35da0f5.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_b7f09b1517cacca3ac43d6d2.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_09d733279c3cc598ad3db1cc.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_ca1ae9441a132098639a38f6.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_a18e2b0673cbb29012aac0c2.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_63242683dc473266dd90b692.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_9c6c29bba1bb7204a553bfda.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_fc6dc91b1569e1b9cf20ec45.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_08af9bf835cafe33e4245579.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_ab6099a64e3a72db3ed2d6af.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_97d5070f2d6d0630d6455a1a.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_143a179da188e22d8fcc90ab.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_a8110b3886299ec8852b1286.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_d171c7c87398f96dcaa7c37d.woff2')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_7846abd4759166010b73e319.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_0e55debf976ed58fd0727624.woff2')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_2841042f232de950c53e1427.woff2')format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url('chunks/assets/font_12830a1ca7f877b8b84f2b82.woff2')format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url('chunks/assets/font_f502626d959bd152e28aa504.woff2')format("woff");}.ff1e{font-family:ff1e;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:ff1f;src:url('chunks/assets/font_3d5fb3d187cfd2e73d042597.woff2')format("woff");}.ff1f{font-family:ff1f;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:ff20;src:url('chunks/assets/font_a308d9b46ce25c98598a3778.woff2')format("woff");}.ff20{font-family:ff20;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:ff21;src:url('chunks/assets/font_35762cf00885deabe296014a.woff2')format("woff");}.ff21{font-family:ff21;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:ff22;src:url('chunks/assets/font_b54dccb591c40ad17a75bcd0.woff2')format("woff");}.ff22{font-family:ff22;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:ff23;src:url('chunks/assets/font_c392a8c569b441deb6b504f7.woff2')format("woff");}.ff23{font-family:ff23;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:ff24;src:url('chunks/assets/font_3eb27629a40a6cd414a80cf2.woff2')format("woff");}.ff24{font-family:ff24;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:ff25;src:url('chunks/assets/font_ca05b55fd636187f37c8d002.woff2')format("woff");}.ff25{font-family:ff25;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:ff26;src:url('chunks/assets/font_0e55debf976ed58fd0727624.woff2')format("woff");}.ff26{font-family:ff26;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:ff27;src:url('chunks/assets/font_91ed4a94fc6e97dcaa1ce904.woff2')format("woff");}.ff27{font-family:ff27;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;}
.m52{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.120690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120690,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.121560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121560,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.128247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128247,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.128788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128788,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.132743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132743,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.143519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143519,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.152174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152174,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.170833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170833,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.175532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175532,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.193452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193452,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.207031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207031,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.207447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207447,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.211207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211207,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.214912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214912,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.215686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215686,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.219697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219697,0.000000,0.000000,0.250000,0,0);}
.m1f{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);}
.m28{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);}
.m53{transform:matrix(0.222656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222656,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.223485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223485,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.223529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223529,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.223558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223558,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.224576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224576,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.226027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226027,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.227778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227778,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.237374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237374,0.000000,0.000000,0.250000,0,0);}
.m30{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);}
.m4f{transform:matrix(0.237745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237745,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.238462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238462,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.239691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239691,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.242347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242347,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.242537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242537,0.000000,0.000000,0.250000,0,0);}
.m56{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);}
.m23{transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.246154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246154,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.246269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246269,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.247340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247340,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.247449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247449,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.248077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248077,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.m1b{transform:matrix(0.252525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252525,0.000000,0.000000,0.250000,0,0);}
.m59{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);}
.m1c{transform:matrix(0.252577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252577,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.252604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252604,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.252717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252717,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.253846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253846,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.253876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253876,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.255102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255102,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.m4a{transform:matrix(0.257692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257692,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.257813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257813,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.257895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257895,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.257937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257937,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.261538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261538,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);}
.m3a{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);}
.m0{transform:matrix(0.262887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262887,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.266304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266304,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.269531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269531,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.271978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271978,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.272222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272222,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.273438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273438,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.286585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286585,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.286885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286885,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.290698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290698,0.000000,0.000000,0.250000,0,0);}
.m1a{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);}
.m39{transform:matrix(0.316176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316176,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.322115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322115,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.326531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326531,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.329897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329897,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.330882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330882,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.331522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331522,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.356061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356061,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.385135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385135,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.395161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395161,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.401961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401961,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.448529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448529,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.452381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452381,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.468750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468750,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.695652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.695652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.695652,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-2.880637px;}
.v1{vertical-align:-1.433250px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:82.077450px;}
.ls4f{letter-spacing:-16.770000px;}
.ls7c{letter-spacing:-13.499250px;}
.ls83{letter-spacing:-12.495000px;}
.ls7a{letter-spacing:-12.000000px;}
.ls36{letter-spacing:-9.953003px;}
.ls79{letter-spacing:-9.750000px;}
.ls6f{letter-spacing:-9.665085px;}
.ls4d{letter-spacing:-9.555000px;}
.ls3b{letter-spacing:-8.725275px;}
.ls80{letter-spacing:-8.085000px;}
.ls17{letter-spacing:-7.527600px;}
.ls78{letter-spacing:-7.500750px;}
.ls18{letter-spacing:-7.350735px;}
.ls46{letter-spacing:-7.170638px;}
.ls1d{letter-spacing:-7.060320px;}
.ls2a{letter-spacing:-6.712875px;}
.lse{letter-spacing:-5.880000px;}
.ls71{letter-spacing:-5.250750px;}
.ls2b{letter-spacing:-5.145735px;}
.ls27{letter-spacing:-4.410000px;}
.ls3a{letter-spacing:-4.216860px;}
.ls26{letter-spacing:-3.675000px;}
.ls44{letter-spacing:-3.549600px;}
.ls47{letter-spacing:-3.284400px;}
.ls19{letter-spacing:-2.998800px;}
.ls14{letter-spacing:-2.939265px;}
.ls70{letter-spacing:-2.910600px;}
.ls4c{letter-spacing:-2.866988px;}
.ls35{letter-spacing:-2.822880px;}
.ls49{letter-spacing:-2.367000px;}
.ls68{letter-spacing:-2.250000px;}
.ls69{letter-spacing:-2.249775px;}
.lsd{letter-spacing:-2.205000px;}
.ls32{letter-spacing:-2.116800px;}
.ls50{letter-spacing:-1.581525px;}
.ls56{letter-spacing:-1.574625px;}
.ls38{letter-spacing:-1.548203px;}
.ls3c{letter-spacing:-1.502400px;}
.ls60{letter-spacing:-1.500000px;}
.lsa{letter-spacing:-1.480275px;}
.lsc{letter-spacing:-1.470000px;}
.ls4a{letter-spacing:-1.433250px;}
.ls5{letter-spacing:-1.425900px;}
.ls33{letter-spacing:-1.411200px;}
.ls51{letter-spacing:-1.161420px;}
.ls6e{letter-spacing:-1.145865px;}
.ls66{letter-spacing:-1.134173px;}
.ls63{letter-spacing:-0.760013px;}
.ls6b{letter-spacing:-0.749250px;}
.lsb{letter-spacing:-0.734265px;}
.ls45{letter-spacing:-0.716138px;}
.ls8{letter-spacing:-0.712950px;}
.ls1c{letter-spacing:-0.705120px;}
.ls89{letter-spacing:-0.703110px;}
.ls84{letter-spacing:-0.689325px;}
.ls31{letter-spacing:-0.111600px;}
.ls6{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.705120px;}
.ls7{letter-spacing:0.712950px;}
.ls3e{letter-spacing:0.716138px;}
.ls1{letter-spacing:0.734265px;}
.ls15{letter-spacing:0.734775px;}
.ls12{letter-spacing:0.741758px;}
.ls25{letter-spacing:0.748320px;}
.ls16{letter-spacing:0.749250px;}
.ls85{letter-spacing:0.749325px;}
.ls5f{letter-spacing:0.749925px;}
.ls59{letter-spacing:0.760013px;}
.ls2f{letter-spacing:0.763200px;}
.ls55{letter-spacing:0.807645px;}
.ls77{letter-spacing:0.840000px;}
.ls64{letter-spacing:0.841500px;}
.ls34{letter-spacing:0.891315px;}
.ls88{letter-spacing:0.902400px;}
.ls87{letter-spacing:1.308150px;}
.ls62{letter-spacing:1.392480px;}
.ls11{letter-spacing:1.411200px;}
.ls0{letter-spacing:1.425900px;}
.ls41{letter-spacing:1.433250px;}
.ls2{letter-spacing:1.470000px;}
.ls48{letter-spacing:1.477125px;}
.ls28{letter-spacing:1.484100px;}
.ls13{letter-spacing:1.485000px;}
.ls5b{letter-spacing:1.499850px;}
.ls29{letter-spacing:1.500000px;}
.ls2d{letter-spacing:1.502400px;}
.ls42{letter-spacing:1.514700px;}
.ls53{letter-spacing:1.515750px;}
.ls23{letter-spacing:1.525875px;}
.ls5a{letter-spacing:1.526400px;}
.ls7d{letter-spacing:1.545300px;}
.ls61{letter-spacing:1.569750px;}
.ls52{letter-spacing:1.574625px;}
.ls1a{letter-spacing:1.618395px;}
.ls4b{letter-spacing:1.627680px;}
.ls76{letter-spacing:1.638000px;}
.ls3f{letter-spacing:2.149875px;}
.ls57{letter-spacing:2.150400px;}
.ls86{letter-spacing:2.181600px;}
.ls3{letter-spacing:2.205000px;}
.ls81{letter-spacing:2.227050px;}
.ls5d{letter-spacing:2.250000px;}
.ls24{letter-spacing:2.251680px;}
.ls7f{letter-spacing:2.271150px;}
.ls43{letter-spacing:2.271308px;}
.ls5c{letter-spacing:2.285280px;}
.ls6c{letter-spacing:2.302388px;}
.ls74{letter-spacing:2.433953px;}
.ls73{letter-spacing:2.455560px;}
.ls37{letter-spacing:2.470500px;}
.ls65{letter-spacing:2.475000px;}
.ls2c{letter-spacing:2.778750px;}
.ls40{letter-spacing:2.866988px;}
.ls4{letter-spacing:2.939265px;}
.ls58{letter-spacing:2.999250px;}
.ls9{letter-spacing:3.023475px;}
.ls2e{letter-spacing:3.046875px;}
.ls7b{letter-spacing:3.192750px;}
.ls30{letter-spacing:3.271800px;}
.ls10{letter-spacing:3.528000px;}
.ls7e{letter-spacing:3.675000px;}
.ls82{letter-spacing:3.708000px;}
.ls5e{letter-spacing:3.750368px;}
.ls20{letter-spacing:4.410000px;}
.ls39{letter-spacing:5.333738px;}
.ls3d{letter-spacing:5.433600px;}
.ls6a{letter-spacing:5.478075px;}
.ls1e{letter-spacing:5.598000px;}
.ls21{letter-spacing:5.880000px;}
.ls54{letter-spacing:6.408098px;}
.ls6d{letter-spacing:6.583500px;}
.ls1f{letter-spacing:6.615000px;}
.ls67{letter-spacing:6.750000px;}
.ls4e{letter-spacing:7.574243px;}
.ls22{letter-spacing:10.290000px;}
.ls75{letter-spacing:13.125000px;}
.ls72{letter-spacing:31.500000px;}
.ls1b{letter-spacing:36.473850px;}
.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;}
._2a{margin-left:-111.172545px;}
._2f{margin-left:-73.067025px;}
._40{margin-left:-51.469027px;}
._49{margin-left:-49.712587px;}
._42{margin-left:-48.555427px;}
._41{margin-left:-44.919525px;}
._2{margin-left:-42.747900px;}
._44{margin-left:-41.260395px;}
._48{margin-left:-39.475200px;}
._28{margin-left:-38.397765px;}
._26{margin-left:-35.995095px;}
._25{margin-left:-34.116615px;}
._46{margin-left:-20.424405px;}
._45{margin-left:-19.230000px;}
._27{margin-left:-15.923865px;}
._3f{margin-left:-11.122020px;}
._1e{margin-left:-9.499215px;}
._43{margin-left:-8.397285px;}
._1{margin-left:-6.589695px;}
._1d{margin-left:-4.704000px;}
._3{margin-left:-3.417795px;}
._f{margin-left:-2.175600px;}
._13{margin-left:-1.043085px;}
._33{width:1.002457px;}
._10{width:2.027865px;}
._0{width:3.214095px;}
._e{width:4.623945px;}
._14{width:6.409755px;}
._b{width:7.813050px;}
._1c{width:8.923695px;}
._d{width:10.076970px;}
._c{width:11.596095px;}
._12{width:13.017585px;}
._19{width:14.349405px;}
._16{width:16.270695px;}
._18{width:17.308515px;}
._15{width:18.868185px;}
._1b{width:20.433000px;}
._1a{width:22.152900px;}
._17{width:23.489865px;}
._a{width:25.462605px;}
._5{width:26.974500px;}
._8{width:28.616490px;}
._4{width:30.001965px;}
._7{width:31.837995px;}
._6{width:33.246255px;}
._3e{width:34.450185px;}
._9{width:35.507115px;}
._11{width:36.875685px;}
._29{width:38.172225px;}
._39{width:40.131000px;}
._3b{width:41.400345px;}
._2e{width:42.547680px;}
._32{width:44.044800px;}
._3a{width:46.105815px;}
._3d{width:47.496435px;}
._30{width:48.734400px;}
._3c{width:49.832115px;}
._2d{width:51.893940px;}
._24{width:53.655000px;}
._23{width:56.389200px;}
._22{width:57.920940px;}
._21{width:59.020500px;}
._1f{width:60.188415px;}
._20{width:66.000795px;}
._2b{width:68.573970px;}
._4a{width:70.127085px;}
._31{width:71.553600px;}
._2c{width:75.805575px;}
._36{width:80.574000px;}
._35{width:83.295712px;}
._34{width:88.168763px;}
._47{width:94.446000px;}
._4b{width:99.152970px;}
._38{width:199.704375px;}
._37{width:204.428250px;}
.fc0{color:transparent;}
.fs12{font-size:13.500000px;}
.fs11{font-size:15.750000px;}
.fs13{font-size:18.000000px;}
.fs28{font-size:23.250000px;}
.fs25{font-size:24.750000px;}
.fs2a{font-size:25.500000px;}
.fs2f{font-size:26.250000px;}
.fs29{font-size:27.000000px;}
.fs31{font-size:27.750000px;}
.fs17{font-size:30.750000px;}
.fs20{font-size:33.750000px;}
.fsd{font-size:34.500000px;}
.fs2c{font-size:35.250000px;}
.fsa{font-size:36.000000px;}
.fs1a{font-size:37.500000px;}
.fs14{font-size:38.250000px;}
.fs36{font-size:40.500000px;}
.fs22{font-size:42.750000px;}
.fs1e{font-size:43.500000px;}
.fs24{font-size:45.000000px;}
.fs2d{font-size:45.750000px;}
.fs1d{font-size:46.500000px;}
.fs23{font-size:47.250000px;}
.fse{font-size:48.000000px;}
.fs1c{font-size:48.750000px;}
.fs2e{font-size:49.500000px;}
.fs1b{font-size:50.250000px;}
.fs32{font-size:52.500000px;}
.fs21{font-size:54.000000px;}
.fs1f{font-size:54.750000px;}
.fs10{font-size:63.000000px;}
.fs19{font-size:63.750000px;}
.fs6{font-size:67.500000px;}
.fs35{font-size:68.250000px;}
.fs8{font-size:69.000000px;}
.fs2b{font-size:70.500000px;}
.fs15{font-size:71.250000px;}
.fs34{font-size:72.000000px;}
.fs5{font-size:72.750000px;}
.fs4{font-size:73.500000px;}
.fs18{font-size:74.250000px;}
.fs7{font-size:75.000000px;}
.fs33{font-size:75.750000px;}
.fs9{font-size:76.500000px;}
.fsf{font-size:78.000000px;}
.fsb{font-size:81.750000px;}
.fs27{font-size:84.750000px;}
.fs16{font-size:86.250000px;}
.fs30{font-size:88.500000px;}
.fs3{font-size:96.750000px;}
.fs2{font-size:97.500000px;}
.fsc{font-size:108.750000px;}
.fs37{font-size:115.500000px;}
.fs1{font-size:137.250000px;}
.fs0{font-size:145.500000px;}
.fs26{font-size:161.250000px;}
.y0{bottom:0.000000px;}
.yeb{bottom:80.637679px;}
.yc0{bottom:83.522359px;}
.y6f{bottom:87.119588px;}
.y18{bottom:92.879756px;}
.y48{bottom:93.964170px;}
.yea{bottom:101.519029px;}
.ybf{bottom:104.762021px;}
.y6e{bottom:108.359250px;}
.y6d{bottom:108.360544px;}
.y17{bottom:114.119419px;}
.y47{bottom:114.125220px;}
.y3c{bottom:118.439715px;}
.ye9{bottom:122.758691px;}
.ybe{bottom:125.641718px;}
.y6c{bottom:129.240240px;}
.y16{bottom:135.000769px;}
.y46{bottom:135.004916px;}
.ye8{bottom:143.639858px;}
.ybd{bottom:146.161080px;}
.y117{bottom:150.119400px;}
.y118{bottom:150.120000px;}
.y6b{bottom:150.479903px;}
.y45{bottom:155.524095px;}
.y15{bottom:155.880465px;}
.y90{bottom:158.399751px;}
.y7d{bottom:159.119100px;}
.y7e{bottom:159.119415px;}
.ye7{bottom:164.519554px;}
.ybc{bottom:166.680443px;}
.y137{bottom:170.639989px;}
.y138{bottom:170.640150px;}
.y115{bottom:170.998950px;}
.y116{bottom:170.999400px;}
.y6a{bottom:171.719565px;}
.y69{bottom:171.721005px;}
.y8f{bottom:172.799282px;}
.y7c{bottom:173.519100px;}
.y14{bottom:176.399092px;}
.y44{bottom:176.403791px;}
.ye6{bottom:185.399250px;}
.ye5{bottom:185.400450px;}
.y8d{bottom:187.558884px;}
.y8e{bottom:187.559685px;}
.ybb{bottom:187.560139px;}
.y136{bottom:191.519685px;}
.y114{bottom:191.878950px;}
.y68{bottom:191.880401px;}
.y13{bottom:197.278789px;}
.y43{bottom:197.643454px;}
.y8c{bottom:201.597666px;}
.yba{bottom:208.439835px;}
.y134{bottom:212.039408px;}
.y135{bottom:212.040000px;}
.y112{bottom:212.397810px;}
.y113{bottom:212.399250px;}
.y67{bottom:212.759914px;}
.y8b{bottom:215.638884px;}
.y12{bottom:218.158485px;}
.y42{bottom:218.162816px;}
.yb9{bottom:228.959198px;}
.y8a{bottom:230.399288px;}
.y133{bottom:232.919104px;}
.y66{bottom:233.279276px;}
.y111{bottom:233.279497px;}
.y11{bottom:238.677847px;}
.y41{bottom:239.042513px;}
.y89{bottom:244.438069px;}
.yb8{bottom:249.838894px;}
.y132{bottom:253.798800px;}
.y110{bottom:254.159497px;}
.y65{bottom:254.160626px;}
.y88{bottom:258.840038px;}
.y10{bottom:259.557544px;}
.y40{bottom:259.561875px;}
.y7b{bottom:262.798515px;}
.y7a{bottom:262.798950px;}
.yb7{bottom:270.720244px;}
.y87{bottom:273.599100px;}
.y10f{bottom:274.679685px;}
.y131{bottom:274.680150px;}
.y130{bottom:274.681440px;}
.y64{bottom:275.040323px;}
.ye4{bottom:275.041050px;}
.y13c{bottom:275.400285px;}
.y79{bottom:276.838950px;}
.y104{bottom:277.920000px;}
.y3f{bottom:280.081238px;}
.yf{bottom:280.438894px;}
.yb6{bottom:291.599756px;}
.y63{bottom:295.559685px;}
.y10e{bottom:295.560135px;}
.y62{bottom:295.560326px;}
.ye3{bottom:295.560413px;}
.y12f{bottom:295.561136px;}
.y3e{bottom:301.320900px;}
.yb5{bottom:312.479453px;}
.y3d{bottom:315.720750px;}
.y12e{bottom:316.080499px;}
.y10d{bottom:316.437135px;}
.y61{bottom:316.440022px;}
.ye2{bottom:316.440109px;}
.yb4{bottom:333.359149px;}
.y12d{bottom:336.599678px;}
.y10c{bottom:336.957323px;}
.y60{bottom:336.959385px;}
.y5f{bottom:336.961264px;}
.ye1{bottom:337.321459px;}
.yb3{bottom:354.240315px;}
.y12c{bottom:357.479374px;}
.y10b{bottom:357.837323px;}
.y5e{bottom:358.200926px;}
.ye0{bottom:358.201155px;}
.ye{bottom:370.797956px;}
.yb2{bottom:374.759678px;}
.y10a{bottom:378.357510px;}
.y12b{bottom:378.359070px;}
.y5d{bottom:378.720289px;}
.ydf{bottom:378.720518px;}
.y13b{bottom:386.640172px;}
.y3b{bottom:390.599989px;}
.yd{bottom:391.317319px;}
.yb1{bottom:395.639374px;}
.y12a{bottom:399.240420px;}
.y129{bottom:399.241564px;}
.y109{bottom:399.597510px;}
.yde{bottom:399.600030px;}
.y5c{bottom:399.959951px;}
.y13a{bottom:401.399235px;}
.y3a{bottom:411.479685px;}
.yc{bottom:412.198669px;}
.y139{bottom:415.798920px;}
.yb0{bottom:416.519070px;}
.ydd{bottom:420.119393px;}
.y128{bottom:420.121076px;}
.y108{bottom:420.477697px;}
.y5b{bottom:420.479314px;}
.y39{bottom:427.680720px;}
.y37{bottom:431.999824px;}
.y38{bottom:432.000000px;}
.yb{bottom:433.078365px;}
.ydc{bottom:440.999089px;}
.y127{bottom:441.000773px;}
.y107{bottom:441.359385px;}
.yaf{bottom:449.998950px;}
.y36{bottom:452.879520px;}
.yad{bottom:453.599670px;}
.ya{bottom:453.958061px;}
.yae{bottom:459.720150px;}
.ydb{bottom:461.880439px;}
.y126{bottom:461.880469px;}
.y106{bottom:462.239385px;}
.y34{bottom:468.001050px;}
.yac{bottom:468.719565px;}
.y35{bottom:473.040570px;}
.y33{bottom:473.760720px;}
.y9{bottom:474.837757px;}
.yda{bottom:482.758916px;}
.y31{bottom:482.760135px;}
.yd9{bottom:483.119250px;}
.y105{bottom:483.119385px;}
.yab{bottom:484.559685px;}
.y32{bottom:488.880570px;}
.y2f{bottom:491.759535px;}
.y30{bottom:492.479685px;}
.y2d{bottom:494.280900px;}
.y2e{bottom:495.001050px;}
.y8{bottom:495.719107px;}
.y2c{bottom:496.080465px;}
.yaa{bottom:497.519070px;}
.yd8{bottom:504.000600px;}
.ya7{bottom:506.159415px;}
.ya9{bottom:508.679070px;}
.y5a{bottom:510.119914px;}
.y2b{bottom:510.121035px;}
.y2a{bottom:512.279850px;}
.ya8{bottom:515.158770px;}
.y29{bottom:515.519670px;}
.y7{bottom:516.598804px;}
.ya6{bottom:521.279250px;}
.ya5{bottom:526.679670px;}
.y59{bottom:531.359393px;}
.y28{bottom:534.599670px;}
.y27{bottom:536.400173px;}
.y6{bottom:537.478500px;}
.ya4{bottom:545.039385px;}
.ya3{bottom:547.559100px;}
.y125{bottom:551.521069px;}
.y58{bottom:552.239089px;}
.y26{bottom:556.919535px;}
.y5{bottom:558.359850px;}
.yd7{bottom:563.039985px;}
.ya2{bottom:564.478635px;}
.ya1{bottom:568.438620px;}
.y25{bottom:568.799520px;}
.y124{bottom:572.402419px;}
.y100{bottom:572.759100px;}
.y57{bottom:573.118785px;}
.y56{bottom:573.120053px;}
.y103{bottom:575.999400px;}
.y24{bottom:576.360300px;}
.y23{bottom:577.800439px;}
.ya0{bottom:586.080000px;}
.yd6{bottom:586.080154px;}
.y9f{bottom:589.320330px;}
.y146{bottom:590.760135px;}
.y145{bottom:592.922850px;}
.y123{bottom:593.282115px;}
.yfe{bottom:593.638582px;}
.yff{bottom:593.639100px;}
.ycd{bottom:593.639378px;}
.y55{bottom:593.639415px;}
.y102{bottom:596.878920px;}
.y22{bottom:598.680135px;}
.y21{bottom:598.680937px;}
.yd5{bottom:600.479685px;}
.yd4{bottom:600.479989px;}
.y9e{bottom:610.200026px;}
.y122{bottom:613.801294px;}
.y144{bottom:614.162512px;}
.y54{bottom:614.519111px;}
.yfc{bottom:614.519820px;}
.yfd{bottom:614.520270px;}
.ycc{bottom:614.520728px;}
.yd3{bottom:614.879520px;}
.y101{bottom:617.760135px;}
.y20{bottom:619.920600px;}
.y9d{bottom:631.079723px;}
.y121{bottom:634.680806px;}
.y143{bottom:635.042209px;}
.yfa{bottom:635.398567px;}
.yfb{bottom:635.399820px;}
.ycb{bottom:635.400424px;}
.y53{bottom:635.400461px;}
.y1f{bottom:640.440900px;}
.y1e{bottom:640.441613px;}
.yd2{bottom:642.240420px;}
.y9c{bottom:651.240773px;}
.y86{bottom:655.200139px;}
.yf9{bottom:655.558567px;}
.y120{bottom:655.560502px;}
.y142{bottom:655.561571px;}
.yca{bottom:655.919786px;}
.y52{bottom:655.919824px;}
.yd1{bottom:656.640150px;}
.y1d{bottom:660.960975px;}
.y85{bottom:669.599670px;}
.y84{bottom:669.599779px;}
.y9a{bottom:671.759998px;}
.y9b{bottom:671.760135px;}
.y141{bottom:676.080934px;}
.yf7{bottom:676.439535px;}
.yf8{bottom:676.440255px;}
.y11f{bottom:676.441853px;}
.y51{bottom:676.799520px;}
.y50{bottom:676.802865px;}
.yc9{bottom:677.159449px;}
.y83{bottom:686.160154px;}
.y99{bottom:692.278800px;}
.y98{bottom:692.280420px;}
.y140{bottom:696.600296px;}
.y11e{bottom:697.321549px;}
.y4f{bottom:697.682561px;}
.yc8{bottom:698.038961px;}
.y78{bottom:698.399235px;}
.yf6{bottom:699.839535px;}
.y82{bottom:700.559685px;}
.y81{bottom:700.559749px;}
.y97{bottom:713.161770px;}
.y77{bottom:714.239220px;}
.y80{bottom:714.598530px;}
.y13f{bottom:717.119659px;}
.yf5{bottom:717.478358px;}
.y11d{bottom:717.840911px;}
.yc7{bottom:718.198357px;}
.y4e{bottom:718.201924px;}
.y76{bottom:728.279850px;}
.y75{bottom:728.280015px;}
.y96{bottom:733.681133px;}
.yf4{bottom:737.640233px;}
.y13e{bottom:737.999355px;}
.y13d{bottom:738.001260px;}
.y11c{bottom:738.360274px;}
.y4d{bottom:738.721286px;}
.yc6{bottom:739.079708px;}
.y74{bottom:742.679895px;}
.y4{bottom:745.558635px;}
.y1c{bottom:749.162629px;}
.yf2{bottom:752.039985px;}
.yf1{bottom:752.040139px;}
.y95{bottom:754.200495px;}
.y73{bottom:756.718815px;}
.yf3{bottom:758.160420px;}
.y11b{bottom:758.519670px;}
.y11a{bottom:758.520622px;}
.y4c{bottom:758.880499px;}
.yc5{bottom:759.599070px;}
.yc4{bottom:759.601733px;}
.yf0{bottom:766.439670px;}
.y2{bottom:767.877172px;}
.y3{bottom:767.878320px;}
.y1b{bottom:770.042325px;}
.y72{bottom:770.758815px;}
.yd0{bottom:771.478890px;}
.y94{bottom:774.719857px;}
.yef{bottom:777.958920px;}
.y119{bottom:779.039985px;}
.yee{bottom:779.399235px;}
.y4b{bottom:779.760195px;}
.yc3{bottom:780.121095px;}
.y71{bottom:785.158815px;}
.ycf{bottom:785.880859px;}
.y1a{bottom:790.561688px;}
.y93{bottom:795.239220px;}
.y92{bottom:795.239715px;}
.y7f{bottom:796.318815px;}
.yed{bottom:799.198733px;}
.y70{bottom:799.558590px;}
.y4a{bottom:800.279558px;}
.yce{bottom:800.280390px;}
.yc2{bottom:800.640458px;}
.y1{bottom:807.478635px;}
.y19{bottom:811.081050px;}
.y91{bottom:815.398590px;}
.yec{bottom:820.080420px;}
.y49{bottom:820.798920px;}
.yc1{bottom:821.159820px;}
.h17{height:14.080078px;}
.h16{height:15.565430px;}
.h18{height:17.789062px;}
.h33{height:24.249023px;}
.h30{height:24.459961px;}
.h35{height:25.201172px;}
.h41{height:27.377930px;}
.h34{height:28.160156px;}
.h44{height:28.942383px;}
.h1c{height:30.164429px;}
.h24{height:30.389648px;}
.h29{height:35.200195px;}
.h12{height:35.982422px;}
.h3b{height:36.764648px;}
.hf{height:37.546875px;}
.h21{height:37.792969px;}
.h19{height:39.893555px;}
.h4a{height:40.025391px;}
.h2b{height:42.249023px;}
.h27{height:45.369141px;}
.h36{height:46.350220px;}
.h2f{height:46.933594px;}
.h3c{height:47.715820px;}
.h42{height:47.845459px;}
.h25{height:48.498047px;}
.h2e{height:49.280273px;}
.h13{height:50.062500px;}
.h26{height:50.062980px;}
.h23{height:50.844727px;}
.h40{height:51.626953px;}
.h22{height:52.409180px;}
.h45{height:52.910156px;}
.h2a{height:53.367188px;}
.h28{height:54.108398px;}
.h20{height:63.002930px;}
.h15{height:63.492188px;}
.hb{height:70.400391px;}
.h49{height:71.182617px;}
.hd{height:71.964844px;}
.h3a{height:73.529297px;}
.h1a{height:74.311523px;}
.h48{height:75.093750px;}
.ha{height:75.875977px;}
.h6{height:76.658203px;}
.h1e{height:76.658938px;}
.h7{height:76.661143px;}
.h1d{height:77.440430px;}
.h46{height:78.220856px;}
.hc{height:78.222656px;}
.h37{height:78.609375px;}
.h47{height:79.004883px;}
.he{height:79.787109px;}
.h14{height:81.351562px;}
.h10{height:85.262695px;}
.h1b{height:86.923828px;}
.h32{height:88.391602px;}
.h43{height:92.302734px;}
.h5{height:100.907227px;}
.h4{height:101.689453px;}
.h11{height:109.599609px;}
.h4d{height:113.300537px;}
.h3{height:143.147461px;}
.h2{height:151.751953px;}
.h3d{height:158.735653px;}
.h31{height:168.178711px;}
.h2d{height:897.750000px;}
.h2c{height:897.838500px;}
.h39{height:901.500000px;}
.h38{height:901.798500px;}
.h0{height:902.160000px;}
.h1{height:902.250000px;}
.h1f{height:902.878500px;}
.h9{height:903.000000px;}
.h8{height:903.241500px;}
.h3e{height:905.038500px;}
.h3f{height:905.250000px;}
.h4c{height:911.250000px;}
.h4b{height:911.518500px;}
.w4{width:1152.000000px;}
.w3{width:1152.001185px;}
.w2{width:1157.758500px;}
.w0{width:1157.759994px;}
.w1{width:1158.000000px;}
.w6{width:1163.250000px;}
.w5{width:1163.520000px;}
.x0{left:0.000000px;}
.x4f{left:36.719565px;}
.x62{left:38.156670px;}
.x7{left:42.120444px;}
.x1{left:43.919544px;}
.x8d{left:47.157878px;}
.x3b{left:50.039985px;}
.x41{left:51.480285px;}
.x12{left:53.279844px;}
.x18{left:54.720159px;}
.x53{left:55.798387px;}
.x6{left:60.120444px;}
.x8c{left:63.719565px;}
.x90{left:64.794660px;}
.x3c{left:65.880135px;}
.x42{left:66.959850px;}
.x13{left:68.040594px;}
.x19{left:70.199379px;}
.x66{left:79.198785px;}
.x81{left:81.000000px;}
.x67{left:93.959400px;}
.x43{left:102.960600px;}
.x97{left:119.878350px;}
.x74{left:124.919565px;}
.x72{left:127.080000px;}
.x1a{left:128.879544px;}
.x75{left:134.279850px;}
.x82{left:138.239850px;}
.x83{left:142.559100px;}
.x68{left:144.719565px;}
.x2{left:148.679694px;}
.x1d{left:151.919565px;}
.x98{left:160.198785px;}
.x69{left:163.079400px;}
.x1e{left:167.039400px;}
.x3{left:181.800159px;}
.x84{left:185.399250px;}
.x99{left:187.198785px;}
.x50{left:191.519685px;}
.x76{left:196.559100px;}
.x3f{left:203.040570px;}
.x6a{left:215.639100px;}
.x40{left:220.680135px;}
.x6b{left:230.038950px;}
.x3d{left:241.561320px;}
.x21{left:254.878350px;}
.x77{left:259.199385px;}
.x3e{left:266.039985px;}
.x22{left:272.158785px;}
.x9a{left:273.958350px;}
.x70{left:278.638500px;}
.x6c{left:287.639700px;}
.x9b{left:299.158785px;}
.x6d{left:302.759535px;}
.x71{left:315.719100px;}
.x51{left:318.238785px;}
.x91{left:331.918350px;}
.x52{left:345.958950px;}
.x60{left:388.800727px;}
.x47{left:393.120052px;}
.x4a{left:394.201005px;}
.xf{left:396.720444px;}
.x8{left:397.800159px;}
.xa4{left:401.038845px;}
.xa2{left:402.117173px;}
.x65{left:403.918950px;}
.x44{left:411.840600px;}
.x9{left:415.796034px;}
.xa1{left:420.479235px;}
.x85{left:422.278800px;}
.x1b{left:442.439664px;}
.x63{left:446.399820px;}
.x14{left:482.760129px;}
.x15{left:499.320414px;}
.x64{left:507.958920px;}
.x4b{left:516.600735px;}
.x92{left:526.318770px;}
.x16{left:535.680729px;}
.x79{left:538.918950px;}
.x48{left:544.680135px;}
.x17{left:550.800564px;}
.x93{left:554.038920px;}
.x7a{left:569.158770px;}
.x7c{left:583.199385px;}
.x25{left:586.798515px;}
.x7b{left:588.958920px;}
.x23{left:592.198785px;}
.x7d{left:597.958335px;}
.x8b{left:615.958920px;}
.x24{left:619.559685px;}
.x61{left:625.678530px;}
.x26{left:628.199850px;}
.x1c{left:643.319829px;}
.x94{left:653.759535px;}
.x27{left:660.598530px;}
.x6e{left:664.919535px;}
.xc{left:667.439214px;}
.x8e{left:673.198785px;}
.x95{left:675.359250px;}
.x6f{left:679.319235px;}
.x1f{left:683.638545px;}
.x8a{left:687.239220px;}
.x73{left:694.080000px;}
.x8f{left:700.198785px;}
.x20{left:732.599070px;}
.x96{left:739.439670px;}
.x49{left:764.280855px;}
.x86{left:800.998905px;}
.x54{left:804.958920px;}
.x28{left:806.758575px;}
.x57{left:808.918950px;}
.x9c{left:813.599115px;}
.x9e{left:815.398590px;}
.x29{left:822.239220px;}
.x36{left:823.318815px;}
.x58{left:824.399865px;}
.x55{left:825.479190px;}
.x87{left:828.359805px;}
.x9d{left:834.119385px;}
.x9f{left:835.918950px;}
.x32{left:839.519715px;}
.x37{left:843.479640px;}
.x59{left:844.918305px;}
.x2a{left:847.798920px;}
.xd{left:860.760129px;}
.x5a{left:863.279850px;}
.xe{left:875.880069px;}
.x33{left:888.839535px;}
.xa{left:894.599034px;}
.x7e{left:905.399865px;}
.x34{left:918.718500px;}
.x7f{left:924.479640px;}
.x4{left:926.640099px;}
.x35{left:934.199340px;}
.x38{left:938.879520px;}
.x4d{left:950.040990px;}
.x80{left:951.479640px;}
.x2b{left:957.598575px;}
.x3a{left:962.998905px;}
.x2e{left:974.519715px;}
.x78{left:978.118740px;}
.x2f{left:985.318815px;}
.x5b{left:989.639655px;}
.x89{left:990.719055px;}
.x56{left:995.399235px;}
.x30{left:1001.519715px;}
.x5{left:1004.759484px;}
.x5c{left:1007.999355px;}
.x45{left:1022.039985px;}
.x2c{left:1023.478635px;}
.x46{left:1041.119940px;}
.xa0{left:1046.518620px;}
.x39{left:1054.799565px;}
.xa3{left:1068.479190px;}
.x5d{left:1070.278755px;}
.x2d{left:1072.439205px;}
.x5e{left:1081.799565px;}
.x31{left:1086.838905px;}
.x88{left:1091.878320px;}
.xb{left:1097.280399px;}
.x4c{left:1131.121035px;}
.x4e{left:1132.561350px;}
.x10{left:1134.720159px;}
.x11{left:1136.160369px;}
.x5f{left:1137.239775px;}
@media print{
.v2{vertical-align:-2.560567pt;}
.v1{vertical-align:-1.274000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:72.957733pt;}
.ls4f{letter-spacing:-14.906667pt;}
.ls7c{letter-spacing:-11.999333pt;}
.ls83{letter-spacing:-11.106667pt;}
.ls7a{letter-spacing:-10.666667pt;}
.ls36{letter-spacing:-8.847113pt;}
.ls79{letter-spacing:-8.666667pt;}
.ls6f{letter-spacing:-8.591187pt;}
.ls4d{letter-spacing:-8.493333pt;}
.ls3b{letter-spacing:-7.755800pt;}
.ls80{letter-spacing:-7.186667pt;}
.ls17{letter-spacing:-6.691200pt;}
.ls78{letter-spacing:-6.667333pt;}
.ls18{letter-spacing:-6.533987pt;}
.ls46{letter-spacing:-6.373900pt;}
.ls1d{letter-spacing:-6.275840pt;}
.ls2a{letter-spacing:-5.967000pt;}
.lse{letter-spacing:-5.226667pt;}
.ls71{letter-spacing:-4.667333pt;}
.ls2b{letter-spacing:-4.573987pt;}
.ls27{letter-spacing:-3.920000pt;}
.ls3a{letter-spacing:-3.748320pt;}
.ls26{letter-spacing:-3.266667pt;}
.ls44{letter-spacing:-3.155200pt;}
.ls47{letter-spacing:-2.919467pt;}
.ls19{letter-spacing:-2.665600pt;}
.ls14{letter-spacing:-2.612680pt;}
.ls70{letter-spacing:-2.587200pt;}
.ls4c{letter-spacing:-2.548433pt;}
.ls35{letter-spacing:-2.509227pt;}
.ls49{letter-spacing:-2.104000pt;}
.ls68{letter-spacing:-2.000000pt;}
.ls69{letter-spacing:-1.999800pt;}
.lsd{letter-spacing:-1.960000pt;}
.ls32{letter-spacing:-1.881600pt;}
.ls50{letter-spacing:-1.405800pt;}
.ls56{letter-spacing:-1.399667pt;}
.ls38{letter-spacing:-1.376180pt;}
.ls3c{letter-spacing:-1.335467pt;}
.ls60{letter-spacing:-1.333333pt;}
.lsa{letter-spacing:-1.315800pt;}
.lsc{letter-spacing:-1.306667pt;}
.ls4a{letter-spacing:-1.274000pt;}
.ls5{letter-spacing:-1.267467pt;}
.ls33{letter-spacing:-1.254400pt;}
.ls51{letter-spacing:-1.032373pt;}
.ls6e{letter-spacing:-1.018547pt;}
.ls66{letter-spacing:-1.008153pt;}
.ls63{letter-spacing:-0.675567pt;}
.ls6b{letter-spacing:-0.666000pt;}
.lsb{letter-spacing:-0.652680pt;}
.ls45{letter-spacing:-0.636567pt;}
.ls8{letter-spacing:-0.633733pt;}
.ls1c{letter-spacing:-0.626773pt;}
.ls89{letter-spacing:-0.624987pt;}
.ls84{letter-spacing:-0.612733pt;}
.ls31{letter-spacing:-0.099200pt;}
.ls6{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.626773pt;}
.ls7{letter-spacing:0.633733pt;}
.ls3e{letter-spacing:0.636567pt;}
.ls1{letter-spacing:0.652680pt;}
.ls15{letter-spacing:0.653133pt;}
.ls12{letter-spacing:0.659340pt;}
.ls25{letter-spacing:0.665173pt;}
.ls16{letter-spacing:0.666000pt;}
.ls85{letter-spacing:0.666067pt;}
.ls5f{letter-spacing:0.666600pt;}
.ls59{letter-spacing:0.675567pt;}
.ls2f{letter-spacing:0.678400pt;}
.ls55{letter-spacing:0.717907pt;}
.ls77{letter-spacing:0.746667pt;}
.ls64{letter-spacing:0.748000pt;}
.ls34{letter-spacing:0.792280pt;}
.ls88{letter-spacing:0.802133pt;}
.ls87{letter-spacing:1.162800pt;}
.ls62{letter-spacing:1.237760pt;}
.ls11{letter-spacing:1.254400pt;}
.ls0{letter-spacing:1.267467pt;}
.ls41{letter-spacing:1.274000pt;}
.ls2{letter-spacing:1.306667pt;}
.ls48{letter-spacing:1.313000pt;}
.ls28{letter-spacing:1.319200pt;}
.ls13{letter-spacing:1.320000pt;}
.ls5b{letter-spacing:1.333200pt;}
.ls29{letter-spacing:1.333333pt;}
.ls2d{letter-spacing:1.335467pt;}
.ls42{letter-spacing:1.346400pt;}
.ls53{letter-spacing:1.347333pt;}
.ls23{letter-spacing:1.356333pt;}
.ls5a{letter-spacing:1.356800pt;}
.ls7d{letter-spacing:1.373600pt;}
.ls61{letter-spacing:1.395333pt;}
.ls52{letter-spacing:1.399667pt;}
.ls1a{letter-spacing:1.438573pt;}
.ls4b{letter-spacing:1.446827pt;}
.ls76{letter-spacing:1.456000pt;}
.ls3f{letter-spacing:1.911000pt;}
.ls57{letter-spacing:1.911467pt;}
.ls86{letter-spacing:1.939200pt;}
.ls3{letter-spacing:1.960000pt;}
.ls81{letter-spacing:1.979600pt;}
.ls5d{letter-spacing:2.000000pt;}
.ls24{letter-spacing:2.001493pt;}
.ls7f{letter-spacing:2.018800pt;}
.ls43{letter-spacing:2.018940pt;}
.ls5c{letter-spacing:2.031360pt;}
.ls6c{letter-spacing:2.046567pt;}
.ls74{letter-spacing:2.163513pt;}
.ls73{letter-spacing:2.182720pt;}
.ls37{letter-spacing:2.196000pt;}
.ls65{letter-spacing:2.200000pt;}
.ls2c{letter-spacing:2.470000pt;}
.ls40{letter-spacing:2.548433pt;}
.ls4{letter-spacing:2.612680pt;}
.ls58{letter-spacing:2.666000pt;}
.ls9{letter-spacing:2.687533pt;}
.ls2e{letter-spacing:2.708333pt;}
.ls7b{letter-spacing:2.838000pt;}
.ls30{letter-spacing:2.908267pt;}
.ls10{letter-spacing:3.136000pt;}
.ls7e{letter-spacing:3.266667pt;}
.ls82{letter-spacing:3.296000pt;}
.ls5e{letter-spacing:3.333660pt;}
.ls20{letter-spacing:3.920000pt;}
.ls39{letter-spacing:4.741100pt;}
.ls3d{letter-spacing:4.829867pt;}
.ls6a{letter-spacing:4.869400pt;}
.ls1e{letter-spacing:4.976000pt;}
.ls21{letter-spacing:5.226667pt;}
.ls54{letter-spacing:5.696087pt;}
.ls6d{letter-spacing:5.852000pt;}
.ls1f{letter-spacing:5.880000pt;}
.ls67{letter-spacing:6.000000pt;}
.ls4e{letter-spacing:6.732660pt;}
.ls22{letter-spacing:9.146667pt;}
.ls75{letter-spacing:11.666667pt;}
.ls72{letter-spacing:28.000000pt;}
.ls1b{letter-spacing:32.421200pt;}
.ws0{word-spacing:0.000000pt;}
._2a{margin-left:-98.820040pt;}
._2f{margin-left:-64.948467pt;}
._40{margin-left:-45.750247pt;}
._49{margin-left:-44.188967pt;}
._42{margin-left:-43.160380pt;}
._41{margin-left:-39.928467pt;}
._2{margin-left:-37.998133pt;}
._44{margin-left:-36.675907pt;}
._48{margin-left:-35.089067pt;}
._28{margin-left:-34.131347pt;}
._26{margin-left:-31.995640pt;}
._25{margin-left:-30.325880pt;}
._46{margin-left:-18.155027pt;}
._45{margin-left:-17.093333pt;}
._27{margin-left:-14.154547pt;}
._3f{margin-left:-9.886240pt;}
._1e{margin-left:-8.443747pt;}
._43{margin-left:-7.464253pt;}
._1{margin-left:-5.857507pt;}
._1d{margin-left:-4.181333pt;}
._3{margin-left:-3.038040pt;}
._f{margin-left:-1.933867pt;}
._13{margin-left:-0.927187pt;}
._33{width:0.891073pt;}
._10{width:1.802547pt;}
._0{width:2.856973pt;}
._e{width:4.110173pt;}
._14{width:5.697560pt;}
._b{width:6.944933pt;}
._1c{width:7.932173pt;}
._d{width:8.957307pt;}
._c{width:10.307640pt;}
._12{width:11.571187pt;}
._19{width:12.755027pt;}
._16{width:14.462840pt;}
._18{width:15.385347pt;}
._15{width:16.771720pt;}
._1b{width:18.162667pt;}
._1a{width:19.691467pt;}
._17{width:20.879880pt;}
._a{width:22.633427pt;}
._5{width:23.977333pt;}
._8{width:25.436880pt;}
._4{width:26.668413pt;}
._7{width:28.300440pt;}
._6{width:29.552227pt;}
._3e{width:30.622387pt;}
._9{width:31.561880pt;}
._11{width:32.778387pt;}
._29{width:33.930867pt;}
._39{width:35.672000pt;}
._3b{width:36.800307pt;}
._2e{width:37.820160pt;}
._32{width:39.150933pt;}
._3a{width:40.982947pt;}
._3d{width:42.219053pt;}
._30{width:43.319467pt;}
._3c{width:44.295213pt;}
._2d{width:46.127947pt;}
._24{width:47.693333pt;}
._23{width:50.123733pt;}
._22{width:51.485280pt;}
._21{width:52.462667pt;}
._1f{width:53.500813pt;}
._20{width:58.667373pt;}
._2b{width:60.954640pt;}
._4a{width:62.335187pt;}
._31{width:63.603200pt;}
._2c{width:67.382733pt;}
._36{width:71.621333pt;}
._35{width:74.040633pt;}
._34{width:78.372233pt;}
._47{width:83.952000pt;}
._4b{width:88.135973pt;}
._38{width:177.515000pt;}
._37{width:181.714000pt;}
.fs12{font-size:12.000000pt;}
.fs11{font-size:14.000000pt;}
.fs13{font-size:16.000000pt;}
.fs28{font-size:20.666667pt;}
.fs25{font-size:22.000000pt;}
.fs2a{font-size:22.666667pt;}
.fs2f{font-size:23.333333pt;}
.fs29{font-size:24.000000pt;}
.fs31{font-size:24.666667pt;}
.fs17{font-size:27.333333pt;}
.fs20{font-size:30.000000pt;}
.fsd{font-size:30.666667pt;}
.fs2c{font-size:31.333333pt;}
.fsa{font-size:32.000000pt;}
.fs1a{font-size:33.333333pt;}
.fs14{font-size:34.000000pt;}
.fs36{font-size:36.000000pt;}
.fs22{font-size:38.000000pt;}
.fs1e{font-size:38.666667pt;}
.fs24{font-size:40.000000pt;}
.fs2d{font-size:40.666667pt;}
.fs1d{font-size:41.333333pt;}
.fs23{font-size:42.000000pt;}
.fse{font-size:42.666667pt;}
.fs1c{font-size:43.333333pt;}
.fs2e{font-size:44.000000pt;}
.fs1b{font-size:44.666667pt;}
.fs32{font-size:46.666667pt;}
.fs21{font-size:48.000000pt;}
.fs1f{font-size:48.666667pt;}
.fs10{font-size:56.000000pt;}
.fs19{font-size:56.666667pt;}
.fs6{font-size:60.000000pt;}
.fs35{font-size:60.666667pt;}
.fs8{font-size:61.333333pt;}
.fs2b{font-size:62.666667pt;}
.fs15{font-size:63.333333pt;}
.fs34{font-size:64.000000pt;}
.fs5{font-size:64.666667pt;}
.fs4{font-size:65.333333pt;}
.fs18{font-size:66.000000pt;}
.fs7{font-size:66.666667pt;}
.fs33{font-size:67.333333pt;}
.fs9{font-size:68.000000pt;}
.fsf{font-size:69.333333pt;}
.fsb{font-size:72.666667pt;}
.fs27{font-size:75.333333pt;}
.fs16{font-size:76.666667pt;}
.fs30{font-size:78.666667pt;}
.fs3{font-size:86.000000pt;}
.fs2{font-size:86.666667pt;}
.fsc{font-size:96.666667pt;}
.fs37{font-size:102.666667pt;}
.fs1{font-size:122.000000pt;}
.fs0{font-size:129.333333pt;}
.fs26{font-size:143.333333pt;}
.y0{bottom:0.000000pt;}
.yeb{bottom:71.677937pt;}
.yc0{bottom:74.242097pt;}
.y6f{bottom:77.439633pt;}
.y18{bottom:82.559783pt;}
.y48{bottom:83.523707pt;}
.yea{bottom:90.239137pt;}
.ybf{bottom:93.121797pt;}
.y6e{bottom:96.319333pt;}
.y6d{bottom:96.320483pt;}
.y17{bottom:101.439483pt;}
.y47{bottom:101.444640pt;}
.y3c{bottom:105.279747pt;}
.ye9{bottom:109.118837pt;}
.ybe{bottom:111.681527pt;}
.y6c{bottom:114.880213pt;}
.y16{bottom:120.000683pt;}
.y46{bottom:120.004370pt;}
.ye8{bottom:127.679873pt;}
.ybd{bottom:129.920960pt;}
.y117{bottom:133.439467pt;}
.y118{bottom:133.440000pt;}
.y6b{bottom:133.759913pt;}
.y45{bottom:138.243640pt;}
.y15{bottom:138.560413pt;}
.y90{bottom:140.799778pt;}
.y7d{bottom:141.439200pt;}
.y7e{bottom:141.439480pt;}
.ye7{bottom:146.239603pt;}
.ybc{bottom:148.160393pt;}
.y137{bottom:151.679990pt;}
.y138{bottom:151.680133pt;}
.y115{bottom:151.999067pt;}
.y116{bottom:151.999467pt;}
.y6a{bottom:152.639613pt;}
.y69{bottom:152.640893pt;}
.y8f{bottom:153.599362pt;}
.y7c{bottom:154.239200pt;}
.y14{bottom:156.799193pt;}
.y44{bottom:156.803370pt;}
.ye6{bottom:164.799333pt;}
.ye5{bottom:164.800400pt;}
.y8d{bottom:166.719008pt;}
.y8e{bottom:166.719720pt;}
.ybb{bottom:166.720123pt;}
.y136{bottom:170.239720pt;}
.y114{bottom:170.559067pt;}
.y68{bottom:170.560357pt;}
.y13{bottom:175.358923pt;}
.y43{bottom:175.683070pt;}
.y8c{bottom:179.197925pt;}
.yba{bottom:185.279853pt;}
.y134{bottom:188.479473pt;}
.y135{bottom:188.480000pt;}
.y112{bottom:188.798053pt;}
.y113{bottom:188.799333pt;}
.y67{bottom:189.119923pt;}
.y8b{bottom:191.679008pt;}
.y12{bottom:193.918653pt;}
.y42{bottom:193.922503pt;}
.yb9{bottom:203.519287pt;}
.y8a{bottom:204.799367pt;}
.y133{bottom:207.039203pt;}
.y66{bottom:207.359357pt;}
.y111{bottom:207.359553pt;}
.y11{bottom:212.158087pt;}
.y41{bottom:212.482233pt;}
.y89{bottom:217.278283pt;}
.yb8{bottom:222.079017pt;}
.y132{bottom:225.598933pt;}
.y110{bottom:225.919553pt;}
.y65{bottom:225.920557pt;}
.y88{bottom:230.080033pt;}
.y10{bottom:230.717817pt;}
.y40{bottom:230.721667pt;}
.y7b{bottom:233.598680pt;}
.y7a{bottom:233.599067pt;}
.yb7{bottom:240.640217pt;}
.y87{bottom:243.199200pt;}
.y10f{bottom:244.159720pt;}
.y131{bottom:244.160133pt;}
.y130{bottom:244.161280pt;}
.y64{bottom:244.480287pt;}
.ye4{bottom:244.480933pt;}
.y13c{bottom:244.800253pt;}
.y79{bottom:246.079067pt;}
.y104{bottom:247.040000pt;}
.y3f{bottom:248.961100pt;}
.yf{bottom:249.279017pt;}
.yb6{bottom:259.199783pt;}
.y63{bottom:262.719720pt;}
.y10e{bottom:262.720120pt;}
.y62{bottom:262.720290pt;}
.ye3{bottom:262.720367pt;}
.y12f{bottom:262.721010pt;}
.y3e{bottom:267.840800pt;}
.yb5{bottom:277.759513pt;}
.y3d{bottom:280.640667pt;}
.y12e{bottom:280.960443pt;}
.y10d{bottom:281.277453pt;}
.y61{bottom:281.280020pt;}
.ye2{bottom:281.280097pt;}
.yb4{bottom:296.319243pt;}
.y12d{bottom:299.199713pt;}
.y10c{bottom:299.517620pt;}
.y60{bottom:299.519453pt;}
.y5f{bottom:299.521123pt;}
.ye1{bottom:299.841297pt;}
.yb3{bottom:314.880280pt;}
.y12c{bottom:317.759443pt;}
.y10b{bottom:318.077620pt;}
.y5e{bottom:318.400823pt;}
.ye0{bottom:318.401027pt;}
.ye{bottom:329.598183pt;}
.yb2{bottom:333.119713pt;}
.y10a{bottom:336.317787pt;}
.y12b{bottom:336.319173pt;}
.y5d{bottom:336.640257pt;}
.ydf{bottom:336.640460pt;}
.y13b{bottom:343.680153pt;}
.y3b{bottom:347.199990pt;}
.yd{bottom:347.837617pt;}
.yb1{bottom:351.679443pt;}
.y12a{bottom:354.880373pt;}
.y129{bottom:354.881390pt;}
.y109{bottom:355.197787pt;}
.yde{bottom:355.200027pt;}
.y5c{bottom:355.519957pt;}
.y13a{bottom:356.799320pt;}
.y3a{bottom:365.759720pt;}
.yc{bottom:366.398817pt;}
.y139{bottom:369.599040pt;}
.yb0{bottom:370.239173pt;}
.ydd{bottom:373.439460pt;}
.y128{bottom:373.440957pt;}
.y108{bottom:373.757953pt;}
.y5b{bottom:373.759390pt;}
.y39{bottom:380.160640pt;}
.y37{bottom:383.999843pt;}
.y38{bottom:384.000000pt;}
.yb{bottom:384.958547pt;}
.ydc{bottom:391.999190pt;}
.y127{bottom:392.000687pt;}
.y107{bottom:392.319453pt;}
.yaf{bottom:399.999067pt;}
.y36{bottom:402.559573pt;}
.yad{bottom:403.199707pt;}
.ya{bottom:403.518277pt;}
.yae{bottom:408.640133pt;}
.ydb{bottom:410.560390pt;}
.y126{bottom:410.560417pt;}
.y106{bottom:410.879453pt;}
.y34{bottom:416.000933pt;}
.yac{bottom:416.639613pt;}
.y35{bottom:420.480507pt;}
.y33{bottom:421.120640pt;}
.y9{bottom:422.078007pt;}
.yda{bottom:429.119037pt;}
.y31{bottom:429.120120pt;}
.yd9{bottom:429.439333pt;}
.y105{bottom:429.439453pt;}
.yab{bottom:430.719720pt;}
.y32{bottom:434.560507pt;}
.y2f{bottom:437.119587pt;}
.y30{bottom:437.759720pt;}
.y2d{bottom:439.360800pt;}
.y2e{bottom:440.000933pt;}
.y8{bottom:440.639207pt;}
.y2c{bottom:440.960413pt;}
.yaa{bottom:442.239173pt;}
.yd8{bottom:448.000533pt;}
.ya7{bottom:449.919480pt;}
.ya9{bottom:452.159173pt;}
.y5a{bottom:453.439923pt;}
.y2b{bottom:453.440920pt;}
.y2a{bottom:455.359867pt;}
.ya8{bottom:457.918907pt;}
.y29{bottom:458.239707pt;}
.y7{bottom:459.198937pt;}
.ya6{bottom:463.359333pt;}
.ya5{bottom:468.159707pt;}
.y59{bottom:472.319460pt;}
.y28{bottom:475.199707pt;}
.y27{bottom:476.800153pt;}
.y6{bottom:477.758667pt;}
.ya4{bottom:484.479453pt;}
.ya3{bottom:486.719200pt;}
.y125{bottom:490.240950pt;}
.y58{bottom:490.879190pt;}
.y26{bottom:495.039587pt;}
.y5{bottom:496.319867pt;}
.yd7{bottom:500.479987pt;}
.ya2{bottom:501.758787pt;}
.ya1{bottom:505.278773pt;}
.y25{bottom:505.599573pt;}
.y124{bottom:508.802150pt;}
.y100{bottom:509.119200pt;}
.y57{bottom:509.438920pt;}
.y56{bottom:509.440047pt;}
.y103{bottom:511.999467pt;}
.y24{bottom:512.320267pt;}
.y23{bottom:513.600390pt;}
.ya0{bottom:520.960000pt;}
.yd6{bottom:520.960137pt;}
.y9f{bottom:523.840293pt;}
.y146{bottom:525.120120pt;}
.y145{bottom:527.042533pt;}
.y123{bottom:527.361880pt;}
.yfe{bottom:527.678740pt;}
.yff{bottom:527.679200pt;}
.ycd{bottom:527.679447pt;}
.y55{bottom:527.679480pt;}
.y102{bottom:530.559040pt;}
.y22{bottom:532.160120pt;}
.y21{bottom:532.160833pt;}
.yd5{bottom:533.759720pt;}
.yd4{bottom:533.759990pt;}
.y9e{bottom:542.400023pt;}
.y122{bottom:545.601150pt;}
.y144{bottom:545.922233pt;}
.y54{bottom:546.239210pt;}
.yfc{bottom:546.239840pt;}
.yfd{bottom:546.240240pt;}
.ycc{bottom:546.240647pt;}
.yd3{bottom:546.559573pt;}
.y101{bottom:549.120120pt;}
.y20{bottom:551.040533pt;}
.y9d{bottom:560.959753pt;}
.y121{bottom:564.160717pt;}
.y143{bottom:564.481963pt;}
.yfa{bottom:564.798727pt;}
.yfb{bottom:564.799840pt;}
.ycb{bottom:564.800377pt;}
.y53{bottom:564.800410pt;}
.y1f{bottom:569.280800pt;}
.y1e{bottom:569.281433pt;}
.yd2{bottom:570.880373pt;}
.y9c{bottom:578.880687pt;}
.y86{bottom:582.400123pt;}
.yf9{bottom:582.718727pt;}
.y120{bottom:582.720447pt;}
.y142{bottom:582.721397pt;}
.yca{bottom:583.039810pt;}
.y52{bottom:583.039843pt;}
.yd1{bottom:583.680133pt;}
.y1d{bottom:587.520867pt;}
.y85{bottom:595.199707pt;}
.y84{bottom:595.199803pt;}
.y9a{bottom:597.119998pt;}
.y9b{bottom:597.120120pt;}
.y141{bottom:600.960830pt;}
.yf7{bottom:601.279587pt;}
.yf8{bottom:601.280227pt;}
.y11f{bottom:601.281647pt;}
.y51{bottom:601.599573pt;}
.y50{bottom:601.602547pt;}
.yc9{bottom:601.919510pt;}
.y83{bottom:609.920137pt;}
.y99{bottom:615.358933pt;}
.y98{bottom:615.360373pt;}
.y140{bottom:619.200263pt;}
.y11e{bottom:619.841377pt;}
.y4f{bottom:620.162277pt;}
.yc8{bottom:620.479077pt;}
.y78{bottom:620.799320pt;}
.yf6{bottom:622.079587pt;}
.y82{bottom:622.719720pt;}
.y81{bottom:622.719777pt;}
.y97{bottom:633.921573pt;}
.y77{bottom:634.879307pt;}
.y80{bottom:635.198693pt;}
.y13f{bottom:637.439697pt;}
.yf5{bottom:637.758540pt;}
.y11d{bottom:638.080810pt;}
.yc7{bottom:638.398540pt;}
.y4e{bottom:638.401710pt;}
.y76{bottom:647.359867pt;}
.y75{bottom:647.360013pt;}
.y96{bottom:652.161007pt;}
.yf4{bottom:655.680207pt;}
.y13e{bottom:655.999427pt;}
.y13d{bottom:656.001120pt;}
.y11c{bottom:656.320243pt;}
.y4d{bottom:656.641143pt;}
.yc6{bottom:656.959740pt;}
.y74{bottom:660.159907pt;}
.y4{bottom:662.718787pt;}
.y1c{bottom:665.922337pt;}
.yf2{bottom:668.479987pt;}
.yf1{bottom:668.480123pt;}
.y95{bottom:670.400440pt;}
.y73{bottom:672.638947pt;}
.yf3{bottom:673.920373pt;}
.y11b{bottom:674.239707pt;}
.y11a{bottom:674.240553pt;}
.y4c{bottom:674.560443pt;}
.yc5{bottom:675.199173pt;}
.yc4{bottom:675.201540pt;}
.yf0{bottom:681.279707pt;}
.y2{bottom:682.557487pt;}
.y3{bottom:682.558507pt;}
.y1b{bottom:684.482067pt;}
.y72{bottom:685.118947pt;}
.yd0{bottom:685.759013pt;}
.y94{bottom:688.639873pt;}
.yef{bottom:691.519040pt;}
.y119{bottom:692.479987pt;}
.yee{bottom:692.799320pt;}
.y4b{bottom:693.120173pt;}
.yc3{bottom:693.440973pt;}
.y71{bottom:697.918947pt;}
.ycf{bottom:698.560763pt;}
.y1a{bottom:702.721500pt;}
.y93{bottom:706.879307pt;}
.y92{bottom:706.879747pt;}
.y7f{bottom:707.838947pt;}
.yed{bottom:710.398873pt;}
.y70{bottom:710.718747pt;}
.y4a{bottom:711.359607pt;}
.yce{bottom:711.360347pt;}
.yc2{bottom:711.680407pt;}
.y1{bottom:717.758787pt;}
.y19{bottom:720.960933pt;}
.y91{bottom:724.798747pt;}
.yec{bottom:728.960373pt;}
.y49{bottom:729.599040pt;}
.yc1{bottom:729.919840pt;}
.h17{height:12.515625pt;}
.h16{height:13.835938pt;}
.h18{height:15.812500pt;}
.h33{height:21.554687pt;}
.h30{height:21.742187pt;}
.h35{height:22.401042pt;}
.h41{height:24.335938pt;}
.h34{height:25.031250pt;}
.h44{height:25.726562pt;}
.h1c{height:26.812826pt;}
.h24{height:27.013021pt;}
.h29{height:31.289062pt;}
.h12{height:31.984375pt;}
.h3b{height:32.679688pt;}
.hf{height:33.375000pt;}
.h21{height:33.593750pt;}
.h19{height:35.460938pt;}
.h4a{height:35.578125pt;}
.h2b{height:37.554687pt;}
.h27{height:40.328125pt;}
.h36{height:41.200195pt;}
.h2f{height:41.718750pt;}
.h3c{height:42.414062pt;}
.h42{height:42.529297pt;}
.h25{height:43.109375pt;}
.h2e{height:43.804688pt;}
.h13{height:44.500000pt;}
.h26{height:44.500427pt;}
.h23{height:45.195312pt;}
.h40{height:45.890625pt;}
.h22{height:46.585938pt;}
.h45{height:47.031250pt;}
.h2a{height:47.437500pt;}
.h28{height:48.096354pt;}
.h20{height:56.002604pt;}
.h15{height:56.437500pt;}
.hb{height:62.578125pt;}
.h49{height:63.273438pt;}
.hd{height:63.968750pt;}
.h3a{height:65.359375pt;}
.h1a{height:66.054688pt;}
.h48{height:66.750000pt;}
.ha{height:67.445312pt;}
.h6{height:68.140625pt;}
.h1e{height:68.141278pt;}
.h7{height:68.143238pt;}
.h1d{height:68.835938pt;}
.h46{height:69.529650pt;}
.hc{height:69.531250pt;}
.h37{height:69.875000pt;}
.h47{height:70.226562pt;}
.he{height:70.921875pt;}
.h14{height:72.312500pt;}
.h10{height:75.789062pt;}
.h1b{height:77.265625pt;}
.h32{height:78.570312pt;}
.h43{height:82.046875pt;}
.h5{height:89.695312pt;}
.h4{height:90.390625pt;}
.h11{height:97.421875pt;}
.h4d{height:100.711589pt;}
.h3{height:127.242188pt;}
.h2{height:134.890625pt;}
.h3d{height:141.098358pt;}
.h31{height:149.492188pt;}
.h2d{height:798.000000pt;}
.h2c{height:798.078667pt;}
.h39{height:801.333333pt;}
.h38{height:801.598667pt;}
.h0{height:801.920000pt;}
.h1{height:802.000000pt;}
.h1f{height:802.558667pt;}
.h9{height:802.666667pt;}
.h8{height:802.881333pt;}
.h3e{height:804.478667pt;}
.h3f{height:804.666667pt;}
.h4c{height:810.000000pt;}
.h4b{height:810.238667pt;}
.w4{width:1024.000000pt;}
.w3{width:1024.001053pt;}
.w2{width:1029.118667pt;}
.w0{width:1029.119995pt;}
.w1{width:1029.333333pt;}
.w6{width:1034.000000pt;}
.w5{width:1034.240000pt;}
.x0{left:0.000000pt;}
.x4f{left:32.639613pt;}
.x62{left:33.917040pt;}
.x7{left:37.440395pt;}
.x1{left:39.039595pt;}
.x8d{left:41.918113pt;}
.x3b{left:44.479987pt;}
.x41{left:45.760253pt;}
.x12{left:47.359861pt;}
.x18{left:48.640141pt;}
.x53{left:49.598567pt;}
.x6{left:53.440395pt;}
.x8c{left:56.639613pt;}
.x90{left:57.595253pt;}
.x3c{left:58.560120pt;}
.x42{left:59.519867pt;}
.x13{left:60.480528pt;}
.x19{left:62.399448pt;}
.x66{left:70.398920pt;}
.x81{left:72.000000pt;}
.x67{left:83.519467pt;}
.x43{left:91.520533pt;}
.x97{left:106.558533pt;}
.x74{left:111.039613pt;}
.x72{left:112.960000pt;}
.x1a{left:114.559595pt;}
.x75{left:119.359867pt;}
.x82{left:122.879867pt;}
.x83{left:126.719200pt;}
.x68{left:128.639613pt;}
.x2{left:132.159728pt;}
.x1d{left:135.039613pt;}
.x98{left:142.398920pt;}
.x69{left:144.959467pt;}
.x1e{left:148.479467pt;}
.x3{left:161.600141pt;}
.x84{left:164.799333pt;}
.x99{left:166.398920pt;}
.x50{left:170.239720pt;}
.x76{left:174.719200pt;}
.x3f{left:180.480507pt;}
.x6a{left:191.679200pt;}
.x40{left:196.160120pt;}
.x6b{left:204.479067pt;}
.x3d{left:214.721173pt;}
.x21{left:226.558533pt;}
.x77{left:230.399453pt;}
.x3e{left:236.479987pt;}
.x22{left:241.918920pt;}
.x9a{left:243.518533pt;}
.x70{left:247.678667pt;}
.x6c{left:255.679733pt;}
.x9b{left:265.918920pt;}
.x6d{left:269.119587pt;}
.x71{left:280.639200pt;}
.x51{left:282.878920pt;}
.x91{left:295.038533pt;}
.x52{left:307.519067pt;}
.x60{left:345.600647pt;}
.x47{left:349.440047pt;}
.x4a{left:350.400893pt;}
.xf{left:352.640395pt;}
.x8{left:353.600141pt;}
.xa4{left:356.478973pt;}
.xa2{left:357.437487pt;}
.x65{left:359.039067pt;}
.x44{left:366.080533pt;}
.x9{left:369.596475pt;}
.xa1{left:373.759320pt;}
.x85{left:375.358933pt;}
.x1b{left:393.279701pt;}
.x63{left:396.799840pt;}
.x14{left:429.120115pt;}
.x15{left:443.840368pt;}
.x64{left:451.519040pt;}
.x4b{left:459.200653pt;}
.x92{left:467.838907pt;}
.x16{left:476.160648pt;}
.x79{left:479.039067pt;}
.x48{left:484.160120pt;}
.x17{left:489.600501pt;}
.x93{left:492.479040pt;}
.x7a{left:505.918907pt;}
.x7c{left:518.399453pt;}
.x25{left:521.598680pt;}
.x7b{left:523.519040pt;}
.x23{left:526.398920pt;}
.x7d{left:531.518520pt;}
.x8b{left:547.519040pt;}
.x24{left:550.719720pt;}
.x61{left:556.158693pt;}
.x26{left:558.399867pt;}
.x1c{left:571.839848pt;}
.x94{left:581.119587pt;}
.x27{left:587.198693pt;}
.x6e{left:591.039587pt;}
.xc{left:593.279301pt;}
.x8e{left:598.398920pt;}
.x95{left:600.319333pt;}
.x6f{left:603.839320pt;}
.x1f{left:607.678707pt;}
.x8a{left:610.879307pt;}
.x73{left:616.960000pt;}
.x8f{left:622.398920pt;}
.x20{left:651.199173pt;}
.x96{left:657.279707pt;}
.x49{left:679.360760pt;}
.x86{left:711.999027pt;}
.x54{left:715.519040pt;}
.x28{left:717.118733pt;}
.x57{left:719.039067pt;}
.x9c{left:723.199213pt;}
.x9e{left:724.798747pt;}
.x29{left:730.879307pt;}
.x36{left:731.838947pt;}
.x58{left:732.799880pt;}
.x55{left:733.759280pt;}
.x87{left:736.319827pt;}
.x9d{left:741.439453pt;}
.x9f{left:743.039067pt;}
.x32{left:746.239747pt;}
.x37{left:749.759680pt;}
.x59{left:751.038493pt;}
.x2a{left:753.599040pt;}
.xd{left:765.120115pt;}
.x5a{left:767.359867pt;}
.xe{left:778.560061pt;}
.x33{left:790.079587pt;}
.xa{left:795.199141pt;}
.x7e{left:804.799880pt;}
.x34{left:816.638667pt;}
.x7f{left:821.759680pt;}
.x4{left:823.680088pt;}
.x35{left:830.399413pt;}
.x38{left:834.559573pt;}
.x4d{left:844.480880pt;}
.x80{left:845.759680pt;}
.x2b{left:851.198733pt;}
.x3a{left:855.999027pt;}
.x2e{left:866.239747pt;}
.x78{left:869.438880pt;}
.x2f{left:875.838947pt;}
.x5b{left:879.679693pt;}
.x89{left:880.639160pt;}
.x56{left:884.799320pt;}
.x30{left:890.239747pt;}
.x5{left:893.119541pt;}
.x5c{left:895.999427pt;}
.x45{left:908.479987pt;}
.x2c{left:909.758787pt;}
.x46{left:925.439947pt;}
.xa0{left:930.238773pt;}
.x39{left:937.599613pt;}
.xa3{left:949.759280pt;}
.x5d{left:951.358893pt;}
.x2d{left:953.279293pt;}
.x5e{left:961.599613pt;}
.x31{left:966.079027pt;}
.x88{left:970.558507pt;}
.xb{left:975.360355pt;}
.x4c{left:1005.440920pt;}
.x4e{left:1006.721200pt;}
.x10{left:1008.640141pt;}
.x11{left:1009.920328pt;}
.x5f{left:1010.879800pt;}
}




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