
    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_b64173717569ff44a4e1d5a0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.402354;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_07e70ca4c0877d18fa1d4d45.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.402354;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_5b32a762d388d97cfe3f4dc8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.402354;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_32048261c31060538b913ff9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.402354;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_5b32a762d388d97cfe3f4dc8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.402354;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_1e37711a07bfbd09f0bbb8a6.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;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_04c04768b4ae3c61143ad900.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;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_7cd2e72f00898763f21cc0cd.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;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_0d04b4a263cc2b86464c2676.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;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_96ad81cbcd6f446cb02bd698.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;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_b7fdf953b6da744f2ead4da3.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;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_c466f76840758b656979e2e9.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.402354;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_291c4b7c5fe5afe2bdbf9e79.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.402354;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_2ce2952348d9d9ff0d8ae518.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.402354;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_290dcd7e606b53d6e4c20b2b.woff2')format("woff");}.fff{font-family:fff;line-height:1.402354;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_eb2fc1190810bf413915297a.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_28b38fc94983db8afbd65210.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.402354;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;}
.m47{transform:matrix(0.002500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.002500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.002500,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.082500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082500,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.092500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092500,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m3a{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);}
.m3{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);}
.m36{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.562500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562500,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.687500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687500,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.750000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.750000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.750000,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.850000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.850000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.850000,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.900000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.900000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.900000,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(1.055000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.055000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.055000,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(1.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.312500,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(1.915000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.915000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.915000,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(1.937500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.937500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.937500,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(2.700000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.700000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.700000,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(2.875000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.875000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.875000,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(3.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.125000,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(3.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.187500,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(3.562500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.562500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.562500,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(3.762500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.762500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.762500,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(3.860000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.860000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.860000,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(4.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.125000,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(4.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.312500,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(4.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.437500,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(4.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.500000,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(4.562500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.562500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.562500,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(4.637500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.637500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.637500,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(4.937500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.937500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.937500,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-36.000000px;}
.v4{vertical-align:-30.000000px;}
.v6{vertical-align:-24.000000px;}
.v5{vertical-align:-12.000000px;}
.v1{vertical-align:-6.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:6.000000px;}
.v7{vertical-align:30.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:3.720000px;}
.ls6{letter-spacing:6.000000px;}
.ls11{letter-spacing:7.560000px;}
.lsd{letter-spacing:15.240000px;}
.ls1{letter-spacing:19.080000px;}
.lsf{letter-spacing:26.333333px;}
.ls3{letter-spacing:37.000000px;}
.ls9{letter-spacing:38.280000px;}
.ls2{letter-spacing:39.000000px;}
.lsa{letter-spacing:57.480000px;}
.lsc{letter-spacing:69.000000px;}
.lsb{letter-spacing:81.000000px;}
.ls12{letter-spacing:90.333333px;}
.ls10{letter-spacing:93.000000px;}
.ls5{letter-spacing:122.760000px;}
.ls8{letter-spacing:165.000000px;}
.ls4{letter-spacing:357.000000px;}
.lse{letter-spacing:1071.000000px;}
.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;}
}
.wsc{word-spacing:-384.000000px;}
.ws2b{word-spacing:-120.000000px;}
.ws1f{word-spacing:-96.000000px;}
.ws22{word-spacing:-42.240000px;}
.ws15{word-spacing:-36.000000px;}
.ws2c{word-spacing:-33.000000px;}
.ws11{word-spacing:-30.000000px;}
.ws0{word-spacing:-27.000000px;}
.wse{word-spacing:-24.000000px;}
.ws5{word-spacing:-18.000000px;}
.ws24{word-spacing:-15.600000px;}
.ws1e{word-spacing:-15.000000px;}
.ws7{word-spacing:-14.607610px;}
.ws2a{word-spacing:-13.689554px;}
.ws20{word-spacing:-12.725898px;}
.ws1{word-spacing:-12.470035px;}
.ws17{word-spacing:-12.000000px;}
.ws6{word-spacing:-11.760000px;}
.ws3{word-spacing:-11.333333px;}
.wsf{word-spacing:-9.000000px;}
.ws25{word-spacing:-8.819820px;}
.ws18{word-spacing:-8.438861px;}
.ws16{word-spacing:-8.189036px;}
.ws28{word-spacing:-7.953981px;}
.ws1b{word-spacing:-7.920000px;}
.wsb{word-spacing:-6.000000px;}
.ws1c{word-spacing:-4.407686px;}
.ws9{word-spacing:-3.084246px;}
.ws8{word-spacing:-3.000000px;}
.ws1a{word-spacing:-0.666667px;}
.ws4{word-spacing:0.000000px;}
.ws2{word-spacing:1.785488px;}
.wsa{word-spacing:5.333333px;}
.ws19{word-spacing:11.280000px;}
.ws23{word-spacing:12.000000px;}
.ws26{word-spacing:15.000000px;}
.ws12{word-spacing:23.333333px;}
.ws13{word-spacing:45.840000px;}
.ws14{word-spacing:49.680000px;}
.ws27{word-spacing:63.333333px;}
.ws1d{word-spacing:66.000000px;}
.ws21{word-spacing:90.000000px;}
.ws10{word-spacing:138.000000px;}
.ws29{word-spacing:210.000000px;}
.wsd{word-spacing:426.000000px;}
._12{margin-left:-357.000000px;}
._24{margin-left:-330.360000px;}
._25{margin-left:-93.000000px;}
._1c{margin-left:-69.000000px;}
._b{margin-left:-47.443698px;}
._8{margin-left:-45.325768px;}
._2{margin-left:-33.755442px;}
._13{margin-left:-30.942489px;}
._19{margin-left:-28.129535px;}
._f{margin-left:-27.000000px;}
._1b{margin-left:-24.263971px;}
._a{margin-left:-21.834274px;}
._15{margin-left:-19.742778px;}
._1e{margin-left:-17.254233px;}
._d{margin-left:-15.659500px;}
._3{margin-left:-14.441279px;}
._11{margin-left:-13.330915px;}
._4{margin-left:-11.628326px;}
._22{margin-left:-10.605308px;}
._e{margin-left:-8.815372px;}
._10{margin-left:-7.800000px;}
._c{margin-left:-6.002419px;}
._1{margin-left:-4.784198px;}
._17{margin-left:-3.000000px;}
._0{margin-left:-1.969084px;}
._6{width:2.283760px;}
._18{width:3.720000px;}
._9{width:4.872884px;}
._5{width:6.249653px;}
._16{width:7.560000px;}
._23{width:8.750347px;}
._7{width:10.496631px;}
._1f{width:15.240000px;}
._1a{width:19.080000px;}
._1d{width:37.000000px;}
._14{width:70.000000px;}
._26{width:99.720000px;}
._20{width:117.000000px;}
._21{width:213.000000px;}
.fc0{color:transparent;}
.fs6{font-size:18.000000px;}
.fsb{font-size:24.000000px;}
.fs4{font-size:30.000000px;}
.fs1{font-size:36.000000px;}
.fs2{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs9{font-size:84.000000px;}
.fsa{font-size:102.000000px;}
.fsc{font-size:126.000000px;}
.fs8{font-size:150.000000px;}
.y0{bottom:0.000000px;}
.ya0{bottom:20.492100px;}
.y1f7{bottom:26.492100px;}
.y4d{bottom:33.496050px;}
.y1f6{bottom:35.492100px;}
.y9d{bottom:62.492100px;}
.y9e{bottom:63.992100px;}
.y9f{bottom:65.492100px;}
.y4c{bottom:66.496050px;}
.y4b{bottom:67.996050px;}
.y231{bottom:72.992100px;}
.yfb{bottom:75.992100px;}
.y193{bottom:77.492100px;}
.y145{bottom:78.992100px;}
.y143{bottom:80.492100px;}
.y144{bottom:81.992100px;}
.y9b{bottom:86.492100px;}
.y9a{bottom:87.992100px;}
.y9c{bottom:89.492100px;}
.y4a{bottom:90.496050px;}
.y49{bottom:91.996050px;}
.y22f{bottom:92.492100px;}
.y48{bottom:93.496050px;}
.y230{bottom:93.992100px;}
.y11d{bottom:96.496050px;}
.y11e{bottom:97.996050px;}
.yf9{bottom:99.992100px;}
.yfa{bottom:101.492100px;}
.yd6{bottom:102.496050px;}
.yd7{bottom:103.996050px;}
.y141{bottom:104.492100px;}
.y142{bottom:105.992100px;}
.yf8{bottom:108.992100px;}
.yd8{bottom:109.996050px;}
.y191{bottom:110.492100px;}
.yd5{bottom:111.496050px;}
.y97{bottom:111.992100px;}
.y98{bottom:113.492100px;}
.y99{bottom:114.992100px;}
.y1b4{bottom:115.996050px;}
.y190{bottom:116.492100px;}
.y18f{bottom:119.492100px;}
.y11b{bottom:120.496050px;}
.y11c{bottom:121.996050px;}
.y47{bottom:123.496050px;}
.y46{bottom:124.996050px;}
.y22e{bottom:125.492100px;}
.y45{bottom:126.496050px;}
.y18d{bottom:126.992100px;}
.y18e{bottom:128.492100px;}
.y1b3{bottom:129.496050px;}
.y1b2{bottom:130.996050px;}
.yd4{bottom:133.996050px;}
.yd3{bottom:135.496050px;}
.y93{bottom:135.992100px;}
.y94{bottom:137.492100px;}
.y95{bottom:138.992100px;}
.y96{bottom:140.492100px;}
.y1ce{bottom:141.992100px;}
.y119{bottom:144.496050px;}
.y11a{bottom:145.996050px;}
.y44{bottom:147.496050px;}
.y43{bottom:148.996050px;}
.y22d{bottom:149.492100px;}
.y42{bottom:150.496050px;}
.y18b{bottom:150.992100px;}
.y18c{bottom:152.492100px;}
.y1b1{bottom:157.996050px;}
.yd1{bottom:159.496050px;}
.yd2{bottom:160.996050px;}
.y1cc{bottom:164.492100px;}
.y1f5{bottom:165.496050px;}
.y1cd{bottom:165.992100px;}
.y1f4{bottom:166.996050px;}
.y92{bottom:167.492100px;}
.y91{bottom:168.992100px;}
.y41{bottom:171.496050px;}
.y22b{bottom:171.992100px;}
.y40{bottom:172.996050px;}
.y22c{bottom:173.492100px;}
.y3f{bottom:174.496050px;}
.y189{bottom:174.992100px;}
.y18a{bottom:176.492100px;}
.y1b0{bottom:177.496050px;}
.y1af{bottom:178.996050px;}
.ycf{bottom:183.496050px;}
.yd0{bottom:184.996050px;}
.y22a{bottom:189.992100px;}
.y1f2{bottom:190.996050px;}
.y8d{bottom:191.492100px;}
.y1f3{bottom:192.496050px;}
.y8e{bottom:192.992100px;}
.y8f{bottom:194.492100px;}
.y3e{bottom:195.496050px;}
.y90{bottom:195.992100px;}
.y3d{bottom:196.996050px;}
.y1cb{bottom:197.492100px;}
.y3c{bottom:198.496050px;}
.y13f{bottom:201.992100px;}
.y140{bottom:203.492100px;}
.ycc{bottom:205.996050px;}
.ycd{bottom:207.496050px;}
.yce{bottom:208.996050px;}
.y8a{bottom:215.492100px;}
.y89{bottom:216.992100px;}
.y118{bottom:217.996050px;}
.y8b{bottom:218.492100px;}
.y160{bottom:219.496050px;}
.y8c{bottom:219.992100px;}
.y15f{bottom:220.996050px;}
.y229{bottom:221.492100px;}
.y1ae{bottom:223.996050px;}
.y1ad{bottom:225.496050px;}
.y1d2{bottom:225.992100px;}
.y3b{bottom:226.996050px;}
.y3a{bottom:228.496050px;}
.y1d3{bottom:228.992100px;}
.y39{bottom:229.996050px;}
.y1d4{bottom:230.492100px;}
.yca{bottom:231.496050px;}
.ycb{bottom:232.996050px;}
.y13e{bottom:234.992100px;}
.y85{bottom:240.992100px;}
.y116{bottom:241.996050px;}
.y86{bottom:242.492100px;}
.y15e{bottom:243.496050px;}
.y88{bottom:243.992100px;}
.y1d1{bottom:245.492100px;}
.y187{bottom:246.992100px;}
.y1ac{bottom:247.996050px;}
.y188{bottom:248.492100px;}
.y117{bottom:249.496050px;}
.y38{bottom:252.496050px;}
.y37{bottom:253.996050px;}
.y115{bottom:258.496050px;}
.y13d{bottom:258.992100px;}
.y1f1{bottom:261.496050px;}
.y1cf{bottom:261.992100px;}
.yc7{bottom:262.996050px;}
.y1d0{bottom:263.492100px;}
.yc9{bottom:264.496050px;}
.y82{bottom:264.992100px;}
.y15d{bottom:265.996050px;}
.y83{bottom:266.492100px;}
.yc8{bottom:267.496050px;}
.y84{bottom:267.992100px;}
.yf7{bottom:269.492100px;}
.y185{bottom:270.992100px;}
.y114{bottom:271.996050px;}
.y186{bottom:272.492100px;}
.y113{bottom:273.496050px;}
.y36{bottom:274.996050px;}
.y35{bottom:276.496050px;}
.y34{bottom:277.996050px;}
.y13c{bottom:279.992100px;}
.y123{bottom:280.996050px;}
.y13b{bottom:282.992100px;}
.yf6{bottom:285.992100px;}
.yc5{bottom:286.996050px;}
.yc6{bottom:288.496050px;}
.y7f{bottom:288.992100px;}
.y124{bottom:289.996050px;}
.y80{bottom:290.492100px;}
.y81{bottom:291.992100px;}
.y183{bottom:294.992100px;}
.y125{bottom:295.996050px;}
.y181{bottom:296.492100px;}
.y112{bottom:297.496050px;}
.y184{bottom:297.992100px;}
.y32{bottom:298.996050px;}
.y31{bottom:300.496050px;}
.y30{bottom:301.996050px;}
.y1ef{bottom:304.996050px;}
.y182{bottom:305.492100px;}
.y33{bottom:306.496050px;}
.y139{bottom:306.992100px;}
.y1f0{bottom:307.996050px;}
.y13a{bottom:308.492100px;}
.y227{bottom:309.992100px;}
.y228{bottom:311.492100px;}
.y7c{bottom:312.992100px;}
.y7d{bottom:314.492100px;}
.y7e{bottom:315.992100px;}
.y1ab{bottom:318.496050px;}
.yf5{bottom:318.992100px;}
.y122{bottom:319.996050px;}
.y138{bottom:320.492100px;}
.y111{bottom:321.496050px;}
.y180{bottom:321.992100px;}
.y2f{bottom:322.996050px;}
.y2e{bottom:324.496050px;}
.y2d{bottom:325.996050px;}
.y137{bottom:327.992100px;}
.yf3{bottom:332.492100px;}
.yf4{bottom:335.492100px;}
.y78{bottom:336.992100px;}
.y79{bottom:338.492100px;}
.y7a{bottom:339.992100px;}
.y7b{bottom:341.492100px;}
.y1aa{bottom:342.496050px;}
.y1c9{bottom:342.992100px;}
.y121{bottom:343.996050px;}
.y1ca{bottom:344.492100px;}
.y110{bottom:345.496050px;}
.y2c{bottom:346.996050px;}
.y2b{bottom:348.496050px;}
.y17f{bottom:348.992100px;}
.y2a{bottom:349.996050px;}
.yf2{bottom:350.492100px;}
.y17e{bottom:351.992100px;}
.y15c{bottom:352.996050px;}
.yed{bottom:357.992100px;}
.yef{bottom:359.492100px;}
.yc3{bottom:360.496050px;}
.y75{bottom:360.992100px;}
.yc4{bottom:361.996050px;}
.y76{bottom:362.492100px;}
.y77{bottom:363.992100px;}
.y1a9{bottom:364.996050px;}
.yf0{bottom:365.492100px;}
.yf1{bottom:366.992100px;}
.y120{bottom:367.996050px;}
.y29{bottom:369.496050px;}
.y136{bottom:369.992100px;}
.y28{bottom:370.996050px;}
.yea{bottom:371.492100px;}
.y27{bottom:372.496050px;}
.yee{bottom:372.992100px;}
.y26{bottom:373.996050px;}
.ye9{bottom:374.492100px;}
.y1c8{bottom:375.992100px;}
.y11f{bottom:376.996050px;}
.y17d{bottom:378.992100px;}
.yec{bottom:381.992100px;}
.y72{bottom:384.992100px;}
.y73{bottom:386.492100px;}
.y74{bottom:387.992100px;}
.yeb{bottom:390.992100px;}
.yc2{bottom:391.996050px;}
.y10f{bottom:393.496050px;}
.y17c{bottom:393.992100px;}
.y25{bottom:394.996050px;}
.y134{bottom:395.492100px;}
.y24{bottom:396.496050px;}
.y135{bottom:396.992100px;}
.y23{bottom:397.996050px;}
.y1c6{bottom:398.492100px;}
.y1c7{bottom:399.992100px;}
.y15b{bottom:400.996050px;}
.y15a{bottom:408.496050px;}
.y70{bottom:408.992100px;}
.y6f{bottom:410.492100px;}
.y71{bottom:411.992100px;}
.y226{bottom:414.992100px;}
.yc0{bottom:415.996050px;}
.yc1{bottom:417.496050px;}
.y17b{bottom:417.992100px;}
.y1a8{bottom:418.996050px;}
.y133{bottom:419.492100px;}
.y1a7{bottom:420.496050px;}
.y1ee{bottom:423.496050px;}
.y1c5{bottom:423.992100px;}
.y1ed{bottom:424.996050px;}
.y224{bottom:426.992100px;}
.y22{bottom:427.996050px;}
.y21{bottom:429.496050px;}
.y20{bottom:430.996050px;}
.y223{bottom:431.492100px;}
.y159{bottom:432.496050px;}
.y225{bottom:432.992100px;}
.y6d{bottom:434.492100px;}
.y6e{bottom:435.992100px;}
.y1c4{bottom:438.992100px;}
.ybe{bottom:439.996050px;}
.y17a{bottom:440.492100px;}
.ybf{bottom:441.496050px;}
.y179{bottom:441.992100px;}
.y1a6{bottom:442.996050px;}
.y132{bottom:443.492100px;}
.y1ec{bottom:445.996050px;}
.y1eb{bottom:447.496050px;}
.y1ea{bottom:448.996050px;}
.y1f{bottom:451.996050px;}
.y1e{bottom:453.496050px;}
.y222{bottom:453.992100px;}
.y1d{bottom:454.996050px;}
.y1c2{bottom:455.492100px;}
.y1c3{bottom:456.992100px;}
.y6b{bottom:458.492100px;}
.y6c{bottom:459.992100px;}
.ybc{bottom:463.996050px;}
.ybd{bottom:465.496050px;}
.y192{bottom:465.992100px;}
.y1a5{bottom:466.996050px;}
.y131{bottom:467.492100px;}
.y221{bottom:470.492100px;}
.y1e7{bottom:471.496050px;}
.y1c0{bottom:471.992100px;}
.y1c1{bottom:473.492100px;}
.y1e9{bottom:474.496050px;}
.y1c{bottom:475.996050px;}
.y1b{bottom:477.496050px;}
.y1a{bottom:478.996050px;}
.y220{bottom:479.492100px;}
.y1e8{bottom:480.496050px;}
.y68{bottom:482.492100px;}
.y69{bottom:483.992100px;}
.y6a{bottom:485.492100px;}
.y158{bottom:486.496050px;}
.yba{bottom:487.996050px;}
.y12d{bottom:488.492100px;}
.ybb{bottom:489.496050px;}
.y1bf{bottom:489.992100px;}
.y1a4{bottom:490.996050px;}
.y12e{bottom:491.492100px;}
.y1e6{bottom:492.496050px;}
.y1e4{bottom:493.996050px;}
.y21f{bottom:494.492100px;}
.y1e5{bottom:495.496050px;}
.y21e{bottom:495.992100px;}
.y246{bottom:496.996050px;}
.y178{bottom:497.492100px;}
.y245{bottom:498.496050px;}
.y12f{bottom:498.992100px;}
.y12c{bottom:500.492100px;}
.y130{bottom:501.992100px;}
.y21d{bottom:503.492100px;}
.y1be{bottom:504.992100px;}
.y19{bottom:508.996050px;}
.y21b{bottom:509.492100px;}
.y18{bottom:510.496050px;}
.y21c{bottom:510.992100px;}
.y17{bottom:511.996050px;}
.y219{bottom:512.492100px;}
.yb9{bottom:513.496050px;}
.y66{bottom:513.992100px;}
.y1a3{bottom:514.996050px;}
.y67{bottom:515.492100px;}
.y12a{bottom:516.992100px;}
.y21a{bottom:519.992100px;}
.y176{bottom:521.492100px;}
.y243{bottom:522.496050px;}
.y175{bottom:522.992100px;}
.y244{bottom:523.996050px;}
.y157{bottom:525.496050px;}
.y177{bottom:527.492100px;}
.y174{bottom:528.992100px;}
.y173{bottom:530.492100px;}
.y16{bottom:531.496050px;}
.y129{bottom:531.992100px;}
.y15{bottom:532.996050px;}
.y14{bottom:534.496050px;}
.y218{bottom:534.992100px;}
.y104{bottom:535.996050px;}
.y1a2{bottom:537.496050px;}
.y64{bottom:537.992100px;}
.y65{bottom:539.492100px;}
.y1e3{bottom:540.496050px;}
.y1e2{bottom:541.996050px;}
.yb7{bottom:543.496050px;}
.yb8{bottom:544.996050px;}
.y128{bottom:548.492100px;}
.y216{bottom:551.492100px;}
.yfc{bottom:552.992100px;}
.y242{bottom:553.996050px;}
.y1bd{bottom:554.492100px;}
.y13{bottom:555.496050px;}
.y217{bottom:555.992100px;}
.y12{bottom:556.996050px;}
.yfd{bottom:557.492100px;}
.y11{bottom:558.496050px;}
.yfe{bottom:558.992100px;}
.y10c{bottom:559.996050px;}
.y1a1{bottom:561.496050px;}
.y62{bottom:561.992100px;}
.y10e{bottom:562.996050px;}
.y63{bottom:563.492100px;}
.y1e1{bottom:564.496050px;}
.y1e0{bottom:565.996050px;}
.ye8{bottom:566.492100px;}
.yb5{bottom:567.496050px;}
.yb6{bottom:568.996050px;}
.y215{bottom:575.492100px;}
.y1df{bottom:577.996050px;}
.y170{bottom:578.492100px;}
.y10{bottom:579.496050px;}
.y171{bottom:579.992100px;}
.yf{bottom:580.996050px;}
.ye{bottom:582.496050px;}
.y172{bottom:582.992100px;}
.y10b{bottom:583.996050px;}
.y1a0{bottom:585.496050px;}
.y60{bottom:585.992100px;}
.y241{bottom:586.996050px;}
.y61{bottom:587.492100px;}
.y156{bottom:588.496050px;}
.ye7{bottom:590.492100px;}
.yb3{bottom:591.496050px;}
.yb2{bottom:592.996050px;}
.yb4{bottom:594.496050px;}
.y127{bottom:594.992100px;}
.y153{bottom:595.996050px;}
.y1de{bottom:597.496050px;}
.yd{bottom:603.496050px;}
.yc{bottom:604.996050px;}
.yb{bottom:606.496050px;}
.y214{bottom:606.992100px;}
.y10a{bottom:607.996050px;}
.y213{bottom:608.492100px;}
.y5e{bottom:609.992100px;}
.y23f{bottom:610.996050px;}
.y5f{bottom:611.492100px;}
.y152{bottom:612.496050px;}
.y240{bottom:613.996050px;}
.y16f{bottom:614.492100px;}
.yb0{bottom:616.996050px;}
.y1bc{bottom:617.492100px;}
.yb1{bottom:618.496050px;}
.y16e{bottom:618.992100px;}
.y1dd{bottom:619.996050px;}
.y211{bottom:620.492100px;}
.ye6{bottom:621.992100px;}
.ye5{bottom:623.492100px;}
.y210{bottom:624.992100px;}
.y16d{bottom:626.492100px;}
.ya{bottom:627.496050px;}
.y126{bottom:627.992100px;}
.y9{bottom:628.996050px;}
.y8{bottom:630.496050px;}
.y212{bottom:632.492100px;}
.y155{bottom:633.496050px;}
.y5c{bottom:633.992100px;}
.y150{bottom:634.996050px;}
.y5d{bottom:635.492100px;}
.y151{bottom:636.496050px;}
.y103{bottom:639.496050px;}
.yae{bottom:640.996050px;}
.y16b{bottom:641.492100px;}
.yaf{bottom:642.496050px;}
.y16a{bottom:642.992100px;}
.y23d{bottom:643.996050px;}
.y16c{bottom:644.492100px;}
.y23e{bottom:645.496050px;}
.ye4{bottom:645.992100px;}
.ye3{bottom:647.492100px;}
.y1dc{bottom:649.996050px;}
.y1bb{bottom:650.492100px;}
.y1db{bottom:651.496050px;}
.y102{bottom:655.996050px;}
.y20e{bottom:656.492100px;}
.y5a{bottom:657.992100px;}
.y14f{bottom:658.996050px;}
.y5b{bottom:659.492100px;}
.y14e{bottom:660.496050px;}
.y20f{bottom:662.492100px;}
.yad{bottom:664.996050px;}
.y7{bottom:666.496050px;}
.yac{bottom:667.996050px;}
.y20b{bottom:668.492100px;}
.y19f{bottom:669.496050px;}
.y20a{bottom:669.992100px;}
.y19e{bottom:670.996050px;}
.y20d{bottom:671.492100px;}
.y19d{bottom:672.496050px;}
.y208{bottom:672.992100px;}
.y209{bottom:674.492100px;}
.y169{bottom:675.992100px;}
.y23c{bottom:676.996050px;}
.y20c{bottom:677.492100px;}
.ye2{bottom:678.992100px;}
.y1da{bottom:681.496050px;}
.y57{bottom:681.992100px;}
.y154{bottom:682.996050px;}
.y58{bottom:683.492100px;}
.y14d{bottom:684.496050px;}
.y59{bottom:684.992100px;}
.y101{bottom:688.996050px;}
.y6{bottom:690.496050px;}
.y168{bottom:690.992100px;}
.yab{bottom:691.996050px;}
.y167{bottom:692.492100px;}
.y207{bottom:695.492100px;}
.y206{bottom:696.992100px;}
.y23a{bottom:700.996050px;}
.ye1{bottom:701.492100px;}
.y23b{bottom:702.496050px;}
.ye0{bottom:702.992100px;}
.y1ba{bottom:704.492100px;}
.y1d9{bottom:705.496050px;}
.y54{bottom:705.992100px;}
.y14c{bottom:706.996050px;}
.y55{bottom:707.492100px;}
.y14b{bottom:708.496050px;}
.y56{bottom:708.992100px;}
.y19c{bottom:712.996050px;}
.y203{bottom:713.492100px;}
.y5{bottom:714.496050px;}
.y165{bottom:714.992100px;}
.yaa{bottom:715.996050px;}
.y164{bottom:716.492100px;}
.y19b{bottom:717.496050px;}
.y204{bottom:717.992100px;}
.y19a{bottom:718.996050px;}
.y201{bottom:719.492100px;}
.y108{bottom:720.496050px;}
.y205{bottom:720.992100px;}
.y202{bottom:722.492100px;}
.y166{bottom:723.992100px;}
.y238{bottom:724.996050px;}
.ydf{bottom:725.492100px;}
.y239{bottom:726.496050px;}
.yde{bottom:726.992100px;}
.y109{bottom:727.996050px;}
.y1b9{bottom:729.992100px;}
.y14a{bottom:730.996050px;}
.y52{bottom:731.492100px;}
.y53{bottom:732.992100px;}
.y1d8{bottom:735.496050px;}
.y107{bottom:736.996050px;}
.ya8{bottom:738.496050px;}
.ya9{bottom:739.996050px;}
.y163{bottom:740.492100px;}
.y1d7{bottom:741.496050px;}
.y200{bottom:743.492100px;}
.y1d6{bottom:744.496050px;}
.y1fe{bottom:744.992100px;}
.y1fd{bottom:746.492100px;}
.y4{bottom:747.496050px;}
.y199{bottom:748.996050px;}
.y237{bottom:750.496050px;}
.y1ff{bottom:752.492100px;}
.y106{bottom:753.496050px;}
.y1b8{bottom:753.992100px;}
.y149{bottom:754.996050px;}
.y50{bottom:755.492100px;}
.y51{bottom:756.992100px;}
.ydd{bottom:758.492100px;}
.ya6{bottom:762.496050px;}
.y162{bottom:762.992100px;}
.ya7{bottom:763.996050px;}
.y161{bottom:764.492100px;}
.y1fc{bottom:767.492100px;}
.y105{bottom:768.496050px;}
.y1fb{bottom:768.992100px;}
.y198{bottom:769.996050px;}
.y197{bottom:771.496050px;}
.y196{bottom:772.996050px;}
.y1f8{bottom:773.492100px;}
.y1f9{bottom:774.992100px;}
.y1fa{bottom:776.492100px;}
.y148{bottom:777.496050px;}
.y1b7{bottom:777.992100px;}
.y147{bottom:778.996050px;}
.y1b6{bottom:779.492100px;}
.y236{bottom:780.496050px;}
.ydc{bottom:780.992100px;}
.y235{bottom:781.996050px;}
.yd9{bottom:782.492100px;}
.y146{bottom:783.496050px;}
.ya4{bottom:786.496050px;}
.y4e{bottom:786.992100px;}
.ya5{bottom:787.996050px;}
.y4f{bottom:788.492100px;}
.y3{bottom:789.496050px;}
.y2{bottom:790.996050px;}
.y1d5{bottom:792.496050px;}
.y195{bottom:793.996050px;}
.y194{bottom:795.496050px;}
.ydb{bottom:795.992100px;}
.yda{bottom:797.492100px;}
.y100{bottom:799.996050px;}
.yff{bottom:801.496050px;}
.y1b5{bottom:803.492100px;}
.y232{bottom:804.496050px;}
.y233{bottom:805.996050px;}
.y234{bottom:807.496050px;}
.ya1{bottom:810.496050px;}
.ya2{bottom:811.996050px;}
.y1{bottom:813.496050px;}
.y12b{bottom:855.992100px;}
.y87{bottom:857.492100px;}
.y10d{bottom:864.496050px;}
.ya3{bottom:865.996050px;}
.hb{height:18.501164px;}
.h13{height:24.668218px;}
.h8{height:30.835273px;}
.h4{height:37.002327px;}
.h6{height:49.336436px;}
.ha{height:55.336436px;}
.h2{height:55.503491px;}
.h5{height:61.503491px;}
.he{height:61.670545px;}
.h7{height:67.837600px;}
.h9{height:74.004654px;}
.h15{height:85.503491px;}
.h11{height:86.338763px;}
.h12{height:104.839927px;}
.h14{height:129.508145px;}
.hf{height:154.176363px;}
.h10{height:851.739600px;}
.hc{height:851.740050px;}
.hd{height:852.000000px;}
.h3{height:853.239600px;}
.h0{height:853.240050px;}
.h1{height:853.500000px;}
.w5{width:581.739540px;}
.w3{width:581.740590px;}
.w4{width:582.000000px;}
.w2{width:583.239540px;}
.w0{width:583.240590px;}
.w1{width:583.500000px;}
.wc{width:584.740590px;}
.wd{width:585.000000px;}
.w8{width:586.239540px;}
.w6{width:586.240590px;}
.w7{width:586.500000px;}
.wb{width:587.739540px;}
.w9{width:587.740590px;}
.wa{width:588.000000px;}
.xe5{left:-12.755910px;}
.xbe{left:-4.251960px;}
.x0{left:0.000000px;}
.x16a{left:13.748040px;}
.x164{left:21.744090px;}
.x169{left:23.244090px;}
.xf0{left:24.744090px;}
.x158{left:27.744090px;}
.xeb{left:29.244090px;}
.xe7{left:30.744090px;}
.xee{left:32.244090px;}
.xf2{left:33.744090px;}
.x104{left:35.244090px;}
.x10f{left:36.744090px;}
.x1{left:38.244090px;}
.x1a{left:41.244090px;}
.x13{left:42.744090px;}
.x12a{left:43.748040px;}
.x6b{left:45.248040px;}
.x7f{left:46.748040px;}
.xa9{left:48.248040px;}
.xb0{left:49.748040px;}
.xdf{left:51.248040px;}
.x15b{left:53.244090px;}
.x132{left:54.248040px;}
.x14e{left:56.244090px;}
.xe4{left:57.248040px;}
.x105{left:59.244090px;}
.x155{left:60.744090px;}
.xc4{left:61.748040px;}
.x6{left:63.744090px;}
.x2{left:65.244090px;}
.x1b{left:66.744090px;}
.xf5{left:68.244090px;}
.x152{left:69.744090px;}
.x126{left:71.244090px;}
.x66{left:72.744090px;}
.x32{left:74.244090px;}
.xc5{left:75.248040px;}
.xff{left:77.244090px;}
.x3{left:78.744090px;}
.x123{left:80.244090px;}
.x36{left:81.744090px;}
.x1c{left:83.244090px;}
.x54{left:84.744090px;}
.x137{left:85.748040px;}
.x73{left:87.248040px;}
.xa8{left:88.748040px;}
.x7{left:90.744090px;}
.xb2{left:91.748040px;}
.xf8{left:93.744090px;}
.x8{left:95.244090px;}
.x9c{left:96.248040px;}
.x41{left:98.244090px;}
.x4c{left:99.744090px;}
.x100{left:101.244090px;}
.x136{left:102.248040px;}
.x168{left:104.244090px;}
.x4{left:105.744090px;}
.x37{left:107.244090px;}
.x2c{left:108.744090px;}
.x12b{left:109.748040px;}
.x13f{left:111.248040px;}
.x6c{left:112.748040px;}
.x57{left:114.744090px;}
.x4f{left:116.244090px;}
.xd8{left:117.248040px;}
.x5{left:119.244090px;}
.x74{left:120.248040px;}
.xab{left:121.748040px;}
.x3d{left:123.744090px;}
.xce{left:124.748040px;}
.x11b{left:126.744090px;}
.x119{left:128.244090px;}
.xe8{left:129.744090px;}
.x55{left:131.244090px;}
.x4a{left:132.744090px;}
.x14{left:134.244090px;}
.x139{left:135.248040px;}
.x58{left:137.244090px;}
.x69{left:138.744090px;}
.x38{left:140.244090px;}
.x22{left:141.744090px;}
.x10d{left:143.244090px;}
.x110{left:144.744090px;}
.x8a{left:145.748040px;}
.xf{left:147.744090px;}
.x2d{left:149.244090px;}
.x12f{left:150.248040px;}
.x10a{left:152.244090px;}
.x75{left:153.248040px;}
.xe9{left:155.244090px;}
.x15{left:156.744090px;}
.x23{left:158.244090px;}
.x111{left:159.744090px;}
.x149{left:160.748040px;}
.x80{left:162.248040px;}
.x140{left:163.748040px;}
.x39{left:165.744090px;}
.xe0{left:166.748040px;}
.x13c{left:168.248040px;}
.x8b{left:169.748040px;}
.xa2{left:171.248040px;}
.x67{left:173.244090px;}
.x64{left:174.744090px;}
.xf9{left:176.244090px;}
.x11c{left:177.744090px;}
.x8f{left:178.748040px;}
.x96{left:180.248040px;}
.x24{left:182.244090px;}
.xc9{left:183.248040px;}
.x101{left:185.244090px;}
.x87{left:186.248040px;}
.x9d{left:187.748040px;}
.xa{left:189.744090px;}
.x45{left:191.244090px;}
.xcd{left:192.248040px;}
.x6d{left:193.748040px;}
.x97{left:195.248040px;}
.xa3{left:196.748040px;}
.xd{left:198.744090px;}
.x3a{left:200.244090px;}
.x112{left:201.744090px;}
.x90{left:202.748040px;}
.xea{left:204.744090px;}
.x9{left:206.244090px;}
.xca{left:207.248040px;}
.x157{left:208.748040px;}
.x10b{left:210.744090px;}
.x9e{left:211.748040px;}
.xac{left:213.248040px;}
.x1d{left:215.244090px;}
.x12c{left:216.248040px;}
.x133{left:217.748040px;}
.x161{left:219.248040px;}
.x165{left:221.244090px;}
.x50{left:222.744090px;}
.xd9{left:223.748040px;}
.x150{left:225.744090px;}
.x141{left:226.748040px;}
.x8c{left:228.248040px;}
.x156{left:229.748040px;}
.x2e{left:231.744090px;}
.xcf{left:232.748040px;}
.x153{left:234.744090px;}
.x76{left:235.748040px;}
.x91{left:237.248040px;}
.x28{left:239.244090px;}
.x33{left:240.744090px;}
.x106{left:242.244090px;}
.x134{left:243.248040px;}
.x11d{left:245.244090px;}
.xc{left:246.744090px;}
.x10{left:248.244090px;}
.x154{left:249.744090px;}
.x130{left:250.748040px;}
.x81{left:252.248040px;}
.xa4{left:253.748040px;}
.xb{left:255.744090px;}
.xb7{left:256.748040px;}
.xfc{left:258.744090px;}
.x6e{left:259.748040px;}
.x127{left:261.744090px;}
.x46{left:263.244090px;}
.x34{left:264.744090px;}
.xd0{left:265.748040px;}
.xe1{left:267.248040px;}
.x131{left:268.748040px;}
.x92{left:270.248040px;}
.x60{left:272.244090px;}
.x29{left:273.744090px;}
.x107{left:275.244090px;}
.x82{left:276.248040px;}
.x98{left:277.748040px;}
.xe{left:279.744090px;}
.x3b{left:281.244090px;}
.xd1{left:282.248040px;}
.x113{left:284.244090px;}
.x6f{left:285.248040px;}
.xa7{left:286.748040px;}
.x4d{left:288.744090px;}
.xad{left:289.748040px;}
.x135{left:291.248040px;}
.x77{left:292.748040px;}
.x93{left:294.248040px;}
.xef{left:296.244090px;}
.x5b{left:297.744090px;}
.xbd{left:298.748040px;}
.x108{left:300.744090px;}
.x85{left:301.748040px;}
.x99{left:303.248040px;}
.x61{left:305.244090px;}
.x1e{left:306.744090px;}
.xda{left:307.748040px;}
.x11a{left:309.744090px;}
.x7d{left:310.748040px;}
.xec{left:312.744090px;}
.x25{left:314.244090px;}
.x2f{left:315.744090px;}
.x114{left:317.244090px;}
.x142{left:318.248040px;}
.xa5{left:319.748040px;}
.x11{left:321.744090px;}
.xbf{left:322.748040px;}
.x151{left:324.744090px;}
.x70{left:325.748040px;}
.x125{left:327.744090px;}
.x62{left:329.244090px;}
.xf6{left:330.744090px;}
.x1f{left:332.244090px;}
.x10e{left:333.744090px;}
.x8d{left:334.748040px;}
.x13a{left:336.248040px;}
.x59{left:338.244090px;}
.x128{left:339.744090px;}
.xdb{left:340.748040px;}
.x13b{left:342.248040px;}
.x9a{left:343.748040px;}
.x14c{left:345.744090px;}
.x12{left:347.244090px;}
.xc0{left:348.248040px;}
.x12e{left:349.748040px;}
.x124{left:351.744090px;}
.xa6{left:352.748040px;}
.x5c{left:354.744090px;}
.x16{left:356.244090px;}
.xd2{left:357.248040px;}
.xde{left:358.748040px;}
.x14a{left:360.248040px;}
.x49{left:362.244090px;}
.x3e{left:363.744090px;}
.x12d{left:364.748040px;}
.xdc{left:366.248040px;}
.x120{left:368.244090px;}
.x8e{left:369.248040px;}
.x3c{left:371.244090px;}
.x35{left:372.744090px;}
.xc6{left:373.748040px;}
.x88{left:375.248040px;}
.x78{left:376.748040px;}
.x63{left:378.744090px;}
.x17{left:380.244090px;}
.xc1{left:381.248040px;}
.x102{left:383.244090px;}
.x79{left:384.248040px;}
.x159{left:386.244090px;}
.x42{left:387.744090px;}
.x14b{left:388.748040px;}
.xd3{left:390.248040px;}
.x7a{left:391.748040px;}
.x146{left:393.248040px;}
.x65{left:395.244090px;}
.x18{left:396.744090px;}
.xb9{left:397.748040px;}
.xfa{left:399.744090px;}
.x94{left:400.748040px;}
.x147{left:402.248040px;}
.x30{left:404.244090px;}
.x103{left:405.744090px;}
.xcb{left:406.748040px;}
.x83{left:408.248040px;}
.x9f{left:409.748040px;}
.x47{left:411.744090px;}
.xb4{left:412.748040px;}
.xfb{left:414.744090px;}
.xd4{left:415.748040px;}
.x71{left:417.248040px;}
.x20{left:419.244090px;}
.xf7{left:420.744090px;}
.x109{left:422.244090px;}
.xb3{left:423.248040px;}
.x129{left:425.244090px;}
.x31{left:426.744090px;}
.xae{left:427.748040px;}
.x14f{left:429.744090px;}
.xc7{left:430.748040px;}
.x72{left:432.248040px;}
.x68{left:434.244090px;}
.x51{left:435.744090px;}
.x2a{left:437.244090px;}
.xfd{left:438.744090px;}
.xd5{left:439.748040px;}
.xe2{left:441.248040px;}
.x56{left:443.244090px;}
.x26{left:444.744090px;}
.xaf{left:445.748040px;}
.x10c{left:447.744090px;}
.x7b{left:448.748040px;}
.x162{left:450.248040px;}
.x5d{left:452.244090px;}
.xaa{left:453.248040px;}
.xb5{left:454.748040px;}
.xdd{left:456.248040px;}
.x121{left:458.244090px;}
.x52{left:459.744090px;}
.x43{left:461.244090px;}
.xf3{left:462.744090px;}
.x116{left:464.244090px;}
.xe3{left:465.248040px;}
.xa0{left:466.748040px;}
.x4b{left:468.744090px;}
.x21{left:470.244090px;}
.x138{left:471.248040px;}
.xba{left:472.748040px;}
.x145{left:474.248040px;}
.x95{left:475.748040px;}
.x5e{left:477.744090px;}
.xb1{left:478.748040px;}
.xc2{left:480.248040px;}
.x11e{left:482.244090px;}
.x84{left:483.248040px;}
.x44{left:485.244090px;}
.xf1{left:486.744090px;}
.xbb{left:487.748040px;}
.x115{left:489.744090px;}
.x13d{left:490.748040px;}
.xa1{left:492.248040px;}
.x27{left:494.244090px;}
.xed{left:495.744090px;}
.xfe{left:497.244090px;}
.x122{left:498.744090px;}
.x7c{left:499.748040px;}
.x3f{left:501.744090px;}
.x19{left:503.244090px;}
.xb8{left:504.248040px;}
.xcc{left:505.748040px;}
.xd6{left:507.248040px;}
.x5f{left:509.244090px;}
.x53{left:510.744090px;}
.x48{left:512.244090px;}
.xbc{left:513.248040px;}
.x117{left:515.244090px;}
.x15e{left:516.248040px;}
.x4e{left:518.244090px;}
.x2b{left:519.744090px;}
.x167{left:521.244090px;}
.x9b{left:522.248040px;}
.x7e{left:523.748040px;}
.x40{left:525.744090px;}
.xe6{left:527.244090px;}
.xb6{left:528.248040px;}
.xc8{left:529.748040px;}
.x118{left:531.744090px;}
.x86{left:532.748040px;}
.x6a{left:534.744090px;}
.x166{left:536.244090px;}
.xf4{left:537.744090px;}
.xd7{left:538.748040px;}
.x143{left:540.248040px;}
.x15f{left:541.748040px;}
.x5a{left:543.744090px;}
.x15c{left:545.244090px;}
.xc3{left:546.248040px;}
.x163{left:548.244090px;}
.x14d{left:549.744090px;}
.x144{left:550.748040px;}
.x89{left:552.248040px;}
.x16b{left:555.248040px;}
.x11f{left:557.244090px;}
.x148{left:558.248040px;}
.x160{left:559.748040px;}
.x15a{left:561.744090px;}
.x15d{left:569.244090px;}
.x13e{left:573.248040px;}
@media print{
.v3{vertical-align:-32.000000pt;}
.v4{vertical-align:-26.666667pt;}
.v6{vertical-align:-21.333333pt;}
.v5{vertical-align:-10.666667pt;}
.v1{vertical-align:-5.333333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:5.333333pt;}
.v7{vertical-align:26.666667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:3.306667pt;}
.ls6{letter-spacing:5.333333pt;}
.ls11{letter-spacing:6.720000pt;}
.lsd{letter-spacing:13.546667pt;}
.ls1{letter-spacing:16.960000pt;}
.lsf{letter-spacing:23.407407pt;}
.ls3{letter-spacing:32.888889pt;}
.ls9{letter-spacing:34.026667pt;}
.ls2{letter-spacing:34.666667pt;}
.lsa{letter-spacing:51.093333pt;}
.lsc{letter-spacing:61.333333pt;}
.lsb{letter-spacing:72.000000pt;}
.ls12{letter-spacing:80.296296pt;}
.ls10{letter-spacing:82.666667pt;}
.ls5{letter-spacing:109.120000pt;}
.ls8{letter-spacing:146.666667pt;}
.ls4{letter-spacing:317.333333pt;}
.lse{letter-spacing:952.000000pt;}
.wsc{word-spacing:-341.333333pt;}
.ws2b{word-spacing:-106.666667pt;}
.ws1f{word-spacing:-85.333333pt;}
.ws22{word-spacing:-37.546667pt;}
.ws15{word-spacing:-32.000000pt;}
.ws2c{word-spacing:-29.333333pt;}
.ws11{word-spacing:-26.666667pt;}
.ws0{word-spacing:-24.000000pt;}
.wse{word-spacing:-21.333333pt;}
.ws5{word-spacing:-16.000000pt;}
.ws24{word-spacing:-13.866667pt;}
.ws1e{word-spacing:-13.333333pt;}
.ws7{word-spacing:-12.984542pt;}
.ws2a{word-spacing:-12.168493pt;}
.ws20{word-spacing:-11.311909pt;}
.ws1{word-spacing:-11.084475pt;}
.ws17{word-spacing:-10.666667pt;}
.ws6{word-spacing:-10.453333pt;}
.ws3{word-spacing:-10.074074pt;}
.wsf{word-spacing:-8.000000pt;}
.ws25{word-spacing:-7.839840pt;}
.ws18{word-spacing:-7.501209pt;}
.ws16{word-spacing:-7.279143pt;}
.ws28{word-spacing:-7.070205pt;}
.ws1b{word-spacing:-7.040000pt;}
.wsb{word-spacing:-5.333333pt;}
.ws1c{word-spacing:-3.917943pt;}
.ws9{word-spacing:-2.741552pt;}
.ws8{word-spacing:-2.666667pt;}
.ws1a{word-spacing:-0.592593pt;}
.ws4{word-spacing:0.000000pt;}
.ws2{word-spacing:1.587101pt;}
.wsa{word-spacing:4.740741pt;}
.ws19{word-spacing:10.026667pt;}
.ws23{word-spacing:10.666667pt;}
.ws26{word-spacing:13.333333pt;}
.ws12{word-spacing:20.740741pt;}
.ws13{word-spacing:40.746667pt;}
.ws14{word-spacing:44.160000pt;}
.ws27{word-spacing:56.296296pt;}
.ws1d{word-spacing:58.666667pt;}
.ws21{word-spacing:80.000000pt;}
.ws10{word-spacing:122.666667pt;}
.ws29{word-spacing:186.666667pt;}
.wsd{word-spacing:378.666667pt;}
._12{margin-left:-317.333333pt;}
._24{margin-left:-293.653333pt;}
._25{margin-left:-82.666667pt;}
._1c{margin-left:-61.333333pt;}
._b{margin-left:-42.172176pt;}
._8{margin-left:-40.289572pt;}
._2{margin-left:-30.004837pt;}
._13{margin-left:-27.504434pt;}
._19{margin-left:-25.004031pt;}
._f{margin-left:-24.000000pt;}
._1b{margin-left:-21.567975pt;}
._a{margin-left:-19.408244pt;}
._15{margin-left:-17.549136pt;}
._1e{margin-left:-15.337096pt;}
._d{margin-left:-13.919556pt;}
._3{margin-left:-12.836693pt;}
._11{margin-left:-11.849702pt;}
._4{margin-left:-10.336290pt;}
._22{margin-left:-9.426940pt;}
._e{margin-left:-7.835886pt;}
._10{margin-left:-6.933333pt;}
._c{margin-left:-5.335483pt;}
._1{margin-left:-4.252620pt;}
._17{margin-left:-2.666667pt;}
._0{margin-left:-1.750297pt;}
._6{width:2.030009pt;}
._18{width:3.306667pt;}
._9{width:4.331452pt;}
._5{width:5.555247pt;}
._16{width:6.720000pt;}
._23{width:7.778086pt;}
._7{width:9.330338pt;}
._1f{width:13.546667pt;}
._1a{width:16.960000pt;}
._1d{width:32.888889pt;}
._14{width:62.222222pt;}
._26{width:88.640000pt;}
._20{width:104.000000pt;}
._21{width:189.333333pt;}
.fs6{font-size:16.000000pt;}
.fsb{font-size:21.333333pt;}
.fs4{font-size:26.666667pt;}
.fs1{font-size:32.000000pt;}
.fs2{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs9{font-size:74.666667pt;}
.fsa{font-size:90.666667pt;}
.fsc{font-size:112.000000pt;}
.fs8{font-size:133.333333pt;}
.y0{bottom:0.000000pt;}
.ya0{bottom:18.215200pt;}
.y1f7{bottom:23.548533pt;}
.y4d{bottom:29.774267pt;}
.y1f6{bottom:31.548533pt;}
.y9d{bottom:55.548533pt;}
.y9e{bottom:56.881867pt;}
.y9f{bottom:58.215200pt;}
.y4c{bottom:59.107600pt;}
.y4b{bottom:60.440933pt;}
.y231{bottom:64.881867pt;}
.yfb{bottom:67.548533pt;}
.y193{bottom:68.881867pt;}
.y145{bottom:70.215200pt;}
.y143{bottom:71.548533pt;}
.y144{bottom:72.881867pt;}
.y9b{bottom:76.881867pt;}
.y9a{bottom:78.215200pt;}
.y9c{bottom:79.548533pt;}
.y4a{bottom:80.440933pt;}
.y49{bottom:81.774267pt;}
.y22f{bottom:82.215200pt;}
.y48{bottom:83.107600pt;}
.y230{bottom:83.548533pt;}
.y11d{bottom:85.774267pt;}
.y11e{bottom:87.107600pt;}
.yf9{bottom:88.881867pt;}
.yfa{bottom:90.215200pt;}
.yd6{bottom:91.107600pt;}
.yd7{bottom:92.440933pt;}
.y141{bottom:92.881867pt;}
.y142{bottom:94.215200pt;}
.yf8{bottom:96.881867pt;}
.yd8{bottom:97.774267pt;}
.y191{bottom:98.215200pt;}
.yd5{bottom:99.107600pt;}
.y97{bottom:99.548533pt;}
.y98{bottom:100.881867pt;}
.y99{bottom:102.215200pt;}
.y1b4{bottom:103.107600pt;}
.y190{bottom:103.548533pt;}
.y18f{bottom:106.215200pt;}
.y11b{bottom:107.107600pt;}
.y11c{bottom:108.440933pt;}
.y47{bottom:109.774267pt;}
.y46{bottom:111.107600pt;}
.y22e{bottom:111.548533pt;}
.y45{bottom:112.440933pt;}
.y18d{bottom:112.881867pt;}
.y18e{bottom:114.215200pt;}
.y1b3{bottom:115.107600pt;}
.y1b2{bottom:116.440933pt;}
.yd4{bottom:119.107600pt;}
.yd3{bottom:120.440933pt;}
.y93{bottom:120.881867pt;}
.y94{bottom:122.215200pt;}
.y95{bottom:123.548533pt;}
.y96{bottom:124.881867pt;}
.y1ce{bottom:126.215200pt;}
.y119{bottom:128.440933pt;}
.y11a{bottom:129.774267pt;}
.y44{bottom:131.107600pt;}
.y43{bottom:132.440933pt;}
.y22d{bottom:132.881867pt;}
.y42{bottom:133.774267pt;}
.y18b{bottom:134.215200pt;}
.y18c{bottom:135.548533pt;}
.y1b1{bottom:140.440933pt;}
.yd1{bottom:141.774267pt;}
.yd2{bottom:143.107600pt;}
.y1cc{bottom:146.215200pt;}
.y1f5{bottom:147.107600pt;}
.y1cd{bottom:147.548533pt;}
.y1f4{bottom:148.440933pt;}
.y92{bottom:148.881867pt;}
.y91{bottom:150.215200pt;}
.y41{bottom:152.440933pt;}
.y22b{bottom:152.881867pt;}
.y40{bottom:153.774267pt;}
.y22c{bottom:154.215200pt;}
.y3f{bottom:155.107600pt;}
.y189{bottom:155.548533pt;}
.y18a{bottom:156.881867pt;}
.y1b0{bottom:157.774267pt;}
.y1af{bottom:159.107600pt;}
.ycf{bottom:163.107600pt;}
.yd0{bottom:164.440933pt;}
.y22a{bottom:168.881867pt;}
.y1f2{bottom:169.774267pt;}
.y8d{bottom:170.215200pt;}
.y1f3{bottom:171.107600pt;}
.y8e{bottom:171.548533pt;}
.y8f{bottom:172.881867pt;}
.y3e{bottom:173.774267pt;}
.y90{bottom:174.215200pt;}
.y3d{bottom:175.107600pt;}
.y1cb{bottom:175.548533pt;}
.y3c{bottom:176.440933pt;}
.y13f{bottom:179.548533pt;}
.y140{bottom:180.881867pt;}
.ycc{bottom:183.107600pt;}
.ycd{bottom:184.440933pt;}
.yce{bottom:185.774267pt;}
.y8a{bottom:191.548533pt;}
.y89{bottom:192.881867pt;}
.y118{bottom:193.774267pt;}
.y8b{bottom:194.215200pt;}
.y160{bottom:195.107600pt;}
.y8c{bottom:195.548533pt;}
.y15f{bottom:196.440933pt;}
.y229{bottom:196.881867pt;}
.y1ae{bottom:199.107600pt;}
.y1ad{bottom:200.440933pt;}
.y1d2{bottom:200.881867pt;}
.y3b{bottom:201.774267pt;}
.y3a{bottom:203.107600pt;}
.y1d3{bottom:203.548533pt;}
.y39{bottom:204.440933pt;}
.y1d4{bottom:204.881867pt;}
.yca{bottom:205.774267pt;}
.ycb{bottom:207.107600pt;}
.y13e{bottom:208.881867pt;}
.y85{bottom:214.215200pt;}
.y116{bottom:215.107600pt;}
.y86{bottom:215.548533pt;}
.y15e{bottom:216.440933pt;}
.y88{bottom:216.881867pt;}
.y1d1{bottom:218.215200pt;}
.y187{bottom:219.548533pt;}
.y1ac{bottom:220.440933pt;}
.y188{bottom:220.881867pt;}
.y117{bottom:221.774267pt;}
.y38{bottom:224.440933pt;}
.y37{bottom:225.774267pt;}
.y115{bottom:229.774267pt;}
.y13d{bottom:230.215200pt;}
.y1f1{bottom:232.440933pt;}
.y1cf{bottom:232.881867pt;}
.yc7{bottom:233.774267pt;}
.y1d0{bottom:234.215200pt;}
.yc9{bottom:235.107600pt;}
.y82{bottom:235.548533pt;}
.y15d{bottom:236.440933pt;}
.y83{bottom:236.881867pt;}
.yc8{bottom:237.774267pt;}
.y84{bottom:238.215200pt;}
.yf7{bottom:239.548533pt;}
.y185{bottom:240.881867pt;}
.y114{bottom:241.774267pt;}
.y186{bottom:242.215200pt;}
.y113{bottom:243.107600pt;}
.y36{bottom:244.440933pt;}
.y35{bottom:245.774267pt;}
.y34{bottom:247.107600pt;}
.y13c{bottom:248.881867pt;}
.y123{bottom:249.774267pt;}
.y13b{bottom:251.548533pt;}
.yf6{bottom:254.215200pt;}
.yc5{bottom:255.107600pt;}
.yc6{bottom:256.440933pt;}
.y7f{bottom:256.881867pt;}
.y124{bottom:257.774267pt;}
.y80{bottom:258.215200pt;}
.y81{bottom:259.548533pt;}
.y183{bottom:262.215200pt;}
.y125{bottom:263.107600pt;}
.y181{bottom:263.548533pt;}
.y112{bottom:264.440933pt;}
.y184{bottom:264.881867pt;}
.y32{bottom:265.774267pt;}
.y31{bottom:267.107600pt;}
.y30{bottom:268.440933pt;}
.y1ef{bottom:271.107600pt;}
.y182{bottom:271.548533pt;}
.y33{bottom:272.440933pt;}
.y139{bottom:272.881867pt;}
.y1f0{bottom:273.774267pt;}
.y13a{bottom:274.215200pt;}
.y227{bottom:275.548533pt;}
.y228{bottom:276.881867pt;}
.y7c{bottom:278.215200pt;}
.y7d{bottom:279.548533pt;}
.y7e{bottom:280.881867pt;}
.y1ab{bottom:283.107600pt;}
.yf5{bottom:283.548533pt;}
.y122{bottom:284.440933pt;}
.y138{bottom:284.881867pt;}
.y111{bottom:285.774267pt;}
.y180{bottom:286.215200pt;}
.y2f{bottom:287.107600pt;}
.y2e{bottom:288.440933pt;}
.y2d{bottom:289.774267pt;}
.y137{bottom:291.548533pt;}
.yf3{bottom:295.548533pt;}
.yf4{bottom:298.215200pt;}
.y78{bottom:299.548533pt;}
.y79{bottom:300.881867pt;}
.y7a{bottom:302.215200pt;}
.y7b{bottom:303.548533pt;}
.y1aa{bottom:304.440933pt;}
.y1c9{bottom:304.881867pt;}
.y121{bottom:305.774267pt;}
.y1ca{bottom:306.215200pt;}
.y110{bottom:307.107600pt;}
.y2c{bottom:308.440933pt;}
.y2b{bottom:309.774267pt;}
.y17f{bottom:310.215200pt;}
.y2a{bottom:311.107600pt;}
.yf2{bottom:311.548533pt;}
.y17e{bottom:312.881867pt;}
.y15c{bottom:313.774267pt;}
.yed{bottom:318.215200pt;}
.yef{bottom:319.548533pt;}
.yc3{bottom:320.440933pt;}
.y75{bottom:320.881867pt;}
.yc4{bottom:321.774267pt;}
.y76{bottom:322.215200pt;}
.y77{bottom:323.548533pt;}
.y1a9{bottom:324.440933pt;}
.yf0{bottom:324.881867pt;}
.yf1{bottom:326.215200pt;}
.y120{bottom:327.107600pt;}
.y29{bottom:328.440933pt;}
.y136{bottom:328.881867pt;}
.y28{bottom:329.774267pt;}
.yea{bottom:330.215200pt;}
.y27{bottom:331.107600pt;}
.yee{bottom:331.548533pt;}
.y26{bottom:332.440933pt;}
.ye9{bottom:332.881867pt;}
.y1c8{bottom:334.215200pt;}
.y11f{bottom:335.107600pt;}
.y17d{bottom:336.881867pt;}
.yec{bottom:339.548533pt;}
.y72{bottom:342.215200pt;}
.y73{bottom:343.548533pt;}
.y74{bottom:344.881867pt;}
.yeb{bottom:347.548533pt;}
.yc2{bottom:348.440933pt;}
.y10f{bottom:349.774267pt;}
.y17c{bottom:350.215200pt;}
.y25{bottom:351.107600pt;}
.y134{bottom:351.548533pt;}
.y24{bottom:352.440933pt;}
.y135{bottom:352.881867pt;}
.y23{bottom:353.774267pt;}
.y1c6{bottom:354.215200pt;}
.y1c7{bottom:355.548533pt;}
.y15b{bottom:356.440933pt;}
.y15a{bottom:363.107600pt;}
.y70{bottom:363.548533pt;}
.y6f{bottom:364.881867pt;}
.y71{bottom:366.215200pt;}
.y226{bottom:368.881867pt;}
.yc0{bottom:369.774267pt;}
.yc1{bottom:371.107600pt;}
.y17b{bottom:371.548533pt;}
.y1a8{bottom:372.440933pt;}
.y133{bottom:372.881867pt;}
.y1a7{bottom:373.774267pt;}
.y1ee{bottom:376.440933pt;}
.y1c5{bottom:376.881867pt;}
.y1ed{bottom:377.774267pt;}
.y224{bottom:379.548533pt;}
.y22{bottom:380.440933pt;}
.y21{bottom:381.774267pt;}
.y20{bottom:383.107600pt;}
.y223{bottom:383.548533pt;}
.y159{bottom:384.440933pt;}
.y225{bottom:384.881867pt;}
.y6d{bottom:386.215200pt;}
.y6e{bottom:387.548533pt;}
.y1c4{bottom:390.215200pt;}
.ybe{bottom:391.107600pt;}
.y17a{bottom:391.548533pt;}
.ybf{bottom:392.440933pt;}
.y179{bottom:392.881867pt;}
.y1a6{bottom:393.774267pt;}
.y132{bottom:394.215200pt;}
.y1ec{bottom:396.440933pt;}
.y1eb{bottom:397.774267pt;}
.y1ea{bottom:399.107600pt;}
.y1f{bottom:401.774267pt;}
.y1e{bottom:403.107600pt;}
.y222{bottom:403.548533pt;}
.y1d{bottom:404.440933pt;}
.y1c2{bottom:404.881867pt;}
.y1c3{bottom:406.215200pt;}
.y6b{bottom:407.548533pt;}
.y6c{bottom:408.881867pt;}
.ybc{bottom:412.440933pt;}
.ybd{bottom:413.774267pt;}
.y192{bottom:414.215200pt;}
.y1a5{bottom:415.107600pt;}
.y131{bottom:415.548533pt;}
.y221{bottom:418.215200pt;}
.y1e7{bottom:419.107600pt;}
.y1c0{bottom:419.548533pt;}
.y1c1{bottom:420.881867pt;}
.y1e9{bottom:421.774267pt;}
.y1c{bottom:423.107600pt;}
.y1b{bottom:424.440933pt;}
.y1a{bottom:425.774267pt;}
.y220{bottom:426.215200pt;}
.y1e8{bottom:427.107600pt;}
.y68{bottom:428.881867pt;}
.y69{bottom:430.215200pt;}
.y6a{bottom:431.548533pt;}
.y158{bottom:432.440933pt;}
.yba{bottom:433.774267pt;}
.y12d{bottom:434.215200pt;}
.ybb{bottom:435.107600pt;}
.y1bf{bottom:435.548533pt;}
.y1a4{bottom:436.440933pt;}
.y12e{bottom:436.881867pt;}
.y1e6{bottom:437.774267pt;}
.y1e4{bottom:439.107600pt;}
.y21f{bottom:439.548533pt;}
.y1e5{bottom:440.440933pt;}
.y21e{bottom:440.881867pt;}
.y246{bottom:441.774267pt;}
.y178{bottom:442.215200pt;}
.y245{bottom:443.107600pt;}
.y12f{bottom:443.548533pt;}
.y12c{bottom:444.881867pt;}
.y130{bottom:446.215200pt;}
.y21d{bottom:447.548533pt;}
.y1be{bottom:448.881867pt;}
.y19{bottom:452.440933pt;}
.y21b{bottom:452.881867pt;}
.y18{bottom:453.774267pt;}
.y21c{bottom:454.215200pt;}
.y17{bottom:455.107600pt;}
.y219{bottom:455.548533pt;}
.yb9{bottom:456.440933pt;}
.y66{bottom:456.881867pt;}
.y1a3{bottom:457.774267pt;}
.y67{bottom:458.215200pt;}
.y12a{bottom:459.548533pt;}
.y21a{bottom:462.215200pt;}
.y176{bottom:463.548533pt;}
.y243{bottom:464.440933pt;}
.y175{bottom:464.881867pt;}
.y244{bottom:465.774267pt;}
.y157{bottom:467.107600pt;}
.y177{bottom:468.881867pt;}
.y174{bottom:470.215200pt;}
.y173{bottom:471.548533pt;}
.y16{bottom:472.440933pt;}
.y129{bottom:472.881867pt;}
.y15{bottom:473.774267pt;}
.y14{bottom:475.107600pt;}
.y218{bottom:475.548533pt;}
.y104{bottom:476.440933pt;}
.y1a2{bottom:477.774267pt;}
.y64{bottom:478.215200pt;}
.y65{bottom:479.548533pt;}
.y1e3{bottom:480.440933pt;}
.y1e2{bottom:481.774267pt;}
.yb7{bottom:483.107600pt;}
.yb8{bottom:484.440933pt;}
.y128{bottom:487.548533pt;}
.y216{bottom:490.215200pt;}
.yfc{bottom:491.548533pt;}
.y242{bottom:492.440933pt;}
.y1bd{bottom:492.881867pt;}
.y13{bottom:493.774267pt;}
.y217{bottom:494.215200pt;}
.y12{bottom:495.107600pt;}
.yfd{bottom:495.548533pt;}
.y11{bottom:496.440933pt;}
.yfe{bottom:496.881867pt;}
.y10c{bottom:497.774267pt;}
.y1a1{bottom:499.107600pt;}
.y62{bottom:499.548533pt;}
.y10e{bottom:500.440933pt;}
.y63{bottom:500.881867pt;}
.y1e1{bottom:501.774267pt;}
.y1e0{bottom:503.107600pt;}
.ye8{bottom:503.548533pt;}
.yb5{bottom:504.440933pt;}
.yb6{bottom:505.774267pt;}
.y215{bottom:511.548533pt;}
.y1df{bottom:513.774267pt;}
.y170{bottom:514.215200pt;}
.y10{bottom:515.107600pt;}
.y171{bottom:515.548533pt;}
.yf{bottom:516.440933pt;}
.ye{bottom:517.774267pt;}
.y172{bottom:518.215200pt;}
.y10b{bottom:519.107600pt;}
.y1a0{bottom:520.440933pt;}
.y60{bottom:520.881867pt;}
.y241{bottom:521.774267pt;}
.y61{bottom:522.215200pt;}
.y156{bottom:523.107600pt;}
.ye7{bottom:524.881867pt;}
.yb3{bottom:525.774267pt;}
.yb2{bottom:527.107600pt;}
.yb4{bottom:528.440933pt;}
.y127{bottom:528.881867pt;}
.y153{bottom:529.774267pt;}
.y1de{bottom:531.107600pt;}
.yd{bottom:536.440933pt;}
.yc{bottom:537.774267pt;}
.yb{bottom:539.107600pt;}
.y214{bottom:539.548533pt;}
.y10a{bottom:540.440933pt;}
.y213{bottom:540.881867pt;}
.y5e{bottom:542.215200pt;}
.y23f{bottom:543.107600pt;}
.y5f{bottom:543.548533pt;}
.y152{bottom:544.440933pt;}
.y240{bottom:545.774267pt;}
.y16f{bottom:546.215200pt;}
.yb0{bottom:548.440933pt;}
.y1bc{bottom:548.881867pt;}
.yb1{bottom:549.774267pt;}
.y16e{bottom:550.215200pt;}
.y1dd{bottom:551.107600pt;}
.y211{bottom:551.548533pt;}
.ye6{bottom:552.881867pt;}
.ye5{bottom:554.215200pt;}
.y210{bottom:555.548533pt;}
.y16d{bottom:556.881867pt;}
.ya{bottom:557.774267pt;}
.y126{bottom:558.215200pt;}
.y9{bottom:559.107600pt;}
.y8{bottom:560.440933pt;}
.y212{bottom:562.215200pt;}
.y155{bottom:563.107600pt;}
.y5c{bottom:563.548533pt;}
.y150{bottom:564.440933pt;}
.y5d{bottom:564.881867pt;}
.y151{bottom:565.774267pt;}
.y103{bottom:568.440933pt;}
.yae{bottom:569.774267pt;}
.y16b{bottom:570.215200pt;}
.yaf{bottom:571.107600pt;}
.y16a{bottom:571.548533pt;}
.y23d{bottom:572.440933pt;}
.y16c{bottom:572.881867pt;}
.y23e{bottom:573.774267pt;}
.ye4{bottom:574.215200pt;}
.ye3{bottom:575.548533pt;}
.y1dc{bottom:577.774267pt;}
.y1bb{bottom:578.215200pt;}
.y1db{bottom:579.107600pt;}
.y102{bottom:583.107600pt;}
.y20e{bottom:583.548533pt;}
.y5a{bottom:584.881867pt;}
.y14f{bottom:585.774267pt;}
.y5b{bottom:586.215200pt;}
.y14e{bottom:587.107600pt;}
.y20f{bottom:588.881867pt;}
.yad{bottom:591.107600pt;}
.y7{bottom:592.440933pt;}
.yac{bottom:593.774267pt;}
.y20b{bottom:594.215200pt;}
.y19f{bottom:595.107600pt;}
.y20a{bottom:595.548533pt;}
.y19e{bottom:596.440933pt;}
.y20d{bottom:596.881867pt;}
.y19d{bottom:597.774267pt;}
.y208{bottom:598.215200pt;}
.y209{bottom:599.548533pt;}
.y169{bottom:600.881867pt;}
.y23c{bottom:601.774267pt;}
.y20c{bottom:602.215200pt;}
.ye2{bottom:603.548533pt;}
.y1da{bottom:605.774267pt;}
.y57{bottom:606.215200pt;}
.y154{bottom:607.107600pt;}
.y58{bottom:607.548533pt;}
.y14d{bottom:608.440933pt;}
.y59{bottom:608.881867pt;}
.y101{bottom:612.440933pt;}
.y6{bottom:613.774267pt;}
.y168{bottom:614.215200pt;}
.yab{bottom:615.107600pt;}
.y167{bottom:615.548533pt;}
.y207{bottom:618.215200pt;}
.y206{bottom:619.548533pt;}
.y23a{bottom:623.107600pt;}
.ye1{bottom:623.548533pt;}
.y23b{bottom:624.440933pt;}
.ye0{bottom:624.881867pt;}
.y1ba{bottom:626.215200pt;}
.y1d9{bottom:627.107600pt;}
.y54{bottom:627.548533pt;}
.y14c{bottom:628.440933pt;}
.y55{bottom:628.881867pt;}
.y14b{bottom:629.774267pt;}
.y56{bottom:630.215200pt;}
.y19c{bottom:633.774267pt;}
.y203{bottom:634.215200pt;}
.y5{bottom:635.107600pt;}
.y165{bottom:635.548533pt;}
.yaa{bottom:636.440933pt;}
.y164{bottom:636.881867pt;}
.y19b{bottom:637.774267pt;}
.y204{bottom:638.215200pt;}
.y19a{bottom:639.107600pt;}
.y201{bottom:639.548533pt;}
.y108{bottom:640.440933pt;}
.y205{bottom:640.881867pt;}
.y202{bottom:642.215200pt;}
.y166{bottom:643.548533pt;}
.y238{bottom:644.440933pt;}
.ydf{bottom:644.881867pt;}
.y239{bottom:645.774267pt;}
.yde{bottom:646.215200pt;}
.y109{bottom:647.107600pt;}
.y1b9{bottom:648.881867pt;}
.y14a{bottom:649.774267pt;}
.y52{bottom:650.215200pt;}
.y53{bottom:651.548533pt;}
.y1d8{bottom:653.774267pt;}
.y107{bottom:655.107600pt;}
.ya8{bottom:656.440933pt;}
.ya9{bottom:657.774267pt;}
.y163{bottom:658.215200pt;}
.y1d7{bottom:659.107600pt;}
.y200{bottom:660.881867pt;}
.y1d6{bottom:661.774267pt;}
.y1fe{bottom:662.215200pt;}
.y1fd{bottom:663.548533pt;}
.y4{bottom:664.440933pt;}
.y199{bottom:665.774267pt;}
.y237{bottom:667.107600pt;}
.y1ff{bottom:668.881867pt;}
.y106{bottom:669.774267pt;}
.y1b8{bottom:670.215200pt;}
.y149{bottom:671.107600pt;}
.y50{bottom:671.548533pt;}
.y51{bottom:672.881867pt;}
.ydd{bottom:674.215200pt;}
.ya6{bottom:677.774267pt;}
.y162{bottom:678.215200pt;}
.ya7{bottom:679.107600pt;}
.y161{bottom:679.548533pt;}
.y1fc{bottom:682.215200pt;}
.y105{bottom:683.107600pt;}
.y1fb{bottom:683.548533pt;}
.y198{bottom:684.440933pt;}
.y197{bottom:685.774267pt;}
.y196{bottom:687.107600pt;}
.y1f8{bottom:687.548533pt;}
.y1f9{bottom:688.881867pt;}
.y1fa{bottom:690.215200pt;}
.y148{bottom:691.107600pt;}
.y1b7{bottom:691.548533pt;}
.y147{bottom:692.440933pt;}
.y1b6{bottom:692.881867pt;}
.y236{bottom:693.774267pt;}
.ydc{bottom:694.215200pt;}
.y235{bottom:695.107600pt;}
.yd9{bottom:695.548533pt;}
.y146{bottom:696.440933pt;}
.ya4{bottom:699.107600pt;}
.y4e{bottom:699.548533pt;}
.ya5{bottom:700.440933pt;}
.y4f{bottom:700.881867pt;}
.y3{bottom:701.774267pt;}
.y2{bottom:703.107600pt;}
.y1d5{bottom:704.440933pt;}
.y195{bottom:705.774267pt;}
.y194{bottom:707.107600pt;}
.ydb{bottom:707.548533pt;}
.yda{bottom:708.881867pt;}
.y100{bottom:711.107600pt;}
.yff{bottom:712.440933pt;}
.y1b5{bottom:714.215200pt;}
.y232{bottom:715.107600pt;}
.y233{bottom:716.440933pt;}
.y234{bottom:717.774267pt;}
.ya1{bottom:720.440933pt;}
.ya2{bottom:721.774267pt;}
.y1{bottom:723.107600pt;}
.y12b{bottom:760.881867pt;}
.y87{bottom:762.215200pt;}
.y10d{bottom:768.440933pt;}
.ya3{bottom:769.774267pt;}
.hb{height:16.445479pt;}
.h13{height:21.927305pt;}
.h8{height:27.409131pt;}
.h4{height:32.890957pt;}
.h6{height:43.854610pt;}
.ha{height:49.187943pt;}
.h2{height:49.336436pt;}
.h5{height:54.669770pt;}
.he{height:54.818262pt;}
.h7{height:60.300089pt;}
.h9{height:65.781915pt;}
.h15{height:76.003103pt;}
.h11{height:76.745567pt;}
.h12{height:93.191046pt;}
.h14{height:115.118351pt;}
.hf{height:137.045656pt;}
.h10{height:757.101867pt;}
.hc{height:757.102267pt;}
.hd{height:757.333333pt;}
.h3{height:758.435200pt;}
.h0{height:758.435600pt;}
.h1{height:758.666667pt;}
.w5{width:517.101813pt;}
.w3{width:517.102747pt;}
.w4{width:517.333333pt;}
.w2{width:518.435147pt;}
.w0{width:518.436080pt;}
.w1{width:518.666667pt;}
.wc{width:519.769413pt;}
.wd{width:520.000000pt;}
.w8{width:521.101813pt;}
.w6{width:521.102747pt;}
.w7{width:521.333333pt;}
.wb{width:522.435147pt;}
.w9{width:522.436080pt;}
.wa{width:522.666667pt;}
.xe5{left:-11.338587pt;}
.xbe{left:-3.779520pt;}
.x0{left:0.000000pt;}
.x16a{left:12.220480pt;}
.x164{left:19.328080pt;}
.x169{left:20.661413pt;}
.xf0{left:21.994747pt;}
.x158{left:24.661413pt;}
.xeb{left:25.994747pt;}
.xe7{left:27.328080pt;}
.xee{left:28.661413pt;}
.xf2{left:29.994747pt;}
.x104{left:31.328080pt;}
.x10f{left:32.661413pt;}
.x1{left:33.994747pt;}
.x1a{left:36.661413pt;}
.x13{left:37.994747pt;}
.x12a{left:38.887147pt;}
.x6b{left:40.220480pt;}
.x7f{left:41.553813pt;}
.xa9{left:42.887147pt;}
.xb0{left:44.220480pt;}
.xdf{left:45.553813pt;}
.x15b{left:47.328080pt;}
.x132{left:48.220480pt;}
.x14e{left:49.994747pt;}
.xe4{left:50.887147pt;}
.x105{left:52.661413pt;}
.x155{left:53.994747pt;}
.xc4{left:54.887147pt;}
.x6{left:56.661413pt;}
.x2{left:57.994747pt;}
.x1b{left:59.328080pt;}
.xf5{left:60.661413pt;}
.x152{left:61.994747pt;}
.x126{left:63.328080pt;}
.x66{left:64.661413pt;}
.x32{left:65.994747pt;}
.xc5{left:66.887147pt;}
.xff{left:68.661413pt;}
.x3{left:69.994747pt;}
.x123{left:71.328080pt;}
.x36{left:72.661413pt;}
.x1c{left:73.994747pt;}
.x54{left:75.328080pt;}
.x137{left:76.220480pt;}
.x73{left:77.553813pt;}
.xa8{left:78.887147pt;}
.x7{left:80.661413pt;}
.xb2{left:81.553813pt;}
.xf8{left:83.328080pt;}
.x8{left:84.661413pt;}
.x9c{left:85.553813pt;}
.x41{left:87.328080pt;}
.x4c{left:88.661413pt;}
.x100{left:89.994747pt;}
.x136{left:90.887147pt;}
.x168{left:92.661413pt;}
.x4{left:93.994747pt;}
.x37{left:95.328080pt;}
.x2c{left:96.661413pt;}
.x12b{left:97.553813pt;}
.x13f{left:98.887147pt;}
.x6c{left:100.220480pt;}
.x57{left:101.994747pt;}
.x4f{left:103.328080pt;}
.xd8{left:104.220480pt;}
.x5{left:105.994747pt;}
.x74{left:106.887147pt;}
.xab{left:108.220480pt;}
.x3d{left:109.994747pt;}
.xce{left:110.887147pt;}
.x11b{left:112.661413pt;}
.x119{left:113.994747pt;}
.xe8{left:115.328080pt;}
.x55{left:116.661413pt;}
.x4a{left:117.994747pt;}
.x14{left:119.328080pt;}
.x139{left:120.220480pt;}
.x58{left:121.994747pt;}
.x69{left:123.328080pt;}
.x38{left:124.661413pt;}
.x22{left:125.994747pt;}
.x10d{left:127.328080pt;}
.x110{left:128.661413pt;}
.x8a{left:129.553813pt;}
.xf{left:131.328080pt;}
.x2d{left:132.661413pt;}
.x12f{left:133.553813pt;}
.x10a{left:135.328080pt;}
.x75{left:136.220480pt;}
.xe9{left:137.994747pt;}
.x15{left:139.328080pt;}
.x23{left:140.661413pt;}
.x111{left:141.994747pt;}
.x149{left:142.887147pt;}
.x80{left:144.220480pt;}
.x140{left:145.553813pt;}
.x39{left:147.328080pt;}
.xe0{left:148.220480pt;}
.x13c{left:149.553813pt;}
.x8b{left:150.887147pt;}
.xa2{left:152.220480pt;}
.x67{left:153.994747pt;}
.x64{left:155.328080pt;}
.xf9{left:156.661413pt;}
.x11c{left:157.994747pt;}
.x8f{left:158.887147pt;}
.x96{left:160.220480pt;}
.x24{left:161.994747pt;}
.xc9{left:162.887147pt;}
.x101{left:164.661413pt;}
.x87{left:165.553813pt;}
.x9d{left:166.887147pt;}
.xa{left:168.661413pt;}
.x45{left:169.994747pt;}
.xcd{left:170.887147pt;}
.x6d{left:172.220480pt;}
.x97{left:173.553813pt;}
.xa3{left:174.887147pt;}
.xd{left:176.661413pt;}
.x3a{left:177.994747pt;}
.x112{left:179.328080pt;}
.x90{left:180.220480pt;}
.xea{left:181.994747pt;}
.x9{left:183.328080pt;}
.xca{left:184.220480pt;}
.x157{left:185.553813pt;}
.x10b{left:187.328080pt;}
.x9e{left:188.220480pt;}
.xac{left:189.553813pt;}
.x1d{left:191.328080pt;}
.x12c{left:192.220480pt;}
.x133{left:193.553813pt;}
.x161{left:194.887147pt;}
.x165{left:196.661413pt;}
.x50{left:197.994747pt;}
.xd9{left:198.887147pt;}
.x150{left:200.661413pt;}
.x141{left:201.553813pt;}
.x8c{left:202.887147pt;}
.x156{left:204.220480pt;}
.x2e{left:205.994747pt;}
.xcf{left:206.887147pt;}
.x153{left:208.661413pt;}
.x76{left:209.553813pt;}
.x91{left:210.887147pt;}
.x28{left:212.661413pt;}
.x33{left:213.994747pt;}
.x106{left:215.328080pt;}
.x134{left:216.220480pt;}
.x11d{left:217.994747pt;}
.xc{left:219.328080pt;}
.x10{left:220.661413pt;}
.x154{left:221.994747pt;}
.x130{left:222.887147pt;}
.x81{left:224.220480pt;}
.xa4{left:225.553813pt;}
.xb{left:227.328080pt;}
.xb7{left:228.220480pt;}
.xfc{left:229.994747pt;}
.x6e{left:230.887147pt;}
.x127{left:232.661413pt;}
.x46{left:233.994747pt;}
.x34{left:235.328080pt;}
.xd0{left:236.220480pt;}
.xe1{left:237.553813pt;}
.x131{left:238.887147pt;}
.x92{left:240.220480pt;}
.x60{left:241.994747pt;}
.x29{left:243.328080pt;}
.x107{left:244.661413pt;}
.x82{left:245.553813pt;}
.x98{left:246.887147pt;}
.xe{left:248.661413pt;}
.x3b{left:249.994747pt;}
.xd1{left:250.887147pt;}
.x113{left:252.661413pt;}
.x6f{left:253.553813pt;}
.xa7{left:254.887147pt;}
.x4d{left:256.661413pt;}
.xad{left:257.553813pt;}
.x135{left:258.887147pt;}
.x77{left:260.220480pt;}
.x93{left:261.553813pt;}
.xef{left:263.328080pt;}
.x5b{left:264.661413pt;}
.xbd{left:265.553813pt;}
.x108{left:267.328080pt;}
.x85{left:268.220480pt;}
.x99{left:269.553813pt;}
.x61{left:271.328080pt;}
.x1e{left:272.661413pt;}
.xda{left:273.553813pt;}
.x11a{left:275.328080pt;}
.x7d{left:276.220480pt;}
.xec{left:277.994747pt;}
.x25{left:279.328080pt;}
.x2f{left:280.661413pt;}
.x114{left:281.994747pt;}
.x142{left:282.887147pt;}
.xa5{left:284.220480pt;}
.x11{left:285.994747pt;}
.xbf{left:286.887147pt;}
.x151{left:288.661413pt;}
.x70{left:289.553813pt;}
.x125{left:291.328080pt;}
.x62{left:292.661413pt;}
.xf6{left:293.994747pt;}
.x1f{left:295.328080pt;}
.x10e{left:296.661413pt;}
.x8d{left:297.553813pt;}
.x13a{left:298.887147pt;}
.x59{left:300.661413pt;}
.x128{left:301.994747pt;}
.xdb{left:302.887147pt;}
.x13b{left:304.220480pt;}
.x9a{left:305.553813pt;}
.x14c{left:307.328080pt;}
.x12{left:308.661413pt;}
.xc0{left:309.553813pt;}
.x12e{left:310.887147pt;}
.x124{left:312.661413pt;}
.xa6{left:313.553813pt;}
.x5c{left:315.328080pt;}
.x16{left:316.661413pt;}
.xd2{left:317.553813pt;}
.xde{left:318.887147pt;}
.x14a{left:320.220480pt;}
.x49{left:321.994747pt;}
.x3e{left:323.328080pt;}
.x12d{left:324.220480pt;}
.xdc{left:325.553813pt;}
.x120{left:327.328080pt;}
.x8e{left:328.220480pt;}
.x3c{left:329.994747pt;}
.x35{left:331.328080pt;}
.xc6{left:332.220480pt;}
.x88{left:333.553813pt;}
.x78{left:334.887147pt;}
.x63{left:336.661413pt;}
.x17{left:337.994747pt;}
.xc1{left:338.887147pt;}
.x102{left:340.661413pt;}
.x79{left:341.553813pt;}
.x159{left:343.328080pt;}
.x42{left:344.661413pt;}
.x14b{left:345.553813pt;}
.xd3{left:346.887147pt;}
.x7a{left:348.220480pt;}
.x146{left:349.553813pt;}
.x65{left:351.328080pt;}
.x18{left:352.661413pt;}
.xb9{left:353.553813pt;}
.xfa{left:355.328080pt;}
.x94{left:356.220480pt;}
.x147{left:357.553813pt;}
.x30{left:359.328080pt;}
.x103{left:360.661413pt;}
.xcb{left:361.553813pt;}
.x83{left:362.887147pt;}
.x9f{left:364.220480pt;}
.x47{left:365.994747pt;}
.xb4{left:366.887147pt;}
.xfb{left:368.661413pt;}
.xd4{left:369.553813pt;}
.x71{left:370.887147pt;}
.x20{left:372.661413pt;}
.xf7{left:373.994747pt;}
.x109{left:375.328080pt;}
.xb3{left:376.220480pt;}
.x129{left:377.994747pt;}
.x31{left:379.328080pt;}
.xae{left:380.220480pt;}
.x14f{left:381.994747pt;}
.xc7{left:382.887147pt;}
.x72{left:384.220480pt;}
.x68{left:385.994747pt;}
.x51{left:387.328080pt;}
.x2a{left:388.661413pt;}
.xfd{left:389.994747pt;}
.xd5{left:390.887147pt;}
.xe2{left:392.220480pt;}
.x56{left:393.994747pt;}
.x26{left:395.328080pt;}
.xaf{left:396.220480pt;}
.x10c{left:397.994747pt;}
.x7b{left:398.887147pt;}
.x162{left:400.220480pt;}
.x5d{left:401.994747pt;}
.xaa{left:402.887147pt;}
.xb5{left:404.220480pt;}
.xdd{left:405.553813pt;}
.x121{left:407.328080pt;}
.x52{left:408.661413pt;}
.x43{left:409.994747pt;}
.xf3{left:411.328080pt;}
.x116{left:412.661413pt;}
.xe3{left:413.553813pt;}
.xa0{left:414.887147pt;}
.x4b{left:416.661413pt;}
.x21{left:417.994747pt;}
.x138{left:418.887147pt;}
.xba{left:420.220480pt;}
.x145{left:421.553813pt;}
.x95{left:422.887147pt;}
.x5e{left:424.661413pt;}
.xb1{left:425.553813pt;}
.xc2{left:426.887147pt;}
.x11e{left:428.661413pt;}
.x84{left:429.553813pt;}
.x44{left:431.328080pt;}
.xf1{left:432.661413pt;}
.xbb{left:433.553813pt;}
.x115{left:435.328080pt;}
.x13d{left:436.220480pt;}
.xa1{left:437.553813pt;}
.x27{left:439.328080pt;}
.xed{left:440.661413pt;}
.xfe{left:441.994747pt;}
.x122{left:443.328080pt;}
.x7c{left:444.220480pt;}
.x3f{left:445.994747pt;}
.x19{left:447.328080pt;}
.xb8{left:448.220480pt;}
.xcc{left:449.553813pt;}
.xd6{left:450.887147pt;}
.x5f{left:452.661413pt;}
.x53{left:453.994747pt;}
.x48{left:455.328080pt;}
.xbc{left:456.220480pt;}
.x117{left:457.994747pt;}
.x15e{left:458.887147pt;}
.x4e{left:460.661413pt;}
.x2b{left:461.994747pt;}
.x167{left:463.328080pt;}
.x9b{left:464.220480pt;}
.x7e{left:465.553813pt;}
.x40{left:467.328080pt;}
.xe6{left:468.661413pt;}
.xb6{left:469.553813pt;}
.xc8{left:470.887147pt;}
.x118{left:472.661413pt;}
.x86{left:473.553813pt;}
.x6a{left:475.328080pt;}
.x166{left:476.661413pt;}
.xf4{left:477.994747pt;}
.xd7{left:478.887147pt;}
.x143{left:480.220480pt;}
.x15f{left:481.553813pt;}
.x5a{left:483.328080pt;}
.x15c{left:484.661413pt;}
.xc3{left:485.553813pt;}
.x163{left:487.328080pt;}
.x14d{left:488.661413pt;}
.x144{left:489.553813pt;}
.x89{left:490.887147pt;}
.x16b{left:493.553813pt;}
.x11f{left:495.328080pt;}
.x148{left:496.220480pt;}
.x160{left:497.553813pt;}
.x15a{left:499.328080pt;}
.x15d{left:505.994747pt;}
.x13e{left:509.553813pt;}
}




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