
    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_16dced7f6843ca3fb45ced38.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_7bbbf14f4bb5d7a1c3308e67.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_22a289cdad6c0dd551a63a3a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959961;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_63c1b6f7f86fef62aa6144fb.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.933000;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_091b8228b1328c334ce0fd7c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.942000;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_836dea7d70842c712482ad07.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942000;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_2b805dc5711bafaf27092f53.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.711000;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_32cc2d71032cec0af4f1803d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.732000;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_808b12c8fb8b5b1426af6683.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.946000;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_07dad2e3ed0997ba0ea7f4af.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.973000;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_4bda813091f3df0ac248bd10.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.700000;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_704d10dc9c60feef0e4ea5a9.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.942000;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_3b5d52c833fde02fd67604bf.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_3f628d86bf28d7ea968413b8.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.970000;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_b8f183e169970303a8120856.woff2')format("woff");}.fff{font-family:fff;line-height:0.715000;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_6c5489512b7360838b91575f.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.955000;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;}
.m9{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);}
.m4d{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.245026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245026,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.245040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245040,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.245379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245379,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.245400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245400,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.245447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245447,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.245658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245658,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.245667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245667,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.245736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245736,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.245781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245781,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.245858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245858,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.245864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245864,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.245869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245869,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.245955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245955,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.245960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245960,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.245997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245997,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.246005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246005,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.246033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246033,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.246062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246062,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.246081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246081,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.246158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246158,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.246183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246183,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.246326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246326,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.246408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246408,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.246531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246531,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.246561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246561,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.246605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246605,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.246974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246974,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.247111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247111,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.247129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247129,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.247147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247147,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.247239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247239,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.247260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247260,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.247261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247261,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.247262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247262,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.247274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247274,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.247302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247302,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.247343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247343,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.247400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247400,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.247413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247413,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.247474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247474,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.247483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247483,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.247518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247518,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.247605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247605,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.247613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247613,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.247629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247629,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.247682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247682,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.247710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247710,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.247714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247714,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.247739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247739,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.247762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247762,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.247774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247774,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.247821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247821,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.247845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247845,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.247910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247910,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.248086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248086,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.248126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248126,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.248155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248155,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.248157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248157,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.248171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248171,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.248234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248234,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.248279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248279,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.248357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248357,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.248374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248374,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.248376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248376,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.248419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248419,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.248486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248486,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.248489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248489,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.248508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248508,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.248583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248583,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.248586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248586,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.248598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248598,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.248602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248602,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.248612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248612,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.248640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248640,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.248669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248669,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.248683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248683,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.248687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248687,0.000000,0.000000,0.250000,0,0);}
.md{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);}
.m36{transform:matrix(0.248717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248717,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.248779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248779,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.248793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248793,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.248826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248826,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.248834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248834,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.248902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248902,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.248940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248940,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.248958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248958,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.249019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249019,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249093,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.249119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249119,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.249145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249145,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.249168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249168,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.249202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249202,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.249231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249231,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.249248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249248,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.249252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249252,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.249271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249271,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.249345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249345,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.249369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249369,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.249379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249379,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.249429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249429,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.249433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249433,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.249440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249440,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.249460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249460,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.249502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249502,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.249548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249548,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.249563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249563,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.249593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249593,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.249605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249605,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.249634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249634,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.249667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249667,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249676,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.249695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249695,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.249698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249698,0.000000,0.000000,0.250000,0,0);}
.m3d{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);}
.m7{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);}
.m67{transform:matrix(0.249776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249776,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.249792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249792,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.249881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249881,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.249888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249888,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.249962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249962,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.249993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249993,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:17.982000px;}
.v1{vertical-align:20.979000px;}
.lsc{letter-spacing:-5.985000px;}
.ls6{letter-spacing:-2.457000px;}
.ls1a{letter-spacing:-1.653000px;}
.ls7{letter-spacing:-0.959472px;}
.ls20{letter-spacing:-0.855000px;}
.ls8{letter-spacing:-0.819000px;}
.ls17{letter-spacing:-0.798000px;}
.ls23{letter-spacing:-0.741000px;}
.ls14{letter-spacing:-0.693000px;}
.ls1d{letter-spacing:-0.684000px;}
.lsd{letter-spacing:-0.630000px;}
.ls1c{letter-spacing:-0.627000px;}
.ls21{letter-spacing:-0.570000px;}
.ls9{letter-spacing:-0.567000px;}
.ls1b{letter-spacing:-0.513000px;}
.lse{letter-spacing:-0.504000px;}
.ls16{letter-spacing:-0.456000px;}
.lsa{letter-spacing:-0.441000px;}
.ls18{letter-spacing:-0.399000px;}
.ls15{letter-spacing:-0.342000px;}
.ls22{letter-spacing:-0.285000px;}
.ls10{letter-spacing:-0.252000px;}
.ls19{letter-spacing:-0.228000px;}
.lsf{letter-spacing:-0.189000px;}
.ls1f{letter-spacing:-0.171000px;}
.lsb{letter-spacing:-0.126000px;}
.ls13{letter-spacing:-0.114000px;}
.ls4{letter-spacing:-0.108000px;}
.ls5{letter-spacing:-0.063000px;}
.ls11{letter-spacing:-0.057000px;}
.ls3{letter-spacing:-0.054000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000300px;}
.ls12{letter-spacing:0.171000px;}
.ls1{letter-spacing:0.900000px;}
.ls1e{letter-spacing:5.557500px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws69{word-spacing:-14.301000px;}
.ws0{word-spacing:-13.986000px;}
.ws3{word-spacing:-13.356000px;}
.ws7{word-spacing:-13.332000px;}
.wsa0{word-spacing:-13.224000px;}
.wsd4{word-spacing:-13.053000px;}
.ws7e{word-spacing:-12.939000px;}
.wsed{word-spacing:-12.882000px;}
.wsd2{word-spacing:-12.825000px;}
.wsd5{word-spacing:-12.654000px;}
.ws9{word-spacing:-12.601066px;}
.wsd6{word-spacing:-12.369000px;}
.wsfc{word-spacing:-12.255000px;}
.ws68{word-spacing:-11.592000px;}
.wsd3{word-spacing:-11.286000px;}
.ws5d{word-spacing:-9.408000px;}
.ws2{word-spacing:-8.820000px;}
.ws4{word-spacing:-8.681400px;}
.ws8{word-spacing:-8.232000px;}
.ws5{word-spacing:-6.879600px;}
.wsef{word-spacing:-3.477000px;}
.wsb2{word-spacing:-3.150000px;}
.ws6c{word-spacing:-2.961000px;}
.wsee{word-spacing:-2.907000px;}
.ws16{word-spacing:-2.898000px;}
.ws25{word-spacing:-2.835000px;}
.ws2e{word-spacing:-2.709000px;}
.wsec{word-spacing:-2.679000px;}
.ws58{word-spacing:-2.646000px;}
.wsa5{word-spacing:-2.622000px;}
.wscf{word-spacing:-2.583000px;}
.ws99{word-spacing:-2.565000px;}
.ws92{word-spacing:-2.520000px;}
.wsda{word-spacing:-2.508000px;}
.ws2a{word-spacing:-2.457000px;}
.ws42{word-spacing:-2.394000px;}
.wsdc{word-spacing:-2.337000px;}
.ws7a{word-spacing:-2.331000px;}
.ws10{word-spacing:-2.322000px;}
.wsd0{word-spacing:-2.280000px;}
.ws93{word-spacing:-2.268000px;}
.wse1{word-spacing:-2.223000px;}
.ws20{word-spacing:-2.205000px;}
.wscc{word-spacing:-2.142000px;}
.wsd9{word-spacing:-2.109000px;}
.ws47{word-spacing:-2.079000px;}
.wse9{word-spacing:-2.052000px;}
.ws1d{word-spacing:-2.016000px;}
.wsb7{word-spacing:-1.995000px;}
.ws59{word-spacing:-1.953000px;}
.wsb6{word-spacing:-1.938000px;}
.ws4f{word-spacing:-1.890000px;}
.wsf3{word-spacing:-1.881000px;}
.ws51{word-spacing:-1.827000px;}
.ws8c{word-spacing:-1.824000px;}
.ws96{word-spacing:-1.764000px;}
.wsaf{word-spacing:-1.710000px;}
.ws8b{word-spacing:-1.653000px;}
.ws74{word-spacing:-1.638000px;}
.ws55{word-spacing:-1.575000px;}
.ws30{word-spacing:-1.512000px;}
.wsa8{word-spacing:-1.482000px;}
.ws60{word-spacing:-1.449000px;}
.ws19{word-spacing:-1.386000px;}
.wsa9{word-spacing:-1.368000px;}
.ws2c{word-spacing:-1.323000px;}
.wsdb{word-spacing:-1.311000px;}
.ws36{word-spacing:-1.260000px;}
.ws90{word-spacing:-1.254000px;}
.wsc1{word-spacing:-1.197000px;}
.wsb9{word-spacing:-1.140000px;}
.ws28{word-spacing:-1.134000px;}
.ws9a{word-spacing:-1.083000px;}
.ws4c{word-spacing:-1.071000px;}
.ws9b{word-spacing:-1.026000px;}
.wsde{word-spacing:-0.969000px;}
.ws6{word-spacing:-0.945000px;}
.ws11{word-spacing:-0.918000px;}
.ws63{word-spacing:-0.882000px;}
.ws81{word-spacing:-0.819000px;}
.ws54{word-spacing:-0.756000px;}
.ws31{word-spacing:-0.693000px;}
.wsa7{word-spacing:-0.684000px;}
.ws64{word-spacing:-0.630000px;}
.ws27{word-spacing:-0.567000px;}
.wsc3{word-spacing:-0.513000px;}
.wsc0{word-spacing:-0.456000px;}
.wsa{word-spacing:-0.450000px;}
.ws4d{word-spacing:-0.441000px;}
.wsf0{word-spacing:-0.399000px;}
.ws48{word-spacing:-0.378000px;}
.wsaa{word-spacing:-0.342000px;}
.ws26{word-spacing:-0.315000px;}
.ws6a{word-spacing:-0.252000px;}
.ws22{word-spacing:-0.210000px;}
.ws1a{word-spacing:-0.189000px;}
.ws8a{word-spacing:-0.171000px;}
.wsbd{word-spacing:-0.126000px;}
.ws85{word-spacing:-0.114000px;}
.ws32{word-spacing:-0.063000px;}
.ws1{word-spacing:0.000000px;}
.wsbc{word-spacing:0.057000px;}
.ws17{word-spacing:0.063000px;}
.ws8d{word-spacing:0.114000px;}
.ws4b{word-spacing:0.126000px;}
.wsc2{word-spacing:0.171000px;}
.ws61{word-spacing:0.189000px;}
.wsba{word-spacing:0.228000px;}
.ws62{word-spacing:0.252000px;}
.ws6e{word-spacing:0.315000px;}
.wseb{word-spacing:0.342000px;}
.ws33{word-spacing:0.378000px;}
.wsd1{word-spacing:0.399000px;}
.ws40{word-spacing:0.441000px;}
.ws8f{word-spacing:0.456000px;}
.ws5b{word-spacing:0.504000px;}
.ws23{word-spacing:0.567000px;}
.ws98{word-spacing:0.570000px;}
.wsb{word-spacing:0.594000px;}
.wsa1{word-spacing:0.627000px;}
.ws87{word-spacing:0.630000px;}
.wsae{word-spacing:0.684000px;}
.ws7b{word-spacing:0.693000px;}
.ws66{word-spacing:0.741000px;}
.wsca{word-spacing:0.756000px;}
.ws67{word-spacing:0.798000px;}
.ws3e{word-spacing:0.819000px;}
.ws9d{word-spacing:0.855000px;}
.ws77{word-spacing:0.882000px;}
.wsb1{word-spacing:0.912000px;}
.ws57{word-spacing:0.945000px;}
.ws9c{word-spacing:0.969000px;}
.ws6b{word-spacing:1.008000px;}
.ws53{word-spacing:1.071000px;}
.wsa2{word-spacing:1.083000px;}
.ws6d{word-spacing:1.134000px;}
.ws5a{word-spacing:1.197000px;}
.wsbf{word-spacing:1.260000px;}
.wsa4{word-spacing:1.311000px;}
.ws1b{word-spacing:1.323000px;}
.wsd7{word-spacing:1.368000px;}
.ws37{word-spacing:1.386000px;}
.ws2b{word-spacing:1.449000px;}
.wsea{word-spacing:1.482000px;}
.ws65{word-spacing:1.512000px;}
.ws84{word-spacing:1.539000px;}
.ws3f{word-spacing:1.575000px;}
.wsf6{word-spacing:1.596000px;}
.ws94{word-spacing:1.638000px;}
.wsdf{word-spacing:1.653000px;}
.ws29{word-spacing:1.701000px;}
.wsdd{word-spacing:1.710000px;}
.wsf1{word-spacing:1.767000px;}
.ws8e{word-spacing:1.824000px;}
.ws79{word-spacing:1.827000px;}
.ws9e{word-spacing:1.881000px;}
.ws91{word-spacing:1.890000px;}
.ws2f{word-spacing:1.953000px;}
.wsc{word-spacing:1.998000px;}
.wsc7{word-spacing:2.016000px;}
.ws3a{word-spacing:2.079000px;}
.wsfa{word-spacing:2.109000px;}
.ws5f{word-spacing:2.142000px;}
.ws34{word-spacing:2.205000px;}
.wsa3{word-spacing:2.280000px;}
.ws52{word-spacing:2.331000px;}
.ws75{word-spacing:2.394000px;}
.ws1c{word-spacing:2.457000px;}
.ws38{word-spacing:2.520000px;}
.wsad{word-spacing:2.565000px;}
.ws43{word-spacing:2.583000px;}
.wse0{word-spacing:2.622000px;}
.ws88{word-spacing:2.646000px;}
.ws50{word-spacing:2.709000px;}
.wsb8{word-spacing:2.793000px;}
.wsc8{word-spacing:2.961000px;}
.wsf{word-spacing:2.970000px;}
.wsab{word-spacing:3.021000px;}
.ws78{word-spacing:3.024000px;}
.wsc9{word-spacing:3.087000px;}
.wsfd{word-spacing:3.135000px;}
.ws2d{word-spacing:3.150000px;}
.ws12{word-spacing:3.186000px;}
.wsd8{word-spacing:3.192000px;}
.wsb3{word-spacing:3.213000px;}
.ws107{word-spacing:3.249000px;}
.ws82{word-spacing:3.276000px;}
.wsa6{word-spacing:3.306000px;}
.ws76{word-spacing:3.339000px;}
.ws1e{word-spacing:3.402000px;}
.ws56{word-spacing:3.465000px;}
.ws6f{word-spacing:3.528000px;}
.wsf2{word-spacing:3.534000px;}
.wsb5{word-spacing:3.591000px;}
.ws70{word-spacing:3.654000px;}
.wsbb{word-spacing:3.717000px;}
.ws95{word-spacing:3.780000px;}
.ws44{word-spacing:3.843000px;}
.ws89{word-spacing:3.876000px;}
.ws80{word-spacing:3.906000px;}
.wsd{word-spacing:3.942000px;}
.ws3b{word-spacing:3.969000px;}
.ws86{word-spacing:4.032000px;}
.ws100{word-spacing:4.047000px;}
.ws97{word-spacing:4.095000px;}
.ws101{word-spacing:4.104000px;}
.ws4a{word-spacing:4.221000px;}
.ws24{word-spacing:4.284000px;}
.ws18{word-spacing:4.347000px;}
.ws5c{word-spacing:4.410000px;}
.wsb0{word-spacing:4.446000px;}
.wsce{word-spacing:4.473000px;}
.wsb4{word-spacing:4.599000px;}
.ws35{word-spacing:4.725000px;}
.wsc4{word-spacing:4.788000px;}
.ws103{word-spacing:4.845000px;}
.ws9f{word-spacing:4.851000px;}
.wse5{word-spacing:4.902000px;}
.ws72{word-spacing:4.914000px;}
.wse8{word-spacing:4.959000px;}
.ws46{word-spacing:4.977000px;}
.ws106{word-spacing:5.073000px;}
.ws3d{word-spacing:5.103000px;}
.wscd{word-spacing:5.229000px;}
.wse6{word-spacing:5.358000px;}
.wsf7{word-spacing:5.415000px;}
.ws73{word-spacing:5.418000px;}
.wsf8{word-spacing:5.472000px;}
.ws1f{word-spacing:5.481000px;}
.ws21{word-spacing:5.502000px;}
.ws49{word-spacing:5.544000px;}
.ws7d{word-spacing:5.607000px;}
.ws104{word-spacing:5.643000px;}
.ws83{word-spacing:5.700000px;}
.wsfb{word-spacing:5.757000px;}
.ws3c{word-spacing:5.796000px;}
.ws7c{word-spacing:5.859000px;}
.ws14{word-spacing:6.102000px;}
.ws71{word-spacing:6.363000px;}
.ws102{word-spacing:6.384000px;}
.ws4e{word-spacing:6.552000px;}
.ws13{word-spacing:6.588000px;}
.ws7f{word-spacing:6.615000px;}
.ws45{word-spacing:6.678000px;}
.wse7{word-spacing:6.840000px;}
.wsac{word-spacing:6.867000px;}
.wsbe{word-spacing:6.930000px;}
.wse3{word-spacing:6.954000px;}
.ws5e{word-spacing:6.993000px;}
.ws39{word-spacing:7.056000px;}
.wscb{word-spacing:7.182000px;}
.wse{word-spacing:7.290000px;}
.wsc5{word-spacing:7.308000px;}
.wsc6{word-spacing:7.560000px;}
.ws105{word-spacing:7.581000px;}
.wse4{word-spacing:7.695000px;}
.wsf9{word-spacing:7.752000px;}
.wsfe{word-spacing:8.721000px;}
.wsff{word-spacing:9.348000px;}
.wse2{word-spacing:12.312000px;}
.wsf4{word-spacing:13.623000px;}
.wsf5{word-spacing:13.737000px;}
.ws108{word-spacing:14.307000px;}
.ws15{word-spacing:17.334000px;}
.ws41{word-spacing:35.460000px;}
._21{margin-left:-12.927600px;}
._1b{margin-left:-11.907300px;}
._d{margin-left:-9.990000px;}
._11{margin-left:-8.622000px;}
._5{margin-left:-7.264800px;}
._6{margin-left:-6.174000px;}
._8{margin-left:-4.788000px;}
._0{margin-left:-3.726000px;}
._1{margin-left:-2.160000px;}
._2{margin-left:-1.080000px;}
._4{width:1.800000px;}
._7{width:2.889000px;}
._10{width:4.347000px;}
._f{width:5.481000px;}
._e{width:7.056000px;}
._14{width:9.835200px;}
._15{width:12.720000px;}
._9{width:14.766000px;}
._13{width:24.000000px;}
._20{width:25.038900px;}
._24{width:26.064900px;}
._1d{width:28.813500px;}
._c{width:35.460000px;}
._22{width:43.680000px;}
._19{width:45.230700px;}
._25{width:46.752300px;}
._1c{width:47.882400px;}
._16{width:63.726000px;}
._a{width:75.208200px;}
._b{width:101.461800px;}
._12{width:110.688000px;}
._1f{width:155.586900px;}
._26{width:158.978700px;}
._23{width:161.469300px;}
._1a{width:169.107600px;}
._1e{width:170.839200px;}
._18{width:386.622000px;}
._17{width:390.468000px;}
._3{width:1761.126000px;}
.fc3{color:rgb(0,0,128);}
.fc2{color:rgb(132,31,39);}
.fc4{color:rgb(61,57,58);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:35.100000px;}
.fs9{font-size:40.950000px;}
.fsc{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fs2{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fse{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fs8{font-size:63.000000px;}
.fsd{font-size:63.964800px;}
.fsb{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs7{font-size:84.000000px;}
.fs1{font-size:90.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y46{bottom:3.997650px;}
.y3{bottom:27.928500px;}
.y2{bottom:67.597500px;}
.y43{bottom:71.995650px;}
.y16c{bottom:72.263550px;}
.y42{bottom:83.997150px;}
.y1{bottom:84.097500px;}
.yba{bottom:85.126200px;}
.y202{bottom:85.460550px;}
.y74{bottom:87.389550px;}
.y1ed{bottom:88.654050px;}
.y233{bottom:90.304200px;}
.y266{bottom:91.051200px;}
.y16b{bottom:91.763550px;}
.y41{bottom:95.998650px;}
.yf5{bottom:97.468050px;}
.y145{bottom:97.588650px;}
.y1c1{bottom:101.359200px;}
.y199{bottom:101.813550px;}
.y201{bottom:101.962050px;}
.yb9{bottom:104.624700px;}
.y232{bottom:106.804200px;}
.y73{bottom:106.888050px;}
.y9d{bottom:106.897050px;}
.y265{bottom:107.552700px;}
.y40{bottom:108.000150px;}
.y1ec{bottom:108.154050px;}
.y16a{bottom:111.265050px;}
.yf4{bottom:116.966550px;}
.y144{bottom:117.088650px;}
.y1c0{bottom:117.860700px;}
.y198{bottom:118.313550px;}
.y200{bottom:118.463550px;}
.y231{bottom:123.304200px;}
.y264{bottom:124.054200px;}
.yb8{bottom:124.124700px;}
.y118{bottom:125.980050px;}
.y44{bottom:126.142650px;}
.y72{bottom:126.388050px;}
.y9c{bottom:126.395550px;}
.y1eb{bottom:127.655550px;}
.y169{bottom:130.763550px;}
.y197{bottom:134.813550px;}
.y1ff{bottom:134.963550px;}
.yf3{bottom:136.465050px;}
.y143{bottom:136.588650px;}
.y230{bottom:139.801200px;}
.y263{bottom:140.554200px;}
.yb7{bottom:143.624700px;}
.y1bf{bottom:145.163700px;}
.y117{bottom:145.478550px;}
.y9b{bottom:145.894050px;}
.y71{bottom:145.895550px;}
.y1ea{bottom:147.154050px;}
.y168{bottom:150.263550px;}
.y1fe{bottom:151.463550px;}
.yf2{bottom:155.963550px;}
.y142{bottom:156.088650px;}
.y22f{bottom:156.302700px;}
.y262{bottom:157.054200px;}
.y196{bottom:158.368050px;}
.y1be{bottom:161.663700px;}
.yb6{bottom:163.124700px;}
.y116{bottom:164.977050px;}
.y3a{bottom:165.087900px;}
.y9a{bottom:165.392550px;}
.y70{bottom:165.394050px;}
.y1e9{bottom:166.654050px;}
.y167{bottom:169.763550px;}
.y22e{bottom:172.804200px;}
.y261{bottom:173.539050px;}
.yf1{bottom:175.463550px;}
.y141{bottom:175.588650px;}
.y1fd{bottom:177.713550px;}
.y195{bottom:177.866550px;}
.yb5{bottom:182.624700px;}
.y115{bottom:184.475550px;}
.y39{bottom:184.587900px;}
.y99{bottom:184.891050px;}
.y6f{bottom:184.892550px;}
.y1e8{bottom:186.154050px;}
.y1bd{bottom:188.963550px;}
.y166{bottom:189.263550px;}
.y22d{bottom:189.304200px;}
.y260{bottom:190.040550px;}
.yf0{bottom:194.971050px;}
.y140{bottom:195.088650px;}
.y194{bottom:197.365050px;}
.yb4{bottom:202.124700px;}
.y114{bottom:203.974050px;}
.y38{bottom:204.087900px;}
.y98{bottom:204.389550px;}
.y6e{bottom:204.391050px;}
.y1bc{bottom:205.463550px;}
.y1e7{bottom:205.654050px;}
.y22c{bottom:205.802550px;}
.y25f{bottom:206.542050px;}
.y165{bottom:208.763700px;}
.yef{bottom:214.469550px;}
.y13f{bottom:214.588650px;}
.y193{bottom:216.863550px;}
.yb3{bottom:221.624550px;}
.y22b{bottom:222.304050px;}
.y25e{bottom:223.043550px;}
.y113{bottom:223.472550px;}
.y37{bottom:223.595400px;}
.y97{bottom:223.888050px;}
.y6d{bottom:223.889550px;}
.y1e6{bottom:225.163050px;}
.y1fc{bottom:226.463550px;}
.y1bb{bottom:232.754550px;}
.y13e{bottom:234.093150px;}
.y164{bottom:235.306050px;}
.y192{bottom:236.363550px;}
.y22a{bottom:238.804050px;}
.y25d{bottom:239.545050px;}
.yb2{bottom:241.129050px;}
.y112{bottom:242.971050px;}
.y36{bottom:243.093900px;}
.y6c{bottom:243.388050px;}
.yee{bottom:243.717300px;}
.y1e5{bottom:244.661550px;}
.y1ba{bottom:249.256050px;}
.y163{bottom:251.807550px;}
.y1fb{bottom:252.713550px;}
.y13d{bottom:253.591650px;}
.y229{bottom:255.292050px;}
.y191{bottom:255.863550px;}
.y25c{bottom:256.046550px;}
.yb1{bottom:260.627550px;}
.y111{bottom:262.469550px;}
.y35{bottom:262.592400px;}
.y6b{bottom:262.888050px;}
.y96{bottom:262.894050px;}
.y1e4{bottom:264.160050px;}
.y162{bottom:268.309050px;}
.y228{bottom:271.793550px;}
.y25b{bottom:272.548050px;}
.y13c{bottom:273.090150px;}
.y1b9{bottom:276.559050px;}
.yb0{bottom:280.126050px;}
.y34{bottom:282.090900px;}
.y6a{bottom:282.388050px;}
.y95{bottom:282.392550px;}
.y190{bottom:282.406050px;}
.y1e3{bottom:283.658550px;}
.y161{bottom:284.810550px;}
.y227{bottom:288.295050px;}
.y25a{bottom:289.049550px;}
.y110{bottom:291.717300px;}
.yed{bottom:292.463550px;}
.y13b{bottom:292.588650px;}
.y18f{bottom:298.907550px;}
.yaf{bottom:299.624550px;}
.y160{bottom:301.312050px;}
.y1fa{bottom:301.463550px;}
.y33{bottom:301.589400px;}
.y69{bottom:301.888050px;}
.y94{bottom:301.891050px;}
.y1e2{bottom:303.157050px;}
.y1b8{bottom:303.862050px;}
.y226{bottom:304.796550px;}
.y259{bottom:305.551050px;}
.yec{bottom:311.963550px;}
.y18e{bottom:315.409050px;}
.y15f{bottom:317.813550px;}
.yae{bottom:319.124550px;}
.y13a{bottom:319.126650px;}
.y1b7{bottom:320.363550px;}
.y1f9{bottom:320.963550px;}
.y32{bottom:321.087900px;}
.y225{bottom:321.298050px;}
.y93{bottom:321.389550px;}
.y68{bottom:321.410550px;}
.y258{bottom:322.052550px;}
.y1e1{bottom:322.655550px;}
.yeb{bottom:331.465050px;}
.y18d{bottom:331.910550px;}
.y47{bottom:332.910000px;}
.y139{bottom:335.628150px;}
.y224{bottom:337.799550px;}
.y257{bottom:338.554050px;}
.yad{bottom:338.629050px;}
.y10f{bottom:340.463550px;}
.y31{bottom:340.587900px;}
.y92{bottom:340.888050px;}
.y67{bottom:340.909050px;}
.y15e{bottom:341.363550px;}
.y1e0{bottom:342.154050px;}
.y1b6{bottom:342.263700px;}
.y18c{bottom:348.412050px;}
.yea{bottom:350.963550px;}
.y138{bottom:352.129650px;}
.y223{bottom:354.301050px;}
.y14{bottom:354.772500px;}
.y256{bottom:355.054050px;}
.yac{bottom:358.127550px;}
.y10e{bottom:359.963550px;}
.y1f8{bottom:359.972550px;}
.y30{bottom:360.090900px;}
.y91{bottom:360.388050px;}
.y66{bottom:360.407550px;}
.y1df{bottom:361.654050px;}
.y1b5{bottom:361.763700px;}
.y18b{bottom:364.913550px;}
.y15d{bottom:367.910550px;}
.y137{bottom:368.631150px;}
.ye9{bottom:370.463550px;}
.y222{bottom:370.802550px;}
.y255{bottom:371.554050px;}
.yab{bottom:377.626050px;}
.y10d{bottom:379.463550px;}
.y1f7{bottom:379.471050px;}
.y2f{bottom:379.589400px;}
.y90{bottom:379.888050px;}
.y65{bottom:379.906050px;}
.y1de{bottom:381.169050px;}
.y1b4{bottom:381.263700px;}
.y15c{bottom:384.412050px;}
.y136{bottom:385.132650px;}
.y221{bottom:387.304050px;}
.y254{bottom:388.054050px;}
.y18a{bottom:388.469550px;}
.ye8{bottom:389.965050px;}
.yaa{bottom:397.124550px;}
.y10c{bottom:398.963550px;}
.y1f6{bottom:398.969550px;}
.y2e{bottom:399.087900px;}
.y8f{bottom:399.391050px;}
.y1dd{bottom:400.667550px;}
.y1b3{bottom:400.763700px;}
.y15b{bottom:400.913550px;}
.y135{bottom:401.634150px;}
.y220{bottom:403.804050px;}
.y253{bottom:404.554050px;}
.y189{bottom:407.968050px;}
.y64{bottom:409.153800px;}
.ye7{bottom:409.463550px;}
.ya9{bottom:416.624550px;}
.y15a{bottom:417.413550px;}
.y134{bottom:418.135650px;}
.y10b{bottom:418.463550px;}
.y1f5{bottom:418.468050px;}
.y2d{bottom:418.587900px;}
.y8e{bottom:418.889550px;}
.y13{bottom:419.122500px;}
.y1dc{bottom:420.166050px;}
.y1b2{bottom:420.271200px;}
.y21f{bottom:420.301050px;}
.y252{bottom:421.054050px;}
.y188{bottom:427.466550px;}
.ye6{bottom:428.963550px;}
.y159{bottom:433.913550px;}
.y133{bottom:434.637150px;}
.ya8{bottom:436.124550px;}
.y21e{bottom:436.802550px;}
.y251{bottom:437.554050px;}
.y10a{bottom:437.963550px;}
.y1f4{bottom:437.966550px;}
.y8d{bottom:438.388050px;}
.y1db{bottom:439.664550px;}
.y1b1{bottom:439.769700px;}
.y187{bottom:446.965050px;}
.y2c{bottom:447.087900px;}
.ye5{bottom:448.466550px;}
.y132{bottom:451.138650px;}
.y21d{bottom:453.304050px;}
.y250{bottom:454.051050px;}
.ya7{bottom:455.624550px;}
.y109{bottom:457.463550px;}
.y158{bottom:457.465050px;}
.y8c{bottom:457.888050px;}
.y63{bottom:457.900050px;}
.y1da{bottom:459.163050px;}
.y1b0{bottom:459.268200px;}
.y186{bottom:466.463550px;}
.ye4{bottom:467.965050px;}
.y21c{bottom:469.804050px;}
.y24f{bottom:470.552550px;}
.y131{bottom:474.700650px;}
.ya6{bottom:475.130550px;}
.y2b{bottom:476.337900px;}
.y157{bottom:476.963550px;}
.y108{bottom:476.975550px;}
.y8b{bottom:477.388050px;}
.y62{bottom:477.398550px;}
.y1d9{bottom:478.661550px;}
.y1af{bottom:478.766700px;}
.y21b{bottom:486.302550px;}
.y12{bottom:486.403500px;}
.y24e{bottom:487.054050px;}
.ye3{bottom:487.463550px;}
.y185{bottom:491.357550px;}
.y130{bottom:494.199150px;}
.ya5{bottom:494.629050px;}
.y156{bottom:496.463550px;}
.y107{bottom:496.474050px;}
.y61{bottom:496.897050px;}
.y8a{bottom:496.901550px;}
.y1d8{bottom:498.160050px;}
.y1ae{bottom:498.265200px;}
.y21a{bottom:502.804050px;}
.y27f{bottom:503.536050px;}
.y24d{bottom:503.554050px;}
.ye2{bottom:506.963550px;}
.y184{bottom:507.859050px;}
.y12f{bottom:513.697650px;}
.ya4{bottom:514.127550px;}
.y1f3{bottom:515.963550px;}
.y155{bottom:515.965050px;}
.y106{bottom:515.972550px;}
.y60{bottom:516.395550px;}
.y89{bottom:516.400050px;}
.y1d7{bottom:517.658550px;}
.y1ad{bottom:517.763700px;}
.y219{bottom:519.304050px;}
.y27e{bottom:520.037550px;}
.y24c{bottom:520.051050px;}
.y183{bottom:524.360550px;}
.y2a{bottom:525.087900px;}
.ye1{bottom:526.463550px;}
.y12e{bottom:533.196150px;}
.ya3{bottom:533.626050px;}
.y154{bottom:535.463550px;}
.y105{bottom:535.471050px;}
.y218{bottom:535.792050px;}
.y5f{bottom:535.894050px;}
.y88{bottom:535.898550px;}
.y27d{bottom:536.539050px;}
.y24b{bottom:536.552550px;}
.y1d6{bottom:537.157050px;}
.y1ac{bottom:537.263700px;}
.y29{bottom:540.087900px;}
.y182{bottom:540.862050px;}
.ye0{bottom:545.966550px;}
.y11{bottom:547.822500px;}
.y217{bottom:552.293550px;}
.y12d{bottom:552.694650px;}
.y27c{bottom:553.040550px;}
.y24a{bottom:553.054050px;}
.ya2{bottom:553.124550px;}
.y153{bottom:554.963550px;}
.y104{bottom:554.969550px;}
.y28{bottom:555.093750px;}
.y5e{bottom:555.392550px;}
.y87{bottom:555.397050px;}
.y1d5{bottom:556.655550px;}
.y1ab{bottom:556.763700px;}
.y181{bottom:557.363550px;}
.ydf{bottom:565.465050px;}
.y216{bottom:568.795050px;}
.y27b{bottom:569.542050px;}
.y249{bottom:569.554050px;}
.y27{bottom:570.092250px;}
.y12c{bottom:572.193150px;}
.ya1{bottom:572.624550px;}
.y180{bottom:573.863550px;}
.y103{bottom:574.468050px;}
.y152{bottom:574.471050px;}
.y5d{bottom:574.891050px;}
.y86{bottom:574.895550px;}
.y1d4{bottom:576.154050px;}
.y1aa{bottom:583.312050px;}
.yde{bottom:584.963550px;}
.y26{bottom:585.090750px;}
.y215{bottom:585.296550px;}
.y27a{bottom:586.043550px;}
.y248{bottom:586.052550px;}
.y17f{bottom:590.363550px;}
.y12b{bottom:591.691650px;}
.y102{bottom:593.966550px;}
.y151{bottom:593.969550px;}
.y5c{bottom:594.389550px;}
.y85{bottom:594.394050px;}
.y1d3{bottom:595.654050px;}
.y1a9{bottom:599.813550px;}
.y25{bottom:600.089250px;}
.y214{bottom:601.798050px;}
.ya0{bottom:601.879950px;}
.y279{bottom:602.545050px;}
.y247{bottom:602.554050px;}
.ydd{bottom:604.463550px;}
.y17e{bottom:606.863550px;}
.y12a{bottom:611.190150px;}
.y101{bottom:613.465050px;}
.y150{bottom:613.468050px;}
.y5b{bottom:613.888050px;}
.y84{bottom:613.892550px;}
.y24{bottom:615.087750px;}
.y10{bottom:615.103500px;}
.y1d2{bottom:615.157050px;}
.y1a8{bottom:616.313550px;}
.y213{bottom:618.299550px;}
.y278{bottom:619.046550px;}
.y246{bottom:619.054050px;}
.ydc{bottom:623.963550px;}
.y23{bottom:630.087750px;}
.y129{bottom:630.688650px;}
.y100{bottom:632.963550px;}
.y14f{bottom:632.966550px;}
.y5a{bottom:633.388050px;}
.y83{bottom:633.391050px;}
.y17d{bottom:634.163700px;}
.y1d1{bottom:634.655550px;}
.y212{bottom:634.801050px;}
.y277{bottom:635.548050px;}
.y245{bottom:635.554050px;}
.y1a7{bottom:639.869550px;}
.ydb{bottom:643.456050px;}
.y22{bottom:645.087750px;}
.yf{bottom:649.453500px;}
.y9f{bottom:650.626200px;}
.y17c{bottom:650.663700px;}
.y211{bottom:651.302550px;}
.y276{bottom:652.049550px;}
.y244{bottom:652.054050px;}
.yff{bottom:652.463550px;}
.y14e{bottom:652.465050px;}
.y59{bottom:652.888050px;}
.y82{bottom:652.889550px;}
.y1d0{bottom:654.154050px;}
.y128{bottom:657.234150px;}
.y1a6{bottom:659.368050px;}
.y21{bottom:660.092250px;}
.ye{bottom:664.453500px;}
.y3f{bottom:665.868900px;}
.y210{bottom:667.804050px;}
.y275{bottom:668.551050px;}
.y243{bottom:668.554050px;}
.y9e{bottom:670.124700px;}
.yda{bottom:671.963550px;}
.y1f2{bottom:671.971050px;}
.yfe{bottom:671.981550px;}
.y81{bottom:672.388050px;}
.y58{bottom:672.391050px;}
.y1cf{bottom:673.654050px;}
.y127{bottom:673.735650px;}
.y20{bottom:675.090750px;}
.y17b{bottom:677.963550px;}
.y1a5{bottom:678.866550px;}
.y3e{bottom:679.368900px;}
.yd{bottom:679.453500px;}
.y242{bottom:685.036200px;}
.y274{bottom:685.052550px;}
.y1f{bottom:690.089250px;}
.y126{bottom:690.237150px;}
.y14d{bottom:691.463550px;}
.y1f1{bottom:691.469550px;}
.yfd{bottom:691.480050px;}
.y80{bottom:691.888050px;}
.y57{bottom:691.889550px;}
.y3d{bottom:692.868900px;}
.y1ce{bottom:693.158550px;}
.y20f{bottom:694.054050px;}
.y17a{bottom:694.463550px;}
.y1a4{bottom:698.365050px;}
.yd9{bottom:701.213550px;}
.y241{bottom:701.537700px;}
.y273{bottom:701.554050px;}
.y1e{bottom:705.087750px;}
.y3c{bottom:706.368900px;}
.y125{bottom:706.738650px;}
.y179{bottom:710.956050px;}
.y1f0{bottom:710.968050px;}
.yfc{bottom:710.978550px;}
.y56{bottom:711.388050px;}
.y7f{bottom:711.397050px;}
.y1cd{bottom:712.657050px;}
.y1a3{bottom:717.863550px;}
.ycc{bottom:717.946650px;}
.y240{bottom:718.039200px;}
.y272{bottom:718.054050px;}
.y3b{bottom:719.868900px;}
.y1d{bottom:720.087750px;}
.y14c{bottom:720.720300px;}
.y178{bottom:727.457550px;}
.y124{bottom:730.293150px;}
.y1ef{bottom:730.466550px;}
.yfb{bottom:730.477050px;}
.y55{bottom:730.888050px;}
.y7e{bottom:730.895550px;}
.ycb{bottom:731.446650px;}
.y1cc{bottom:732.155550px;}
.y23f{bottom:734.540700px;}
.y271{bottom:734.554050px;}
.y177{bottom:743.959050px;}
.y1a2{bottom:744.404700px;}
.yca{bottom:744.946650px;}
.y123{bottom:749.791650px;}
.yd8{bottom:749.963550px;}
.y1ee{bottom:749.965050px;}
.yfa{bottom:749.975550px;}
.y54{bottom:750.389550px;}
.y7d{bottom:750.394050px;}
.y20e{bottom:751.034700px;}
.y270{bottom:751.039200px;}
.y23e{bottom:751.042200px;}
.y1cb{bottom:751.654050px;}
.yc9{bottom:758.446650px;}
.y176{bottom:760.460550px;}
.y1a1{bottom:760.906200px;}
.yc{bottom:761.241000px;}
.y20d{bottom:767.536200px;}
.y26f{bottom:767.540700px;}
.y23d{bottom:767.543700px;}
.y122{bottom:769.290150px;}
.yd7{bottom:769.463550px;}
.y14b{bottom:769.466550px;}
.yf9{bottom:769.474050px;}
.y53{bottom:769.888050px;}
.y7c{bottom:769.892550px;}
.yc8{bottom:771.946650px;}
.y175{bottom:776.962050px;}
.y1a0{bottom:777.407700px;}
.y1c{bottom:777.597900px;}
.y1ca{bottom:780.904050px;}
.y20c{bottom:784.037700px;}
.y26e{bottom:784.042200px;}
.y23c{bottom:784.045200px;}
.yc7{bottom:785.446650px;}
.y121{bottom:788.788650px;}
.yd6{bottom:788.963550px;}
.y14a{bottom:788.965050px;}
.yf8{bottom:788.972550px;}
.y52{bottom:789.388050px;}
.y7b{bottom:789.391050px;}
.yb{bottom:791.631000px;}
.y174{bottom:793.463550px;}
.y19f{bottom:793.909200px;}
.y1b{bottom:797.091900px;}
.yc6{bottom:798.946650px;}
.y20b{bottom:800.539200px;}
.y26d{bottom:800.543700px;}
.y23b{bottom:800.546700px;}
.y120{bottom:808.288650px;}
.yd5{bottom:808.463550px;}
.yf7{bottom:808.471050px;}
.y7a{bottom:808.889550px;}
.y51{bottom:808.891050px;}
.ya{bottom:809.691000px;}
.y173{bottom:809.963550px;}
.y19e{bottom:810.410700px;}
.yc5{bottom:812.446650px;}
.y20a{bottom:817.040700px;}
.y26c{bottom:817.045200px;}
.y23a{bottom:817.048200px;}
.y1a{bottom:820.352400px;}
.yc4{bottom:825.946650px;}
.y172{bottom:826.451700px;}
.y19d{bottom:826.912200px;}
.y11f{bottom:827.788650px;}
.y149{bottom:827.963550px;}
.yd4{bottom:827.969550px;}
.y9{bottom:828.216000px;}
.y79{bottom:828.388050px;}
.y50{bottom:828.389550px;}
.y1c9{bottom:829.654050px;}
.y209{bottom:833.542200px;}
.y26b{bottom:833.546700px;}
.y239{bottom:833.549700px;}
.yc3{bottom:839.446650px;}
.y171{bottom:842.953200px;}
.y19c{bottom:843.413700px;}
.y11e{bottom:847.288650px;}
.y148{bottom:847.466550px;}
.yd3{bottom:847.468050px;}
.y4f{bottom:847.888050px;}
.y1c8{bottom:849.154050px;}
.y26a{bottom:850.048200px;}
.y238{bottom:850.051200px;}
.yc2{bottom:852.946650px;}
.y208{bottom:858.294450px;}
.y170{bottom:859.454700px;}
.y19{bottom:859.609650px;}
.yc1{bottom:866.446650px;}
.y269{bottom:866.549700px;}
.y237{bottom:866.552700px;}
.y11d{bottom:866.784150px;}
.y19b{bottom:866.963550px;}
.y147{bottom:866.965050px;}
.yd2{bottom:866.966550px;}
.y4e{bottom:867.388050px;}
.y78{bottom:867.395550px;}
.y1c7{bottom:868.654050px;}
.y207{bottom:874.795950px;}
.yc0{bottom:879.946650px;}
.y8{bottom:881.115000px;}
.y268{bottom:883.051200px;}
.y236{bottom:883.054200px;}
.y18{bottom:883.612650px;}
.y11c{bottom:886.282650px;}
.y146{bottom:886.463550px;}
.yd1{bottom:886.465050px;}
.y4d{bottom:886.889550px;}
.y77{bottom:886.894050px;}
.y1c6{bottom:888.154050px;}
.y16f{bottom:888.410700px;}
.y206{bottom:891.297450px;}
.ybf{bottom:893.446650px;}
.y267{bottom:899.552700px;}
.y235{bottom:899.554200px;}
.y16e{bottom:904.912200px;}
.y11b{bottom:905.781150px;}
.yd0{bottom:905.963550px;}
.y4c{bottom:906.388050px;}
.y76{bottom:906.392550px;}
.y1c5{bottom:907.654050px;}
.ybe{bottom:911.074650px;}
.y45{bottom:915.574500px;}
.y205{bottom:916.049700px;}
.y234{bottom:916.054200px;}
.y16d{bottom:921.413700px;}
.ybd{bottom:924.574650px;}
.ycf{bottom:925.463550px;}
.y19a{bottom:925.466550px;}
.y4b{bottom:925.888050px;}
.y75{bottom:925.891050px;}
.y204{bottom:932.551200px;}
.y1c4{bottom:932.554200px;}
.y11a{bottom:934.288650px;}
.y7{bottom:938.779500px;}
.yce{bottom:944.963550px;}
.yf6{bottom:944.965050px;}
.y4a{bottom:945.389550px;}
.ybc{bottom:948.724650px;}
.y203{bottom:949.052700px;}
.y1c3{bottom:949.054200px;}
.y17{bottom:955.448850px;}
.y119{bottom:963.538650px;}
.ycd{bottom:964.463550px;}
.y49{bottom:964.888050px;}
.ybb{bottom:965.226150px;}
.y1c2{bottom:965.554200px;}
.y16{bottom:968.948850px;}
.y6{bottom:970.279500px;}
.y15{bottom:982.448850px;}
.y48{bottom:1005.008400px;}
.y5{bottom:1035.546000px;}
.y4{bottom:1165.122000px;}
.h18{height:18.796500px;}
.he{height:25.096500px;}
.h16{height:30.030000px;}
.h10{height:31.500000px;}
.hb{height:32.175000px;}
.h1c{height:32.445000px;}
.h15{height:34.320000px;}
.h17{height:34.608000px;}
.h4{height:36.726562px;}
.h11{height:38.934000px;}
.h1d{height:40.755000px;}
.h1e{height:40.812000px;}
.h2{height:41.317383px;}
.hf{height:43.072500px;}
.h8{height:45.000000px;}
.h14{height:45.108000px;}
.h13{height:45.423000px;}
.h7{height:45.908203px;}
.h19{height:46.118621px;}
.h12{height:47.586000px;}
.hd{height:50.503950px;}
.h6{height:55.089844px;}
.h1b{height:58.886719px;}
.hc{height:60.564000px;}
.h3{height:68.862305px;}
.h5{height:82.634766px;}
.h1a{height:1054.485000px;}
.h9{height:1054.488000px;}
.ha{height:1054.500000px;}
.h1{height:1249.500000px;}
.h0{height:1249.560000px;}
.w4{width:106.297500px;}
.w3{width:739.500000px;}
.w2{width:739.842000px;}
.w0{width:951.480000px;}
.w1{width:951.750000px;}
.x0{left:0.000000px;}
.xb{left:10.272000px;}
.xc{left:15.000000px;}
.x3{left:36.600000px;}
.x7{left:90.112500px;}
.x15{left:105.005250px;}
.x8{left:108.112500px;}
.x5{left:145.650000px;}
.x4{left:191.880000px;}
.x6{left:197.700000px;}
.x2{left:235.224000px;}
.x12{left:283.283400px;}
.x11{left:292.571400px;}
.x1{left:293.590500px;}
.xe{left:338.075400px;}
.xd{left:437.586150px;}
.xa{left:446.865000px;}
.x13{left:469.655400px;}
.x14{left:478.655400px;}
.xf{left:480.239400px;}
.x10{left:508.979400px;}
.x9{left:514.954950px;}
@media print{
.v2{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:15.984000pt;}
.v1{vertical-align:18.648000pt;}
.lsc{letter-spacing:-5.320000pt;}
.ls6{letter-spacing:-2.184000pt;}
.ls1a{letter-spacing:-1.469333pt;}
.ls7{letter-spacing:-0.852864pt;}
.ls20{letter-spacing:-0.760000pt;}
.ls8{letter-spacing:-0.728000pt;}
.ls17{letter-spacing:-0.709333pt;}
.ls23{letter-spacing:-0.658667pt;}
.ls14{letter-spacing:-0.616000pt;}
.ls1d{letter-spacing:-0.608000pt;}
.lsd{letter-spacing:-0.560000pt;}
.ls1c{letter-spacing:-0.557333pt;}
.ls21{letter-spacing:-0.506667pt;}
.ls9{letter-spacing:-0.504000pt;}
.ls1b{letter-spacing:-0.456000pt;}
.lse{letter-spacing:-0.448000pt;}
.ls16{letter-spacing:-0.405333pt;}
.lsa{letter-spacing:-0.392000pt;}
.ls18{letter-spacing:-0.354667pt;}
.ls15{letter-spacing:-0.304000pt;}
.ls22{letter-spacing:-0.253333pt;}
.ls10{letter-spacing:-0.224000pt;}
.ls19{letter-spacing:-0.202667pt;}
.lsf{letter-spacing:-0.168000pt;}
.ls1f{letter-spacing:-0.152000pt;}
.lsb{letter-spacing:-0.112000pt;}
.ls13{letter-spacing:-0.101333pt;}
.ls4{letter-spacing:-0.096000pt;}
.ls5{letter-spacing:-0.056000pt;}
.ls11{letter-spacing:-0.050667pt;}
.ls3{letter-spacing:-0.048000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000267pt;}
.ls12{letter-spacing:0.152000pt;}
.ls1{letter-spacing:0.800000pt;}
.ls1e{letter-spacing:4.940000pt;}
.ws69{word-spacing:-12.712000pt;}
.ws0{word-spacing:-12.432000pt;}
.ws3{word-spacing:-11.872000pt;}
.ws7{word-spacing:-11.850667pt;}
.wsa0{word-spacing:-11.754667pt;}
.wsd4{word-spacing:-11.602667pt;}
.ws7e{word-spacing:-11.501333pt;}
.wsed{word-spacing:-11.450667pt;}
.wsd2{word-spacing:-11.400000pt;}
.wsd5{word-spacing:-11.248000pt;}
.ws9{word-spacing:-11.200947pt;}
.wsd6{word-spacing:-10.994667pt;}
.wsfc{word-spacing:-10.893333pt;}
.ws68{word-spacing:-10.304000pt;}
.wsd3{word-spacing:-10.032000pt;}
.ws5d{word-spacing:-8.362667pt;}
.ws2{word-spacing:-7.840000pt;}
.ws4{word-spacing:-7.716800pt;}
.ws8{word-spacing:-7.317333pt;}
.ws5{word-spacing:-6.115200pt;}
.wsef{word-spacing:-3.090667pt;}
.wsb2{word-spacing:-2.800000pt;}
.ws6c{word-spacing:-2.632000pt;}
.wsee{word-spacing:-2.584000pt;}
.ws16{word-spacing:-2.576000pt;}
.ws25{word-spacing:-2.520000pt;}
.ws2e{word-spacing:-2.408000pt;}
.wsec{word-spacing:-2.381333pt;}
.ws58{word-spacing:-2.352000pt;}
.wsa5{word-spacing:-2.330667pt;}
.wscf{word-spacing:-2.296000pt;}
.ws99{word-spacing:-2.280000pt;}
.ws92{word-spacing:-2.240000pt;}
.wsda{word-spacing:-2.229333pt;}
.ws2a{word-spacing:-2.184000pt;}
.ws42{word-spacing:-2.128000pt;}
.wsdc{word-spacing:-2.077333pt;}
.ws7a{word-spacing:-2.072000pt;}
.ws10{word-spacing:-2.064000pt;}
.wsd0{word-spacing:-2.026667pt;}
.ws93{word-spacing:-2.016000pt;}
.wse1{word-spacing:-1.976000pt;}
.ws20{word-spacing:-1.960000pt;}
.wscc{word-spacing:-1.904000pt;}
.wsd9{word-spacing:-1.874667pt;}
.ws47{word-spacing:-1.848000pt;}
.wse9{word-spacing:-1.824000pt;}
.ws1d{word-spacing:-1.792000pt;}
.wsb7{word-spacing:-1.773333pt;}
.ws59{word-spacing:-1.736000pt;}
.wsb6{word-spacing:-1.722667pt;}
.ws4f{word-spacing:-1.680000pt;}
.wsf3{word-spacing:-1.672000pt;}
.ws51{word-spacing:-1.624000pt;}
.ws8c{word-spacing:-1.621333pt;}
.ws96{word-spacing:-1.568000pt;}
.wsaf{word-spacing:-1.520000pt;}
.ws8b{word-spacing:-1.469333pt;}
.ws74{word-spacing:-1.456000pt;}
.ws55{word-spacing:-1.400000pt;}
.ws30{word-spacing:-1.344000pt;}
.wsa8{word-spacing:-1.317333pt;}
.ws60{word-spacing:-1.288000pt;}
.ws19{word-spacing:-1.232000pt;}
.wsa9{word-spacing:-1.216000pt;}
.ws2c{word-spacing:-1.176000pt;}
.wsdb{word-spacing:-1.165333pt;}
.ws36{word-spacing:-1.120000pt;}
.ws90{word-spacing:-1.114667pt;}
.wsc1{word-spacing:-1.064000pt;}
.wsb9{word-spacing:-1.013333pt;}
.ws28{word-spacing:-1.008000pt;}
.ws9a{word-spacing:-0.962667pt;}
.ws4c{word-spacing:-0.952000pt;}
.ws9b{word-spacing:-0.912000pt;}
.wsde{word-spacing:-0.861333pt;}
.ws6{word-spacing:-0.840000pt;}
.ws11{word-spacing:-0.816000pt;}
.ws63{word-spacing:-0.784000pt;}
.ws81{word-spacing:-0.728000pt;}
.ws54{word-spacing:-0.672000pt;}
.ws31{word-spacing:-0.616000pt;}
.wsa7{word-spacing:-0.608000pt;}
.ws64{word-spacing:-0.560000pt;}
.ws27{word-spacing:-0.504000pt;}
.wsc3{word-spacing:-0.456000pt;}
.wsc0{word-spacing:-0.405333pt;}
.wsa{word-spacing:-0.400000pt;}
.ws4d{word-spacing:-0.392000pt;}
.wsf0{word-spacing:-0.354667pt;}
.ws48{word-spacing:-0.336000pt;}
.wsaa{word-spacing:-0.304000pt;}
.ws26{word-spacing:-0.280000pt;}
.ws6a{word-spacing:-0.224000pt;}
.ws22{word-spacing:-0.186667pt;}
.ws1a{word-spacing:-0.168000pt;}
.ws8a{word-spacing:-0.152000pt;}
.wsbd{word-spacing:-0.112000pt;}
.ws85{word-spacing:-0.101333pt;}
.ws32{word-spacing:-0.056000pt;}
.ws1{word-spacing:0.000000pt;}
.wsbc{word-spacing:0.050667pt;}
.ws17{word-spacing:0.056000pt;}
.ws8d{word-spacing:0.101333pt;}
.ws4b{word-spacing:0.112000pt;}
.wsc2{word-spacing:0.152000pt;}
.ws61{word-spacing:0.168000pt;}
.wsba{word-spacing:0.202667pt;}
.ws62{word-spacing:0.224000pt;}
.ws6e{word-spacing:0.280000pt;}
.wseb{word-spacing:0.304000pt;}
.ws33{word-spacing:0.336000pt;}
.wsd1{word-spacing:0.354667pt;}
.ws40{word-spacing:0.392000pt;}
.ws8f{word-spacing:0.405333pt;}
.ws5b{word-spacing:0.448000pt;}
.ws23{word-spacing:0.504000pt;}
.ws98{word-spacing:0.506667pt;}
.wsb{word-spacing:0.528000pt;}
.wsa1{word-spacing:0.557333pt;}
.ws87{word-spacing:0.560000pt;}
.wsae{word-spacing:0.608000pt;}
.ws7b{word-spacing:0.616000pt;}
.ws66{word-spacing:0.658667pt;}
.wsca{word-spacing:0.672000pt;}
.ws67{word-spacing:0.709333pt;}
.ws3e{word-spacing:0.728000pt;}
.ws9d{word-spacing:0.760000pt;}
.ws77{word-spacing:0.784000pt;}
.wsb1{word-spacing:0.810667pt;}
.ws57{word-spacing:0.840000pt;}
.ws9c{word-spacing:0.861333pt;}
.ws6b{word-spacing:0.896000pt;}
.ws53{word-spacing:0.952000pt;}
.wsa2{word-spacing:0.962667pt;}
.ws6d{word-spacing:1.008000pt;}
.ws5a{word-spacing:1.064000pt;}
.wsbf{word-spacing:1.120000pt;}
.wsa4{word-spacing:1.165333pt;}
.ws1b{word-spacing:1.176000pt;}
.wsd7{word-spacing:1.216000pt;}
.ws37{word-spacing:1.232000pt;}
.ws2b{word-spacing:1.288000pt;}
.wsea{word-spacing:1.317333pt;}
.ws65{word-spacing:1.344000pt;}
.ws84{word-spacing:1.368000pt;}
.ws3f{word-spacing:1.400000pt;}
.wsf6{word-spacing:1.418667pt;}
.ws94{word-spacing:1.456000pt;}
.wsdf{word-spacing:1.469333pt;}
.ws29{word-spacing:1.512000pt;}
.wsdd{word-spacing:1.520000pt;}
.wsf1{word-spacing:1.570667pt;}
.ws8e{word-spacing:1.621333pt;}
.ws79{word-spacing:1.624000pt;}
.ws9e{word-spacing:1.672000pt;}
.ws91{word-spacing:1.680000pt;}
.ws2f{word-spacing:1.736000pt;}
.wsc{word-spacing:1.776000pt;}
.wsc7{word-spacing:1.792000pt;}
.ws3a{word-spacing:1.848000pt;}
.wsfa{word-spacing:1.874667pt;}
.ws5f{word-spacing:1.904000pt;}
.ws34{word-spacing:1.960000pt;}
.wsa3{word-spacing:2.026667pt;}
.ws52{word-spacing:2.072000pt;}
.ws75{word-spacing:2.128000pt;}
.ws1c{word-spacing:2.184000pt;}
.ws38{word-spacing:2.240000pt;}
.wsad{word-spacing:2.280000pt;}
.ws43{word-spacing:2.296000pt;}
.wse0{word-spacing:2.330667pt;}
.ws88{word-spacing:2.352000pt;}
.ws50{word-spacing:2.408000pt;}
.wsb8{word-spacing:2.482667pt;}
.wsc8{word-spacing:2.632000pt;}
.wsf{word-spacing:2.640000pt;}
.wsab{word-spacing:2.685333pt;}
.ws78{word-spacing:2.688000pt;}
.wsc9{word-spacing:2.744000pt;}
.wsfd{word-spacing:2.786667pt;}
.ws2d{word-spacing:2.800000pt;}
.ws12{word-spacing:2.832000pt;}
.wsd8{word-spacing:2.837333pt;}
.wsb3{word-spacing:2.856000pt;}
.ws107{word-spacing:2.888000pt;}
.ws82{word-spacing:2.912000pt;}
.wsa6{word-spacing:2.938667pt;}
.ws76{word-spacing:2.968000pt;}
.ws1e{word-spacing:3.024000pt;}
.ws56{word-spacing:3.080000pt;}
.ws6f{word-spacing:3.136000pt;}
.wsf2{word-spacing:3.141333pt;}
.wsb5{word-spacing:3.192000pt;}
.ws70{word-spacing:3.248000pt;}
.wsbb{word-spacing:3.304000pt;}
.ws95{word-spacing:3.360000pt;}
.ws44{word-spacing:3.416000pt;}
.ws89{word-spacing:3.445333pt;}
.ws80{word-spacing:3.472000pt;}
.wsd{word-spacing:3.504000pt;}
.ws3b{word-spacing:3.528000pt;}
.ws86{word-spacing:3.584000pt;}
.ws100{word-spacing:3.597333pt;}
.ws97{word-spacing:3.640000pt;}
.ws101{word-spacing:3.648000pt;}
.ws4a{word-spacing:3.752000pt;}
.ws24{word-spacing:3.808000pt;}
.ws18{word-spacing:3.864000pt;}
.ws5c{word-spacing:3.920000pt;}
.wsb0{word-spacing:3.952000pt;}
.wsce{word-spacing:3.976000pt;}
.wsb4{word-spacing:4.088000pt;}
.ws35{word-spacing:4.200000pt;}
.wsc4{word-spacing:4.256000pt;}
.ws103{word-spacing:4.306667pt;}
.ws9f{word-spacing:4.312000pt;}
.wse5{word-spacing:4.357333pt;}
.ws72{word-spacing:4.368000pt;}
.wse8{word-spacing:4.408000pt;}
.ws46{word-spacing:4.424000pt;}
.ws106{word-spacing:4.509333pt;}
.ws3d{word-spacing:4.536000pt;}
.wscd{word-spacing:4.648000pt;}
.wse6{word-spacing:4.762667pt;}
.wsf7{word-spacing:4.813333pt;}
.ws73{word-spacing:4.816000pt;}
.wsf8{word-spacing:4.864000pt;}
.ws1f{word-spacing:4.872000pt;}
.ws21{word-spacing:4.890667pt;}
.ws49{word-spacing:4.928000pt;}
.ws7d{word-spacing:4.984000pt;}
.ws104{word-spacing:5.016000pt;}
.ws83{word-spacing:5.066667pt;}
.wsfb{word-spacing:5.117333pt;}
.ws3c{word-spacing:5.152000pt;}
.ws7c{word-spacing:5.208000pt;}
.ws14{word-spacing:5.424000pt;}
.ws71{word-spacing:5.656000pt;}
.ws102{word-spacing:5.674667pt;}
.ws4e{word-spacing:5.824000pt;}
.ws13{word-spacing:5.856000pt;}
.ws7f{word-spacing:5.880000pt;}
.ws45{word-spacing:5.936000pt;}
.wse7{word-spacing:6.080000pt;}
.wsac{word-spacing:6.104000pt;}
.wsbe{word-spacing:6.160000pt;}
.wse3{word-spacing:6.181333pt;}
.ws5e{word-spacing:6.216000pt;}
.ws39{word-spacing:6.272000pt;}
.wscb{word-spacing:6.384000pt;}
.wse{word-spacing:6.480000pt;}
.wsc5{word-spacing:6.496000pt;}
.wsc6{word-spacing:6.720000pt;}
.ws105{word-spacing:6.738667pt;}
.wse4{word-spacing:6.840000pt;}
.wsf9{word-spacing:6.890667pt;}
.wsfe{word-spacing:7.752000pt;}
.wsff{word-spacing:8.309333pt;}
.wse2{word-spacing:10.944000pt;}
.wsf4{word-spacing:12.109333pt;}
.wsf5{word-spacing:12.210667pt;}
.ws108{word-spacing:12.717333pt;}
.ws15{word-spacing:15.408000pt;}
.ws41{word-spacing:31.520000pt;}
._21{margin-left:-11.491200pt;}
._1b{margin-left:-10.584267pt;}
._d{margin-left:-8.880000pt;}
._11{margin-left:-7.664000pt;}
._5{margin-left:-6.457600pt;}
._6{margin-left:-5.488000pt;}
._8{margin-left:-4.256000pt;}
._0{margin-left:-3.312000pt;}
._1{margin-left:-1.920000pt;}
._2{margin-left:-0.960000pt;}
._4{width:1.600000pt;}
._7{width:2.568000pt;}
._10{width:3.864000pt;}
._f{width:4.872000pt;}
._e{width:6.272000pt;}
._14{width:8.742400pt;}
._15{width:11.306667pt;}
._9{width:13.125333pt;}
._13{width:21.333333pt;}
._20{width:22.256800pt;}
._24{width:23.168800pt;}
._1d{width:25.612000pt;}
._c{width:31.520000pt;}
._22{width:38.826667pt;}
._19{width:40.205067pt;}
._25{width:41.557600pt;}
._1c{width:42.562133pt;}
._16{width:56.645333pt;}
._a{width:66.851733pt;}
._b{width:90.188267pt;}
._12{width:98.389333pt;}
._1f{width:138.299467pt;}
._26{width:141.314400pt;}
._23{width:143.528267pt;}
._1a{width:150.317867pt;}
._1e{width:151.857067pt;}
._18{width:343.664000pt;}
._17{width:347.082667pt;}
._3{width:1565.445333pt;}
.fsa{font-size:31.200000pt;}
.fs9{font-size:36.400000pt;}
.fsc{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fs2{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fse{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fs8{font-size:56.000000pt;}
.fsd{font-size:56.857600pt;}
.fsb{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs7{font-size:74.666667pt;}
.fs1{font-size:80.000000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y46{bottom:3.553467pt;}
.y3{bottom:24.825333pt;}
.y2{bottom:60.086667pt;}
.y43{bottom:63.996133pt;}
.y16c{bottom:64.234267pt;}
.y42{bottom:74.664133pt;}
.y1{bottom:74.753333pt;}
.yba{bottom:75.667733pt;}
.y202{bottom:75.964933pt;}
.y74{bottom:77.679600pt;}
.y1ed{bottom:78.803600pt;}
.y233{bottom:80.270400pt;}
.y266{bottom:80.934400pt;}
.y16b{bottom:81.567600pt;}
.y41{bottom:85.332133pt;}
.yf5{bottom:86.638267pt;}
.y145{bottom:86.745467pt;}
.y1c1{bottom:90.097067pt;}
.y199{bottom:90.500933pt;}
.y201{bottom:90.632933pt;}
.yb9{bottom:92.999733pt;}
.y232{bottom:94.937067pt;}
.y73{bottom:95.011600pt;}
.y9d{bottom:95.019600pt;}
.y265{bottom:95.602400pt;}
.y40{bottom:96.000133pt;}
.y1ec{bottom:96.136933pt;}
.y16a{bottom:98.902267pt;}
.yf4{bottom:103.970267pt;}
.y144{bottom:104.078800pt;}
.y1c0{bottom:104.765067pt;}
.y198{bottom:105.167600pt;}
.y200{bottom:105.300933pt;}
.y231{bottom:109.603733pt;}
.y264{bottom:110.270400pt;}
.yb8{bottom:110.333067pt;}
.y118{bottom:111.982267pt;}
.y44{bottom:112.126800pt;}
.y72{bottom:112.344933pt;}
.y9c{bottom:112.351600pt;}
.y1eb{bottom:113.471600pt;}
.y169{bottom:116.234267pt;}
.y197{bottom:119.834267pt;}
.y1ff{bottom:119.967600pt;}
.yf3{bottom:121.302267pt;}
.y143{bottom:121.412133pt;}
.y230{bottom:124.267733pt;}
.y263{bottom:124.937067pt;}
.yb7{bottom:127.666400pt;}
.y1bf{bottom:129.034400pt;}
.y117{bottom:129.314267pt;}
.y9b{bottom:129.683600pt;}
.y71{bottom:129.684933pt;}
.y1ea{bottom:130.803600pt;}
.y168{bottom:133.567600pt;}
.y1fe{bottom:134.634267pt;}
.yf2{bottom:138.634267pt;}
.y142{bottom:138.745467pt;}
.y22f{bottom:138.935733pt;}
.y262{bottom:139.603733pt;}
.y196{bottom:140.771600pt;}
.y1be{bottom:143.701067pt;}
.yb6{bottom:144.999733pt;}
.y116{bottom:146.646267pt;}
.y3a{bottom:146.744800pt;}
.y9a{bottom:147.015600pt;}
.y70{bottom:147.016933pt;}
.y1e9{bottom:148.136933pt;}
.y167{bottom:150.900933pt;}
.y22e{bottom:153.603733pt;}
.y261{bottom:154.256933pt;}
.yf1{bottom:155.967600pt;}
.y141{bottom:156.078800pt;}
.y1fd{bottom:157.967600pt;}
.y195{bottom:158.103600pt;}
.yb5{bottom:162.333067pt;}
.y115{bottom:163.978267pt;}
.y39{bottom:164.078133pt;}
.y99{bottom:164.347600pt;}
.y6f{bottom:164.348933pt;}
.y1e8{bottom:165.470267pt;}
.y1bd{bottom:167.967600pt;}
.y166{bottom:168.234267pt;}
.y22d{bottom:168.270400pt;}
.y260{bottom:168.924933pt;}
.yf0{bottom:173.307600pt;}
.y140{bottom:173.412133pt;}
.y194{bottom:175.435600pt;}
.yb4{bottom:179.666400pt;}
.y114{bottom:181.310267pt;}
.y38{bottom:181.411467pt;}
.y98{bottom:181.679600pt;}
.y6e{bottom:181.680933pt;}
.y1bc{bottom:182.634267pt;}
.y1e7{bottom:182.803600pt;}
.y22c{bottom:182.935600pt;}
.y25f{bottom:183.592933pt;}
.y165{bottom:185.567733pt;}
.yef{bottom:190.639600pt;}
.y13f{bottom:190.745467pt;}
.y193{bottom:192.767600pt;}
.yb3{bottom:196.999600pt;}
.y22b{bottom:197.603600pt;}
.y25e{bottom:198.260933pt;}
.y113{bottom:198.642267pt;}
.y37{bottom:198.751467pt;}
.y97{bottom:199.011600pt;}
.y6d{bottom:199.012933pt;}
.y1e6{bottom:200.144933pt;}
.y1fc{bottom:201.300933pt;}
.y1bb{bottom:206.892933pt;}
.y13e{bottom:208.082800pt;}
.y164{bottom:209.160933pt;}
.y192{bottom:210.100933pt;}
.y22a{bottom:212.270267pt;}
.y25d{bottom:212.928933pt;}
.yb2{bottom:214.336933pt;}
.y112{bottom:215.974267pt;}
.y36{bottom:216.083467pt;}
.y6c{bottom:216.344933pt;}
.yee{bottom:216.637600pt;}
.y1e5{bottom:217.476933pt;}
.y1ba{bottom:221.560933pt;}
.y163{bottom:223.828933pt;}
.y1fb{bottom:224.634267pt;}
.y13d{bottom:225.414800pt;}
.y229{bottom:226.926267pt;}
.y191{bottom:227.434267pt;}
.y25c{bottom:227.596933pt;}
.yb1{bottom:231.668933pt;}
.y111{bottom:233.306267pt;}
.y35{bottom:233.415467pt;}
.y6b{bottom:233.678267pt;}
.y96{bottom:233.683600pt;}
.y1e4{bottom:234.808933pt;}
.y162{bottom:238.496933pt;}
.y228{bottom:241.594267pt;}
.y25b{bottom:242.264933pt;}
.y13c{bottom:242.746800pt;}
.y1b9{bottom:245.830267pt;}
.yb0{bottom:249.000933pt;}
.y34{bottom:250.747467pt;}
.y6a{bottom:251.011600pt;}
.y95{bottom:251.015600pt;}
.y190{bottom:251.027600pt;}
.y1e3{bottom:252.140933pt;}
.y161{bottom:253.164933pt;}
.y227{bottom:256.262267pt;}
.y25a{bottom:256.932933pt;}
.y110{bottom:259.304267pt;}
.yed{bottom:259.967600pt;}
.y13b{bottom:260.078800pt;}
.y18f{bottom:265.695600pt;}
.yaf{bottom:266.332933pt;}
.y160{bottom:267.832933pt;}
.y1fa{bottom:267.967600pt;}
.y33{bottom:268.079467pt;}
.y69{bottom:268.344933pt;}
.y94{bottom:268.347600pt;}
.y1e2{bottom:269.472933pt;}
.y1b8{bottom:270.099600pt;}
.y226{bottom:270.930267pt;}
.y259{bottom:271.600933pt;}
.yec{bottom:277.300933pt;}
.y18e{bottom:280.363600pt;}
.y15f{bottom:282.500933pt;}
.yae{bottom:283.666267pt;}
.y13a{bottom:283.668133pt;}
.y1b7{bottom:284.767600pt;}
.y1f9{bottom:285.300933pt;}
.y32{bottom:285.411467pt;}
.y225{bottom:285.598267pt;}
.y93{bottom:285.679600pt;}
.y68{bottom:285.698267pt;}
.y258{bottom:286.268933pt;}
.y1e1{bottom:286.804933pt;}
.yeb{bottom:294.635600pt;}
.y18d{bottom:295.031600pt;}
.y47{bottom:295.920000pt;}
.y139{bottom:298.336133pt;}
.y224{bottom:300.266267pt;}
.y257{bottom:300.936933pt;}
.yad{bottom:301.003600pt;}
.y10f{bottom:302.634267pt;}
.y31{bottom:302.744800pt;}
.y92{bottom:303.011600pt;}
.y67{bottom:303.030267pt;}
.y15e{bottom:303.434267pt;}
.y1e0{bottom:304.136933pt;}
.y1b6{bottom:304.234400pt;}
.y18c{bottom:309.699600pt;}
.yea{bottom:311.967600pt;}
.y138{bottom:313.004133pt;}
.y223{bottom:314.934267pt;}
.y14{bottom:315.353333pt;}
.y256{bottom:315.603600pt;}
.yac{bottom:318.335600pt;}
.y10e{bottom:319.967600pt;}
.y1f8{bottom:319.975600pt;}
.y30{bottom:320.080800pt;}
.y91{bottom:320.344933pt;}
.y66{bottom:320.362267pt;}
.y1df{bottom:321.470267pt;}
.y1b5{bottom:321.567733pt;}
.y18b{bottom:324.367600pt;}
.y15d{bottom:327.031600pt;}
.y137{bottom:327.672133pt;}
.ye9{bottom:329.300933pt;}
.y222{bottom:329.602267pt;}
.y255{bottom:330.270267pt;}
.yab{bottom:335.667600pt;}
.y10d{bottom:337.300933pt;}
.y1f7{bottom:337.307600pt;}
.y2f{bottom:337.412800pt;}
.y90{bottom:337.678267pt;}
.y65{bottom:337.694267pt;}
.y1de{bottom:338.816933pt;}
.y1b4{bottom:338.901067pt;}
.y15c{bottom:341.699600pt;}
.y136{bottom:342.340133pt;}
.y221{bottom:344.270267pt;}
.y254{bottom:344.936933pt;}
.y18a{bottom:345.306267pt;}
.ye8{bottom:346.635600pt;}
.yaa{bottom:352.999600pt;}
.y10c{bottom:354.634267pt;}
.y1f6{bottom:354.639600pt;}
.y2e{bottom:354.744800pt;}
.y8f{bottom:355.014267pt;}
.y1dd{bottom:356.148933pt;}
.y1b3{bottom:356.234400pt;}
.y15b{bottom:356.367600pt;}
.y135{bottom:357.008133pt;}
.y220{bottom:358.936933pt;}
.y253{bottom:359.603600pt;}
.y189{bottom:362.638267pt;}
.y64{bottom:363.692267pt;}
.ye7{bottom:363.967600pt;}
.ya9{bottom:370.332933pt;}
.y15a{bottom:371.034267pt;}
.y134{bottom:371.676133pt;}
.y10b{bottom:371.967600pt;}
.y1f5{bottom:371.971600pt;}
.y2d{bottom:372.078133pt;}
.y8e{bottom:372.346267pt;}
.y13{bottom:372.553333pt;}
.y1dc{bottom:373.480933pt;}
.y1b2{bottom:373.574400pt;}
.y21f{bottom:373.600933pt;}
.y252{bottom:374.270267pt;}
.y188{bottom:379.970267pt;}
.ye6{bottom:381.300933pt;}
.y159{bottom:385.700933pt;}
.y133{bottom:386.344133pt;}
.ya8{bottom:387.666267pt;}
.y21e{bottom:388.268933pt;}
.y251{bottom:388.936933pt;}
.y10a{bottom:389.300933pt;}
.y1f4{bottom:389.303600pt;}
.y8d{bottom:389.678267pt;}
.y1db{bottom:390.812933pt;}
.y1b1{bottom:390.906400pt;}
.y187{bottom:397.302267pt;}
.y2c{bottom:397.411467pt;}
.ye5{bottom:398.636933pt;}
.y132{bottom:401.012133pt;}
.y21d{bottom:402.936933pt;}
.y250{bottom:403.600933pt;}
.ya7{bottom:404.999600pt;}
.y109{bottom:406.634267pt;}
.y158{bottom:406.635600pt;}
.y8c{bottom:407.011600pt;}
.y63{bottom:407.022267pt;}
.y1da{bottom:408.144933pt;}
.y1b0{bottom:408.238400pt;}
.y186{bottom:414.634267pt;}
.ye4{bottom:415.968933pt;}
.y21c{bottom:417.603600pt;}
.y24f{bottom:418.268933pt;}
.y131{bottom:421.956133pt;}
.ya6{bottom:422.338267pt;}
.y2b{bottom:423.411467pt;}
.y157{bottom:423.967600pt;}
.y108{bottom:423.978267pt;}
.y8b{bottom:424.344933pt;}
.y62{bottom:424.354267pt;}
.y1d9{bottom:425.476933pt;}
.y1af{bottom:425.570400pt;}
.y21b{bottom:432.268933pt;}
.y12{bottom:432.358667pt;}
.y24e{bottom:432.936933pt;}
.ye3{bottom:433.300933pt;}
.y185{bottom:436.762267pt;}
.y130{bottom:439.288133pt;}
.ya5{bottom:439.670267pt;}
.y156{bottom:441.300933pt;}
.y107{bottom:441.310267pt;}
.y61{bottom:441.686267pt;}
.y8a{bottom:441.690267pt;}
.y1d8{bottom:442.808933pt;}
.y1ae{bottom:442.902400pt;}
.y21a{bottom:446.936933pt;}
.y27f{bottom:447.587600pt;}
.y24d{bottom:447.603600pt;}
.ye2{bottom:450.634267pt;}
.y184{bottom:451.430267pt;}
.y12f{bottom:456.620133pt;}
.ya4{bottom:457.002267pt;}
.y1f3{bottom:458.634267pt;}
.y155{bottom:458.635600pt;}
.y106{bottom:458.642267pt;}
.y60{bottom:459.018267pt;}
.y89{bottom:459.022267pt;}
.y1d7{bottom:460.140933pt;}
.y1ad{bottom:460.234400pt;}
.y219{bottom:461.603600pt;}
.y27e{bottom:462.255600pt;}
.y24c{bottom:462.267600pt;}
.y183{bottom:466.098267pt;}
.y2a{bottom:466.744800pt;}
.ye1{bottom:467.967600pt;}
.y12e{bottom:473.952133pt;}
.ya3{bottom:474.334267pt;}
.y154{bottom:475.967600pt;}
.y105{bottom:475.974267pt;}
.y218{bottom:476.259600pt;}
.y5f{bottom:476.350267pt;}
.y88{bottom:476.354267pt;}
.y27d{bottom:476.923600pt;}
.y24b{bottom:476.935600pt;}
.y1d6{bottom:477.472933pt;}
.y1ac{bottom:477.567733pt;}
.y29{bottom:480.078133pt;}
.y182{bottom:480.766267pt;}
.ye0{bottom:485.303600pt;}
.y11{bottom:486.953333pt;}
.y217{bottom:490.927600pt;}
.y12d{bottom:491.284133pt;}
.y27c{bottom:491.591600pt;}
.y24a{bottom:491.603600pt;}
.ya2{bottom:491.666267pt;}
.y153{bottom:493.300933pt;}
.y104{bottom:493.306267pt;}
.y28{bottom:493.416667pt;}
.y5e{bottom:493.682267pt;}
.y87{bottom:493.686267pt;}
.y1d5{bottom:494.804933pt;}
.y1ab{bottom:494.901067pt;}
.y181{bottom:495.434267pt;}
.ydf{bottom:502.635600pt;}
.y216{bottom:505.595600pt;}
.y27b{bottom:506.259600pt;}
.y249{bottom:506.270267pt;}
.y27{bottom:506.748667pt;}
.y12c{bottom:508.616133pt;}
.ya1{bottom:508.999600pt;}
.y180{bottom:510.100933pt;}
.y103{bottom:510.638267pt;}
.y152{bottom:510.640933pt;}
.y5d{bottom:511.014267pt;}
.y86{bottom:511.018267pt;}
.y1d4{bottom:512.136933pt;}
.y1aa{bottom:518.499600pt;}
.yde{bottom:519.967600pt;}
.y26{bottom:520.080667pt;}
.y215{bottom:520.263600pt;}
.y27a{bottom:520.927600pt;}
.y248{bottom:520.935600pt;}
.y17f{bottom:524.767600pt;}
.y12b{bottom:525.948133pt;}
.y102{bottom:527.970267pt;}
.y151{bottom:527.972933pt;}
.y5c{bottom:528.346267pt;}
.y85{bottom:528.350267pt;}
.y1d3{bottom:529.470267pt;}
.y1a9{bottom:533.167600pt;}
.y25{bottom:533.412667pt;}
.y214{bottom:534.931600pt;}
.ya0{bottom:535.004400pt;}
.y279{bottom:535.595600pt;}
.y247{bottom:535.603600pt;}
.ydd{bottom:537.300933pt;}
.y17e{bottom:539.434267pt;}
.y12a{bottom:543.280133pt;}
.y101{bottom:545.302267pt;}
.y150{bottom:545.304933pt;}
.y5b{bottom:545.678267pt;}
.y84{bottom:545.682267pt;}
.y24{bottom:546.744667pt;}
.y10{bottom:546.758667pt;}
.y1d2{bottom:546.806267pt;}
.y1a8{bottom:547.834267pt;}
.y213{bottom:549.599600pt;}
.y278{bottom:550.263600pt;}
.y246{bottom:550.270267pt;}
.ydc{bottom:554.634267pt;}
.y23{bottom:560.078000pt;}
.y129{bottom:560.612133pt;}
.y100{bottom:562.634267pt;}
.y14f{bottom:562.636933pt;}
.y5a{bottom:563.011600pt;}
.y83{bottom:563.014267pt;}
.y17d{bottom:563.701067pt;}
.y1d1{bottom:564.138267pt;}
.y212{bottom:564.267600pt;}
.y277{bottom:564.931600pt;}
.y245{bottom:564.936933pt;}
.y1a7{bottom:568.772933pt;}
.ydb{bottom:571.960933pt;}
.y22{bottom:573.411333pt;}
.yf{bottom:577.292000pt;}
.y9f{bottom:578.334400pt;}
.y17c{bottom:578.367733pt;}
.y211{bottom:578.935600pt;}
.y276{bottom:579.599600pt;}
.y244{bottom:579.603600pt;}
.yff{bottom:579.967600pt;}
.y14e{bottom:579.968933pt;}
.y59{bottom:580.344933pt;}
.y82{bottom:580.346267pt;}
.y1d0{bottom:581.470267pt;}
.y128{bottom:584.208133pt;}
.y1a6{bottom:586.104933pt;}
.y21{bottom:586.748667pt;}
.ye{bottom:590.625333pt;}
.y3f{bottom:591.883467pt;}
.y210{bottom:593.603600pt;}
.y275{bottom:594.267600pt;}
.y243{bottom:594.270267pt;}
.y9e{bottom:595.666400pt;}
.yda{bottom:597.300933pt;}
.y1f2{bottom:597.307600pt;}
.yfe{bottom:597.316933pt;}
.y81{bottom:597.678267pt;}
.y58{bottom:597.680933pt;}
.y1cf{bottom:598.803600pt;}
.y127{bottom:598.876133pt;}
.y20{bottom:600.080667pt;}
.y17b{bottom:602.634267pt;}
.y1a5{bottom:603.436933pt;}
.y3e{bottom:603.883467pt;}
.yd{bottom:603.958667pt;}
.y242{bottom:608.921067pt;}
.y274{bottom:608.935600pt;}
.y1f{bottom:613.412667pt;}
.y126{bottom:613.544133pt;}
.y14d{bottom:614.634267pt;}
.y1f1{bottom:614.639600pt;}
.yfd{bottom:614.648933pt;}
.y80{bottom:615.011600pt;}
.y57{bottom:615.012933pt;}
.y3d{bottom:615.883467pt;}
.y1ce{bottom:616.140933pt;}
.y20f{bottom:616.936933pt;}
.y17a{bottom:617.300933pt;}
.y1a4{bottom:620.768933pt;}
.yd9{bottom:623.300933pt;}
.y241{bottom:623.589067pt;}
.y273{bottom:623.603600pt;}
.y1e{bottom:626.744667pt;}
.y3c{bottom:627.883467pt;}
.y125{bottom:628.212133pt;}
.y179{bottom:631.960933pt;}
.y1f0{bottom:631.971600pt;}
.yfc{bottom:631.980933pt;}
.y56{bottom:632.344933pt;}
.y7f{bottom:632.352933pt;}
.y1cd{bottom:633.472933pt;}
.y1a3{bottom:638.100933pt;}
.ycc{bottom:638.174800pt;}
.y240{bottom:638.257067pt;}
.y272{bottom:638.270267pt;}
.y3b{bottom:639.883467pt;}
.y1d{bottom:640.078000pt;}
.y14c{bottom:640.640267pt;}
.y178{bottom:646.628933pt;}
.y124{bottom:649.149467pt;}
.y1ef{bottom:649.303600pt;}
.yfb{bottom:649.312933pt;}
.y55{bottom:649.678267pt;}
.y7e{bottom:649.684933pt;}
.ycb{bottom:650.174800pt;}
.y1cc{bottom:650.804933pt;}
.y23f{bottom:652.925067pt;}
.y271{bottom:652.936933pt;}
.y177{bottom:661.296933pt;}
.y1a2{bottom:661.693067pt;}
.yca{bottom:662.174800pt;}
.y123{bottom:666.481467pt;}
.yd8{bottom:666.634267pt;}
.y1ee{bottom:666.635600pt;}
.yfa{bottom:666.644933pt;}
.y54{bottom:667.012933pt;}
.y7d{bottom:667.016933pt;}
.y20e{bottom:667.586400pt;}
.y270{bottom:667.590400pt;}
.y23e{bottom:667.593067pt;}
.y1cb{bottom:668.136933pt;}
.yc9{bottom:674.174800pt;}
.y176{bottom:675.964933pt;}
.y1a1{bottom:676.361067pt;}
.yc{bottom:676.658667pt;}
.y20d{bottom:682.254400pt;}
.y26f{bottom:682.258400pt;}
.y23d{bottom:682.261067pt;}
.y122{bottom:683.813467pt;}
.yd7{bottom:683.967600pt;}
.y14b{bottom:683.970267pt;}
.yf9{bottom:683.976933pt;}
.y53{bottom:684.344933pt;}
.y7c{bottom:684.348933pt;}
.yc8{bottom:686.174800pt;}
.y175{bottom:690.632933pt;}
.y1a0{bottom:691.029067pt;}
.y1c{bottom:691.198133pt;}
.y1ca{bottom:694.136933pt;}
.y20c{bottom:696.922400pt;}
.y26e{bottom:696.926400pt;}
.y23c{bottom:696.929067pt;}
.yc7{bottom:698.174800pt;}
.y121{bottom:701.145467pt;}
.yd6{bottom:701.300933pt;}
.y14a{bottom:701.302267pt;}
.yf8{bottom:701.308933pt;}
.y52{bottom:701.678267pt;}
.y7b{bottom:701.680933pt;}
.yb{bottom:703.672000pt;}
.y174{bottom:705.300933pt;}
.y19f{bottom:705.697067pt;}
.y1b{bottom:708.526133pt;}
.yc6{bottom:710.174800pt;}
.y20b{bottom:711.590400pt;}
.y26d{bottom:711.594400pt;}
.y23b{bottom:711.597067pt;}
.y120{bottom:718.478800pt;}
.yd5{bottom:718.634267pt;}
.yf7{bottom:718.640933pt;}
.y7a{bottom:719.012933pt;}
.y51{bottom:719.014267pt;}
.ya{bottom:719.725333pt;}
.y173{bottom:719.967600pt;}
.y19e{bottom:720.365067pt;}
.yc5{bottom:722.174800pt;}
.y20a{bottom:726.258400pt;}
.y26c{bottom:726.262400pt;}
.y23a{bottom:726.265067pt;}
.y1a{bottom:729.202133pt;}
.yc4{bottom:734.174800pt;}
.y172{bottom:734.623733pt;}
.y19d{bottom:735.033067pt;}
.y11f{bottom:735.812133pt;}
.y149{bottom:735.967600pt;}
.yd4{bottom:735.972933pt;}
.y9{bottom:736.192000pt;}
.y79{bottom:736.344933pt;}
.y50{bottom:736.346267pt;}
.y1c9{bottom:737.470267pt;}
.y209{bottom:740.926400pt;}
.y26b{bottom:740.930400pt;}
.y239{bottom:740.933067pt;}
.yc3{bottom:746.174800pt;}
.y171{bottom:749.291733pt;}
.y19c{bottom:749.701067pt;}
.y11e{bottom:753.145467pt;}
.y148{bottom:753.303600pt;}
.yd3{bottom:753.304933pt;}
.y4f{bottom:753.678267pt;}
.y1c8{bottom:754.803600pt;}
.y26a{bottom:755.598400pt;}
.y238{bottom:755.601067pt;}
.yc2{bottom:758.174800pt;}
.y208{bottom:762.928400pt;}
.y170{bottom:763.959733pt;}
.y19{bottom:764.097467pt;}
.yc1{bottom:770.174800pt;}
.y269{bottom:770.266400pt;}
.y237{bottom:770.269067pt;}
.y11d{bottom:770.474800pt;}
.y19b{bottom:770.634267pt;}
.y147{bottom:770.635600pt;}
.yd2{bottom:770.636933pt;}
.y4e{bottom:771.011600pt;}
.y78{bottom:771.018267pt;}
.y1c7{bottom:772.136933pt;}
.y207{bottom:777.596400pt;}
.yc0{bottom:782.174800pt;}
.y8{bottom:783.213333pt;}
.y268{bottom:784.934400pt;}
.y236{bottom:784.937067pt;}
.y18{bottom:785.433467pt;}
.y11c{bottom:787.806800pt;}
.y146{bottom:787.967600pt;}
.yd1{bottom:787.968933pt;}
.y4d{bottom:788.346267pt;}
.y77{bottom:788.350267pt;}
.y1c6{bottom:789.470267pt;}
.y16f{bottom:789.698400pt;}
.y206{bottom:792.264400pt;}
.ybf{bottom:794.174800pt;}
.y267{bottom:799.602400pt;}
.y235{bottom:799.603733pt;}
.y16e{bottom:804.366400pt;}
.y11b{bottom:805.138800pt;}
.yd0{bottom:805.300933pt;}
.y4c{bottom:805.678267pt;}
.y76{bottom:805.682267pt;}
.y1c5{bottom:806.803600pt;}
.ybe{bottom:809.844133pt;}
.y45{bottom:813.844000pt;}
.y205{bottom:814.266400pt;}
.y234{bottom:814.270400pt;}
.y16d{bottom:819.034400pt;}
.ybd{bottom:821.844133pt;}
.ycf{bottom:822.634267pt;}
.y19a{bottom:822.636933pt;}
.y4b{bottom:823.011600pt;}
.y75{bottom:823.014267pt;}
.y204{bottom:828.934400pt;}
.y1c4{bottom:828.937067pt;}
.y11a{bottom:830.478800pt;}
.y7{bottom:834.470667pt;}
.yce{bottom:839.967600pt;}
.yf6{bottom:839.968933pt;}
.y4a{bottom:840.346267pt;}
.ybc{bottom:843.310800pt;}
.y203{bottom:843.602400pt;}
.y1c3{bottom:843.603733pt;}
.y17{bottom:849.287867pt;}
.y119{bottom:856.478800pt;}
.ycd{bottom:857.300933pt;}
.y49{bottom:857.678267pt;}
.ybb{bottom:857.978800pt;}
.y1c2{bottom:858.270400pt;}
.y16{bottom:861.287867pt;}
.y6{bottom:862.470667pt;}
.y15{bottom:873.287867pt;}
.y48{bottom:893.340800pt;}
.y5{bottom:920.485333pt;}
.y4{bottom:1035.664000pt;}
.h18{height:16.708000pt;}
.he{height:22.308000pt;}
.h16{height:26.693333pt;}
.h10{height:28.000000pt;}
.hb{height:28.600000pt;}
.h1c{height:28.840000pt;}
.h15{height:30.506667pt;}
.h17{height:30.762667pt;}
.h4{height:32.645833pt;}
.h11{height:34.608000pt;}
.h1d{height:36.226667pt;}
.h1e{height:36.277333pt;}
.h2{height:36.726562pt;}
.hf{height:38.286667pt;}
.h8{height:40.000000pt;}
.h14{height:40.096000pt;}
.h13{height:40.376000pt;}
.h7{height:40.807292pt;}
.h19{height:40.994330pt;}
.h12{height:42.298667pt;}
.hd{height:44.892400pt;}
.h6{height:48.968750pt;}
.h1b{height:52.343750pt;}
.hc{height:53.834667pt;}
.h3{height:61.210938pt;}
.h5{height:73.453125pt;}
.h1a{height:937.320000pt;}
.h9{height:937.322667pt;}
.ha{height:937.333333pt;}
.h1{height:1110.666667pt;}
.h0{height:1110.720000pt;}
.w4{width:94.486667pt;}
.w3{width:657.333333pt;}
.w2{width:657.637333pt;}
.w0{width:845.760000pt;}
.w1{width:846.000000pt;}
.x0{left:0.000000pt;}
.xb{left:9.130667pt;}
.xc{left:13.333333pt;}
.x3{left:32.533333pt;}
.x7{left:80.100000pt;}
.x15{left:93.338000pt;}
.x8{left:96.100000pt;}
.x5{left:129.466667pt;}
.x4{left:170.560000pt;}
.x6{left:175.733333pt;}
.x2{left:209.088000pt;}
.x12{left:251.807467pt;}
.x11{left:260.063467pt;}
.x1{left:260.969333pt;}
.xe{left:300.511467pt;}
.xd{left:388.965467pt;}
.xa{left:397.213333pt;}
.x13{left:417.471467pt;}
.x14{left:425.471467pt;}
.xf{left:426.879467pt;}
.x10{left:452.426133pt;}
.x9{left:457.737733pt;}
}




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