
    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_bd7d3ba61d603f5f40edcbc0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.992000;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_b1ff652bc134e56aa258d6bd.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.992000;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_c3008dc6188d5b94a31f25cd.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.990000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_98f297ed1cd11d8d5390bfbf.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_76d5a70d2dc4f216819587dd.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.969000;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_cf01d03dfd599103f3b24987.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.747000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_0e449425598c7563b1a6e636.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.121000;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_cc5b0645385e765338f93c57.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.940000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_2bf0adb7ac88bd814660704d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.940000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_e1e3ea04857c456f4e7a0a5a.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.127000;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_7dcc0dc1508443832717d655.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.137000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_2c3b7234974c26dc6b62aa04.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.901000;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_bb3858153bc3b6e0b6bcac03.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.121000;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_5c5e37963fb74e12e2f3e213.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.127000;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_6bca525514f5dad40d45f95e.woff2')format("woff");}.fff{font-family:fff;line-height:1.121000;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_cccd02483ec832e627e7dcd1.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.884000;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_6453f5e4b95401d9de2aa062.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.121000;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_5c5e37963fb74e12e2f3e213.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.127000;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_bb3858153bc3b6e0b6bcac03.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.121000;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_89dc8fb5f4cbd89de955fe3f.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.121000;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_59940b68e4b6e376eedad692.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.121000;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_bb3858153bc3b6e0b6bcac03.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.121000;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_5c5e37963fb74e12e2f3e213.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.127000;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_6bca525514f5dad40d45f95e.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.121000;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_b981cee9fb4aa6fd67bbbde4.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.121000;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_5c5e37963fb74e12e2f3e213.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.127000;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_bb3858153bc3b6e0b6bcac03.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.121000;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_0a198c98bf3420b28055fc2f.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.060000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m74{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m8f{transform:matrix(0.245625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245625,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.245626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245626,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.245712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245712,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.245874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245874,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.246210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246210,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.246217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246217,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.246463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246463,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.247038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247038,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.247542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247542,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.247544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247544,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.247598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247598,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.247648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247648,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.247752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247752,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.247863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247863,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.247866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247866,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.247869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247869,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.248039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248039,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.248103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248103,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.248371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248371,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.248410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248410,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.248545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248545,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.248610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248610,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.248674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248674,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.248690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248690,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.248698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248698,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.248710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248710,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.248719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248719,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.248762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248762,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.248769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248769,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.248787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248787,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.248819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248819,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.248837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248837,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.248839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248839,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.248874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248874,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.248960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248960,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.248967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248967,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.248983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248983,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.248986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248986,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.249033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249033,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.249143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249143,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.249164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249164,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.249167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249167,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.249171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249171,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.249307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249307,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249331,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.249336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249336,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.249383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249383,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.249402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249402,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.249424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249424,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.249448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249448,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.249452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249452,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.249467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249467,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.249564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249564,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.249567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249567,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249581,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.249610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249610,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.249662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249662,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.249721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249721,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.249726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249726,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.249736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249736,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.249738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249738,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.249745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249745,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.249761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249761,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.249779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249779,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.249790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249790,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.249802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249802,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.249810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249810,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.249817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249817,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.249917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249917,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.249955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249955,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.249969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249969,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.249987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249987,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m32{transform:matrix(0.250002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250002,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.250008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250008,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.250033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250033,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.250034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250034,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.250060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250060,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.250069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250069,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250100,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.250112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250112,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.250136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250136,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.250158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250158,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.250205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250205,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.250219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250219,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.250224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250224,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.250233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250233,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250238,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.250267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250267,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.250279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250279,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.250319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250319,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.250339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250339,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.250355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250355,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.250357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250357,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.250445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250445,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.250484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250484,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.250511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250511,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.250512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250512,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.250521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250521,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250534,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.250555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250555,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.250568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250568,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.250576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250576,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.250724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250724,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.250762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250762,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.250862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250862,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250881,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.250888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250888,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.250983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250983,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.250995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250995,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.251010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251010,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.251014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251014,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.251031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251031,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.251055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251055,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.251060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251060,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.251076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251076,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.251183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251183,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.251202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251202,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.251240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251240,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.251284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251284,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.251338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251338,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.251402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251402,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.251439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251439,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.251443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251443,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.251483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251483,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.251498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251498,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.251579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251579,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.251590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251590,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.251774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251774,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.251818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251818,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.251831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251831,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.251843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251843,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.251876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251876,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.251974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251974,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.251976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251976,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.252133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252133,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.252161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252161,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.252163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252163,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.252279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252279,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.252379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252379,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.252543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252543,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.252569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252569,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.252600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252600,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.252745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252745,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.252831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252831,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.252936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252936,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.253313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253313,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.253343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253343,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.253502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253502,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.253638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253638,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.254424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254424,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-2.592000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.ls3{letter-spacing:-8.160000px;}
.ls3c{letter-spacing:-2.205000px;}
.ls4{letter-spacing:-1.920000px;}
.ls37{letter-spacing:-1.890000px;}
.ls34{letter-spacing:-1.512000px;}
.ls3b{letter-spacing:-1.449000px;}
.ls35{letter-spacing:-1.386000px;}
.ls31{letter-spacing:-1.323000px;}
.ls2{letter-spacing:-1.320000px;}
.ls2f{letter-spacing:-1.260000px;}
.ls3a{letter-spacing:-1.197000px;}
.ls15{letter-spacing:-1.140000px;}
.ls30{letter-spacing:-1.134000px;}
.ls1c{letter-spacing:-1.071000px;}
.ls38{letter-spacing:-1.008000px;}
.ls36{letter-spacing:-0.945000px;}
.ls33{letter-spacing:-0.882000px;}
.ls39{letter-spacing:-0.819000px;}
.ls54{letter-spacing:-0.798000px;}
.ls19{letter-spacing:-0.756000px;}
.ls32{letter-spacing:-0.693000px;}
.ls59{letter-spacing:-0.684000px;}
.ls13{letter-spacing:-0.672000px;}
.ls1a{letter-spacing:-0.567000px;}
.ls53{letter-spacing:-0.513000px;}
.ls14{letter-spacing:-0.504000px;}
.ls55{letter-spacing:-0.456000px;}
.ls1d{letter-spacing:-0.441000px;}
.ls12{letter-spacing:-0.420000px;}
.ls16{letter-spacing:-0.378000px;}
.ls58{letter-spacing:-0.342000px;}
.ls25{letter-spacing:-0.315000px;}
.ls52{letter-spacing:-0.285000px;}
.ls2c{letter-spacing:-0.252000px;}
.ls57{letter-spacing:-0.228000px;}
.ls1e{letter-spacing:-0.189000px;}
.ls17{letter-spacing:-0.126000px;}
.ls18{letter-spacing:-0.063000px;}
.ls56{letter-spacing:-0.057000px;}
.ls26{letter-spacing:-0.042000px;}
.ls1{letter-spacing:0.000000px;}
.ls40{letter-spacing:0.000303px;}
.ls1f{letter-spacing:0.031500px;}
.ls4a{letter-spacing:0.034200px;}
.ls4b{letter-spacing:0.035210px;}
.ls4c{letter-spacing:0.035318px;}
.ls4d{letter-spacing:0.036115px;}
.ls49{letter-spacing:0.036373px;}
.ls3e{letter-spacing:0.057000px;}
.ls1b{letter-spacing:0.063000px;}
.ls46{letter-spacing:0.076950px;}
.ls45{letter-spacing:0.077247px;}
.ls2e{letter-spacing:0.084000px;}
.ls47{letter-spacing:0.097000px;}
.ls48{letter-spacing:0.098325px;}
.ls24{letter-spacing:0.105000px;}
.ls43{letter-spacing:0.109731px;}
.ls6{letter-spacing:0.114000px;}
.ls21{letter-spacing:0.126000px;}
.ls23{letter-spacing:0.189000px;}
.ls11{letter-spacing:0.252000px;}
.ls5{letter-spacing:0.285000px;}
.ls28{letter-spacing:0.315000px;}
.ls50{letter-spacing:0.324900px;}
.ls4e{letter-spacing:0.325209px;}
.ls41{letter-spacing:0.331800px;}
.ls4f{letter-spacing:0.342000px;}
.ls10{letter-spacing:0.378000px;}
.ls20{letter-spacing:0.441000px;}
.ls3d{letter-spacing:0.487350px;}
.ls22{letter-spacing:0.504000px;}
.ls3f{letter-spacing:0.513000px;}
.ls42{letter-spacing:0.540000px;}
.ls2a{letter-spacing:0.630000px;}
.ls29{letter-spacing:0.693000px;}
.ls44{letter-spacing:0.741000px;}
.ls27{letter-spacing:0.819000px;}
.ls2b{letter-spacing:0.850500px;}
.ls7{letter-spacing:0.882000px;}
.ls9{letter-spacing:0.945000px;}
.lsd{letter-spacing:0.976500px;}
.lsf{letter-spacing:1.071000px;}
.lse{letter-spacing:1.134000px;}
.ls51{letter-spacing:1.140000px;}
.ls2d{letter-spacing:1.197000px;}
.lsa{letter-spacing:1.260000px;}
.ls8{letter-spacing:1.323000px;}
.lsc{letter-spacing:1.480500px;}
.lsb{letter-spacing:1.512000px;}
.ls0{letter-spacing:71.820000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(255,242,0),0 0.015em rgb(255,242,0),0.015em 0 rgb(255,242,0),0 -0.015em  rgb(255,242,0);}
.sc1{text-shadow:-0.015em 0 rgb(0,255,0),0 0.015em rgb(0,255,0),0.015em 0 rgb(0,255,0),0 -0.015em  rgb(0,255,0);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(255,242,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,255,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-72.576000px;}
.ws1{word-spacing:-54.000000px;}
.wsb{word-spacing:-24.768000px;}
.ws2{word-spacing:-15.840000px;}
.ws53{word-spacing:-15.813000px;}
.ws11{word-spacing:-15.750000px;}
.ws90{word-spacing:-15.372000px;}
.ws76{word-spacing:-15.057000px;}
.ws78{word-spacing:-14.742000px;}
.ws75{word-spacing:-14.490000px;}
.ws77{word-spacing:-14.364000px;}
.ws94{word-spacing:-14.250000px;}
.wsc{word-spacing:-14.178000px;}
.ws91{word-spacing:-14.175000px;}
.ws95{word-spacing:-13.908000px;}
.ws9b{word-spacing:-13.566000px;}
.wsf{word-spacing:-13.500000px;}
.ws5{word-spacing:-11.676000px;}
.ws10{word-spacing:-11.256000px;}
.ws93{word-spacing:-11.174850px;}
.ws8{word-spacing:-11.088000px;}
.ws99{word-spacing:-11.029500px;}
.ws9a{word-spacing:-11.012400px;}
.ws7{word-spacing:-11.004000px;}
.ws97{word-spacing:-10.785825px;}
.ws96{word-spacing:-10.764450px;}
.ws98{word-spacing:-10.721700px;}
.ws92{word-spacing:-10.687500px;}
.wsa{word-spacing:-10.008000px;}
.ws6{word-spacing:-8.757000px;}
.ws39{word-spacing:-7.875000px;}
.ws9{word-spacing:-6.426000px;}
.ws49{word-spacing:-4.032000px;}
.ws2f{word-spacing:-3.969000px;}
.ws35{word-spacing:-3.906000px;}
.ws38{word-spacing:-3.843000px;}
.ws57{word-spacing:-3.717000px;}
.ws72{word-spacing:-3.654000px;}
.wsaa{word-spacing:-3.648000px;}
.wsa7{word-spacing:-3.591000px;}
.wsa5{word-spacing:-3.534000px;}
.ws31{word-spacing:-3.528000px;}
.ws89{word-spacing:-3.465000px;}
.ws43{word-spacing:-3.402000px;}
.ws82{word-spacing:-3.339000px;}
.ws84{word-spacing:-3.276000px;}
.ws29{word-spacing:-3.249000px;}
.ws69{word-spacing:-3.150000px;}
.ws51{word-spacing:-3.087000px;}
.ws28{word-spacing:-3.078000px;}
.ws9f{word-spacing:-3.024000px;}
.ws66{word-spacing:-2.961000px;}
.ws15{word-spacing:-2.940000px;}
.ws85{word-spacing:-2.898000px;}
.wsa6{word-spacing:-2.793000px;}
.ws4b{word-spacing:-2.772000px;}
.ws54{word-spacing:-2.583000px;}
.ws47{word-spacing:-2.394000px;}
.ws7e{word-spacing:-2.331000px;}
.ws1e{word-spacing:-2.280000px;}
.ws4e{word-spacing:-2.268000px;}
.ws8b{word-spacing:-2.205000px;}
.ws5c{word-spacing:-2.142000px;}
.ws22{word-spacing:-2.109000px;}
.ws81{word-spacing:-2.079000px;}
.ws9d{word-spacing:-2.016000px;}
.ws4a{word-spacing:-1.827000px;}
.wsb5{word-spacing:-1.824000px;}
.ws27{word-spacing:-1.767000px;}
.ws86{word-spacing:-1.764000px;}
.wsa0{word-spacing:-1.638000px;}
.wsb3{word-spacing:-1.596000px;}
.ws6e{word-spacing:-1.575000px;}
.wsa1{word-spacing:-1.512000px;}
.ws8a{word-spacing:-1.449000px;}
.ws8d{word-spacing:-1.428000px;}
.ws1d{word-spacing:-1.425000px;}
.ws6a{word-spacing:-1.386000px;}
.wsb2{word-spacing:-1.368000px;}
.ws87{word-spacing:-1.323000px;}
.ws32{word-spacing:-1.260000px;}
.ws62{word-spacing:-1.197000px;}
.ws12{word-spacing:-1.134000px;}
.ws2a{word-spacing:-1.083000px;}
.ws18{word-spacing:-1.026000px;}
.ws2c{word-spacing:-0.912000px;}
.ws6c{word-spacing:-0.819000px;}
.ws1c{word-spacing:-0.798000px;}
.wsa9{word-spacing:-0.741000px;}
.ws9e{word-spacing:-0.693000px;}
.wsa8{word-spacing:-0.684000px;}
.ws45{word-spacing:-0.630000px;}
.wsb4{word-spacing:-0.627000px;}
.ws40{word-spacing:-0.567000px;}
.ws3c{word-spacing:-0.504000px;}
.ws2d{word-spacing:-0.441000px;}
.ws21{word-spacing:-0.399000px;}
.ws52{word-spacing:-0.378000px;}
.ws3b{word-spacing:-0.315000px;}
.ws1f{word-spacing:-0.285000px;}
.ws9c{word-spacing:-0.252000px;}
.ws26{word-spacing:-0.171000px;}
.ws60{word-spacing:-0.126000px;}
.wsad{word-spacing:-0.114000px;}
.ws8e{word-spacing:-0.084000px;}
.ws58{word-spacing:-0.063000px;}
.ws2b{word-spacing:-0.057000px;}
.ws3{word-spacing:0.000000px;}
.wsb1{word-spacing:0.057000px;}
.ws46{word-spacing:0.063000px;}
.ws6b{word-spacing:0.126000px;}
.ws20{word-spacing:0.228000px;}
.ws67{word-spacing:0.252000px;}
.ws48{word-spacing:0.315000px;}
.wsac{word-spacing:0.342000px;}
.ws71{word-spacing:0.378000px;}
.ws17{word-spacing:0.399000px;}
.ws13{word-spacing:0.420000px;}
.ws3d{word-spacing:0.441000px;}
.wsab{word-spacing:0.456000px;}
.ws16{word-spacing:0.504000px;}
.wsb6{word-spacing:0.513000px;}
.ws4c{word-spacing:0.567000px;}
.ws14{word-spacing:0.672000px;}
.ws7c{word-spacing:0.693000px;}
.ws42{word-spacing:0.756000px;}
.ws8c{word-spacing:0.882000px;}
.ws5b{word-spacing:0.945000px;}
.ws6f{word-spacing:1.008000px;}
.ws7a{word-spacing:1.071000px;}
.wsa4{word-spacing:1.083000px;}
.ws41{word-spacing:1.134000px;}
.wsb0{word-spacing:1.140000px;}
.ws3e{word-spacing:1.197000px;}
.ws7b{word-spacing:1.260000px;}
.ws80{word-spacing:1.323000px;}
.ws23{word-spacing:1.368000px;}
.ws7d{word-spacing:1.386000px;}
.ws1b{word-spacing:1.425000px;}
.ws3f{word-spacing:1.449000px;}
.wsa3{word-spacing:1.482000px;}
.ws50{word-spacing:1.512000px;}
.ws83{word-spacing:1.575000px;}
.ws55{word-spacing:1.638000px;}
.ws33{word-spacing:1.764000px;}
.ws1a{word-spacing:1.767000px;}
.ws6d{word-spacing:1.827000px;}
.ws37{word-spacing:1.890000px;}
.wsd{word-spacing:1.920000px;}
.ws63{word-spacing:1.953000px;}
.ws3a{word-spacing:2.016000px;}
.ws4f{word-spacing:2.079000px;}
.ws36{word-spacing:2.142000px;}
.ws5a{word-spacing:2.205000px;}
.ws56{word-spacing:2.268000px;}
.ws79{word-spacing:2.394000px;}
.wsa2{word-spacing:2.451000px;}
.ws4d{word-spacing:2.457000px;}
.ws19{word-spacing:2.565000px;}
.ws88{word-spacing:2.583000px;}
.ws64{word-spacing:2.646000px;}
.ws7f{word-spacing:2.772000px;}
.wsaf{word-spacing:2.793000px;}
.ws44{word-spacing:2.835000px;}
.ws61{word-spacing:2.898000px;}
.ws8f{word-spacing:2.940000px;}
.ws68{word-spacing:3.024000px;}
.wsae{word-spacing:3.078000px;}
.ws5f{word-spacing:3.087000px;}
.ws73{word-spacing:3.150000px;}
.ws65{word-spacing:3.276000px;}
.ws5d{word-spacing:3.339000px;}
.ws59{word-spacing:3.402000px;}
.ws34{word-spacing:3.528000px;}
.ws24{word-spacing:3.534000px;}
.ws25{word-spacing:3.591000px;}
.ws70{word-spacing:3.654000px;}
.ws5e{word-spacing:3.717000px;}
.ws74{word-spacing:3.843000px;}
.ws2e{word-spacing:3.906000px;}
.ws30{word-spacing:3.969000px;}
.ws4{word-spacing:8.160000px;}
.wse{word-spacing:2482.387200px;}
._14{margin-left:-976.424914px;}
._5{margin-left:-32.892000px;}
._2{margin-left:-22.939800px;}
._6{margin-left:-17.539200px;}
._e{margin-left:-14.688000px;}
._16{margin-left:-13.654200px;}
._12{margin-left:-11.827200px;}
._7{margin-left:-10.107600px;}
._10{margin-left:-8.981400px;}
._11{margin-left:-7.977900px;}
._0{margin-left:-6.955200px;}
._a{margin-left:-5.896800px;}
._8{margin-left:-4.620000px;}
._9{margin-left:-3.432000px;}
._1{margin-left:-1.856400px;}
._4{width:1.932000px;}
._f{width:2.944200px;}
._3{width:4.704000px;}
._15{width:9.498600px;}
._c{width:80.132400px;}
._d{width:205.999200px;}
._b{width:263.412000px;}
._13{width:1982.976000px;}
.fc5{color:rgb(31,46,88);}
.fc4{color:transparent;}
.fc3{color:rgb(35,80,169);}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(139,160,0);}
.fs7{font-size:31.500000px;}
.fs8{font-size:36.000000px;}
.fs6{font-size:42.000000px;}
.fse{font-size:42.060600px;}
.fs11{font-size:42.750000px;}
.fs10{font-size:47.088600px;}
.fsb{font-size:48.000000px;}
.fsf{font-size:48.069600px;}
.fsa{font-size:51.000000px;}
.fs4{font-size:54.000000px;}
.fsc{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fsd{font-size:63.000000px;}
.fs1{font-size:84.000000px;}
.fs9{font-size:96.000000px;}
.fs3{font-size:102.000000px;}
.fs2{font-size:132.000000px;}
.fs0{font-size:756.000000px;}
.y0{bottom:0.000000px;}
.ye{bottom:43.438500px;}
.y101{bottom:47.366250px;}
.y63{bottom:53.145300px;}
.y37{bottom:53.318100px;}
.y36{bottom:53.318250px;}
.yd{bottom:61.438500px;}
.y153{bottom:119.803350px;}
.y9e{bottom:126.047400px;}
.yb8{bottom:126.047550px;}
.y152{bottom:134.685300px;}
.y9d{bottom:143.985150px;}
.yb7{bottom:143.985300px;}
.y151{bottom:149.567100px;}
.y62{bottom:149.725500px;}
.y35{bottom:152.485950px;}
.y9c{bottom:161.922900px;}
.yb6{bottom:161.923050px;}
.y34{bottom:164.485950px;}
.ya9{bottom:179.860650px;}
.y9b{bottom:179.860800px;}
.y33{bottom:184.989900px;}
.y61{bottom:187.237200px;}
.y150{bottom:194.212800px;}
.y32{bottom:196.989900px;}
.y110{bottom:197.267550px;}
.ya8{bottom:197.798400px;}
.y9a{bottom:197.798550px;}
.y60{bottom:203.737200px;}
.y31{bottom:208.989900px;}
.y14f{bottom:209.094600px;}
.y10f{bottom:212.149050px;}
.ya7{bottom:215.736150px;}
.y99{bottom:215.736300px;}
.y5f{bottom:220.237200px;}
.y30{bottom:220.989900px;}
.y14e{bottom:223.976100px;}
.y10e{bottom:227.030700px;}
.ya6{bottom:233.673900px;}
.y98{bottom:233.674050px;}
.y5e{bottom:236.737200px;}
.y14d{bottom:238.857750px;}
.y10d{bottom:241.912050px;}
.y2f{bottom:245.745750px;}
.y97{bottom:251.611650px;}
.y14c{bottom:253.739100px;}
.y2e{bottom:258.345750px;}
.y14b{bottom:268.620600px;}
.y5d{bottom:268.627050px;}
.y96{bottom:269.549400px;}
.yb9{bottom:269.549550px;}
.y2d{bottom:270.945750px;}
.y14a{bottom:283.502250px;}
.yd0{bottom:284.402400px;}
.y5c{bottom:285.127050px;}
.ya5{bottom:287.487150px;}
.y95{bottom:287.487300px;}
.y2c{bottom:292.049700px;}
.ycf{bottom:297.158250px;}
.y149{bottom:298.383600px;}
.y5b{bottom:301.627050px;}
.y2b{bottom:304.649700px;}
.ya4{bottom:305.424900px;}
.y94{bottom:305.425050px;}
.yce{bottom:309.914250px;}
.y148{bottom:313.265100px;}
.y5a{bottom:318.127050px;}
.y93{bottom:323.362650px;}
.yb5{bottom:323.362800px;}
.y147{bottom:328.146750px;}
.y59{bottom:334.627050px;}
.y92{bottom:341.300400px;}
.yb4{bottom:341.300550px;}
.y146{bottom:343.028100px;}
.y145{bottom:357.909600px;}
.ya3{bottom:359.238150px;}
.y91{bottom:359.238300px;}
.y58{bottom:366.516750px;}
.y144{bottom:372.791250px;}
.ya2{bottom:377.175900px;}
.y90{bottom:377.176050px;}
.y57{bottom:383.016750px;}
.y143{bottom:387.672750px;}
.y8f{bottom:395.113650px;}
.yb3{bottom:395.113800px;}
.y56{bottom:399.516750px;}
.y142{bottom:402.554100px;}
.y8e{bottom:413.051400px;}
.yb2{bottom:413.051550px;}
.y55{bottom:416.016750px;}
.y141{bottom:417.435750px;}
.y8d{bottom:430.989150px;}
.yb1{bottom:430.989300px;}
.y140{bottom:432.317250px;}
.y54{bottom:432.516750px;}
.y13f{bottom:447.198600px;}
.ya1{bottom:448.926900px;}
.y8c{bottom:448.927050px;}
.y53{bottom:449.524650px;}
.y13e{bottom:462.080100px;}
.ya0{bottom:466.864650px;}
.y8b{bottom:466.864800px;}
.y13d{bottom:476.961750px;}
.y52{bottom:481.414350px;}
.y8a{bottom:484.802550px;}
.y13c{bottom:491.843100px;}
.y51{bottom:497.914350px;}
.y9f{bottom:502.740300px;}
.y13b{bottom:506.724600px;}
.y50{bottom:514.414350px;}
.y89{bottom:520.678050px;}
.y13a{bottom:521.606250px;}
.ybb{bottom:525.699750px;}
.y4f{bottom:530.914350px;}
.y139{bottom:536.487600px;}
.yba{bottom:538.455600px;}
.ybe{bottom:538.615800px;}
.y138{bottom:551.369100px;}
.ybd{bottom:556.553550px;}
.y4e{bottom:562.804200px;}
.y137{bottom:566.250750px;}
.ybc{bottom:574.491300px;}
.y4d{bottom:579.304200px;}
.y136{bottom:581.132100px;}
.ydc{bottom:592.429050px;}
.y4c{bottom:595.804200px;}
.y135{bottom:596.013600px;}
.ydb{bottom:610.366800px;}
.y134{bottom:610.895250px;}
.y4b{bottom:612.304200px;}
.ycd{bottom:615.869550px;}
.y5{bottom:624.698700px;}
.y133{bottom:625.776600px;}
.yda{bottom:628.304550px;}
.ycc{bottom:628.625400px;}
.y88{bottom:634.070850px;}
.y6a{bottom:634.071000px;}
.y132{bottom:640.658100px;}
.y4a{bottom:644.193900px;}
.y69{bottom:646.071000px;}
.yd9{bottom:646.242300px;}
.y4{bottom:649.898700px;}
.y87{bottom:650.570850px;}
.y131{bottom:655.539750px;}
.y68{bottom:658.071000px;}
.y49{bottom:660.693900px;}
.yd8{bottom:664.180050px;}
.y86{bottom:667.070850px;}
.y67{bottom:670.071000px;}
.y130{bottom:670.421100px;}
.ybf{bottom:671.772300px;}
.y3{bottom:675.098700px;}
.y48{bottom:677.193900px;}
.y66{bottom:682.071000px;}
.yd7{bottom:682.117800px;}
.y85{bottom:683.570850px;}
.y12f{bottom:685.302600px;}
.y47{bottom:693.693900px;}
.y65{bottom:694.071000px;}
.yd6{bottom:700.055550px;}
.y84{bottom:700.070850px;}
.y12e{bottom:700.184250px;}
.y2{bottom:700.298700px;}
.y2a{bottom:700.642200px;}
.yc0{bottom:706.451265px;}
.y46{bottom:710.193900px;}
.y12d{bottom:715.065600px;}
.y29{bottom:716.392200px;}
.y83{bottom:716.570850px;}
.yd5{bottom:717.993300px;}
.y45{bottom:727.201800px;}
.y12c{bottom:729.947100px;}
.y28{bottom:732.142200px;}
.y82{bottom:733.070850px;}
.yd4{bottom:735.931050px;}
.y12b{bottom:744.828750px;}
.y81{bottom:749.570850px;}
.yd3{bottom:753.868800px;}
.yc7{bottom:755.800440px;}
.y44{bottom:759.091500px;}
.y12a{bottom:759.710100px;}
.yff{bottom:761.286900px;}
.y27{bottom:764.150100px;}
.y80{bottom:766.070850px;}
.yc6{bottom:770.221320px;}
.yd2{bottom:771.806550px;}
.yb{bottom:772.790700px;}
.yfe{bottom:774.042750px;}
.y129{bottom:774.591750px;}
.y43{bottom:775.591500px;}
.y26{bottom:776.750100px;}
.y7f{bottom:782.570850px;}
.yc5{bottom:784.642200px;}
.yfd{bottom:786.798750px;}
.y25{bottom:789.350100px;}
.y128{bottom:789.473100px;}
.yd1{bottom:789.744300px;}
.y42{bottom:792.091500px;}
.y7e{bottom:799.070850px;}
.yfc{bottom:799.554600px;}
.y24{bottom:801.950100px;}
.y127{bottom:804.354750px;}
.yf9{bottom:807.682050px;}
.yc9{bottom:808.398300px;}
.y41{bottom:808.591500px;}
.ya{bottom:810.290700px;}
.yfb{bottom:812.310450px;}
.y23{bottom:814.550100px;}
.y7d{bottom:815.570850px;}
.y126{bottom:819.236250px;}
.yfa{bottom:825.066450px;}
.yf8{bottom:825.619800px;}
.y22{bottom:827.150100px;}
.y7c{bottom:832.070850px;}
.y125{bottom:834.117600px;}
.y21{bottom:839.750100px;}
.y40{bottom:840.481350px;}
.yf7{bottom:843.557550px;}
.y9{bottom:847.790700px;}
.y124{bottom:848.999250px;}
.ydd{bottom:851.027700px;}
.y20{bottom:852.350100px;}
.y100{bottom:854.980500px;}
.y3f{bottom:856.981350px;}
.y107{bottom:859.647900px;}
.yf6{bottom:861.495300px;}
.y123{bottom:863.880750px;}
.y1f{bottom:864.950100px;}
.yaf{bottom:865.913400px;}
.y7b{bottom:866.201700px;}
.y3e{bottom:873.481350px;}
.yc4{bottom:875.103270px;}
.y10a{bottom:875.588400px;}
.y106{bottom:875.590800px;}
.y1e{bottom:877.550100px;}
.yae{bottom:877.913400px;}
.y122{bottom:878.762100px;}
.yf5{bottom:879.433050px;}
.y7a{bottom:882.701700px;}
.y8{bottom:885.290700px;}
.yc3{bottom:889.524150px;}
.yad{bottom:889.913400px;}
.y3d{bottom:889.981350px;}
.y1d{bottom:890.150100px;}
.ye6{bottom:892.740000px;}
.y121{bottom:893.643750px;}
.yf4{bottom:897.370800px;}
.y79{bottom:899.201700px;}
.yac{bottom:901.913400px;}
.y1c{bottom:902.750100px;}
.ye5{bottom:905.340000px;}
.y120{bottom:908.525250px;}
.yab{bottom:913.913400px;}
.yf3{bottom:915.308550px;}
.y1b{bottom:915.350100px;}
.y78{bottom:915.701700px;}
.ye4{bottom:917.940000px;}
.y7{bottom:922.790700px;}
.y11f{bottom:923.406600px;}
.yc8{bottom:925.510050px;}
.yaa{bottom:925.913400px;}
.y1a{bottom:927.950100px;}
.ye3{bottom:930.540000px;}
.y77{bottom:932.201700px;}
.yf2{bottom:933.246300px;}
.y11e{bottom:938.288250px;}
.y19{bottom:940.550100px;}
.ye2{bottom:943.140000px;}
.y105{bottom:945.426300px;}
.y76{bottom:948.701700px;}
.yf1{bottom:951.184050px;}
.y18{bottom:953.150250px;}
.y11d{bottom:953.169750px;}
.ye1{bottom:955.740000px;}
.ycb{bottom:957.738420px;}
.y6{bottom:960.290700px;}
.y75{bottom:965.201700px;}
.y17{bottom:965.750250px;}
.y11c{bottom:968.051100px;}
.ye0{bottom:968.340000px;}
.yf0{bottom:969.121800px;}
.yca{bottom:972.159300px;}
.y16{bottom:978.350250px;}
.yc2{bottom:978.996270px;}
.ydf{bottom:980.940000px;}
.y74{bottom:981.701700px;}
.y11b{bottom:982.932750px;}
.yef{bottom:987.059550px;}
.y3c{bottom:989.007900px;}
.y15{bottom:990.950250px;}
.yc1{bottom:993.417150px;}
.y11a{bottom:997.814250px;}
.y73{bottom:998.201700px;}
.y14{bottom:1003.550100px;}
.y104{bottom:1004.436300px;}
.yee{bottom:1004.997300px;}
.y119{bottom:1012.695600px;}
.y72{bottom:1014.701700px;}
.y3b{bottom:1019.007900px;}
.yed{bottom:1022.935050px;}
.y118{bottom:1027.577250px;}
.y71{bottom:1031.201700px;}
.y13{bottom:1033.158000px;}
.yc{bottom:1036.232100px;}
.yec{bottom:1040.872800px;}
.y117{bottom:1042.458750px;}
.y70{bottom:1047.701700px;}
.y3a{bottom:1049.007900px;}
.y116{bottom:1057.340100px;}
.yeb{bottom:1058.810550px;}
.y12{bottom:1062.765900px;}
.y103{bottom:1063.446300px;}
.y6f{bottom:1064.201700px;}
.y115{bottom:1072.221750px;}
.yea{bottom:1076.748300px;}
.y39{bottom:1079.007900px;}
.y1{bottom:1086.378000px;}
.y114{bottom:1087.103250px;}
.y11{bottom:1092.373800px;}
.ye9{bottom:1094.685900px;}
.y6e{bottom:1098.332700px;}
.y113{bottom:1101.984600px;}
.y38{bottom:1109.007900px;}
.y6d{bottom:1109.582700px;}
.y10c{bottom:1112.623650px;}
.ye8{bottom:1112.623800px;}
.y109{bottom:1113.411900px;}
.y112{bottom:1116.866250px;}
.y6c{bottom:1120.832700px;}
.y10{bottom:1121.981700px;}
.y102{bottom:1122.456300px;}
.y108{bottom:1127.811900px;}
.yde{bottom:1127.909100px;}
.y10b{bottom:1130.561400px;}
.ye7{bottom:1130.561550px;}
.y111{bottom:1131.747750px;}
.y6b{bottom:1132.082700px;}
.yf{bottom:1134.581700px;}
.y64{bottom:1202.244000px;}
.yb0{bottom:1202.244150px;}
.ha{height:30.702000px;}
.h9{height:31.080000px;}
.h8{height:31.164000px;}
.hc{height:32.688000px;}
.h1f{height:35.952750px;}
.h18{height:36.036000px;}
.hf{height:37.281000px;}
.h7{height:38.136000px;}
.h19{height:38.191025px;}
.h11{height:41.184000px;}
.h1b{height:43.584000px;}
.h1a{height:43.647197px;}
.h6{height:44.520000px;}
.h10{height:46.308000px;}
.h13{height:46.332000px;}
.h12{height:46.872000px;}
.h16{height:47.652000px;}
.h1e{height:47.937000px;}
.h15{height:48.906000px;}
.h14{height:49.476000px;}
.hb{height:51.480000px;}
.h17{height:54.054000px;}
.h1d{height:54.684000px;}
.he{height:55.200000px;}
.h3{height:62.328000px;}
.h5{height:75.684000px;}
.hd{height:88.320000px;}
.h4{height:97.944000px;}
.h1c{height:286.354500px;}
.h2{height:560.952000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:361.417500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x61{left:9.182850px;}
.x1{left:40.818900px;}
.xd{left:42.519750px;}
.x8{left:69.824250px;}
.xe{left:74.409450px;}
.x33{left:83.475900px;}
.x54{left:86.215650px;}
.x34{left:87.217650px;}
.x56{left:89.596650px;}
.x6d{left:91.417350px;}
.x55{left:93.408150px;}
.xa{left:97.376550px;}
.x50{left:100.129050px;}
.x57{left:103.509150px;}
.x52{left:112.461300px;}
.x10{left:116.929200px;}
.x6e{left:123.268650px;}
.x3f{left:127.289250px;}
.x13{left:129.685050px;}
.x38{left:139.722600px;}
.x40{left:153.547200px;}
.x39{left:154.829550px;}
.x65{left:156.049350px;}
.x66{left:162.089250px;}
.x35{left:170.825700px;}
.x9{left:172.188600px;}
.x3d{left:175.159200px;}
.x67{left:177.314100px;}
.x37{left:181.896000px;}
.x3e{left:185.271000px;}
.x36{left:188.740350px;}
.x41{left:192.952350px;}
.x6f{left:195.070500px;}
.x3a{left:198.136200px;}
.x11{left:205.110300px;}
.x68{left:208.466700px;}
.x12{left:210.114300px;}
.x62{left:213.012900px;}
.x70{left:229.183350px;}
.x2{left:233.102700px;}
.x69{left:238.297800px;}
.x4b{left:244.851031px;}
.x5e{left:249.763650px;}
.x42{left:251.576550px;}
.x5c{left:253.953150px;}
.x63{left:257.220900px;}
.x5d{left:259.098150px;}
.x3{left:263.280600px;}
.x51{left:266.645100px;}
.x49{left:271.661850px;}
.x3b{left:275.314950px;}
.x6{left:286.497750px;}
.x4a{left:291.694856px;}
.x64{left:313.774500px;}
.x6a{left:316.219500px;}
.x47{left:318.479850px;}
.x48{left:320.594912px;}
.x5f{left:323.085150px;}
.x71{left:325.971150px;}
.x15{left:333.019200px;}
.x7{left:341.674050px;}
.x6b{left:348.900900px;}
.x45{left:350.455950px;}
.x46{left:354.565901px;}
.x2c{left:373.422750px;}
.x72{left:379.253250px;}
.x6c{left:384.519000px;}
.x73{left:416.758050px;}
.x22{left:422.686650px;}
.x21{left:430.948950px;}
.x28{left:435.232650px;}
.x32{left:439.784250px;}
.x25{left:445.623600px;}
.x4{left:451.185000px;}
.x1e{left:452.189100px;}
.x3c{left:457.086600px;}
.x75{left:466.892100px;}
.x27{left:469.760250px;}
.x74{left:474.094500px;}
.x1a{left:477.254850px;}
.x80{left:484.526400px;}
.x30{left:486.271050px;}
.x19{left:488.871900px;}
.x4c{left:490.112700px;}
.x2d{left:499.210350px;}
.x60{left:500.661150px;}
.x79{left:503.106900px;}
.x76{left:505.013100px;}
.xb{left:517.067250px;}
.x53{left:525.360450px;}
.x5{left:527.708100px;}
.x7a{left:529.916700px;}
.x81{left:536.633550px;}
.x77{left:547.534200px;}
.x4d{left:559.830600px;}
.x78{left:570.450900px;}
.x16{left:572.419200px;}
.x4f{left:588.671714px;}
.x4e{left:598.814400px;}
.x7b{left:603.608250px;}
.x18{left:613.786500px;}
.x1d{left:622.973400px;}
.x5a{left:626.272650px;}
.x59{left:630.850650px;}
.x58{left:632.614650px;}
.x7c{left:636.056850px;}
.x2a{left:637.317000px;}
.x7d{left:663.244500px;}
.x26{left:664.336050px;}
.x31{left:666.641250px;}
.x17{left:668.744700px;}
.x1c{left:670.485450px;}
.x82{left:673.497750px;}
.x5b{left:676.441650px;}
.x1f{left:677.963400px;}
.x83{left:679.325850px;}
.x23{left:681.030900px;}
.x20{left:689.370600px;}
.x2e{left:694.920150px;}
.x1b{left:696.900150px;}
.x2f{left:700.140450px;}
.x29{left:701.576550px;}
.x14{left:704.310150px;}
.x2b{left:713.550000px;}
.x7e{left:716.964150px;}
.x24{left:727.356000px;}
.xc{left:735.787650px;}
.x43{left:740.548950px;}
.x7f{left:744.880050px;}
.xf{left:786.802350px;}
.x44{left:804.323335px;}
@media print{
.v2{vertical-align:-2.304000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.ls3{letter-spacing:-7.253333pt;}
.ls3c{letter-spacing:-1.960000pt;}
.ls4{letter-spacing:-1.706667pt;}
.ls37{letter-spacing:-1.680000pt;}
.ls34{letter-spacing:-1.344000pt;}
.ls3b{letter-spacing:-1.288000pt;}
.ls35{letter-spacing:-1.232000pt;}
.ls31{letter-spacing:-1.176000pt;}
.ls2{letter-spacing:-1.173333pt;}
.ls2f{letter-spacing:-1.120000pt;}
.ls3a{letter-spacing:-1.064000pt;}
.ls15{letter-spacing:-1.013333pt;}
.ls30{letter-spacing:-1.008000pt;}
.ls1c{letter-spacing:-0.952000pt;}
.ls38{letter-spacing:-0.896000pt;}
.ls36{letter-spacing:-0.840000pt;}
.ls33{letter-spacing:-0.784000pt;}
.ls39{letter-spacing:-0.728000pt;}
.ls54{letter-spacing:-0.709333pt;}
.ls19{letter-spacing:-0.672000pt;}
.ls32{letter-spacing:-0.616000pt;}
.ls59{letter-spacing:-0.608000pt;}
.ls13{letter-spacing:-0.597333pt;}
.ls1a{letter-spacing:-0.504000pt;}
.ls53{letter-spacing:-0.456000pt;}
.ls14{letter-spacing:-0.448000pt;}
.ls55{letter-spacing:-0.405333pt;}
.ls1d{letter-spacing:-0.392000pt;}
.ls12{letter-spacing:-0.373333pt;}
.ls16{letter-spacing:-0.336000pt;}
.ls58{letter-spacing:-0.304000pt;}
.ls25{letter-spacing:-0.280000pt;}
.ls52{letter-spacing:-0.253333pt;}
.ls2c{letter-spacing:-0.224000pt;}
.ls57{letter-spacing:-0.202667pt;}
.ls1e{letter-spacing:-0.168000pt;}
.ls17{letter-spacing:-0.112000pt;}
.ls18{letter-spacing:-0.056000pt;}
.ls56{letter-spacing:-0.050667pt;}
.ls26{letter-spacing:-0.037333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls40{letter-spacing:0.000269pt;}
.ls1f{letter-spacing:0.028000pt;}
.ls4a{letter-spacing:0.030400pt;}
.ls4b{letter-spacing:0.031298pt;}
.ls4c{letter-spacing:0.031394pt;}
.ls4d{letter-spacing:0.032102pt;}
.ls49{letter-spacing:0.032332pt;}
.ls3e{letter-spacing:0.050667pt;}
.ls1b{letter-spacing:0.056000pt;}
.ls46{letter-spacing:0.068400pt;}
.ls45{letter-spacing:0.068664pt;}
.ls2e{letter-spacing:0.074667pt;}
.ls47{letter-spacing:0.086222pt;}
.ls48{letter-spacing:0.087400pt;}
.ls24{letter-spacing:0.093333pt;}
.ls43{letter-spacing:0.097539pt;}
.ls6{letter-spacing:0.101333pt;}
.ls21{letter-spacing:0.112000pt;}
.ls23{letter-spacing:0.168000pt;}
.ls11{letter-spacing:0.224000pt;}
.ls5{letter-spacing:0.253333pt;}
.ls28{letter-spacing:0.280000pt;}
.ls50{letter-spacing:0.288800pt;}
.ls4e{letter-spacing:0.289075pt;}
.ls41{letter-spacing:0.294933pt;}
.ls4f{letter-spacing:0.304000pt;}
.ls10{letter-spacing:0.336000pt;}
.ls20{letter-spacing:0.392000pt;}
.ls3d{letter-spacing:0.433200pt;}
.ls22{letter-spacing:0.448000pt;}
.ls3f{letter-spacing:0.456000pt;}
.ls42{letter-spacing:0.480000pt;}
.ls2a{letter-spacing:0.560000pt;}
.ls29{letter-spacing:0.616000pt;}
.ls44{letter-spacing:0.658667pt;}
.ls27{letter-spacing:0.728000pt;}
.ls2b{letter-spacing:0.756000pt;}
.ls7{letter-spacing:0.784000pt;}
.ls9{letter-spacing:0.840000pt;}
.lsd{letter-spacing:0.868000pt;}
.lsf{letter-spacing:0.952000pt;}
.lse{letter-spacing:1.008000pt;}
.ls51{letter-spacing:1.013333pt;}
.ls2d{letter-spacing:1.064000pt;}
.lsa{letter-spacing:1.120000pt;}
.ls8{letter-spacing:1.176000pt;}
.lsc{letter-spacing:1.316000pt;}
.lsb{letter-spacing:1.344000pt;}
.ls0{letter-spacing:63.840000pt;}
.ws0{word-spacing:-64.512000pt;}
.ws1{word-spacing:-48.000000pt;}
.wsb{word-spacing:-22.016000pt;}
.ws2{word-spacing:-14.080000pt;}
.ws53{word-spacing:-14.056000pt;}
.ws11{word-spacing:-14.000000pt;}
.ws90{word-spacing:-13.664000pt;}
.ws76{word-spacing:-13.384000pt;}
.ws78{word-spacing:-13.104000pt;}
.ws75{word-spacing:-12.880000pt;}
.ws77{word-spacing:-12.768000pt;}
.ws94{word-spacing:-12.666667pt;}
.wsc{word-spacing:-12.602667pt;}
.ws91{word-spacing:-12.600000pt;}
.ws95{word-spacing:-12.362667pt;}
.ws9b{word-spacing:-12.058667pt;}
.wsf{word-spacing:-12.000000pt;}
.ws5{word-spacing:-10.378667pt;}
.ws10{word-spacing:-10.005333pt;}
.ws93{word-spacing:-9.933200pt;}
.ws8{word-spacing:-9.856000pt;}
.ws99{word-spacing:-9.804000pt;}
.ws9a{word-spacing:-9.788800pt;}
.ws7{word-spacing:-9.781333pt;}
.ws97{word-spacing:-9.587400pt;}
.ws96{word-spacing:-9.568400pt;}
.ws98{word-spacing:-9.530400pt;}
.ws92{word-spacing:-9.500000pt;}
.wsa{word-spacing:-8.896000pt;}
.ws6{word-spacing:-7.784000pt;}
.ws39{word-spacing:-7.000000pt;}
.ws9{word-spacing:-5.712000pt;}
.ws49{word-spacing:-3.584000pt;}
.ws2f{word-spacing:-3.528000pt;}
.ws35{word-spacing:-3.472000pt;}
.ws38{word-spacing:-3.416000pt;}
.ws57{word-spacing:-3.304000pt;}
.ws72{word-spacing:-3.248000pt;}
.wsaa{word-spacing:-3.242667pt;}
.wsa7{word-spacing:-3.192000pt;}
.wsa5{word-spacing:-3.141333pt;}
.ws31{word-spacing:-3.136000pt;}
.ws89{word-spacing:-3.080000pt;}
.ws43{word-spacing:-3.024000pt;}
.ws82{word-spacing:-2.968000pt;}
.ws84{word-spacing:-2.912000pt;}
.ws29{word-spacing:-2.888000pt;}
.ws69{word-spacing:-2.800000pt;}
.ws51{word-spacing:-2.744000pt;}
.ws28{word-spacing:-2.736000pt;}
.ws9f{word-spacing:-2.688000pt;}
.ws66{word-spacing:-2.632000pt;}
.ws15{word-spacing:-2.613333pt;}
.ws85{word-spacing:-2.576000pt;}
.wsa6{word-spacing:-2.482667pt;}
.ws4b{word-spacing:-2.464000pt;}
.ws54{word-spacing:-2.296000pt;}
.ws47{word-spacing:-2.128000pt;}
.ws7e{word-spacing:-2.072000pt;}
.ws1e{word-spacing:-2.026667pt;}
.ws4e{word-spacing:-2.016000pt;}
.ws8b{word-spacing:-1.960000pt;}
.ws5c{word-spacing:-1.904000pt;}
.ws22{word-spacing:-1.874667pt;}
.ws81{word-spacing:-1.848000pt;}
.ws9d{word-spacing:-1.792000pt;}
.ws4a{word-spacing:-1.624000pt;}
.wsb5{word-spacing:-1.621333pt;}
.ws27{word-spacing:-1.570667pt;}
.ws86{word-spacing:-1.568000pt;}
.wsa0{word-spacing:-1.456000pt;}
.wsb3{word-spacing:-1.418667pt;}
.ws6e{word-spacing:-1.400000pt;}
.wsa1{word-spacing:-1.344000pt;}
.ws8a{word-spacing:-1.288000pt;}
.ws8d{word-spacing:-1.269333pt;}
.ws1d{word-spacing:-1.266667pt;}
.ws6a{word-spacing:-1.232000pt;}
.wsb2{word-spacing:-1.216000pt;}
.ws87{word-spacing:-1.176000pt;}
.ws32{word-spacing:-1.120000pt;}
.ws62{word-spacing:-1.064000pt;}
.ws12{word-spacing:-1.008000pt;}
.ws2a{word-spacing:-0.962667pt;}
.ws18{word-spacing:-0.912000pt;}
.ws2c{word-spacing:-0.810667pt;}
.ws6c{word-spacing:-0.728000pt;}
.ws1c{word-spacing:-0.709333pt;}
.wsa9{word-spacing:-0.658667pt;}
.ws9e{word-spacing:-0.616000pt;}
.wsa8{word-spacing:-0.608000pt;}
.ws45{word-spacing:-0.560000pt;}
.wsb4{word-spacing:-0.557333pt;}
.ws40{word-spacing:-0.504000pt;}
.ws3c{word-spacing:-0.448000pt;}
.ws2d{word-spacing:-0.392000pt;}
.ws21{word-spacing:-0.354667pt;}
.ws52{word-spacing:-0.336000pt;}
.ws3b{word-spacing:-0.280000pt;}
.ws1f{word-spacing:-0.253333pt;}
.ws9c{word-spacing:-0.224000pt;}
.ws26{word-spacing:-0.152000pt;}
.ws60{word-spacing:-0.112000pt;}
.wsad{word-spacing:-0.101333pt;}
.ws8e{word-spacing:-0.074667pt;}
.ws58{word-spacing:-0.056000pt;}
.ws2b{word-spacing:-0.050667pt;}
.ws3{word-spacing:0.000000pt;}
.wsb1{word-spacing:0.050667pt;}
.ws46{word-spacing:0.056000pt;}
.ws6b{word-spacing:0.112000pt;}
.ws20{word-spacing:0.202667pt;}
.ws67{word-spacing:0.224000pt;}
.ws48{word-spacing:0.280000pt;}
.wsac{word-spacing:0.304000pt;}
.ws71{word-spacing:0.336000pt;}
.ws17{word-spacing:0.354667pt;}
.ws13{word-spacing:0.373333pt;}
.ws3d{word-spacing:0.392000pt;}
.wsab{word-spacing:0.405333pt;}
.ws16{word-spacing:0.448000pt;}
.wsb6{word-spacing:0.456000pt;}
.ws4c{word-spacing:0.504000pt;}
.ws14{word-spacing:0.597333pt;}
.ws7c{word-spacing:0.616000pt;}
.ws42{word-spacing:0.672000pt;}
.ws8c{word-spacing:0.784000pt;}
.ws5b{word-spacing:0.840000pt;}
.ws6f{word-spacing:0.896000pt;}
.ws7a{word-spacing:0.952000pt;}
.wsa4{word-spacing:0.962667pt;}
.ws41{word-spacing:1.008000pt;}
.wsb0{word-spacing:1.013333pt;}
.ws3e{word-spacing:1.064000pt;}
.ws7b{word-spacing:1.120000pt;}
.ws80{word-spacing:1.176000pt;}
.ws23{word-spacing:1.216000pt;}
.ws7d{word-spacing:1.232000pt;}
.ws1b{word-spacing:1.266667pt;}
.ws3f{word-spacing:1.288000pt;}
.wsa3{word-spacing:1.317333pt;}
.ws50{word-spacing:1.344000pt;}
.ws83{word-spacing:1.400000pt;}
.ws55{word-spacing:1.456000pt;}
.ws33{word-spacing:1.568000pt;}
.ws1a{word-spacing:1.570667pt;}
.ws6d{word-spacing:1.624000pt;}
.ws37{word-spacing:1.680000pt;}
.wsd{word-spacing:1.706667pt;}
.ws63{word-spacing:1.736000pt;}
.ws3a{word-spacing:1.792000pt;}
.ws4f{word-spacing:1.848000pt;}
.ws36{word-spacing:1.904000pt;}
.ws5a{word-spacing:1.960000pt;}
.ws56{word-spacing:2.016000pt;}
.ws79{word-spacing:2.128000pt;}
.wsa2{word-spacing:2.178667pt;}
.ws4d{word-spacing:2.184000pt;}
.ws19{word-spacing:2.280000pt;}
.ws88{word-spacing:2.296000pt;}
.ws64{word-spacing:2.352000pt;}
.ws7f{word-spacing:2.464000pt;}
.wsaf{word-spacing:2.482667pt;}
.ws44{word-spacing:2.520000pt;}
.ws61{word-spacing:2.576000pt;}
.ws8f{word-spacing:2.613333pt;}
.ws68{word-spacing:2.688000pt;}
.wsae{word-spacing:2.736000pt;}
.ws5f{word-spacing:2.744000pt;}
.ws73{word-spacing:2.800000pt;}
.ws65{word-spacing:2.912000pt;}
.ws5d{word-spacing:2.968000pt;}
.ws59{word-spacing:3.024000pt;}
.ws34{word-spacing:3.136000pt;}
.ws24{word-spacing:3.141333pt;}
.ws25{word-spacing:3.192000pt;}
.ws70{word-spacing:3.248000pt;}
.ws5e{word-spacing:3.304000pt;}
.ws74{word-spacing:3.416000pt;}
.ws2e{word-spacing:3.472000pt;}
.ws30{word-spacing:3.528000pt;}
.ws4{word-spacing:7.253333pt;}
.wse{word-spacing:2206.566400pt;}
._14{margin-left:-867.933257pt;}
._5{margin-left:-29.237333pt;}
._2{margin-left:-20.390933pt;}
._6{margin-left:-15.590400pt;}
._e{margin-left:-13.056000pt;}
._16{margin-left:-12.137067pt;}
._12{margin-left:-10.513067pt;}
._7{margin-left:-8.984533pt;}
._10{margin-left:-7.983467pt;}
._11{margin-left:-7.091467pt;}
._0{margin-left:-6.182400pt;}
._a{margin-left:-5.241600pt;}
._8{margin-left:-4.106667pt;}
._9{margin-left:-3.050667pt;}
._1{margin-left:-1.650133pt;}
._4{width:1.717333pt;}
._f{width:2.617067pt;}
._3{width:4.181333pt;}
._15{width:8.443200pt;}
._c{width:71.228800pt;}
._d{width:183.110400pt;}
._b{width:234.144000pt;}
._13{width:1762.645333pt;}
.fs7{font-size:28.000000pt;}
.fs8{font-size:32.000000pt;}
.fs6{font-size:37.333333pt;}
.fse{font-size:37.387200pt;}
.fs11{font-size:38.000000pt;}
.fs10{font-size:41.856533pt;}
.fsb{font-size:42.666667pt;}
.fsf{font-size:42.728533pt;}
.fsa{font-size:45.333333pt;}
.fs4{font-size:48.000000pt;}
.fsc{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fsd{font-size:56.000000pt;}
.fs1{font-size:74.666667pt;}
.fs9{font-size:85.333333pt;}
.fs3{font-size:90.666667pt;}
.fs2{font-size:117.333333pt;}
.fs0{font-size:672.000000pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:38.612000pt;}
.y101{bottom:42.103333pt;}
.y63{bottom:47.240267pt;}
.y37{bottom:47.393867pt;}
.y36{bottom:47.394000pt;}
.yd{bottom:54.612000pt;}
.y153{bottom:106.491867pt;}
.y9e{bottom:112.042133pt;}
.yb8{bottom:112.042267pt;}
.y152{bottom:119.720267pt;}
.y9d{bottom:127.986800pt;}
.yb7{bottom:127.986933pt;}
.y151{bottom:132.948533pt;}
.y62{bottom:133.089333pt;}
.y35{bottom:135.543067pt;}
.y9c{bottom:143.931467pt;}
.yb6{bottom:143.931600pt;}
.y34{bottom:146.209733pt;}
.ya9{bottom:159.876133pt;}
.y9b{bottom:159.876267pt;}
.y33{bottom:164.435467pt;}
.y61{bottom:166.433067pt;}
.y150{bottom:172.633600pt;}
.y32{bottom:175.102133pt;}
.y110{bottom:175.348933pt;}
.ya8{bottom:175.820800pt;}
.y9a{bottom:175.820933pt;}
.y60{bottom:181.099733pt;}
.y31{bottom:185.768800pt;}
.y14f{bottom:185.861867pt;}
.y10f{bottom:188.576933pt;}
.ya7{bottom:191.765467pt;}
.y99{bottom:191.765600pt;}
.y5f{bottom:195.766400pt;}
.y30{bottom:196.435467pt;}
.y14e{bottom:199.089867pt;}
.y10e{bottom:201.805067pt;}
.ya6{bottom:207.710133pt;}
.y98{bottom:207.710267pt;}
.y5e{bottom:210.433067pt;}
.y14d{bottom:212.318000pt;}
.y10d{bottom:215.032933pt;}
.y2f{bottom:218.440667pt;}
.y97{bottom:223.654800pt;}
.y14c{bottom:225.545867pt;}
.y2e{bottom:229.640667pt;}
.y14b{bottom:238.773867pt;}
.y5d{bottom:238.779600pt;}
.y96{bottom:239.599467pt;}
.yb9{bottom:239.599600pt;}
.y2d{bottom:240.840667pt;}
.y14a{bottom:252.002000pt;}
.yd0{bottom:252.802133pt;}
.y5c{bottom:253.446267pt;}
.ya5{bottom:255.544133pt;}
.y95{bottom:255.544267pt;}
.y2c{bottom:259.599733pt;}
.ycf{bottom:264.140667pt;}
.y149{bottom:265.229867pt;}
.y5b{bottom:268.112933pt;}
.y2b{bottom:270.799733pt;}
.ya4{bottom:271.488800pt;}
.y94{bottom:271.488933pt;}
.yce{bottom:275.479333pt;}
.y148{bottom:278.457867pt;}
.y5a{bottom:282.779600pt;}
.y93{bottom:287.433467pt;}
.yb5{bottom:287.433600pt;}
.y147{bottom:291.686000pt;}
.y59{bottom:297.446267pt;}
.y92{bottom:303.378133pt;}
.yb4{bottom:303.378267pt;}
.y146{bottom:304.913867pt;}
.y145{bottom:318.141867pt;}
.ya3{bottom:319.322800pt;}
.y91{bottom:319.322933pt;}
.y58{bottom:325.792667pt;}
.y144{bottom:331.370000pt;}
.ya2{bottom:335.267467pt;}
.y90{bottom:335.267600pt;}
.y57{bottom:340.459333pt;}
.y143{bottom:344.598000pt;}
.y8f{bottom:351.212133pt;}
.yb3{bottom:351.212267pt;}
.y56{bottom:355.126000pt;}
.y142{bottom:357.825867pt;}
.y8e{bottom:367.156800pt;}
.yb2{bottom:367.156933pt;}
.y55{bottom:369.792667pt;}
.y141{bottom:371.054000pt;}
.y8d{bottom:383.101467pt;}
.yb1{bottom:383.101600pt;}
.y140{bottom:384.282000pt;}
.y54{bottom:384.459333pt;}
.y13f{bottom:397.509867pt;}
.ya1{bottom:399.046133pt;}
.y8c{bottom:399.046267pt;}
.y53{bottom:399.577467pt;}
.y13e{bottom:410.737867pt;}
.ya0{bottom:414.990800pt;}
.y8b{bottom:414.990933pt;}
.y13d{bottom:423.966000pt;}
.y52{bottom:427.923867pt;}
.y8a{bottom:430.935600pt;}
.y13c{bottom:437.193867pt;}
.y51{bottom:442.590533pt;}
.y9f{bottom:446.880267pt;}
.y13b{bottom:450.421867pt;}
.y50{bottom:457.257200pt;}
.y89{bottom:462.824933pt;}
.y13a{bottom:463.650000pt;}
.ybb{bottom:467.288667pt;}
.y4f{bottom:471.923867pt;}
.y139{bottom:476.877867pt;}
.yba{bottom:478.627200pt;}
.ybe{bottom:478.769600pt;}
.y138{bottom:490.105867pt;}
.ybd{bottom:494.714267pt;}
.y4e{bottom:500.270400pt;}
.y137{bottom:503.334000pt;}
.ybc{bottom:510.658933pt;}
.y4d{bottom:514.937067pt;}
.y136{bottom:516.561867pt;}
.ydc{bottom:526.603600pt;}
.y4c{bottom:529.603733pt;}
.y135{bottom:529.789867pt;}
.ydb{bottom:542.548267pt;}
.y134{bottom:543.018000pt;}
.y4b{bottom:544.270400pt;}
.ycd{bottom:547.439600pt;}
.y5{bottom:555.287733pt;}
.y133{bottom:556.245867pt;}
.yda{bottom:558.492933pt;}
.ycc{bottom:558.778133pt;}
.y88{bottom:563.618533pt;}
.y6a{bottom:563.618667pt;}
.y132{bottom:569.473867pt;}
.y4a{bottom:572.616800pt;}
.y69{bottom:574.285333pt;}
.yd9{bottom:574.437600pt;}
.y4{bottom:577.687733pt;}
.y87{bottom:578.285200pt;}
.y131{bottom:582.702000pt;}
.y68{bottom:584.952000pt;}
.y49{bottom:587.283467pt;}
.yd8{bottom:590.382267pt;}
.y86{bottom:592.951867pt;}
.y67{bottom:595.618667pt;}
.y130{bottom:595.929867pt;}
.ybf{bottom:597.130933pt;}
.y3{bottom:600.087733pt;}
.y48{bottom:601.950133pt;}
.y66{bottom:606.285333pt;}
.yd7{bottom:606.326933pt;}
.y85{bottom:607.618533pt;}
.y12f{bottom:609.157867pt;}
.y47{bottom:616.616800pt;}
.y65{bottom:616.952000pt;}
.yd6{bottom:622.271600pt;}
.y84{bottom:622.285200pt;}
.y12e{bottom:622.386000pt;}
.y2{bottom:622.487733pt;}
.y2a{bottom:622.793067pt;}
.yc0{bottom:627.956680pt;}
.y46{bottom:631.283467pt;}
.y12d{bottom:635.613867pt;}
.y29{bottom:636.793067pt;}
.y83{bottom:636.951867pt;}
.yd5{bottom:638.216267pt;}
.y45{bottom:646.401600pt;}
.y12c{bottom:648.841867pt;}
.y28{bottom:650.793067pt;}
.y82{bottom:651.618533pt;}
.yd4{bottom:654.160933pt;}
.y12b{bottom:662.070000pt;}
.y81{bottom:666.285200pt;}
.yd3{bottom:670.105600pt;}
.yc7{bottom:671.822613pt;}
.y44{bottom:674.748000pt;}
.y12a{bottom:675.297867pt;}
.yff{bottom:676.699467pt;}
.y27{bottom:679.244533pt;}
.y80{bottom:680.951867pt;}
.yc6{bottom:684.641173pt;}
.yd2{bottom:686.050267pt;}
.yb{bottom:686.925067pt;}
.yfe{bottom:688.038000pt;}
.y129{bottom:688.526000pt;}
.y43{bottom:689.414667pt;}
.y26{bottom:690.444533pt;}
.y7f{bottom:695.618533pt;}
.yc5{bottom:697.459733pt;}
.yfd{bottom:699.376667pt;}
.y25{bottom:701.644533pt;}
.y128{bottom:701.753867pt;}
.yd1{bottom:701.994933pt;}
.y42{bottom:704.081333pt;}
.y7e{bottom:710.285200pt;}
.yfc{bottom:710.715200pt;}
.y24{bottom:712.844533pt;}
.y127{bottom:714.982000pt;}
.yf9{bottom:717.939600pt;}
.yc9{bottom:718.576267pt;}
.y41{bottom:718.748000pt;}
.ya{bottom:720.258400pt;}
.yfb{bottom:722.053733pt;}
.y23{bottom:724.044533pt;}
.y7d{bottom:724.951867pt;}
.y126{bottom:728.210000pt;}
.yfa{bottom:733.392400pt;}
.yf8{bottom:733.884267pt;}
.y22{bottom:735.244533pt;}
.y7c{bottom:739.618533pt;}
.y125{bottom:741.437867pt;}
.y21{bottom:746.444533pt;}
.y40{bottom:747.094533pt;}
.yf7{bottom:749.828933pt;}
.y9{bottom:753.591733pt;}
.y124{bottom:754.666000pt;}
.ydd{bottom:756.469067pt;}
.y20{bottom:757.644533pt;}
.y100{bottom:759.982667pt;}
.y3f{bottom:761.761200pt;}
.y107{bottom:764.131467pt;}
.yf6{bottom:765.773600pt;}
.y123{bottom:767.894000pt;}
.y1f{bottom:768.844533pt;}
.yaf{bottom:769.700800pt;}
.y7b{bottom:769.957067pt;}
.y3e{bottom:776.427867pt;}
.yc4{bottom:777.869573pt;}
.y10a{bottom:778.300800pt;}
.y106{bottom:778.302933pt;}
.y1e{bottom:780.044533pt;}
.yae{bottom:780.367467pt;}
.y122{bottom:781.121867pt;}
.yf5{bottom:781.718267pt;}
.y7a{bottom:784.623733pt;}
.y8{bottom:786.925067pt;}
.yc3{bottom:790.688133pt;}
.yad{bottom:791.034133pt;}
.y3d{bottom:791.094533pt;}
.y1d{bottom:791.244533pt;}
.ye6{bottom:793.546667pt;}
.y121{bottom:794.350000pt;}
.yf4{bottom:797.662933pt;}
.y79{bottom:799.290400pt;}
.yac{bottom:801.700800pt;}
.y1c{bottom:802.444533pt;}
.ye5{bottom:804.746667pt;}
.y120{bottom:807.578000pt;}
.yab{bottom:812.367467pt;}
.yf3{bottom:813.607600pt;}
.y1b{bottom:813.644533pt;}
.y78{bottom:813.957067pt;}
.ye4{bottom:815.946667pt;}
.y7{bottom:820.258400pt;}
.y11f{bottom:820.805867pt;}
.yc8{bottom:822.675600pt;}
.yaa{bottom:823.034133pt;}
.y1a{bottom:824.844533pt;}
.ye3{bottom:827.146667pt;}
.y77{bottom:828.623733pt;}
.yf2{bottom:829.552267pt;}
.y11e{bottom:834.034000pt;}
.y19{bottom:836.044533pt;}
.ye2{bottom:838.346667pt;}
.y105{bottom:840.378933pt;}
.y76{bottom:843.290400pt;}
.yf1{bottom:845.496933pt;}
.y18{bottom:847.244667pt;}
.y11d{bottom:847.262000pt;}
.ye1{bottom:849.546667pt;}
.ycb{bottom:851.323040pt;}
.y6{bottom:853.591733pt;}
.y75{bottom:857.957067pt;}
.y17{bottom:858.444667pt;}
.y11c{bottom:860.489867pt;}
.ye0{bottom:860.746667pt;}
.yf0{bottom:861.441600pt;}
.yca{bottom:864.141600pt;}
.y16{bottom:869.644667pt;}
.yc2{bottom:870.218907pt;}
.ydf{bottom:871.946667pt;}
.y74{bottom:872.623733pt;}
.y11b{bottom:873.718000pt;}
.yef{bottom:877.386267pt;}
.y3c{bottom:879.118133pt;}
.y15{bottom:880.844667pt;}
.yc1{bottom:883.037467pt;}
.y11a{bottom:886.946000pt;}
.y73{bottom:887.290400pt;}
.y14{bottom:892.044533pt;}
.y104{bottom:892.832267pt;}
.yee{bottom:893.330933pt;}
.y119{bottom:900.173867pt;}
.y72{bottom:901.957067pt;}
.y3b{bottom:905.784800pt;}
.yed{bottom:909.275600pt;}
.y118{bottom:913.402000pt;}
.y71{bottom:916.623733pt;}
.y13{bottom:918.362667pt;}
.yc{bottom:921.095200pt;}
.yec{bottom:925.220267pt;}
.y117{bottom:926.630000pt;}
.y70{bottom:931.290400pt;}
.y3a{bottom:932.451467pt;}
.y116{bottom:939.857867pt;}
.yeb{bottom:941.164933pt;}
.y12{bottom:944.680800pt;}
.y103{bottom:945.285600pt;}
.y6f{bottom:945.957067pt;}
.y115{bottom:953.086000pt;}
.yea{bottom:957.109600pt;}
.y39{bottom:959.118133pt;}
.y1{bottom:965.669333pt;}
.y114{bottom:966.314000pt;}
.y11{bottom:970.998933pt;}
.ye9{bottom:973.054133pt;}
.y6e{bottom:976.295733pt;}
.y113{bottom:979.541867pt;}
.y38{bottom:985.784800pt;}
.y6d{bottom:986.295733pt;}
.y10c{bottom:988.998800pt;}
.ye8{bottom:988.998933pt;}
.y109{bottom:989.699467pt;}
.y112{bottom:992.770000pt;}
.y6c{bottom:996.295733pt;}
.y10{bottom:997.317067pt;}
.y102{bottom:997.738933pt;}
.y108{bottom:1002.499467pt;}
.yde{bottom:1002.585867pt;}
.y10b{bottom:1004.943467pt;}
.ye7{bottom:1004.943600pt;}
.y111{bottom:1005.998000pt;}
.y6b{bottom:1006.295733pt;}
.yf{bottom:1008.517067pt;}
.y64{bottom:1068.661333pt;}
.yb0{bottom:1068.661467pt;}
.ha{height:27.290667pt;}
.h9{height:27.626667pt;}
.h8{height:27.701333pt;}
.hc{height:29.056000pt;}
.h1f{height:31.958000pt;}
.h18{height:32.032000pt;}
.hf{height:33.138667pt;}
.h7{height:33.898667pt;}
.h19{height:33.947578pt;}
.h11{height:36.608000pt;}
.h1b{height:38.741333pt;}
.h1a{height:38.797508pt;}
.h6{height:39.573333pt;}
.h10{height:41.162667pt;}
.h13{height:41.184000pt;}
.h12{height:41.664000pt;}
.h16{height:42.357333pt;}
.h1e{height:42.610667pt;}
.h15{height:43.472000pt;}
.h14{height:43.978667pt;}
.hb{height:45.760000pt;}
.h17{height:48.048000pt;}
.h1d{height:48.608000pt;}
.he{height:49.066667pt;}
.h3{height:55.402667pt;}
.h5{height:67.274667pt;}
.hd{height:78.506667pt;}
.h4{height:87.061333pt;}
.h1c{height:254.537333pt;}
.h2{height:498.624000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:321.260000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x61{left:8.162533pt;}
.x1{left:36.283467pt;}
.xd{left:37.795333pt;}
.x8{left:62.066000pt;}
.xe{left:66.141733pt;}
.x33{left:74.200800pt;}
.x54{left:76.636133pt;}
.x34{left:77.526800pt;}
.x56{left:79.641467pt;}
.x6d{left:81.259867pt;}
.x55{left:83.029467pt;}
.xa{left:86.556933pt;}
.x50{left:89.003600pt;}
.x57{left:92.008133pt;}
.x52{left:99.965600pt;}
.x10{left:103.937067pt;}
.x6e{left:109.572133pt;}
.x3f{left:113.146000pt;}
.x13{left:115.275600pt;}
.x38{left:124.197867pt;}
.x40{left:136.486400pt;}
.x39{left:137.626267pt;}
.x65{left:138.710533pt;}
.x66{left:144.079333pt;}
.x35{left:151.845067pt;}
.x9{left:153.056533pt;}
.x3d{left:155.697067pt;}
.x67{left:157.612533pt;}
.x37{left:161.685333pt;}
.x3e{left:164.685333pt;}
.x36{left:167.769200pt;}
.x41{left:171.513200pt;}
.x6f{left:173.396000pt;}
.x3a{left:176.121067pt;}
.x11{left:182.320267pt;}
.x68{left:185.303733pt;}
.x12{left:186.768267pt;}
.x62{left:189.344800pt;}
.x70{left:203.718533pt;}
.x2{left:207.202400pt;}
.x69{left:211.820267pt;}
.x4b{left:217.645361pt;}
.x5e{left:222.012133pt;}
.x42{left:223.623600pt;}
.x5c{left:225.736133pt;}
.x63{left:228.640800pt;}
.x5d{left:230.309467pt;}
.x3{left:234.027200pt;}
.x51{left:237.017867pt;}
.x49{left:241.477200pt;}
.x3b{left:244.724400pt;}
.x6{left:254.664667pt;}
.x4a{left:259.284316pt;}
.x64{left:278.910667pt;}
.x6a{left:281.084000pt;}
.x47{left:283.093200pt;}
.x48{left:284.973255pt;}
.x5f{left:287.186800pt;}
.x71{left:289.752133pt;}
.x15{left:296.017067pt;}
.x7{left:303.710267pt;}
.x6b{left:310.134133pt;}
.x45{left:311.516400pt;}
.x46{left:315.169690pt;}
.x2c{left:331.931333pt;}
.x72{left:337.114000pt;}
.x6c{left:341.794667pt;}
.x73{left:370.451600pt;}
.x22{left:375.721467pt;}
.x21{left:383.065733pt;}
.x28{left:386.873467pt;}
.x32{left:390.919333pt;}
.x25{left:396.109867pt;}
.x4{left:401.053333pt;}
.x1e{left:401.945867pt;}
.x3c{left:406.299200pt;}
.x75{left:415.015200pt;}
.x27{left:417.564667pt;}
.x74{left:421.417333pt;}
.x1a{left:424.226533pt;}
.x80{left:430.690133pt;}
.x30{left:432.240933pt;}
.x19{left:434.552800pt;}
.x4c{left:435.655733pt;}
.x2d{left:443.742533pt;}
.x60{left:445.032133pt;}
.x79{left:447.206133pt;}
.x76{left:448.900533pt;}
.xb{left:459.615333pt;}
.x53{left:466.987067pt;}
.x5{left:469.073867pt;}
.x7a{left:471.037067pt;}
.x81{left:477.007600pt;}
.x77{left:486.697067pt;}
.x4d{left:497.627200pt;}
.x78{left:507.067467pt;}
.x16{left:508.817067pt;}
.x4f{left:523.263746pt;}
.x4e{left:532.279467pt;}
.x7b{left:536.540667pt;}
.x18{left:545.588000pt;}
.x1d{left:553.754133pt;}
.x5a{left:556.686800pt;}
.x59{left:560.756133pt;}
.x58{left:562.324133pt;}
.x7c{left:565.383867pt;}
.x2a{left:566.504000pt;}
.x7d{left:589.550667pt;}
.x26{left:590.520933pt;}
.x31{left:592.570000pt;}
.x17{left:594.439733pt;}
.x1c{left:595.987067pt;}
.x82{left:598.664667pt;}
.x5b{left:601.281467pt;}
.x1f{left:602.634133pt;}
.x83{left:603.845200pt;}
.x23{left:605.360800pt;}
.x20{left:612.773867pt;}
.x2e{left:617.706800pt;}
.x1b{left:619.466800pt;}
.x2f{left:622.347067pt;}
.x29{left:623.623600pt;}
.x14{left:626.053467pt;}
.x2b{left:634.266667pt;}
.x7e{left:637.301467pt;}
.x24{left:646.538667pt;}
.xc{left:654.033467pt;}
.x43{left:658.265733pt;}
.x7f{left:662.115600pt;}
.xf{left:699.379867pt;}
.x44{left:714.954075pt;}
}




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