
    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_973937b8d1aeedd67ce893d7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.131000;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_634a3cc6d2a31be37f161ead.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.959000;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_b943131276e5868a72d09d5b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.089000;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_a9d44a271a5c5dee86e72b60.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.081000;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_3af514530156e95b2734afe8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.969000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_c7a3fb6c13247e6e6477f90d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.733000;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_9b6872189e61526b6b0ad5b3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.959000;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_b7ecea53f24d1a0498d90961.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.953000;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_6a777cd691880d40c75163fa.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.147000;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;}
.m44{transform:matrix(0.007969,-0.247237,0.249876,0.007889,0,0);-ms-transform:matrix(0.007969,-0.247237,0.249876,0.007889,0,0);-webkit-transform:matrix(0.007969,-0.247237,0.249876,0.007889,0,0);}
.m43{transform:matrix(0.007978,-0.247237,0.249875,0.007898,0,0);-ms-transform:matrix(0.007978,-0.247237,0.249875,0.007898,0,0);-webkit-transform:matrix(0.007978,-0.247237,0.249875,0.007898,0,0);}
.m18{transform:matrix(0.010079,-0.247160,0.249801,0.009970,0,0);-ms-transform:matrix(0.010079,-0.247160,0.249801,0.009970,0,0);-webkit-transform:matrix(0.010079,-0.247160,0.249801,0.009970,0,0);}
.m42{transform:matrix(0.022130,-0.246409,0.249039,0.021897,0,0);-ms-transform:matrix(0.022130,-0.246409,0.249039,0.021897,0,0);-webkit-transform:matrix(0.022130,-0.246409,0.249039,0.021897,0,0);}
.m41{transform:matrix(0.022139,-0.246409,0.249038,0.021906,0,0);-ms-transform:matrix(0.022139,-0.246409,0.249038,0.021906,0,0);-webkit-transform:matrix(0.022139,-0.246409,0.249038,0.021906,0,0);}
.m40{transform:matrix(0.041557,-0.243992,0.246595,0.041119,0,0);-ms-transform:matrix(0.041557,-0.243992,0.246595,0.041119,0,0);-webkit-transform:matrix(0.041557,-0.243992,0.246595,0.041119,0,0);}
.m3f{transform:matrix(0.041567,-0.243990,0.246594,0.041129,0,0);-ms-transform:matrix(0.041567,-0.243990,0.246594,0.041129,0,0);-webkit-transform:matrix(0.041567,-0.243990,0.246594,0.041129,0,0);}
.m3d{transform:matrix(0.050808,-0.242308,0.244894,0.050271,0,0);-ms-transform:matrix(0.050808,-0.242308,0.244894,0.050271,0,0);-webkit-transform:matrix(0.050808,-0.242308,0.244894,0.050271,0,0);}
.m3e{transform:matrix(0.050835,-0.242302,0.244888,0.050298,0,0);-ms-transform:matrix(0.050835,-0.242302,0.244888,0.050298,0,0);-webkit-transform:matrix(0.050835,-0.242302,0.244888,0.050298,0,0);}
.m10{transform:matrix(0.051349,0.242200,-0.244783,0.050804,0,0);-ms-transform:matrix(0.051349,0.242200,-0.244783,0.050804,0,0);-webkit-transform:matrix(0.051349,0.242200,-0.244783,0.050804,0,0);}
.m11{transform:matrix(0.064670,-0.239121,0.241672,0.063990,0,0);-ms-transform:matrix(0.064670,-0.239121,0.241672,0.063990,0,0);-webkit-transform:matrix(0.064670,-0.239121,0.241672,0.063990,0,0);}
.m1f{transform:matrix(0.066191,-0.238718,0.241269,0.065493,0,0);-ms-transform:matrix(0.066191,-0.238718,0.241269,0.065493,0,0);-webkit-transform:matrix(0.066191,-0.238718,0.241269,0.065493,0,0);}
.m15{transform:matrix(0.066250,-0.238701,0.241252,0.065554,0,0);-ms-transform:matrix(0.066250,-0.238701,0.241252,0.065554,0,0);-webkit-transform:matrix(0.066250,-0.238701,0.241252,0.065554,0,0);}
.m14{transform:matrix(0.066259,-0.238704,0.241251,0.065560,0,0);-ms-transform:matrix(0.066259,-0.238704,0.241251,0.065560,0,0);-webkit-transform:matrix(0.066259,-0.238704,0.241251,0.065560,0,0);}
.m1e{transform:matrix(0.067194,-0.238452,0.240998,0.066483,0,0);-ms-transform:matrix(0.067194,-0.238452,0.240998,0.066483,0,0);-webkit-transform:matrix(0.067194,-0.238452,0.240998,0.066483,0,0);}
.m1b{transform:matrix(0.067794,-0.238295,0.240833,0.067078,0,0);-ms-transform:matrix(0.067794,-0.238295,0.240833,0.067078,0,0);-webkit-transform:matrix(0.067794,-0.238295,0.240833,0.067078,0,0);}
.m17{transform:matrix(0.068526,-0.238087,0.240630,0.067804,0,0);-ms-transform:matrix(0.068526,-0.238087,0.240630,0.067804,0,0);-webkit-transform:matrix(0.068526,-0.238087,0.240630,0.067804,0,0);}
.m1c{transform:matrix(0.069973,-0.237688,0.240222,0.069234,0,0);-ms-transform:matrix(0.069973,-0.237688,0.240222,0.069234,0,0);-webkit-transform:matrix(0.069973,-0.237688,0.240222,0.069234,0,0);}
.m37{transform:matrix(0.073982,-0.236512,0.239045,0.073194,0,0);-ms-transform:matrix(0.073982,-0.236512,0.239045,0.073194,0,0);-webkit-transform:matrix(0.073982,-0.236512,0.239045,0.073194,0,0);}
.m38{transform:matrix(0.073990,-0.236509,0.239043,0.073202,0,0);-ms-transform:matrix(0.073990,-0.236509,0.239043,0.073202,0,0);-webkit-transform:matrix(0.073990,-0.236509,0.239043,0.073202,0,0);}
.m39{transform:matrix(0.073998,-0.236507,0.239040,0.073211,0,0);-ms-transform:matrix(0.073998,-0.236507,0.239040,0.073211,0,0);-webkit-transform:matrix(0.073998,-0.236507,0.239040,0.073211,0,0);}
.m24{transform:matrix(0.114150,-0.220669,0.223031,0.112948,0,0);-ms-transform:matrix(0.114150,-0.220669,0.223031,0.112948,0,0);-webkit-transform:matrix(0.114150,-0.220669,0.223031,0.112948,0,0);}
.m20{transform:matrix(0.114310,-0.220597,0.222954,0.113099,0,0);-ms-transform:matrix(0.114310,-0.220597,0.222954,0.113099,0,0);-webkit-transform:matrix(0.114310,-0.220597,0.222954,0.113099,0,0);}
.m21{transform:matrix(0.114400,-0.220549,0.222906,0.113194,0,0);-ms-transform:matrix(0.114400,-0.220549,0.222906,0.113194,0,0);-webkit-transform:matrix(0.114400,-0.220549,0.222906,0.113194,0,0);}
.m19{transform:matrix(0.115309,-0.220096,0.222449,0.114090,0,0);-ms-transform:matrix(0.115309,-0.220096,0.222449,0.114090,0,0);-webkit-transform:matrix(0.115309,-0.220096,0.222449,0.114090,0,0);}
.m25{transform:matrix(0.118881,-0.218270,0.220598,0.117628,0,0);-ms-transform:matrix(0.118881,-0.218270,0.220598,0.117628,0,0);-webkit-transform:matrix(0.118881,-0.218270,0.220598,0.117628,0,0);}
.m26{transform:matrix(0.124340,-0.215338,0.217633,0.123028,0,0);-ms-transform:matrix(0.124340,-0.215338,0.217633,0.123028,0,0);-webkit-transform:matrix(0.124340,-0.215338,0.217633,0.123028,0,0);}
.m27{transform:matrix(0.130230,-0.211975,0.214237,0.128851,0,0);-ms-transform:matrix(0.130230,-0.211975,0.214237,0.128851,0,0);-webkit-transform:matrix(0.130230,-0.211975,0.214237,0.128851,0,0);}
.m28{transform:matrix(0.136938,-0.207880,0.210100,0.135491,0,0);-ms-transform:matrix(0.136938,-0.207880,0.210100,0.135491,0,0);-webkit-transform:matrix(0.136938,-0.207880,0.210100,0.135491,0,0);}
.m29{transform:matrix(0.145060,-0.202532,0.204694,0.143528,0,0);-ms-transform:matrix(0.145060,-0.202532,0.204694,0.143528,0,0);-webkit-transform:matrix(0.145060,-0.202532,0.204694,0.143528,0,0);}
.m2a{transform:matrix(0.154014,-0.196089,0.198185,0.152389,0,0);-ms-transform:matrix(0.154014,-0.196089,0.198185,0.152389,0,0);-webkit-transform:matrix(0.154014,-0.196089,0.198185,0.152389,0,0);}
.m2b{transform:matrix(0.164751,-0.187536,0.189541,0.163016,0,0);-ms-transform:matrix(0.164751,-0.187536,0.189541,0.163016,0,0);-webkit-transform:matrix(0.164751,-0.187536,0.189541,0.163016,0,0);}
.ma{transform:matrix(0.168793,-0.184066,0.186028,0.167014,0,0);-ms-transform:matrix(0.168793,-0.184066,0.186028,0.167014,0,0);-webkit-transform:matrix(0.168793,-0.184066,0.186028,0.167014,0,0);}
.m2c{transform:matrix(0.174298,-0.179085,0.180998,0.172452,0,0);-ms-transform:matrix(0.174298,-0.179085,0.180998,0.172452,0,0);-webkit-transform:matrix(0.174298,-0.179085,0.180998,0.172452,0,0);}
.mc{transform:matrix(0.175755,-0.177710,0.179607,0.173901,0,0);-ms-transform:matrix(0.175755,-0.177710,0.179607,0.173901,0,0);-webkit-transform:matrix(0.175755,-0.177710,0.179607,0.173901,0,0);}
.m2d{transform:matrix(0.177807,-0.175742,0.177622,0.175927,0,0);-ms-transform:matrix(0.177807,-0.175742,0.177622,0.175927,0,0);-webkit-transform:matrix(0.177807,-0.175742,0.177622,0.175927,0,0);}
.m2e{transform:matrix(0.181717,-0.171860,0.173698,0.179803,0,0);-ms-transform:matrix(0.181717,-0.171860,0.173698,0.179803,0,0);-webkit-transform:matrix(0.181717,-0.171860,0.173698,0.179803,0,0);}
.m2f{transform:matrix(0.185351,-0.168105,0.169901,0.183395,0,0);-ms-transform:matrix(0.185351,-0.168105,0.169901,0.183395,0,0);-webkit-transform:matrix(0.185351,-0.168105,0.169901,0.183395,0,0);}
.md{transform:matrix(0.187072,-0.166273,0.168044,0.185098,0,0);-ms-transform:matrix(0.187072,-0.166273,0.168044,0.185098,0,0);-webkit-transform:matrix(0.187072,-0.166273,0.168044,0.185098,0,0);}
.m30{transform:matrix(0.188492,-0.164722,0.166485,0.186501,0,0);-ms-transform:matrix(0.188492,-0.164722,0.166485,0.186501,0,0);-webkit-transform:matrix(0.188492,-0.164722,0.166485,0.186501,0,0);}
.m8{transform:matrix(0.189064,0.164095,-0.165850,0.187066,0,0);-ms-transform:matrix(0.189064,0.164095,-0.165850,0.187066,0,0);-webkit-transform:matrix(0.189064,0.164095,-0.165850,0.187066,0,0);}
.m9{transform:matrix(0.189069,0.164092,-0.165846,0.187070,0,0);-ms-transform:matrix(0.189069,0.164092,-0.165846,0.187070,0,0);-webkit-transform:matrix(0.189069,0.164092,-0.165846,0.187070,0,0);}
.me{transform:matrix(0.190684,0.162288,-0.164026,0.188668,0,0);-ms-transform:matrix(0.190684,0.162288,-0.164026,0.188668,0,0);-webkit-transform:matrix(0.190684,0.162288,-0.164026,0.188668,0,0);}
.m31{transform:matrix(0.191664,-0.161181,0.162902,0.189639,0,0);-ms-transform:matrix(0.191664,-0.161181,0.162902,0.189639,0,0);-webkit-transform:matrix(0.191664,-0.161181,0.162902,0.189639,0,0);}
.mf{transform:matrix(0.193422,0.159149,-0.160853,0.191380,0,0);-ms-transform:matrix(0.193422,0.159149,-0.160853,0.191380,0,0);-webkit-transform:matrix(0.193422,0.159149,-0.160853,0.191380,0,0);}
.m32{transform:matrix(0.194324,-0.158107,0.159794,0.192265,0,0);-ms-transform:matrix(0.194324,-0.158107,0.159794,0.192265,0,0);-webkit-transform:matrix(0.194324,-0.158107,0.159794,0.192265,0,0);}
.m33{transform:matrix(0.196325,-0.155714,0.157377,0.194249,0,0);-ms-transform:matrix(0.196325,-0.155714,0.157377,0.194249,0,0);-webkit-transform:matrix(0.196325,-0.155714,0.157377,0.194249,0,0);}
.m34{transform:matrix(0.198629,-0.152873,0.154511,0.196536,0,0);-ms-transform:matrix(0.198629,-0.152873,0.154511,0.196536,0,0);-webkit-transform:matrix(0.198629,-0.152873,0.154511,0.196536,0,0);}
.m35{transform:matrix(0.200744,-0.150212,0.151816,0.198625,0,0);-ms-transform:matrix(0.200744,-0.150212,0.151816,0.198625,0,0);-webkit-transform:matrix(0.200744,-0.150212,0.151816,0.198625,0,0);}
.m36{transform:matrix(0.201654,-0.149033,0.150629,0.199527,0,0);-ms-transform:matrix(0.201654,-0.149033,0.150629,0.199527,0,0);-webkit-transform:matrix(0.201654,-0.149033,0.150629,0.199527,0,0);}
.mb{transform:matrix(0.215435,-0.129249,0.130635,0.213154,0,0);-ms-transform:matrix(0.215435,-0.129249,0.130635,0.213154,0,0);-webkit-transform:matrix(0.215435,-0.129249,0.130635,0.213154,0,0);}
.m47{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);}
.m3{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);}
.m6{transform:matrix(0.240002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240002,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.241840,0.071640,-0.072408,0.239284,0,0);-ms-transform:matrix(0.241840,0.071640,-0.072408,0.239284,0,0);-webkit-transform:matrix(0.241840,0.071640,-0.072408,0.239284,0,0);}
.m3c{transform:matrix(0.241987,0.071148,-0.071912,0.239434,0,0);-ms-transform:matrix(0.241987,0.071148,-0.071912,0.239434,0,0);-webkit-transform:matrix(0.241987,0.071148,-0.071912,0.239434,0,0);}
.m3b{transform:matrix(0.241989,0.071149,-0.071905,0.239436,0,0);-ms-transform:matrix(0.241989,0.071149,-0.071905,0.239436,0,0);-webkit-transform:matrix(0.241989,0.071149,-0.071905,0.239436,0,0);}
.m3a{transform:matrix(0.241993,0.071145,-0.071903,0.239437,0,0);-ms-transform:matrix(0.241993,0.071145,-0.071903,0.239437,0,0);-webkit-transform:matrix(0.241993,0.071145,-0.071903,0.239437,0,0);}
.m7{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);}
.m45{transform:matrix(0.242764,0.068581,-0.069318,0.240198,0,0);-ms-transform:matrix(0.242764,0.068581,-0.069318,0.240198,0,0);-webkit-transform:matrix(0.242764,0.068581,-0.069318,0.240198,0,0);}
.m12{transform:matrix(0.242768,0.068565,-0.069302,0.240203,0,0);-ms-transform:matrix(0.242768,0.068565,-0.069302,0.240203,0,0);-webkit-transform:matrix(0.242768,0.068565,-0.069302,0.240203,0,0);}
.m13{transform:matrix(0.242782,0.068507,-0.069238,0.240221,0,0);-ms-transform:matrix(0.242782,0.068507,-0.069238,0.240221,0,0);-webkit-transform:matrix(0.242782,0.068507,-0.069238,0.240221,0,0);}
.m16{transform:matrix(0.243070,0.067559,-0.068279,0.240495,0,0);-ms-transform:matrix(0.243070,0.067559,-0.068279,0.240495,0,0);-webkit-transform:matrix(0.243070,0.067559,-0.068279,0.240495,0,0);}
.m1a{transform:matrix(0.243653,0.065495,-0.066189,0.241079,0,0);-ms-transform:matrix(0.243653,0.065495,-0.066189,0.241079,0,0);-webkit-transform:matrix(0.243653,0.065495,-0.066189,0.241079,0,0);}
.m2{transform:matrix(0.244999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244999,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m5{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);}
.m49{transform:matrix(0.245001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245001,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.252669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252669,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.252670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252670,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.252672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252672,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-16.268823px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:3.468017px;}
.v3{vertical-align:4.836971px;}
.v1{vertical-align:8.341142px;}
.v5{vertical-align:15.184800px;}
.ls28{letter-spacing:-0.912636px;}
.ls29{letter-spacing:-0.889200px;}
.ls2a{letter-spacing:-0.294000px;}
.ls2b{letter-spacing:-0.140400px;}
.ls6{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.001371px;}
.ls4{letter-spacing:0.001984px;}
.ls23{letter-spacing:0.015211px;}
.ls8{letter-spacing:0.015576px;}
.ls24{letter-spacing:0.365054px;}
.ls20{letter-spacing:0.745319px;}
.ls1f{letter-spacing:0.760530px;}
.ls21{letter-spacing:0.775741px;}
.ls26{letter-spacing:0.808947px;}
.ls27{letter-spacing:0.826924px;}
.ls22{letter-spacing:0.880853px;}
.ls1a{letter-spacing:0.882215px;}
.lsc{letter-spacing:0.885754px;}
.lsa{letter-spacing:0.887343px;}
.lsd{letter-spacing:0.888039px;}
.lse{letter-spacing:0.888886px;}
.ls14{letter-spacing:0.890958px;}
.ls11{letter-spacing:0.890986px;}
.ls13{letter-spacing:0.892453px;}
.ls12{letter-spacing:0.893749px;}
.ls1b{letter-spacing:0.898830px;}
.ls10{letter-spacing:0.899136px;}
.ls15{letter-spacing:0.900854px;}
.lsf{letter-spacing:0.902743px;}
.ls16{letter-spacing:0.908004px;}
.ls1e{letter-spacing:0.916807px;}
.ls25{letter-spacing:1.003900px;}
.ls1d{letter-spacing:1.042643px;}
.lsb{letter-spacing:1.128315px;}
.ls1c{letter-spacing:1.244520px;}
.ls1{letter-spacing:1.320000px;}
.ls2{letter-spacing:1.326600px;}
.ls3{letter-spacing:1.333200px;}
.ls17{letter-spacing:1.670760px;}
.ls19{letter-spacing:1.673407px;}
.ls9{letter-spacing:1.677098px;}
.ls18{letter-spacing:1.683457px;}
.ls5{letter-spacing:1221.935400px;}
.ls0{letter-spacing:2288.719200px;}
.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;}
}
.wsa0{word-spacing:-9.360000px;}
.ws0{word-spacing:-9.120000px;}
.ws86{word-spacing:-8.377123px;}
.ws71{word-spacing:-8.345479px;}
.ws83{word-spacing:-8.313940px;}
.ws85{word-spacing:-6.703310px;}
.ws84{word-spacing:-6.703250px;}
.ws8c{word-spacing:-6.222600px;}
.ws73{word-spacing:-5.579262px;}
.ws8d{word-spacing:-4.637963px;}
.ws8b{word-spacing:-4.512127px;}
.ws89{word-spacing:-4.494150px;}
.ws82{word-spacing:-4.482822px;}
.ws77{word-spacing:-4.477965px;}
.ws95{word-spacing:-4.476173px;}
.ws81{word-spacing:-4.475672px;}
.ws7b{word-spacing:-4.474230px;}
.ws7c{word-spacing:-4.468747px;}
.ws7e{word-spacing:-4.462263px;}
.ws75{word-spacing:-4.447315px;}
.ws72{word-spacing:-4.443829px;}
.ws74{word-spacing:-4.435870px;}
.ws7f{word-spacing:-4.433534px;}
.ws97{word-spacing:-4.422244px;}
.ws96{word-spacing:-4.404267px;}
.ws10c{word-spacing:-4.233600px;}
.ws109{word-spacing:-4.057200px;}
.ws90{word-spacing:-4.046020px;}
.ws87{word-spacing:-3.924335px;}
.ws6c{word-spacing:-3.822000px;}
.ws91{word-spacing:-3.817861px;}
.ws8e{word-spacing:-3.802650px;}
.ws8f{word-spacing:-3.787439px;}
.ws7d{word-spacing:-3.577766px;}
.ws76{word-spacing:-3.556090px;}
.ws9b{word-spacing:-3.542827px;}
.ws78{word-spacing:-3.542761px;}
.ws5d{word-spacing:-3.469200px;}
.wsf7{word-spacing:-3.410400px;}
.ws88{word-spacing:-3.407174px;}
.ws99{word-spacing:-3.353128px;}
.ws116{word-spacing:-3.351600px;}
.ws93{word-spacing:-3.351152px;}
.ws92{word-spacing:-3.351082px;}
.ws94{word-spacing:-3.321546px;}
.ws19{word-spacing:-3.234000px;}
.ws114{word-spacing:-3.057600px;}
.ws9f{word-spacing:-3.057331px;}
.ws5c{word-spacing:-2.998800px;}
.wsc7{word-spacing:-2.881200px;}
.wsec{word-spacing:-2.704800px;}
.ws108{word-spacing:-2.646000px;}
.ws6a{word-spacing:-2.587200px;}
.wsad{word-spacing:-2.528400px;}
.wsb8{word-spacing:-2.469600px;}
.wsf1{word-spacing:-2.410800px;}
.wscc{word-spacing:-2.352000px;}
.wscb{word-spacing:-2.293200px;}
.ws66{word-spacing:-2.175600px;}
.ws117{word-spacing:-2.116800px;}
.wsc1{word-spacing:-2.058000px;}
.wsb7{word-spacing:-1.999200px;}
.wsa2{word-spacing:-1.940400px;}
.ws6e{word-spacing:-1.915200px;}
.ws118{word-spacing:-1.825200px;}
.ws119{word-spacing:-1.822800px;}
.wsb9{word-spacing:-1.764000px;}
.ws39{word-spacing:-1.705200px;}
.ws10b{word-spacing:-1.646400px;}
.wsd1{word-spacing:-1.587600px;}
.ws45{word-spacing:-1.550400px;}
.ws46{word-spacing:-1.504800px;}
.ws3b{word-spacing:-1.470000px;}
.wseb{word-spacing:-1.411200px;}
.ws128{word-spacing:-1.357200px;}
.ws105{word-spacing:-1.352400px;}
.wsf6{word-spacing:-1.293600px;}
.ws20{word-spacing:-1.276800px;}
.wsa{word-spacing:-1.176000px;}
.ws120{word-spacing:-1.123200px;}
.wsa5{word-spacing:-1.117200px;}
.wsf{word-spacing:-1.094400px;}
.ws106{word-spacing:-1.058400px;}
.ws23{word-spacing:-1.048800px;}
.ws63{word-spacing:-0.999600px;}
.ws53{word-spacing:-0.957600px;}
.wsde{word-spacing:-0.940800px;}
.ws21{word-spacing:-0.912000px;}
.wsa6{word-spacing:-0.898830px;}
.ws52{word-spacing:-0.866400px;}
.wsf9{word-spacing:-0.842400px;}
.ws33{word-spacing:-0.775200px;}
.wsc0{word-spacing:-0.764400px;}
.ws1d{word-spacing:-0.729600px;}
.ws1b{word-spacing:-0.705600px;}
.ws12b{word-spacing:-0.702000px;}
.ws2c{word-spacing:-0.684000px;}
.ws37{word-spacing:-0.646800px;}
.wsab{word-spacing:-0.588000px;}
.wsfb{word-spacing:-0.470400px;}
.wscd{word-spacing:-0.411600px;}
.ws59{word-spacing:-0.410400px;}
.wsb2{word-spacing:-0.352800px;}
.ws36{word-spacing:-0.319200px;}
.wsf3{word-spacing:-0.294000px;}
.wse6{word-spacing:-0.235200px;}
.ws7{word-spacing:-0.176400px;}
.wsc6{word-spacing:-0.117600px;}
.ws2d{word-spacing:-0.091200px;}
.ws12e{word-spacing:-0.046800px;}
.ws7a{word-spacing:-0.018025px;}
.ws80{word-spacing:-0.018024px;}
.ws79{word-spacing:-0.017862px;}
.ws98{word-spacing:-0.016763px;}
.wsa8{word-spacing:-0.015211px;}
.ws9a{word-spacing:-0.010061px;}
.ws1{word-spacing:0.000000px;}
.wsf8{word-spacing:0.117600px;}
.ws5b{word-spacing:0.176400px;}
.ws1c{word-spacing:0.182400px;}
.ws12d{word-spacing:0.187200px;}
.ws127{word-spacing:0.234000px;}
.ws3{word-spacing:0.235200px;}
.ws10{word-spacing:0.273600px;}
.ws64{word-spacing:0.294000px;}
.ws4a{word-spacing:0.319200px;}
.wse1{word-spacing:0.352800px;}
.ws2b{word-spacing:0.364800px;}
.wsda{word-spacing:0.411600px;}
.ws12c{word-spacing:0.421200px;}
.ws11c{word-spacing:0.470400px;}
.wsbd{word-spacing:0.529200px;}
.ws130{word-spacing:0.592800px;}
.wsac{word-spacing:0.646800px;}
.ws134{word-spacing:0.684000px;}
.wsbc{word-spacing:0.705600px;}
.wsaa{word-spacing:0.764400px;}
.wse{word-spacing:0.820800px;}
.ws112{word-spacing:0.823200px;}
.ws49{word-spacing:0.866400px;}
.wsdf{word-spacing:0.882000px;}
.wsa9{word-spacing:0.889200px;}
.ws11{word-spacing:0.912000px;}
.wsa7{word-spacing:0.912636px;}
.wsf5{word-spacing:0.940800px;}
.ws25{word-spacing:0.957600px;}
.wsa4{word-spacing:0.999600px;}
.ws54{word-spacing:1.048800px;}
.ws2a{word-spacing:1.094400px;}
.ws69{word-spacing:1.117200px;}
.ws30{word-spacing:1.140000px;}
.ws124{word-spacing:1.170000px;}
.wsee{word-spacing:1.176000px;}
.ws103{word-spacing:1.234800px;}
.wsd0{word-spacing:1.293600px;}
.ws110{word-spacing:1.352400px;}
.ws28{word-spacing:1.368000px;}
.ws104{word-spacing:1.411200px;}
.ws50{word-spacing:1.413600px;}
.ws6f{word-spacing:1.459200px;}
.wsd2{word-spacing:1.470000px;}
.ws4f{word-spacing:1.504800px;}
.wsdd{word-spacing:1.528800px;}
.ws5{word-spacing:1.587600px;}
.ws4e{word-spacing:1.596000px;}
.ws15{word-spacing:1.646400px;}
.ws1f{word-spacing:1.687200px;}
.ws4{word-spacing:1.705200px;}
.ws68{word-spacing:1.764000px;}
.ws102{word-spacing:1.822800px;}
.ws70{word-spacing:1.869600px;}
.ws8{word-spacing:1.881600px;}
.ws18{word-spacing:1.940400px;}
.ws121{word-spacing:1.965600px;}
.ws5a{word-spacing:1.999200px;}
.ws12f{word-spacing:2.052000px;}
.ws107{word-spacing:2.058000px;}
.ws125{word-spacing:2.059200px;}
.wsc2{word-spacing:2.116800px;}
.ws122{word-spacing:2.152800px;}
.ws43{word-spacing:2.175600px;}
.ws123{word-spacing:2.199600px;}
.ws10a{word-spacing:2.234400px;}
.wse7{word-spacing:2.293200px;}
.ws22{word-spacing:2.325600px;}
.wsc5{word-spacing:2.352000px;}
.ws48{word-spacing:2.371200px;}
.ws113{word-spacing:2.410800px;}
.ws26{word-spacing:2.416800px;}
.ws129{word-spacing:2.527200px;}
.ws41{word-spacing:2.528400px;}
.ws16{word-spacing:2.587200px;}
.ws29{word-spacing:2.599200px;}
.wsaf{word-spacing:2.646000px;}
.ws11b{word-spacing:2.704800px;}
.ws5e{word-spacing:2.763600px;}
.ws31{word-spacing:2.872800px;}
.ws65{word-spacing:2.881200px;}
.wse9{word-spacing:2.940000px;}
.ws35{word-spacing:2.964000px;}
.wsbe{word-spacing:2.998800px;}
.ws32{word-spacing:3.009600px;}
.wsb3{word-spacing:3.057600px;}
.ws44{word-spacing:3.100800px;}
.ws5f{word-spacing:3.116400px;}
.wsd8{word-spacing:3.234000px;}
.ws34{word-spacing:3.283200px;}
.wsf2{word-spacing:3.292800px;}
.ws24{word-spacing:3.328800px;}
.wsc3{word-spacing:3.351600px;}
.wsd9{word-spacing:3.410400px;}
.ws126{word-spacing:3.416400px;}
.wsc4{word-spacing:3.469200px;}
.wse0{word-spacing:3.528000px;}
.ws6d{word-spacing:3.556800px;}
.ws10d{word-spacing:3.586800px;}
.ws4d{word-spacing:3.602400px;}
.ws6{word-spacing:3.645600px;}
.ws55{word-spacing:3.648000px;}
.ws4b{word-spacing:3.693600px;}
.wsc9{word-spacing:3.704400px;}
.ws14{word-spacing:3.763200px;}
.ws67{word-spacing:3.822000px;}
.ws56{word-spacing:3.830400px;}
.ws12a{word-spacing:3.837600px;}
.wsc8{word-spacing:3.939600px;}
.ws131{word-spacing:3.967200px;}
.wsb6{word-spacing:3.998400px;}
.ws51{word-spacing:4.012800px;}
.ws60{word-spacing:4.174800px;}
.ws3a{word-spacing:4.233600px;}
.ws1a{word-spacing:4.351200px;}
.wsd7{word-spacing:4.468800px;}
.wsd6{word-spacing:4.527600px;}
.ws12{word-spacing:4.605600px;}
.ws40{word-spacing:4.704000px;}
.ws17{word-spacing:4.762800px;}
.ws58{word-spacing:4.788000px;}
.ws11e{word-spacing:4.880400px;}
.ws6b{word-spacing:4.939200px;}
.wse8{word-spacing:4.960800px;}
.ws3d{word-spacing:4.998000px;}
.ws57{word-spacing:5.016000px;}
.ws4c{word-spacing:5.061600px;}
.ws1e{word-spacing:5.107200px;}
.wsa1{word-spacing:5.115600px;}
.wsa3{word-spacing:5.174400px;}
.ws47{word-spacing:5.244000px;}
.wsdb{word-spacing:5.292000px;}
.wse2{word-spacing:5.468400px;}
.ws133{word-spacing:5.517600px;}
.wsce{word-spacing:5.527200px;}
.ws132{word-spacing:5.563200px;}
.ws115{word-spacing:5.586000px;}
.wsbf{word-spacing:5.644800px;}
.ws9{word-spacing:5.703600px;}
.ws100{word-spacing:5.762400px;}
.ws38{word-spacing:5.821200px;}
.ws42{word-spacing:5.880000px;}
.wsca{word-spacing:5.938800px;}
.wsd4{word-spacing:5.997600px;}
.wsed{word-spacing:6.056400px;}
.ws2f{word-spacing:6.064800px;}
.ws11f{word-spacing:6.115200px;}
.wsb5{word-spacing:6.174000px;}
.wsae{word-spacing:6.232800px;}
.wse4{word-spacing:6.291600px;}
.ws10f{word-spacing:6.350400px;}
.ws27{word-spacing:6.384000px;}
.ws3e{word-spacing:6.409200px;}
.wsba{word-spacing:6.468000px;}
.wsc{word-spacing:6.526800px;}
.ws3f{word-spacing:6.644400px;}
.wsf0{word-spacing:6.703200px;}
.ws111{word-spacing:6.820800px;}
.wsea{word-spacing:6.938400px;}
.wse5{word-spacing:7.056000px;}
.wscf{word-spacing:7.291200px;}
.wsfa{word-spacing:7.408800px;}
.ws135{word-spacing:7.478400px;}
.ws11a{word-spacing:7.585200px;}
.ws61{word-spacing:7.644000px;}
.wsb{word-spacing:7.702800px;}
.ws2e{word-spacing:7.706400px;}
.wsdc{word-spacing:7.820400px;}
.ws11d{word-spacing:8.114400px;}
.wsd5{word-spacing:8.173200px;}
.wsfe{word-spacing:8.232000px;}
.ws101{word-spacing:8.349600px;}
.ws3c{word-spacing:8.467200px;}
.wsb4{word-spacing:8.584800px;}
.wsef{word-spacing:8.996400px;}
.wsb1{word-spacing:9.114000px;}
.wsd{word-spacing:9.231600px;}
.wsbb{word-spacing:9.349200px;}
.wsd3{word-spacing:9.408000px;}
.ws62{word-spacing:9.643200px;}
.wse3{word-spacing:9.937200px;}
.wsfc{word-spacing:10.231200px;}
.wsb0{word-spacing:10.466400px;}
.wsfd{word-spacing:11.348400px;}
.ws10e{word-spacing:11.877600px;}
.wsff{word-spacing:12.112800px;}
.wsf4{word-spacing:12.994800px;}
.ws2{word-spacing:16.816800px;}
.ws9d{word-spacing:29.280405px;}
.ws9e{word-spacing:31.835786px;}
.ws9c{word-spacing:34.528062px;}
.ws8a{word-spacing:382.703837px;}
.ws13{word-spacing:1608.129600px;}
._8{margin-left:-1608.112800px;}
._9{margin-left:-14.251200px;}
._14{margin-left:-10.543080px;}
._13{margin-left:-7.591080px;}
._6{margin-left:-6.487200px;}
._3{margin-left:-4.831200px;}
._e{margin-left:-3.268680px;}
._2{margin-left:-2.112000px;}
._5{margin-left:-1.048800px;}
._0{width:1.386000px;}
._4{width:2.897400px;}
._1{width:4.481400px;}
._f{width:23.391918px;}
._11{width:26.538318px;}
._10{width:30.323118px;}
._c{width:45.326253px;}
._b{width:50.433453px;}
._7{width:52.211731px;}
._a{width:54.309331px;}
._12{width:150.751768px;}
._d{width:914.971200px;}
.fca{color:transparent;}
.fc6{color:rgb(158,25,129);}
.fc5{color:rgb(87,87,86);}
.fc4{color:rgb(0,80,152);}
.fc3{color:rgb(147,22,120);}
.fc1{color:rgb(124,16,100);}
.fc9{color:rgb(178,178,178);}
.fc8{color:rgb(103,103,103);}
.fc7{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(94,112,127);}
.fs47{font-size:13.827600px;}
.fs22{font-size:15.210600px;}
.fs3b{font-size:16.607731px;}
.fs38{font-size:16.755410px;}
.fs39{font-size:16.755586px;}
.fs3a{font-size:16.755761px;}
.fs3f{font-size:16.762977px;}
.fs3e{font-size:16.763203px;}
.fs40{font-size:16.765639px;}
.fs41{font-size:16.766132px;}
.fs43{font-size:16.769050px;}
.fs42{font-size:16.769102px;}
.fs45{font-size:16.770552px;}
.fs44{font-size:16.770571px;}
.fs1a{font-size:17.712879px;}
.fs16{font-size:17.713439px;}
.fs12{font-size:17.713803px;}
.fs46{font-size:17.714136px;}
.fsb{font-size:17.750581px;}
.fs37{font-size:17.767528px;}
.fs36{font-size:17.768897px;}
.fs35{font-size:17.771559px;}
.fs34{font-size:17.773882px;}
.fs33{font-size:17.776272px;}
.fsf{font-size:17.777720px;}
.fs32{font-size:17.778785px;}
.fse{font-size:17.780448px;}
.fs9{font-size:17.782428px;}
.fs31{font-size:17.782701px;}
.fsd{font-size:17.784639px;}
.fs30{font-size:17.786229px;}
.fs2f{font-size:17.790347px;}
.fs2e{font-size:17.794264px;}
.fsc{font-size:17.796377px;}
.fs2d{font-size:17.797987px;}
.fs2c{font-size:17.807760px;}
.fs2b{font-size:17.818163px;}
.fs2a{font-size:17.826115px;}
.fs29{font-size:17.832906px;}
.fs28{font-size:17.837989px;}
.fs27{font-size:17.842216px;}
.fs26{font-size:17.846471px;}
.fs19{font-size:17.849054px;}
.fs25{font-size:17.850229px;}
.fs13{font-size:17.862306px;}
.fs3c{font-size:17.863212px;}
.fs3d{font-size:17.863384px;}
.fs1c{font-size:17.874091px;}
.fs17{font-size:17.874986px;}
.fs15{font-size:17.875468px;}
.fs11{font-size:17.876108px;}
.fs10{font-size:17.880495px;}
.fs18{font-size:17.888831px;}
.fs23{font-size:17.976600px;}
.fs1b{font-size:18.023699px;}
.fs14{font-size:18.024813px;}
.fsa{font-size:22.254734px;}
.fs24{font-size:24.890400px;}
.fs4b{font-size:26.584800px;}
.fs1d{font-size:33.215901px;}
.fs8{font-size:33.341908px;}
.fs21{font-size:33.468147px;}
.fs20{font-size:33.468330px;}
.fs1e{font-size:33.516248px;}
.fs1f{font-size:33.516550px;}
.fs6{font-size:34.280400px;}
.fs7{font-size:44.400000px;}
.fs0{font-size:45.600000px;}
.fs49{font-size:46.800000px;}
.fs4{font-size:58.800000px;}
.fs4a{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs5{font-size:81.000000px;}
.fs3{font-size:84.000000px;}
.fs2{font-size:120.000000px;}
.fs48{font-size:165.935400px;}
.y0{bottom:0.000000px;}
.y114{bottom:32.420193px;}
.y117{bottom:36.123974px;}
.yf7{bottom:48.209850px;}
.ya3{bottom:53.632950px;}
.y11d{bottom:59.510271px;}
.y118{bottom:60.940068px;}
.y108{bottom:74.295343px;}
.yc0{bottom:75.406500px;}
.ya2{bottom:77.586000px;}
.y1{bottom:77.698800px;}
.yf8{bottom:88.854450px;}
.yf9{bottom:91.688100px;}
.yab{bottom:93.260850px;}
.yc1{bottom:97.755908px;}
.y116{bottom:97.757325px;}
.yfa{bottom:103.006500px;}
.yfb{bottom:105.682200px;}
.yfc{bottom:107.870550px;}
.ya4{bottom:117.716100px;}
.yfd{bottom:130.349400px;}
.yfe{bottom:132.759150px;}
.yff{bottom:134.241450px;}
.y100{bottom:136.433850px;}
.ye6{bottom:139.884450px;}
.y1db{bottom:142.756800px;}
.ye7{bottom:142.774800px;}
.y1ea{bottom:142.828800px;}
.y1b6{bottom:142.846800px;}
.y1e8{bottom:142.852800px;}
.y8d{bottom:142.866300px;}
.y75{bottom:142.867350px;}
.y185{bottom:142.888800px;}
.y1a0{bottom:142.894800px;}
.y4e{bottom:142.910550px;}
.y92{bottom:142.924800px;}
.y16c{bottom:142.930800px;}
.y1e{bottom:142.939350px;}
.y19c{bottom:142.942800px;}
.ybf{bottom:144.117560px;}
.ye8{bottom:145.144050px;}
.y129{bottom:149.352000px;}
.yd2{bottom:150.931678px;}
.yee{bottom:152.513700px;}
.ye9{bottom:152.767500px;}
.yed{bottom:154.232100px;}
.yec{bottom:154.896300px;}
.yd1{bottom:155.494858px;}
.yea{bottom:157.670550px;}
.y8c{bottom:158.616300px;}
.y74{bottom:158.622150px;}
.y4d{bottom:158.665350px;}
.y1d{bottom:158.694150px;}
.yd0{bottom:160.058038px;}
.yeb{bottom:160.656750px;}
.y10a{bottom:163.030181px;}
.y1da{bottom:164.512800px;}
.y149{bottom:164.584800px;}
.y1b5{bottom:164.602800px;}
.y1e7{bottom:164.608800px;}
.y184{bottom:164.644800px;}
.y19f{bottom:164.650800px;}
.y91{bottom:164.680800px;}
.y16b{bottom:164.686800px;}
.y19b{bottom:164.698800px;}
.y11f{bottom:166.547264px;}
.yad{bottom:168.910800px;}
.y73{bottom:174.376950px;}
.y4c{bottom:174.420150px;}
.y1b{bottom:174.443100px;}
.y1c{bottom:174.448950px;}
.y8b{bottom:179.852250px;}
.y203{bottom:185.777850px;}
.yaa{bottom:186.084150px;}
.y1d9{bottom:186.268800px;}
.y148{bottom:186.340800px;}
.y1b4{bottom:186.358800px;}
.y1e6{bottom:186.364800px;}
.y183{bottom:186.400800px;}
.y19e{bottom:186.406800px;}
.y90{bottom:186.436800px;}
.y16a{bottom:186.442800px;}
.y19a{bottom:186.448800px;}
.y72{bottom:190.131750px;}
.y4b{bottom:190.174950px;}
.y8a{bottom:195.607050px;}
.y1a{bottom:195.704100px;}
.ya6{bottom:201.424050px;}
.y202{bottom:202.274850px;}
.y109{bottom:202.554925px;}
.ya1{bottom:203.144100px;}
.y71{bottom:205.886550px;}
.y4a{bottom:205.929750px;}
.y120{bottom:206.186087px;}
.y1d8{bottom:208.024800px;}
.y147{bottom:208.096800px;}
.y1b3{bottom:208.114800px;}
.y1e5{bottom:208.120800px;}
.y182{bottom:208.156800px;}
.y19d{bottom:208.162800px;}
.y8f{bottom:208.192800px;}
.y169{bottom:208.198800px;}
.y89{bottom:211.361850px;}
.y19{bottom:211.458900px;}
.ycf{bottom:218.162530px;}
.y201{bottom:218.771850px;}
.y70{bottom:221.641350px;}
.y49{bottom:221.684550px;}
.yc9{bottom:222.482340px;}
.yce{bottom:222.725710px;}
.yc8{bottom:227.045520px;}
.y88{bottom:227.116650px;}
.y18{bottom:227.208900px;}
.ycd{bottom:227.288890px;}
.ya5{bottom:228.487500px;}
.y1d7{bottom:229.780800px;}
.y146{bottom:229.852800px;}
.y1b2{bottom:229.870800px;}
.y1e4{bottom:229.876800px;}
.y181{bottom:229.912800px;}
.y199{bottom:229.918800px;}
.y168{bottom:229.930800px;}
.y8e{bottom:229.948800px;}
.ybe{bottom:231.492824px;}
.yc7{bottom:231.608700px;}
.y200{bottom:235.268850px;}
.y6f{bottom:237.396150px;}
.y48{bottom:237.439350px;}
.y10b{bottom:237.763661px;}
.y87{bottom:242.871450px;}
.ya0{bottom:245.492250px;}
.yac{bottom:246.885450px;}
.y1d6{bottom:251.536800px;}
.y145{bottom:251.608800px;}
.y1b1{bottom:251.626800px;}
.y1e3{bottom:251.632800px;}
.y180{bottom:251.668800px;}
.y198{bottom:251.674800px;}
.y167{bottom:251.686800px;}
.y17a{bottom:251.698800px;}
.y1ff{bottom:251.765850px;}
.y6e{bottom:253.150950px;}
.y47{bottom:253.194150px;}
.y86{bottom:258.626250px;}
.ycc{bottom:261.372042px;}
.ycb{bottom:265.935222px;}
.y1fe{bottom:268.262850px;}
.y6d{bottom:268.905750px;}
.y46{bottom:268.948950px;}
.yca{bottom:270.498402px;}
.y9f{bottom:271.109850px;}
.y1d5{bottom:273.292800px;}
.y144{bottom:273.364800px;}
.y1b0{bottom:273.382800px;}
.y1e2{bottom:273.388800px;}
.y15{bottom:273.418800px;}
.y17f{bottom:273.424800px;}
.y197{bottom:273.430800px;}
.y166{bottom:273.442800px;}
.y17{bottom:273.448800px;}
.ya9{bottom:275.457953px;}
.yf4{bottom:278.126742px;}
.y16{bottom:278.343900px;}
.y85{bottom:279.876600px;}
.y11e{bottom:281.676295px;}
.yf3{bottom:283.519722px;}
.y6c{bottom:284.660550px;}
.y45{bottom:284.678850px;}
.y1fd{bottom:284.759850px;}
.ya8{bottom:291.820200px;}
.ya7{bottom:294.186600px;}
.y1d4{bottom:295.048800px;}
.y164{bottom:295.108800px;}
.y179{bottom:295.114800px;}
.y143{bottom:295.120800px;}
.y1af{bottom:295.138800px;}
.y1e1{bottom:295.144800px;}
.y14{bottom:295.174800px;}
.y17e{bottom:295.180800px;}
.y196{bottom:295.186800px;}
.y165{bottom:295.198800px;}
.y84{bottom:295.631400px;}
.y12d{bottom:295.921950px;}
.y12a{bottom:300.394698px;}
.y6b{bottom:300.415350px;}
.y1fc{bottom:301.256850px;}
.ybd{bottom:304.055370px;}
.y44{bottom:305.939850px;}
.ybc{bottom:309.448350px;}
.y83{bottom:311.386200px;}
.y9e{bottom:311.443650px;}
.y101{bottom:315.442350px;}
.y6a{bottom:316.170150px;}
.y1d3{bottom:316.804800px;}
.y163{bottom:316.864800px;}
.y178{bottom:316.870800px;}
.y142{bottom:316.876800px;}
.y1ae{bottom:316.894800px;}
.y1e0{bottom:316.900800px;}
.y13{bottom:316.930800px;}
.y17d{bottom:316.936800px;}
.y195{bottom:316.942800px;}
.y1fb{bottom:317.753850px;}
.y93{bottom:321.283500px;}
.y43{bottom:321.694650px;}
.yb9{bottom:328.077647px;}
.yae{bottom:329.332500px;}
.yb8{bottom:331.385341px;}
.y69{bottom:331.924950px;}
.y1fa{bottom:334.250850px;}
.y42{bottom:337.449450px;}
.y1d2{bottom:338.560800px;}
.y162{bottom:338.620800px;}
.y177{bottom:338.626800px;}
.y141{bottom:338.632800px;}
.y1ad{bottom:338.650800px;}
.y1df{bottom:338.656800px;}
.y12{bottom:338.686800px;}
.y17c{bottom:338.692800px;}
.y194{bottom:338.698800px;}
.y127{bottom:340.457438px;}
.ybb{bottom:343.007880px;}
.y68{bottom:347.679750px;}
.y102{bottom:348.957450px;}
.yba{bottom:350.475000px;}
.y1f9{bottom:350.747850px;}
.y41{bottom:353.204250px;}
.y9d{bottom:358.807200px;}
.y1d1{bottom:360.316800px;}
.y161{bottom:360.376800px;}
.y176{bottom:360.382800px;}
.y140{bottom:360.388800px;}
.y1ac{bottom:360.406800px;}
.y1de{bottom:360.412800px;}
.y193{bottom:360.430800px;}
.y82{bottom:360.436800px;}
.y11{bottom:360.442800px;}
.y17b{bottom:360.448800px;}
.y67{bottom:363.434550px;}
.y121{bottom:365.729850px;}
.y1f8{bottom:367.244850px;}
.y128{bottom:367.714833px;}
.y40{bottom:368.959050px;}
.y119{bottom:374.141532px;}
.y66{bottom:379.189350px;}
.yb7{bottom:381.638926px;}
.y1d0{bottom:382.072800px;}
.y160{bottom:382.132800px;}
.y175{bottom:382.138800px;}
.y13f{bottom:382.144800px;}
.y1ab{bottom:382.162800px;}
.y1dd{bottom:382.168800px;}
.y192{bottom:382.186800px;}
.ye{bottom:382.192800px;}
.y10{bottom:382.198800px;}
.y1f7{bottom:383.741850px;}
.y3f{bottom:384.684000px;}
.yf{bottom:387.093900px;}
.y124{bottom:387.450587px;}
.y126{bottom:387.454389px;}
.y123{bottom:392.013767px;}
.y125{bottom:392.017569px;}
.y65{bottom:394.944150px;}
.y1f6{bottom:400.238850px;}
.y122{bottom:403.368480px;}
.y1cf{bottom:403.828800px;}
.y1f0{bottom:403.870800px;}
.y15f{bottom:403.888800px;}
.y174{bottom:403.894800px;}
.y13e{bottom:403.900800px;}
.y1aa{bottom:403.918800px;}
.y1dc{bottom:403.924800px;}
.y191{bottom:403.942800px;}
.yd{bottom:403.948800px;}
.y1a1{bottom:404.099100px;}
.y3e{bottom:405.945000px;}
.y95{bottom:408.664050px;}
.y64{bottom:410.698950px;}
.y187{bottom:410.790300px;}
.y1f5{bottom:416.735850px;}
.y3d{bottom:421.699800px;}
.y1ce{bottom:425.584800px;}
.y1ef{bottom:425.626800px;}
.y15e{bottom:425.644800px;}
.y173{bottom:425.650800px;}
.y13d{bottom:425.656800px;}
.y1a9{bottom:425.674800px;}
.y18f{bottom:425.680800px;}
.y190{bottom:425.698800px;}
.y186{bottom:426.994800px;}
.y21b{bottom:428.199300px;}
.y11b{bottom:428.987153px;}
.y12c{bottom:429.119084px;}
.y94{bottom:430.851300px;}
.y63{bottom:431.915700px;}
.y1f4{bottom:433.232850px;}
.y3c{bottom:437.454600px;}
.y12b{bottom:437.457338px;}
.y21a{bottom:444.695100px;}
.y1cd{bottom:447.340800px;}
.y1ee{bottom:447.382800px;}
.y15d{bottom:447.400800px;}
.y172{bottom:447.406800px;}
.y13c{bottom:447.412800px;}
.y1a8{bottom:447.430800px;}
.y18e{bottom:447.436800px;}
.yc{bottom:447.448800px;}
.y62{bottom:447.670500px;}
.y1f3{bottom:449.729850px;}
.y3b{bottom:453.209400px;}
.y11a{bottom:453.905919px;}
.y11c{bottom:455.624717px;}
.y219{bottom:461.190900px;}
.y218{bottom:461.195100px;}
.y61{bottom:463.425300px;}
.y105{bottom:464.827498px;}
.y3a{bottom:468.964200px;}
.y1cc{bottom:469.096800px;}
.y1ed{bottom:469.138800px;}
.y15c{bottom:469.156800px;}
.y171{bottom:469.162800px;}
.y13b{bottom:469.168800px;}
.y1a7{bottom:469.186800px;}
.y18d{bottom:469.192800px;}
.y217{bottom:473.894700px;}
.y1f2{bottom:474.729300px;}
.y99{bottom:474.737100px;}
.y60{bottom:479.180100px;}
.y104{bottom:482.631505px;}
.y39{bottom:484.698750px;}
.y1cb{bottom:490.852800px;}
.y1ec{bottom:490.894800px;}
.y15b{bottom:490.912800px;}
.y170{bottom:490.918800px;}
.y13a{bottom:490.924800px;}
.y1f1{bottom:490.933800px;}
.y1a6{bottom:490.942800px;}
.y18c{bottom:490.948800px;}
.y5f{bottom:494.934900px;}
.y9a{bottom:498.425550px;}
.yb6{bottom:500.563124px;}
.y38{bottom:505.959750px;}
.y106{bottom:507.318309px;}
.yf0{bottom:507.499170px;}
.y5e{bottom:510.689700px;}
.y103{bottom:510.892800px;}
.y1ca{bottom:512.608800px;}
.y81{bottom:512.650800px;}
.y15a{bottom:512.668800px;}
.yb{bottom:512.674800px;}
.y139{bottom:512.680800px;}
.y1a5{bottom:512.698800px;}
.yef{bottom:512.892150px;}
.y113{bottom:517.805649px;}
.y37{bottom:521.714550px;}
.yf2{bottom:525.017367px;}
.y5d{bottom:526.444500px;}
.y111{bottom:526.563152px;}
.yf1{bottom:530.410347px;}
.yb0{bottom:530.799570px;}
.y107{bottom:531.891033px;}
.yb4{bottom:533.518726px;}
.y1a4{bottom:534.334800px;}
.y1c9{bottom:534.364800px;}
.y80{bottom:534.406800px;}
.y159{bottom:534.424800px;}
.ya{bottom:534.430800px;}
.y138{bottom:534.436800px;}
.yaf{bottom:535.362750px;}
.y110{bottom:535.552617px;}
.y112{bottom:537.396902px;}
.y36{bottom:537.469350px;}
.y97{bottom:538.671750px;}
.yb2{bottom:541.320570px;}
.y5c{bottom:542.199300px;}
.yb1{bottom:546.713550px;}
.y10f{bottom:549.147091px;}
.y35{bottom:553.224150px;}
.y1a3{bottom:556.090800px;}
.y1c8{bottom:556.120800px;}
.y7f{bottom:556.162800px;}
.y158{bottom:556.180800px;}
.y9{bottom:556.186800px;}
.y137{bottom:556.192800px;}
.y5b{bottom:557.954100px;}
.yb3{bottom:558.411822px;}
.y96{bottom:558.540900px;}
.yd3{bottom:558.685350px;}
.yd4{bottom:560.737500px;}
.y10e{bottom:562.171167px;}
.yd5{bottom:563.090400px;}
.yd6{bottom:565.444800px;}
.yd7{bottom:567.611550px;}
.y34{bottom:568.978950px;}
.yd8{bottom:569.874300px;}
.yd9{bottom:572.069250px;}
.y216{bottom:572.946750px;}
.y215{bottom:572.959350px;}
.y5a{bottom:573.708900px;}
.yda{bottom:573.858000px;}
.ydb{bottom:575.865600px;}
.ydc{bottom:576.967050px;}
.y1a2{bottom:577.846800px;}
.y1c7{bottom:577.876800px;}
.y7e{bottom:577.918800px;}
.y157{bottom:577.936800px;}
.y8{bottom:577.942800px;}
.y136{bottom:577.948800px;}
.y1e9{bottom:578.589300px;}
.ydd{bottom:578.820750px;}
.yde{bottom:580.459500px;}
.ydf{bottom:582.079650px;}
.y98{bottom:582.515700px;}
.yb5{bottom:582.954376px;}
.ye0{bottom:583.566000px;}
.y115{bottom:584.135273px;}
.y33{bottom:584.728950px;}
.ye1{bottom:585.351900px;}
.ye2{bottom:586.450800px;}
.ye3{bottom:587.700900px;}
.ye4{bottom:589.254900px;}
.y214{bottom:589.455150px;}
.ye5{bottom:590.910000px;}
.y18b{bottom:599.602800px;}
.y1c6{bottom:599.632800px;}
.y7d{bottom:599.674800px;}
.y156{bottom:599.692800px;}
.y7{bottom:599.698800px;}
.yc4{bottom:600.043740px;}
.yc3{bottom:604.606920px;}
.y213{bottom:605.950950px;}
.y32{bottom:605.969700px;}
.yc2{bottom:609.170100px;}
.yc6{bottom:618.929670px;}
.y9b{bottom:619.902450px;}
.y18a{bottom:621.358800px;}
.y16f{bottom:621.370800px;}
.y1c5{bottom:621.388800px;}
.y7c{bottom:621.430800px;}
.y6{bottom:621.448800px;}
.y31{bottom:621.724500px;}
.y212{bottom:622.446750px;}
.yc5{bottom:624.322650px;}
.y10c{bottom:626.327100px;}
.y30{bottom:637.479300px;}
.y189{bottom:643.114800px;}
.y16e{bottom:643.126800px;}
.y1c4{bottom:643.144800px;}
.y59{bottom:643.162800px;}
.y7b{bottom:643.186800px;}
.y211{bottom:643.193550px;}
.y155{bottom:643.198800px;}
.yf6{bottom:646.247063px;}
.y2f{bottom:653.234100px;}
.y188{bottom:664.870800px;}
.y16d{bottom:664.882800px;}
.y1c3{bottom:664.900800px;}
.y58{bottom:664.918800px;}
.y7a{bottom:664.942800px;}
.y10d{bottom:665.679300px;}
.y2e{bottom:668.988900px;}
.yf5{bottom:669.841350px;}
.y135{bottom:686.626800px;}
.y154{bottom:686.638800px;}
.y1c2{bottom:686.656800px;}
.y57{bottom:686.674800px;}
.y79{bottom:686.698800px;}
.y210{bottom:686.946750px;}
.y20f{bottom:686.963550px;}
.y20e{bottom:703.459350px;}
.y134{bottom:708.382800px;}
.y153{bottom:708.394800px;}
.y1c1{bottom:708.412800px;}
.y78{bottom:708.424800px;}
.y56{bottom:708.430800px;}
.y9c{bottom:717.572700px;}
.y20d{bottom:719.955150px;}
.y133{bottom:730.138800px;}
.y152{bottom:730.150800px;}
.y1c0{bottom:730.168800px;}
.y77{bottom:730.180800px;}
.y2d{bottom:730.186800px;}
.y1eb{bottom:730.198800px;}
.y20c{bottom:736.450950px;}
.y132{bottom:751.894800px;}
.y151{bottom:751.906800px;}
.y1bf{bottom:751.924800px;}
.y76{bottom:751.936800px;}
.y2c{bottom:751.942800px;}
.y20b{bottom:752.946750px;}
.y131{bottom:773.650800px;}
.y150{bottom:773.662800px;}
.y55{bottom:773.668800px;}
.y1be{bottom:773.680800px;}
.y2a{bottom:773.692800px;}
.y20a{bottom:773.693550px;}
.y5{bottom:773.698800px;}
.y2b{bottom:778.593900px;}
.y130{bottom:795.406800px;}
.y14f{bottom:795.418800px;}
.y54{bottom:795.424800px;}
.y27{bottom:795.430800px;}
.y1bd{bottom:795.436800px;}
.y29{bottom:795.448800px;}
.y28{bottom:800.343900px;}
.y12f{bottom:817.162800px;}
.y14e{bottom:817.174800px;}
.y53{bottom:817.180800px;}
.y26{bottom:817.186800px;}
.y1bc{bottom:817.192800px;}
.y209{bottom:817.446750px;}
.y208{bottom:817.463550px;}
.y4{bottom:818.698800px;}
.y207{bottom:833.959350px;}
.y12e{bottom:838.918800px;}
.y14d{bottom:838.930800px;}
.y52{bottom:838.936800px;}
.y25{bottom:838.942800px;}
.y1bb{bottom:838.948800px;}
.y206{bottom:850.455150px;}
.y23{bottom:860.674800px;}
.y1ba{bottom:860.680800px;}
.y14c{bottom:860.686800px;}
.y51{bottom:860.692800px;}
.y3{bottom:860.698800px;}
.y24{bottom:865.593900px;}
.y205{bottom:866.950950px;}
.y22{bottom:882.430800px;}
.y1b9{bottom:882.436800px;}
.y14b{bottom:882.442800px;}
.y50{bottom:882.448800px;}
.y204{bottom:883.446750px;}
.y4f{bottom:887.343900px;}
.y21{bottom:904.186800px;}
.y1b8{bottom:904.192800px;}
.y14a{bottom:904.198800px;}
.y20{bottom:925.942800px;}
.y1b7{bottom:925.948800px;}
.y2{bottom:947.698800px;}
.y1f{bottom:952.593900px;}
.h42{height:12.023998px;}
.h3f{height:12.130917px;}
.h40{height:12.131044px;}
.h41{height:12.131171px;}
.h46{height:12.136395px;}
.h45{height:12.136559px;}
.h47{height:12.138323px;}
.h48{height:12.138680px;}
.h4a{height:12.140792px;}
.h49{height:12.140830px;}
.h4c{height:12.141879px;}
.h4b{height:12.141893px;}
.h4e{height:12.596944px;}
.h20{height:12.824124px;}
.h1c{height:12.824530px;}
.h18{height:12.824793px;}
.h4d{height:12.825034px;}
.h11{height:12.851420px;}
.h3e{height:12.863690px;}
.h3d{height:12.864682px;}
.h3c{height:12.866609px;}
.h3b{height:12.868290px;}
.h3a{height:12.870021px;}
.h15{height:12.871069px;}
.h39{height:12.871840px;}
.h14{height:12.873045px;}
.hf{height:12.874478px;}
.h38{height:12.874676px;}
.h13{height:12.876078px;}
.h37{height:12.877230px;}
.h36{height:12.880211px;}
.h35{height:12.883047px;}
.h12{height:12.884577px;}
.h34{height:12.885742px;}
.h33{height:12.892818px;}
.h32{height:12.900350px;}
.h31{height:12.906108px;}
.h30{height:12.911024px;}
.h19{height:12.914447px;}
.h2f{height:12.914704px;}
.h2e{height:12.917764px;}
.h2d{height:12.920845px;}
.h1f{height:12.922715px;}
.h2c{height:12.923565px;}
.h43{height:12.932965px;}
.h44{height:12.933090px;}
.h22{height:12.940842px;}
.h1d{height:12.941490px;}
.h1b{height:12.941839px;}
.h17{height:12.942302px;}
.h16{height:12.945478px;}
.h1e{height:12.951513px;}
.h21{height:13.031134px;}
.h1a{height:13.031940px;}
.h28{height:13.856857px;}
.h10{height:16.112427px;}
.h29{height:16.376683px;}
.h4f{height:18.693827px;}
.h50{height:19.165356px;}
.h2b{height:22.675154px;}
.h23{height:24.048312px;}
.he{height:24.139541px;}
.h27{height:24.230939px;}
.h26{height:24.231071px;}
.h24{height:24.265764px;}
.h25{height:24.265982px;}
.h2a{height:24.717825px;}
.h8{height:24.819010px;}
.h56{height:33.014400px;}
.h52{height:34.351200px;}
.h2{height:40.948800px;}
.h9{height:40.972200px;}
.hc{height:41.029200px;}
.ha{height:41.029800px;}
.hb{height:41.049000px;}
.h55{height:42.026400px;}
.h53{height:42.166800px;}
.h54{height:44.040000px;}
.h6{height:49.921200px;}
.h57{height:56.133600px;}
.h7{height:58.644000px;}
.h3{height:59.466000px;}
.h5{height:75.432000px;}
.h4{height:86.880000px;}
.h51{height:151.167149px;}
.hd{height:741.708000px;}
.h1{height:1062.750000px;}
.h0{height:1062.991500px;}
.w1{width:807.750000px;}
.w0{width:807.874500px;}
.x0{left:0.000000px;}
.x44{left:54.116700px;}
.x45{left:55.178250px;}
.x46{left:56.462100px;}
.x47{left:57.825150px;}
.x48{left:59.156850px;}
.x49{left:60.650850px;}
.x4a{left:62.230950px;}
.x4b{left:63.632100px;}
.x4c{left:65.431800px;}
.x4d{left:66.500100px;}
.x4e{left:68.381700px;}
.x4f{left:70.118550px;}
.x50{left:71.905950px;}
.x51{left:73.607400px;}
.x52{left:75.741300px;}
.x53{left:77.093400px;}
.x54{left:78.667950px;}
.x55{left:80.690100px;}
.x56{left:82.907250px;}
.x5c{left:85.756846px;}
.x80{left:87.324354px;}
.x1d{left:91.629900px;}
.x68{left:108.331820px;}
.x69{left:109.469437px;}
.x1{left:110.551200px;}
.x81{left:125.304750px;}
.x7{left:131.811000px;}
.x65{left:136.049700px;}
.x66{left:138.059746px;}
.x2{left:144.567000px;}
.x88{left:146.267550px;}
.x87{left:148.501950px;}
.x67{left:151.249951px;}
.x1e{left:163.403550px;}
.x5{left:168.649500px;}
.x6{left:173.184750px;}
.x82{left:176.883450px;}
.x6d{left:205.342023px;}
.x6c{left:211.341414px;}
.x6e{left:214.719675px;}
.x86{left:219.042600px;}
.x6f{left:227.648536px;}
.x70{left:232.129824px;}
.x18{left:239.794950px;}
.x1a{left:248.856600px;}
.x76{left:262.972306px;}
.x32{left:282.694050px;}
.x89{left:287.785650px;}
.x37{left:324.858828px;}
.xa{left:326.205750px;}
.xb{left:330.741000px;}
.x1c{left:332.362800px;}
.x3{left:334.377150px;}
.x4{left:338.912400px;}
.x31{left:342.225970px;}
.x83{left:362.607450px;}
.x33{left:382.099003px;}
.x2f{left:383.416500px;}
.x3d{left:385.669443px;}
.x72{left:386.676604px;}
.x3e{left:388.751770px;}
.x7f{left:392.803019px;}
.x21{left:394.249950px;}
.x28{left:396.407100px;}
.x10{left:399.532650px;}
.x6b{left:401.003700px;}
.x20{left:402.138900px;}
.x11{left:403.975200px;}
.x1f{left:405.169350px;}
.x35{left:406.617528px;}
.x34{left:413.312658px;}
.x14{left:445.393500px;}
.x15{left:454.278750px;}
.x85{left:457.102800px;}
.x5e{left:460.016379px;}
.x16{left:466.846800px;}
.x30{left:468.143850px;}
.x36{left:472.247054px;}
.x17{left:475.732200px;}
.x3f{left:483.010152px;}
.x38{left:489.239237px;}
.x27{left:514.933650px;}
.x3b{left:520.627691px;}
.x8a{left:521.675100px;}
.x5f{left:533.911350px;}
.x7b{left:535.071000px;}
.x60{left:542.433450px;}
.x61{left:544.905750px;}
.x62{left:547.589400px;}
.xc{left:561.499200px;}
.x7c{left:563.488360px;}
.xd{left:566.034450px;}
.xe{left:572.031300px;}
.xf{left:576.566400px;}
.x75{left:585.859469px;}
.x19{left:588.144300px;}
.x57{left:591.194700px;}
.x58{left:592.729650px;}
.x59{left:594.350700px;}
.x12{left:603.478950px;}
.x13{left:607.921650px;}
.x74{left:610.375880px;}
.x84{left:611.729100px;}
.x5a{left:613.946400px;}
.x73{left:615.906389px;}
.x2a{left:617.010750px;}
.x24{left:619.685100px;}
.x5b{left:622.051050px;}
.x26{left:625.107300px;}
.x8{left:628.282200px;}
.x9{left:632.817450px;}
.x71{left:635.192068px;}
.x39{left:646.810963px;}
.x2c{left:653.293200px;}
.x22{left:660.815250px;}
.x3a{left:662.198831px;}
.x5d{left:663.627338px;}
.x7a{left:668.298254px;}
.x43{left:671.623032px;}
.x25{left:675.586500px;}
.x29{left:677.163600px;}
.x79{left:678.548335px;}
.x1b{left:685.011750px;}
.x77{left:687.322589px;}
.x3c{left:688.510097px;}
.x42{left:694.125554px;}
.x40{left:697.323179px;}
.x23{left:700.593450px;}
.x41{left:701.631518px;}
.x78{left:707.473011px;}
.x7e{left:709.768201px;}
.x63{left:716.514750px;}
.x2d{left:721.052850px;}
.x64{left:727.636050px;}
.x6a{left:729.082420px;}
.x7d{left:730.149221px;}
.x2b{left:748.309484px;}
.x2e{left:765.498450px;}
@media print{
.v2{vertical-align:-14.461176pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:3.082682pt;}
.v3{vertical-align:4.299530pt;}
.v1{vertical-align:7.414349pt;}
.v5{vertical-align:13.497600pt;}
.ls28{letter-spacing:-0.811232pt;}
.ls29{letter-spacing:-0.790400pt;}
.ls2a{letter-spacing:-0.261333pt;}
.ls2b{letter-spacing:-0.124800pt;}
.ls6{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.001219pt;}
.ls4{letter-spacing:0.001763pt;}
.ls23{letter-spacing:0.013521pt;}
.ls8{letter-spacing:0.013845pt;}
.ls24{letter-spacing:0.324493pt;}
.ls20{letter-spacing:0.662506pt;}
.ls1f{letter-spacing:0.676027pt;}
.ls21{letter-spacing:0.689547pt;}
.ls26{letter-spacing:0.719064pt;}
.ls27{letter-spacing:0.735043pt;}
.ls22{letter-spacing:0.782981pt;}
.ls1a{letter-spacing:0.784191pt;}
.lsc{letter-spacing:0.787337pt;}
.lsa{letter-spacing:0.788749pt;}
.lsd{letter-spacing:0.789368pt;}
.lse{letter-spacing:0.790121pt;}
.ls14{letter-spacing:0.791962pt;}
.ls11{letter-spacing:0.791988pt;}
.ls13{letter-spacing:0.793291pt;}
.ls12{letter-spacing:0.794444pt;}
.ls1b{letter-spacing:0.798960pt;}
.ls10{letter-spacing:0.799232pt;}
.ls15{letter-spacing:0.800759pt;}
.lsf{letter-spacing:0.802439pt;}
.ls16{letter-spacing:0.807115pt;}
.ls1e{letter-spacing:0.814939pt;}
.ls25{letter-spacing:0.892355pt;}
.ls1d{letter-spacing:0.926794pt;}
.lsb{letter-spacing:1.002947pt;}
.ls1c{letter-spacing:1.106240pt;}
.ls1{letter-spacing:1.173333pt;}
.ls2{letter-spacing:1.179200pt;}
.ls3{letter-spacing:1.185067pt;}
.ls17{letter-spacing:1.485120pt;}
.ls19{letter-spacing:1.487473pt;}
.ls9{letter-spacing:1.490754pt;}
.ls18{letter-spacing:1.496406pt;}
.ls5{letter-spacing:1086.164800pt;}
.ls0{letter-spacing:2034.417067pt;}
.wsa0{word-spacing:-8.320000pt;}
.ws0{word-spacing:-8.106667pt;}
.ws86{word-spacing:-7.446332pt;}
.ws71{word-spacing:-7.418204pt;}
.ws83{word-spacing:-7.390169pt;}
.ws85{word-spacing:-5.958498pt;}
.ws84{word-spacing:-5.958444pt;}
.ws8c{word-spacing:-5.531200pt;}
.ws73{word-spacing:-4.959344pt;}
.ws8d{word-spacing:-4.122634pt;}
.ws8b{word-spacing:-4.010779pt;}
.ws89{word-spacing:-3.994800pt;}
.ws82{word-spacing:-3.984731pt;}
.ws77{word-spacing:-3.980413pt;}
.ws95{word-spacing:-3.978821pt;}
.ws81{word-spacing:-3.978375pt;}
.ws7b{word-spacing:-3.977093pt;}
.ws7c{word-spacing:-3.972219pt;}
.ws7e{word-spacing:-3.966456pt;}
.ws75{word-spacing:-3.953169pt;}
.ws72{word-spacing:-3.950070pt;}
.ws74{word-spacing:-3.942996pt;}
.ws7f{word-spacing:-3.940919pt;}
.ws97{word-spacing:-3.930883pt;}
.ws96{word-spacing:-3.914904pt;}
.ws10c{word-spacing:-3.763200pt;}
.ws109{word-spacing:-3.606400pt;}
.ws90{word-spacing:-3.596462pt;}
.ws87{word-spacing:-3.488298pt;}
.ws6c{word-spacing:-3.397333pt;}
.ws91{word-spacing:-3.393654pt;}
.ws8e{word-spacing:-3.380133pt;}
.ws8f{word-spacing:-3.366613pt;}
.ws7d{word-spacing:-3.180237pt;}
.ws76{word-spacing:-3.160969pt;}
.ws9b{word-spacing:-3.149180pt;}
.ws78{word-spacing:-3.149121pt;}
.ws5d{word-spacing:-3.083733pt;}
.wsf7{word-spacing:-3.031467pt;}
.ws88{word-spacing:-3.028599pt;}
.ws99{word-spacing:-2.980558pt;}
.ws116{word-spacing:-2.979200pt;}
.ws93{word-spacing:-2.978802pt;}
.ws92{word-spacing:-2.978740pt;}
.ws94{word-spacing:-2.952486pt;}
.ws19{word-spacing:-2.874667pt;}
.ws114{word-spacing:-2.717867pt;}
.ws9f{word-spacing:-2.717627pt;}
.ws5c{word-spacing:-2.665600pt;}
.wsc7{word-spacing:-2.561067pt;}
.wsec{word-spacing:-2.404267pt;}
.ws108{word-spacing:-2.352000pt;}
.ws6a{word-spacing:-2.299733pt;}
.wsad{word-spacing:-2.247467pt;}
.wsb8{word-spacing:-2.195200pt;}
.wsf1{word-spacing:-2.142933pt;}
.wscc{word-spacing:-2.090667pt;}
.wscb{word-spacing:-2.038400pt;}
.ws66{word-spacing:-1.933867pt;}
.ws117{word-spacing:-1.881600pt;}
.wsc1{word-spacing:-1.829333pt;}
.wsb7{word-spacing:-1.777067pt;}
.wsa2{word-spacing:-1.724800pt;}
.ws6e{word-spacing:-1.702400pt;}
.ws118{word-spacing:-1.622400pt;}
.ws119{word-spacing:-1.620267pt;}
.wsb9{word-spacing:-1.568000pt;}
.ws39{word-spacing:-1.515733pt;}
.ws10b{word-spacing:-1.463467pt;}
.wsd1{word-spacing:-1.411200pt;}
.ws45{word-spacing:-1.378133pt;}
.ws46{word-spacing:-1.337600pt;}
.ws3b{word-spacing:-1.306667pt;}
.wseb{word-spacing:-1.254400pt;}
.ws128{word-spacing:-1.206400pt;}
.ws105{word-spacing:-1.202133pt;}
.wsf6{word-spacing:-1.149867pt;}
.ws20{word-spacing:-1.134933pt;}
.wsa{word-spacing:-1.045333pt;}
.ws120{word-spacing:-0.998400pt;}
.wsa5{word-spacing:-0.993067pt;}
.wsf{word-spacing:-0.972800pt;}
.ws106{word-spacing:-0.940800pt;}
.ws23{word-spacing:-0.932267pt;}
.ws63{word-spacing:-0.888533pt;}
.ws53{word-spacing:-0.851200pt;}
.wsde{word-spacing:-0.836267pt;}
.ws21{word-spacing:-0.810667pt;}
.wsa6{word-spacing:-0.798960pt;}
.ws52{word-spacing:-0.770133pt;}
.wsf9{word-spacing:-0.748800pt;}
.ws33{word-spacing:-0.689067pt;}
.wsc0{word-spacing:-0.679467pt;}
.ws1d{word-spacing:-0.648533pt;}
.ws1b{word-spacing:-0.627200pt;}
.ws12b{word-spacing:-0.624000pt;}
.ws2c{word-spacing:-0.608000pt;}
.ws37{word-spacing:-0.574933pt;}
.wsab{word-spacing:-0.522667pt;}
.wsfb{word-spacing:-0.418133pt;}
.wscd{word-spacing:-0.365867pt;}
.ws59{word-spacing:-0.364800pt;}
.wsb2{word-spacing:-0.313600pt;}
.ws36{word-spacing:-0.283733pt;}
.wsf3{word-spacing:-0.261333pt;}
.wse6{word-spacing:-0.209067pt;}
.ws7{word-spacing:-0.156800pt;}
.wsc6{word-spacing:-0.104533pt;}
.ws2d{word-spacing:-0.081067pt;}
.ws12e{word-spacing:-0.041600pt;}
.ws7a{word-spacing:-0.016022pt;}
.ws80{word-spacing:-0.016021pt;}
.ws79{word-spacing:-0.015878pt;}
.ws98{word-spacing:-0.014901pt;}
.wsa8{word-spacing:-0.013521pt;}
.ws9a{word-spacing:-0.008943pt;}
.ws1{word-spacing:0.000000pt;}
.wsf8{word-spacing:0.104533pt;}
.ws5b{word-spacing:0.156800pt;}
.ws1c{word-spacing:0.162133pt;}
.ws12d{word-spacing:0.166400pt;}
.ws127{word-spacing:0.208000pt;}
.ws3{word-spacing:0.209067pt;}
.ws10{word-spacing:0.243200pt;}
.ws64{word-spacing:0.261333pt;}
.ws4a{word-spacing:0.283733pt;}
.wse1{word-spacing:0.313600pt;}
.ws2b{word-spacing:0.324267pt;}
.wsda{word-spacing:0.365867pt;}
.ws12c{word-spacing:0.374400pt;}
.ws11c{word-spacing:0.418133pt;}
.wsbd{word-spacing:0.470400pt;}
.ws130{word-spacing:0.526933pt;}
.wsac{word-spacing:0.574933pt;}
.ws134{word-spacing:0.608000pt;}
.wsbc{word-spacing:0.627200pt;}
.wsaa{word-spacing:0.679467pt;}
.wse{word-spacing:0.729600pt;}
.ws112{word-spacing:0.731733pt;}
.ws49{word-spacing:0.770133pt;}
.wsdf{word-spacing:0.784000pt;}
.wsa9{word-spacing:0.790400pt;}
.ws11{word-spacing:0.810667pt;}
.wsa7{word-spacing:0.811232pt;}
.wsf5{word-spacing:0.836267pt;}
.ws25{word-spacing:0.851200pt;}
.wsa4{word-spacing:0.888533pt;}
.ws54{word-spacing:0.932267pt;}
.ws2a{word-spacing:0.972800pt;}
.ws69{word-spacing:0.993067pt;}
.ws30{word-spacing:1.013333pt;}
.ws124{word-spacing:1.040000pt;}
.wsee{word-spacing:1.045333pt;}
.ws103{word-spacing:1.097600pt;}
.wsd0{word-spacing:1.149867pt;}
.ws110{word-spacing:1.202133pt;}
.ws28{word-spacing:1.216000pt;}
.ws104{word-spacing:1.254400pt;}
.ws50{word-spacing:1.256533pt;}
.ws6f{word-spacing:1.297067pt;}
.wsd2{word-spacing:1.306667pt;}
.ws4f{word-spacing:1.337600pt;}
.wsdd{word-spacing:1.358933pt;}
.ws5{word-spacing:1.411200pt;}
.ws4e{word-spacing:1.418667pt;}
.ws15{word-spacing:1.463467pt;}
.ws1f{word-spacing:1.499733pt;}
.ws4{word-spacing:1.515733pt;}
.ws68{word-spacing:1.568000pt;}
.ws102{word-spacing:1.620267pt;}
.ws70{word-spacing:1.661867pt;}
.ws8{word-spacing:1.672533pt;}
.ws18{word-spacing:1.724800pt;}
.ws121{word-spacing:1.747200pt;}
.ws5a{word-spacing:1.777067pt;}
.ws12f{word-spacing:1.824000pt;}
.ws107{word-spacing:1.829333pt;}
.ws125{word-spacing:1.830400pt;}
.wsc2{word-spacing:1.881600pt;}
.ws122{word-spacing:1.913600pt;}
.ws43{word-spacing:1.933867pt;}
.ws123{word-spacing:1.955200pt;}
.ws10a{word-spacing:1.986133pt;}
.wse7{word-spacing:2.038400pt;}
.ws22{word-spacing:2.067200pt;}
.wsc5{word-spacing:2.090667pt;}
.ws48{word-spacing:2.107733pt;}
.ws113{word-spacing:2.142933pt;}
.ws26{word-spacing:2.148267pt;}
.ws129{word-spacing:2.246400pt;}
.ws41{word-spacing:2.247467pt;}
.ws16{word-spacing:2.299733pt;}
.ws29{word-spacing:2.310400pt;}
.wsaf{word-spacing:2.352000pt;}
.ws11b{word-spacing:2.404267pt;}
.ws5e{word-spacing:2.456533pt;}
.ws31{word-spacing:2.553600pt;}
.ws65{word-spacing:2.561067pt;}
.wse9{word-spacing:2.613333pt;}
.ws35{word-spacing:2.634667pt;}
.wsbe{word-spacing:2.665600pt;}
.ws32{word-spacing:2.675200pt;}
.wsb3{word-spacing:2.717867pt;}
.ws44{word-spacing:2.756267pt;}
.ws5f{word-spacing:2.770133pt;}
.wsd8{word-spacing:2.874667pt;}
.ws34{word-spacing:2.918400pt;}
.wsf2{word-spacing:2.926933pt;}
.ws24{word-spacing:2.958933pt;}
.wsc3{word-spacing:2.979200pt;}
.wsd9{word-spacing:3.031467pt;}
.ws126{word-spacing:3.036800pt;}
.wsc4{word-spacing:3.083733pt;}
.wse0{word-spacing:3.136000pt;}
.ws6d{word-spacing:3.161600pt;}
.ws10d{word-spacing:3.188267pt;}
.ws4d{word-spacing:3.202133pt;}
.ws6{word-spacing:3.240533pt;}
.ws55{word-spacing:3.242667pt;}
.ws4b{word-spacing:3.283200pt;}
.wsc9{word-spacing:3.292800pt;}
.ws14{word-spacing:3.345067pt;}
.ws67{word-spacing:3.397333pt;}
.ws56{word-spacing:3.404800pt;}
.ws12a{word-spacing:3.411200pt;}
.wsc8{word-spacing:3.501867pt;}
.ws131{word-spacing:3.526400pt;}
.wsb6{word-spacing:3.554133pt;}
.ws51{word-spacing:3.566933pt;}
.ws60{word-spacing:3.710933pt;}
.ws3a{word-spacing:3.763200pt;}
.ws1a{word-spacing:3.867733pt;}
.wsd7{word-spacing:3.972267pt;}
.wsd6{word-spacing:4.024533pt;}
.ws12{word-spacing:4.093867pt;}
.ws40{word-spacing:4.181333pt;}
.ws17{word-spacing:4.233600pt;}
.ws58{word-spacing:4.256000pt;}
.ws11e{word-spacing:4.338133pt;}
.ws6b{word-spacing:4.390400pt;}
.wse8{word-spacing:4.409600pt;}
.ws3d{word-spacing:4.442667pt;}
.ws57{word-spacing:4.458667pt;}
.ws4c{word-spacing:4.499200pt;}
.ws1e{word-spacing:4.539733pt;}
.wsa1{word-spacing:4.547200pt;}
.wsa3{word-spacing:4.599467pt;}
.ws47{word-spacing:4.661333pt;}
.wsdb{word-spacing:4.704000pt;}
.wse2{word-spacing:4.860800pt;}
.ws133{word-spacing:4.904533pt;}
.wsce{word-spacing:4.913067pt;}
.ws132{word-spacing:4.945067pt;}
.ws115{word-spacing:4.965333pt;}
.wsbf{word-spacing:5.017600pt;}
.ws9{word-spacing:5.069867pt;}
.ws100{word-spacing:5.122133pt;}
.ws38{word-spacing:5.174400pt;}
.ws42{word-spacing:5.226667pt;}
.wsca{word-spacing:5.278933pt;}
.wsd4{word-spacing:5.331200pt;}
.wsed{word-spacing:5.383467pt;}
.ws2f{word-spacing:5.390933pt;}
.ws11f{word-spacing:5.435733pt;}
.wsb5{word-spacing:5.488000pt;}
.wsae{word-spacing:5.540267pt;}
.wse4{word-spacing:5.592533pt;}
.ws10f{word-spacing:5.644800pt;}
.ws27{word-spacing:5.674667pt;}
.ws3e{word-spacing:5.697067pt;}
.wsba{word-spacing:5.749333pt;}
.wsc{word-spacing:5.801600pt;}
.ws3f{word-spacing:5.906133pt;}
.wsf0{word-spacing:5.958400pt;}
.ws111{word-spacing:6.062933pt;}
.wsea{word-spacing:6.167467pt;}
.wse5{word-spacing:6.272000pt;}
.wscf{word-spacing:6.481067pt;}
.wsfa{word-spacing:6.585600pt;}
.ws135{word-spacing:6.647467pt;}
.ws11a{word-spacing:6.742400pt;}
.ws61{word-spacing:6.794667pt;}
.wsb{word-spacing:6.846933pt;}
.ws2e{word-spacing:6.850133pt;}
.wsdc{word-spacing:6.951467pt;}
.ws11d{word-spacing:7.212800pt;}
.wsd5{word-spacing:7.265067pt;}
.wsfe{word-spacing:7.317333pt;}
.ws101{word-spacing:7.421867pt;}
.ws3c{word-spacing:7.526400pt;}
.wsb4{word-spacing:7.630933pt;}
.wsef{word-spacing:7.996800pt;}
.wsb1{word-spacing:8.101333pt;}
.wsd{word-spacing:8.205867pt;}
.wsbb{word-spacing:8.310400pt;}
.wsd3{word-spacing:8.362667pt;}
.ws62{word-spacing:8.571733pt;}
.wse3{word-spacing:8.833067pt;}
.wsfc{word-spacing:9.094400pt;}
.wsb0{word-spacing:9.303467pt;}
.wsfd{word-spacing:10.087467pt;}
.ws10e{word-spacing:10.557867pt;}
.wsff{word-spacing:10.766933pt;}
.wsf4{word-spacing:11.550933pt;}
.ws2{word-spacing:14.948267pt;}
.ws9d{word-spacing:26.027027pt;}
.ws9e{word-spacing:28.298476pt;}
.ws9c{word-spacing:30.691611pt;}
.ws8a{word-spacing:340.181189pt;}
.ws13{word-spacing:1429.448533pt;}
._8{margin-left:-1429.433600pt;}
._9{margin-left:-12.667733pt;}
._14{margin-left:-9.371627pt;}
._13{margin-left:-6.747627pt;}
._6{margin-left:-5.766400pt;}
._3{margin-left:-4.294400pt;}
._e{margin-left:-2.905493pt;}
._2{margin-left:-1.877333pt;}
._5{margin-left:-0.932267pt;}
._0{width:1.232000pt;}
._4{width:2.575467pt;}
._1{width:3.983467pt;}
._f{width:20.792816pt;}
._11{width:23.589616pt;}
._10{width:26.953883pt;}
._c{width:40.290003pt;}
._b{width:44.829736pt;}
._7{width:46.410427pt;}
._a{width:48.274961pt;}
._12{width:134.001571pt;}
._d{width:813.307733pt;}
.fs47{font-size:12.291200pt;}
.fs22{font-size:13.520533pt;}
.fs3b{font-size:14.762428pt;}
.fs38{font-size:14.893698pt;}
.fs39{font-size:14.893854pt;}
.fs3a{font-size:14.894010pt;}
.fs3f{font-size:14.900424pt;}
.fs3e{font-size:14.900625pt;}
.fs40{font-size:14.902790pt;}
.fs41{font-size:14.903229pt;}
.fs43{font-size:14.905822pt;}
.fs42{font-size:14.905869pt;}
.fs45{font-size:14.907157pt;}
.fs44{font-size:14.907174pt;}
.fs1a{font-size:15.744781pt;}
.fs16{font-size:15.745279pt;}
.fs12{font-size:15.745603pt;}
.fs46{font-size:15.745898pt;}
.fsb{font-size:15.778294pt;}
.fs37{font-size:15.793358pt;}
.fs36{font-size:15.794575pt;}
.fs35{font-size:15.796941pt;}
.fs34{font-size:15.799006pt;}
.fs33{font-size:15.801130pt;}
.fsf{font-size:15.802418pt;}
.fs32{font-size:15.803364pt;}
.fse{font-size:15.804843pt;}
.fs9{font-size:15.806602pt;}
.fs31{font-size:15.806845pt;}
.fsd{font-size:15.808568pt;}
.fs30{font-size:15.809981pt;}
.fs2f{font-size:15.813642pt;}
.fs2e{font-size:15.817123pt;}
.fsc{font-size:15.819002pt;}
.fs2d{font-size:15.820433pt;}
.fs2c{font-size:15.829120pt;}
.fs2b{font-size:15.838367pt;}
.fs2a{font-size:15.845436pt;}
.fs29{font-size:15.851472pt;}
.fs28{font-size:15.855991pt;}
.fs27{font-size:15.859747pt;}
.fs26{font-size:15.863529pt;}
.fs19{font-size:15.865826pt;}
.fs25{font-size:15.866870pt;}
.fs13{font-size:15.877605pt;}
.fs3c{font-size:15.878411pt;}
.fs3d{font-size:15.878564pt;}
.fs1c{font-size:15.888081pt;}
.fs17{font-size:15.888877pt;}
.fs15{font-size:15.889305pt;}
.fs11{font-size:15.889874pt;}
.fs10{font-size:15.893773pt;}
.fs18{font-size:15.901183pt;}
.fs23{font-size:15.979200pt;}
.fs1b{font-size:16.021066pt;}
.fs14{font-size:16.022056pt;}
.fsa{font-size:19.781986pt;}
.fs24{font-size:22.124800pt;}
.fs4b{font-size:23.630933pt;}
.fs1d{font-size:29.525245pt;}
.fs8{font-size:29.637251pt;}
.fs21{font-size:29.749464pt;}
.fs20{font-size:29.749627pt;}
.fs1e{font-size:29.792221pt;}
.fs1f{font-size:29.792489pt;}
.fs6{font-size:30.471467pt;}
.fs7{font-size:39.466667pt;}
.fs0{font-size:40.533333pt;}
.fs49{font-size:41.600000pt;}
.fs4{font-size:52.266667pt;}
.fs4a{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs5{font-size:72.000000pt;}
.fs3{font-size:74.666667pt;}
.fs2{font-size:106.666667pt;}
.fs48{font-size:147.498133pt;}
.y0{bottom:0.000000pt;}
.y114{bottom:28.817949pt;}
.y117{bottom:32.110199pt;}
.yf7{bottom:42.853200pt;}
.ya3{bottom:47.673733pt;}
.y11d{bottom:52.898019pt;}
.y118{bottom:54.168949pt;}
.y108{bottom:66.040305pt;}
.yc0{bottom:67.028000pt;}
.ya2{bottom:68.965333pt;}
.y1{bottom:69.065600pt;}
.yf8{bottom:78.981733pt;}
.yf9{bottom:81.500533pt;}
.yab{bottom:82.898533pt;}
.yc1{bottom:86.894141pt;}
.y116{bottom:86.895400pt;}
.yfa{bottom:91.561333pt;}
.yfb{bottom:93.939733pt;}
.yfc{bottom:95.884933pt;}
.ya4{bottom:104.636533pt;}
.yfd{bottom:115.866133pt;}
.yfe{bottom:118.008133pt;}
.yff{bottom:119.325733pt;}
.y100{bottom:121.274533pt;}
.ye6{bottom:124.341733pt;}
.y1db{bottom:126.894933pt;}
.ye7{bottom:126.910933pt;}
.y1ea{bottom:126.958933pt;}
.y1b6{bottom:126.974933pt;}
.y1e8{bottom:126.980267pt;}
.y8d{bottom:126.992267pt;}
.y75{bottom:126.993200pt;}
.y185{bottom:127.012267pt;}
.y1a0{bottom:127.017600pt;}
.y4e{bottom:127.031600pt;}
.y92{bottom:127.044267pt;}
.y16c{bottom:127.049600pt;}
.y1e{bottom:127.057200pt;}
.y19c{bottom:127.060267pt;}
.ybf{bottom:128.104498pt;}
.ye8{bottom:129.016933pt;}
.y129{bottom:132.757333pt;}
.yd2{bottom:134.161491pt;}
.yee{bottom:135.567733pt;}
.ye9{bottom:135.793333pt;}
.yed{bottom:137.095200pt;}
.yec{bottom:137.685600pt;}
.yd1{bottom:138.217651pt;}
.yea{bottom:140.151600pt;}
.y8c{bottom:140.992267pt;}
.y74{bottom:140.997467pt;}
.y4d{bottom:141.035867pt;}
.y1d{bottom:141.061467pt;}
.yd0{bottom:142.273811pt;}
.yeb{bottom:142.806000pt;}
.y10a{bottom:144.915716pt;}
.y1da{bottom:146.233600pt;}
.y149{bottom:146.297600pt;}
.y1b5{bottom:146.313600pt;}
.y1e7{bottom:146.318933pt;}
.y184{bottom:146.350933pt;}
.y19f{bottom:146.356267pt;}
.y91{bottom:146.382933pt;}
.y16b{bottom:146.388267pt;}
.y19b{bottom:146.398933pt;}
.y11f{bottom:148.042012pt;}
.yad{bottom:150.142933pt;}
.y73{bottom:155.001733pt;}
.y4c{bottom:155.040133pt;}
.y1b{bottom:155.060533pt;}
.y1c{bottom:155.065733pt;}
.y8b{bottom:159.868667pt;}
.y203{bottom:165.135867pt;}
.yaa{bottom:165.408133pt;}
.y1d9{bottom:165.572267pt;}
.y148{bottom:165.636267pt;}
.y1b4{bottom:165.652267pt;}
.y1e6{bottom:165.657600pt;}
.y183{bottom:165.689600pt;}
.y19e{bottom:165.694933pt;}
.y90{bottom:165.721600pt;}
.y16a{bottom:165.726933pt;}
.y19a{bottom:165.732267pt;}
.y72{bottom:169.006000pt;}
.y4b{bottom:169.044400pt;}
.y8a{bottom:173.872933pt;}
.y1a{bottom:173.959200pt;}
.ya6{bottom:179.043600pt;}
.y202{bottom:179.799867pt;}
.y109{bottom:180.048822pt;}
.ya1{bottom:180.572533pt;}
.y71{bottom:183.010267pt;}
.y4a{bottom:183.048667pt;}
.y120{bottom:183.276522pt;}
.y1d8{bottom:184.910933pt;}
.y147{bottom:184.974933pt;}
.y1b3{bottom:184.990933pt;}
.y1e5{bottom:184.996267pt;}
.y182{bottom:185.028267pt;}
.y19d{bottom:185.033600pt;}
.y8f{bottom:185.060267pt;}
.y169{bottom:185.065600pt;}
.y89{bottom:187.877200pt;}
.y19{bottom:187.963467pt;}
.ycf{bottom:193.922249pt;}
.y201{bottom:194.463867pt;}
.y70{bottom:197.014533pt;}
.y49{bottom:197.052933pt;}
.yc9{bottom:197.762080pt;}
.yce{bottom:197.978409pt;}
.yc8{bottom:201.818240pt;}
.y88{bottom:201.881467pt;}
.y18{bottom:201.963467pt;}
.ycd{bottom:202.034569pt;}
.ya5{bottom:203.100000pt;}
.y1d7{bottom:204.249600pt;}
.y146{bottom:204.313600pt;}
.y1b2{bottom:204.329600pt;}
.y1e4{bottom:204.334933pt;}
.y181{bottom:204.366933pt;}
.y199{bottom:204.372267pt;}
.y168{bottom:204.382933pt;}
.y8e{bottom:204.398933pt;}
.ybe{bottom:205.771399pt;}
.yc7{bottom:205.874400pt;}
.y200{bottom:209.127867pt;}
.y6f{bottom:211.018800pt;}
.y48{bottom:211.057200pt;}
.y10b{bottom:211.345477pt;}
.y87{bottom:215.885733pt;}
.ya0{bottom:218.215333pt;}
.yac{bottom:219.453733pt;}
.y1d6{bottom:223.588267pt;}
.y145{bottom:223.652267pt;}
.y1b1{bottom:223.668267pt;}
.y1e3{bottom:223.673600pt;}
.y180{bottom:223.705600pt;}
.y198{bottom:223.710933pt;}
.y167{bottom:223.721600pt;}
.y17a{bottom:223.732267pt;}
.y1ff{bottom:223.791867pt;}
.y6e{bottom:225.023067pt;}
.y47{bottom:225.061467pt;}
.y86{bottom:229.890000pt;}
.ycc{bottom:232.330704pt;}
.ycb{bottom:236.386864pt;}
.y1fe{bottom:238.455867pt;}
.y6d{bottom:239.027333pt;}
.y46{bottom:239.065733pt;}
.yca{bottom:240.443024pt;}
.y9f{bottom:240.986533pt;}
.y1d5{bottom:242.926933pt;}
.y144{bottom:242.990933pt;}
.y1b0{bottom:243.006933pt;}
.y1e2{bottom:243.012267pt;}
.y15{bottom:243.038933pt;}
.y17f{bottom:243.044267pt;}
.y197{bottom:243.049600pt;}
.y166{bottom:243.060267pt;}
.y17{bottom:243.065600pt;}
.ya9{bottom:244.851514pt;}
.yf4{bottom:247.223771pt;}
.y16{bottom:247.416800pt;}
.y85{bottom:248.779200pt;}
.y11e{bottom:250.378929pt;}
.yf3{bottom:252.017531pt;}
.y6c{bottom:253.031600pt;}
.y45{bottom:253.047867pt;}
.y1fd{bottom:253.119867pt;}
.ya8{bottom:259.395733pt;}
.ya7{bottom:261.499200pt;}
.y1d4{bottom:262.265600pt;}
.y164{bottom:262.318933pt;}
.y179{bottom:262.324267pt;}
.y143{bottom:262.329600pt;}
.y1af{bottom:262.345600pt;}
.y1e1{bottom:262.350933pt;}
.y14{bottom:262.377600pt;}
.y17e{bottom:262.382933pt;}
.y196{bottom:262.388267pt;}
.y165{bottom:262.398933pt;}
.y84{bottom:262.783467pt;}
.y12d{bottom:263.041733pt;}
.y12a{bottom:267.017509pt;}
.y6b{bottom:267.035867pt;}
.y1fc{bottom:267.783867pt;}
.ybd{bottom:270.271440pt;}
.y44{bottom:271.946533pt;}
.ybc{bottom:275.065200pt;}
.y83{bottom:276.787733pt;}
.y9e{bottom:276.838800pt;}
.y101{bottom:280.393200pt;}
.y6a{bottom:281.040133pt;}
.y1d3{bottom:281.604267pt;}
.y163{bottom:281.657600pt;}
.y178{bottom:281.662933pt;}
.y142{bottom:281.668267pt;}
.y1ae{bottom:281.684267pt;}
.y1e0{bottom:281.689600pt;}
.y13{bottom:281.716267pt;}
.y17d{bottom:281.721600pt;}
.y195{bottom:281.726933pt;}
.y1fb{bottom:282.447867pt;}
.y93{bottom:285.585333pt;}
.y43{bottom:285.950800pt;}
.yb9{bottom:291.624575pt;}
.yae{bottom:292.740000pt;}
.yb8{bottom:294.564748pt;}
.y69{bottom:295.044400pt;}
.y1fa{bottom:297.111867pt;}
.y42{bottom:299.955067pt;}
.y1d2{bottom:300.942933pt;}
.y162{bottom:300.996267pt;}
.y177{bottom:301.001600pt;}
.y141{bottom:301.006933pt;}
.y1ad{bottom:301.022933pt;}
.y1df{bottom:301.028267pt;}
.y12{bottom:301.054933pt;}
.y17c{bottom:301.060267pt;}
.y194{bottom:301.065600pt;}
.y127{bottom:302.628834pt;}
.ybb{bottom:304.895893pt;}
.y68{bottom:309.048667pt;}
.y102{bottom:310.184400pt;}
.yba{bottom:311.533333pt;}
.y1f9{bottom:311.775867pt;}
.y41{bottom:313.959333pt;}
.y9d{bottom:318.939733pt;}
.y1d1{bottom:320.281600pt;}
.y161{bottom:320.334933pt;}
.y176{bottom:320.340267pt;}
.y140{bottom:320.345600pt;}
.y1ac{bottom:320.361600pt;}
.y1de{bottom:320.366933pt;}
.y193{bottom:320.382933pt;}
.y82{bottom:320.388267pt;}
.y11{bottom:320.393600pt;}
.y17b{bottom:320.398933pt;}
.y67{bottom:323.052933pt;}
.y121{bottom:325.093200pt;}
.y1f8{bottom:326.439867pt;}
.y128{bottom:326.857630pt;}
.y40{bottom:327.963600pt;}
.y119{bottom:332.570251pt;}
.y66{bottom:337.057200pt;}
.yb7{bottom:339.234601pt;}
.y1d0{bottom:339.620267pt;}
.y160{bottom:339.673600pt;}
.y175{bottom:339.678933pt;}
.y13f{bottom:339.684267pt;}
.y1ab{bottom:339.700267pt;}
.y1dd{bottom:339.705600pt;}
.y192{bottom:339.721600pt;}
.ye{bottom:339.726933pt;}
.y10{bottom:339.732267pt;}
.y1f7{bottom:341.103867pt;}
.y3f{bottom:341.941333pt;}
.yf{bottom:344.083467pt;}
.y124{bottom:344.400522pt;}
.y126{bottom:344.403902pt;}
.y123{bottom:348.456682pt;}
.y125{bottom:348.460062pt;}
.y65{bottom:351.061467pt;}
.y1f6{bottom:355.767867pt;}
.y122{bottom:358.549760pt;}
.y1cf{bottom:358.958933pt;}
.y1f0{bottom:358.996267pt;}
.y15f{bottom:359.012267pt;}
.y174{bottom:359.017600pt;}
.y13e{bottom:359.022933pt;}
.y1aa{bottom:359.038933pt;}
.y1dc{bottom:359.044267pt;}
.y191{bottom:359.060267pt;}
.yd{bottom:359.065600pt;}
.y1a1{bottom:359.199200pt;}
.y3e{bottom:360.840000pt;}
.y95{bottom:363.256933pt;}
.y64{bottom:365.065733pt;}
.y187{bottom:365.146933pt;}
.y1f5{bottom:370.431867pt;}
.y3d{bottom:374.844267pt;}
.y1ce{bottom:378.297600pt;}
.y1ef{bottom:378.334933pt;}
.y15e{bottom:378.350933pt;}
.y173{bottom:378.356267pt;}
.y13d{bottom:378.361600pt;}
.y1a9{bottom:378.377600pt;}
.y18f{bottom:378.382933pt;}
.y190{bottom:378.398933pt;}
.y186{bottom:379.550933pt;}
.y21b{bottom:380.621600pt;}
.y11b{bottom:381.321914pt;}
.y12c{bottom:381.439186pt;}
.y94{bottom:382.978933pt;}
.y63{bottom:383.925067pt;}
.y1f4{bottom:385.095867pt;}
.y3c{bottom:388.848533pt;}
.y12b{bottom:388.850967pt;}
.y21a{bottom:395.284533pt;}
.y1cd{bottom:397.636267pt;}
.y1ee{bottom:397.673600pt;}
.y15d{bottom:397.689600pt;}
.y172{bottom:397.694933pt;}
.y13c{bottom:397.700267pt;}
.y1a8{bottom:397.716267pt;}
.y18e{bottom:397.721600pt;}
.yc{bottom:397.732267pt;}
.y62{bottom:397.929333pt;}
.y1f3{bottom:399.759867pt;}
.y3b{bottom:402.852800pt;}
.y11a{bottom:403.471928pt;}
.y11c{bottom:404.999748pt;}
.y219{bottom:409.947467pt;}
.y218{bottom:409.951200pt;}
.y61{bottom:411.933600pt;}
.y105{bottom:413.179998pt;}
.y3a{bottom:416.857067pt;}
.y1cc{bottom:416.974933pt;}
.y1ed{bottom:417.012267pt;}
.y15c{bottom:417.028267pt;}
.y171{bottom:417.033600pt;}
.y13b{bottom:417.038933pt;}
.y1a7{bottom:417.054933pt;}
.y18d{bottom:417.060267pt;}
.y217{bottom:421.239733pt;}
.y1f2{bottom:421.981600pt;}
.y99{bottom:421.988533pt;}
.y60{bottom:425.937867pt;}
.y104{bottom:429.005782pt;}
.y39{bottom:430.843333pt;}
.y1cb{bottom:436.313600pt;}
.y1ec{bottom:436.350933pt;}
.y15b{bottom:436.366933pt;}
.y170{bottom:436.372267pt;}
.y13a{bottom:436.377600pt;}
.y1f1{bottom:436.385600pt;}
.y1a6{bottom:436.393600pt;}
.y18c{bottom:436.398933pt;}
.y5f{bottom:439.942133pt;}
.y9a{bottom:443.044933pt;}
.yb6{bottom:444.944999pt;}
.y38{bottom:449.742000pt;}
.y106{bottom:450.949608pt;}
.yf0{bottom:451.110373pt;}
.y5e{bottom:453.946400pt;}
.y103{bottom:454.126933pt;}
.y1ca{bottom:455.652267pt;}
.y81{bottom:455.689600pt;}
.y15a{bottom:455.705600pt;}
.yb{bottom:455.710933pt;}
.y139{bottom:455.716267pt;}
.y1a5{bottom:455.732267pt;}
.yef{bottom:455.904133pt;}
.y113{bottom:460.271688pt;}
.y37{bottom:463.746267pt;}
.yf2{bottom:466.682104pt;}
.y5d{bottom:467.950667pt;}
.y111{bottom:468.056135pt;}
.yf1{bottom:471.475864pt;}
.yb0{bottom:471.821840pt;}
.y107{bottom:472.792030pt;}
.yb4{bottom:474.238867pt;}
.y1a4{bottom:474.964267pt;}
.y1c9{bottom:474.990933pt;}
.y80{bottom:475.028267pt;}
.y159{bottom:475.044267pt;}
.ya{bottom:475.049600pt;}
.y138{bottom:475.054933pt;}
.yaf{bottom:475.878000pt;}
.y110{bottom:476.046771pt;}
.y112{bottom:477.686135pt;}
.y36{bottom:477.750533pt;}
.y97{bottom:478.819333pt;}
.yb2{bottom:481.173840pt;}
.y5c{bottom:481.954933pt;}
.yb1{bottom:485.967600pt;}
.y10f{bottom:488.130747pt;}
.y35{bottom:491.754800pt;}
.y1a3{bottom:494.302933pt;}
.y1c8{bottom:494.329600pt;}
.y7f{bottom:494.366933pt;}
.y158{bottom:494.382933pt;}
.y9{bottom:494.388267pt;}
.y137{bottom:494.393600pt;}
.y5b{bottom:495.959200pt;}
.yb3{bottom:496.366064pt;}
.y96{bottom:496.480800pt;}
.yd3{bottom:496.609200pt;}
.yd4{bottom:498.433333pt;}
.y10e{bottom:499.707704pt;}
.yd5{bottom:500.524800pt;}
.yd6{bottom:502.617600pt;}
.yd7{bottom:504.543600pt;}
.y34{bottom:505.759067pt;}
.yd8{bottom:506.554933pt;}
.yd9{bottom:508.506000pt;}
.y216{bottom:509.286000pt;}
.y215{bottom:509.297200pt;}
.y5a{bottom:509.963467pt;}
.yda{bottom:510.096000pt;}
.ydb{bottom:511.880533pt;}
.ydc{bottom:512.859600pt;}
.y1a2{bottom:513.641600pt;}
.y1c7{bottom:513.668267pt;}
.y7e{bottom:513.705600pt;}
.y157{bottom:513.721600pt;}
.y8{bottom:513.726933pt;}
.y136{bottom:513.732267pt;}
.y1e9{bottom:514.301600pt;}
.ydd{bottom:514.507333pt;}
.yde{bottom:515.964000pt;}
.ydf{bottom:517.404133pt;}
.y98{bottom:517.791733pt;}
.yb5{bottom:518.181667pt;}
.ye0{bottom:518.725333pt;}
.y115{bottom:519.231354pt;}
.y33{bottom:519.759067pt;}
.ye1{bottom:520.312800pt;}
.ye2{bottom:521.289600pt;}
.ye3{bottom:522.400800pt;}
.ye4{bottom:523.782133pt;}
.y214{bottom:523.960133pt;}
.ye5{bottom:525.253333pt;}
.y18b{bottom:532.980267pt;}
.y1c6{bottom:533.006933pt;}
.y7d{bottom:533.044267pt;}
.y156{bottom:533.060267pt;}
.y7{bottom:533.065600pt;}
.yc4{bottom:533.372213pt;}
.yc3{bottom:537.428373pt;}
.y213{bottom:538.623067pt;}
.y32{bottom:538.639733pt;}
.yc2{bottom:541.484533pt;}
.yc6{bottom:550.159707pt;}
.y9b{bottom:551.024400pt;}
.y18a{bottom:552.318933pt;}
.y16f{bottom:552.329600pt;}
.y1c5{bottom:552.345600pt;}
.y7c{bottom:552.382933pt;}
.y6{bottom:552.398933pt;}
.y31{bottom:552.644000pt;}
.y212{bottom:553.286000pt;}
.yc5{bottom:554.953467pt;}
.y10c{bottom:556.735200pt;}
.y30{bottom:566.648267pt;}
.y189{bottom:571.657600pt;}
.y16e{bottom:571.668267pt;}
.y1c4{bottom:571.684267pt;}
.y59{bottom:571.700267pt;}
.y7b{bottom:571.721600pt;}
.y211{bottom:571.727600pt;}
.y155{bottom:571.732267pt;}
.yf6{bottom:574.441834pt;}
.y2f{bottom:580.652533pt;}
.y188{bottom:590.996267pt;}
.y16d{bottom:591.006933pt;}
.y1c3{bottom:591.022933pt;}
.y58{bottom:591.038933pt;}
.y7a{bottom:591.060267pt;}
.y10d{bottom:591.714933pt;}
.y2e{bottom:594.656800pt;}
.yf5{bottom:595.414534pt;}
.y135{bottom:610.334933pt;}
.y154{bottom:610.345600pt;}
.y1c2{bottom:610.361600pt;}
.y57{bottom:610.377600pt;}
.y79{bottom:610.398933pt;}
.y210{bottom:610.619333pt;}
.y20f{bottom:610.634267pt;}
.y20e{bottom:625.297200pt;}
.y134{bottom:629.673600pt;}
.y153{bottom:629.684267pt;}
.y1c1{bottom:629.700267pt;}
.y78{bottom:629.710933pt;}
.y56{bottom:629.716267pt;}
.y9c{bottom:637.842400pt;}
.y20d{bottom:639.960133pt;}
.y133{bottom:649.012267pt;}
.y152{bottom:649.022933pt;}
.y1c0{bottom:649.038933pt;}
.y77{bottom:649.049600pt;}
.y2d{bottom:649.054933pt;}
.y1eb{bottom:649.065600pt;}
.y20c{bottom:654.623067pt;}
.y132{bottom:668.350933pt;}
.y151{bottom:668.361600pt;}
.y1bf{bottom:668.377600pt;}
.y76{bottom:668.388267pt;}
.y2c{bottom:668.393600pt;}
.y20b{bottom:669.286000pt;}
.y131{bottom:687.689600pt;}
.y150{bottom:687.700267pt;}
.y55{bottom:687.705600pt;}
.y1be{bottom:687.716267pt;}
.y2a{bottom:687.726933pt;}
.y20a{bottom:687.727600pt;}
.y5{bottom:687.732267pt;}
.y2b{bottom:692.083467pt;}
.y130{bottom:707.028267pt;}
.y14f{bottom:707.038933pt;}
.y54{bottom:707.044267pt;}
.y27{bottom:707.049600pt;}
.y1bd{bottom:707.054933pt;}
.y29{bottom:707.065600pt;}
.y28{bottom:711.416800pt;}
.y12f{bottom:726.366933pt;}
.y14e{bottom:726.377600pt;}
.y53{bottom:726.382933pt;}
.y26{bottom:726.388267pt;}
.y1bc{bottom:726.393600pt;}
.y209{bottom:726.619333pt;}
.y208{bottom:726.634267pt;}
.y4{bottom:727.732267pt;}
.y207{bottom:741.297200pt;}
.y12e{bottom:745.705600pt;}
.y14d{bottom:745.716267pt;}
.y52{bottom:745.721600pt;}
.y25{bottom:745.726933pt;}
.y1bb{bottom:745.732267pt;}
.y206{bottom:755.960133pt;}
.y23{bottom:765.044267pt;}
.y1ba{bottom:765.049600pt;}
.y14c{bottom:765.054933pt;}
.y51{bottom:765.060267pt;}
.y3{bottom:765.065600pt;}
.y24{bottom:769.416800pt;}
.y205{bottom:770.623067pt;}
.y22{bottom:784.382933pt;}
.y1b9{bottom:784.388267pt;}
.y14b{bottom:784.393600pt;}
.y50{bottom:784.398933pt;}
.y204{bottom:785.286000pt;}
.y4f{bottom:788.750133pt;}
.y21{bottom:803.721600pt;}
.y1b8{bottom:803.726933pt;}
.y14a{bottom:803.732267pt;}
.y20{bottom:823.060267pt;}
.y1b7{bottom:823.065600pt;}
.y2{bottom:842.398933pt;}
.y1f{bottom:846.750133pt;}
.h42{height:10.687998pt;}
.h3f{height:10.783037pt;}
.h40{height:10.783150pt;}
.h41{height:10.783263pt;}
.h46{height:10.787907pt;}
.h45{height:10.788052pt;}
.h47{height:10.789620pt;}
.h48{height:10.789937pt;}
.h4a{height:10.791815pt;}
.h49{height:10.791849pt;}
.h4c{height:10.792782pt;}
.h4b{height:10.792794pt;}
.h4e{height:11.197283pt;}
.h20{height:11.399222pt;}
.h1c{height:11.399582pt;}
.h18{height:11.399816pt;}
.h4d{height:11.400030pt;}
.h11{height:11.423485pt;}
.h3e{height:11.434391pt;}
.h3d{height:11.435273pt;}
.h3c{height:11.436986pt;}
.h3b{height:11.438480pt;}
.h3a{height:11.440018pt;}
.h15{height:11.440950pt;}
.h39{height:11.441636pt;}
.h14{height:11.442706pt;}
.hf{height:11.443980pt;}
.h38{height:11.444156pt;}
.h13{height:11.445403pt;}
.h37{height:11.446426pt;}
.h36{height:11.449077pt;}
.h35{height:11.451597pt;}
.h12{height:11.452957pt;}
.h34{height:11.453993pt;}
.h33{height:11.460283pt;}
.h32{height:11.466978pt;}
.h31{height:11.472096pt;}
.h30{height:11.476466pt;}
.h19{height:11.479509pt;}
.h2f{height:11.479737pt;}
.h2e{height:11.482457pt;}
.h2d{height:11.485195pt;}
.h1f{height:11.486858pt;}
.h2c{height:11.487614pt;}
.h43{height:11.495969pt;}
.h44{height:11.496080pt;}
.h22{height:11.502970pt;}
.h1d{height:11.503547pt;}
.h1b{height:11.503857pt;}
.h17{height:11.504269pt;}
.h16{height:11.507092pt;}
.h1e{height:11.512456pt;}
.h21{height:11.583230pt;}
.h1a{height:11.583946pt;}
.h28{height:12.317206pt;}
.h10{height:14.322158pt;}
.h29{height:14.557051pt;}
.h4f{height:16.616735pt;}
.h50{height:17.035872pt;}
.h2b{height:20.155693pt;}
.h23{height:21.376278pt;}
.he{height:21.457370pt;}
.h27{height:21.538612pt;}
.h26{height:21.538730pt;}
.h24{height:21.569568pt;}
.h25{height:21.569762pt;}
.h2a{height:21.971400pt;}
.h8{height:22.061342pt;}
.h56{height:29.346133pt;}
.h52{height:30.534400pt;}
.h2{height:36.398933pt;}
.h9{height:36.419733pt;}
.hc{height:36.470400pt;}
.ha{height:36.470933pt;}
.hb{height:36.488000pt;}
.h55{height:37.356800pt;}
.h53{height:37.481600pt;}
.h54{height:39.146667pt;}
.h6{height:44.374400pt;}
.h57{height:49.896533pt;}
.h7{height:52.128000pt;}
.h3{height:52.858667pt;}
.h5{height:67.050667pt;}
.h4{height:77.226667pt;}
.h51{height:134.370799pt;}
.hd{height:659.296000pt;}
.h1{height:944.666667pt;}
.h0{height:944.881333pt;}
.w1{width:718.000000pt;}
.w0{width:718.110667pt;}
.x0{left:0.000000pt;}
.x44{left:48.103733pt;}
.x45{left:49.047333pt;}
.x46{left:50.188533pt;}
.x47{left:51.400133pt;}
.x48{left:52.583867pt;}
.x49{left:53.911867pt;}
.x4a{left:55.316400pt;}
.x4b{left:56.561867pt;}
.x4c{left:58.161600pt;}
.x4d{left:59.111200pt;}
.x4e{left:60.783733pt;}
.x4f{left:62.327600pt;}
.x50{left:63.916400pt;}
.x51{left:65.428800pt;}
.x52{left:67.325600pt;}
.x53{left:68.527467pt;}
.x54{left:69.927067pt;}
.x55{left:71.724533pt;}
.x56{left:73.695333pt;}
.x5c{left:76.228307pt;}
.x80{left:77.621648pt;}
.x1d{left:81.448800pt;}
.x68{left:96.294951pt;}
.x69{left:97.306166pt;}
.x1{left:98.267733pt;}
.x81{left:111.382000pt;}
.x7{left:117.165333pt;}
.x65{left:120.933067pt;}
.x66{left:122.719774pt;}
.x2{left:128.504000pt;}
.x88{left:130.015600pt;}
.x87{left:132.001733pt;}
.x67{left:134.444401pt;}
.x1e{left:145.247600pt;}
.x5{left:149.910667pt;}
.x6{left:153.942000pt;}
.x82{left:157.229733pt;}
.x6d{left:182.526243pt;}
.x6c{left:187.859035pt;}
.x6e{left:190.861933pt;}
.x86{left:194.704533pt;}
.x6f{left:202.354254pt;}
.x70{left:206.337621pt;}
.x18{left:213.151067pt;}
.x1a{left:221.205867pt;}
.x76{left:233.753161pt;}
.x32{left:251.283600pt;}
.x89{left:255.809467pt;}
.x37{left:288.763403pt;}
.xa{left:289.960667pt;}
.xb{left:293.992000pt;}
.x1c{left:295.433600pt;}
.x3{left:297.224133pt;}
.x4{left:301.255467pt;}
.x31{left:304.200862pt;}
.x83{left:322.317733pt;}
.x33{left:339.643558pt;}
.x2f{left:340.814667pt;}
.x3d{left:342.817283pt;}
.x72{left:343.712537pt;}
.x3e{left:345.557129pt;}
.x7f{left:349.158239pt;}
.x21{left:350.444400pt;}
.x28{left:352.361867pt;}
.x10{left:355.140133pt;}
.x6b{left:356.447733pt;}
.x20{left:357.456800pt;}
.x11{left:359.089067pt;}
.x1f{left:360.150533pt;}
.x35{left:361.437803pt;}
.x34{left:367.389029pt;}
.x14{left:395.905333pt;}
.x15{left:403.803333pt;}
.x85{left:406.313600pt;}
.x5e{left:408.903448pt;}
.x16{left:414.974933pt;}
.x30{left:416.127867pt;}
.x36{left:419.775159pt;}
.x17{left:422.873067pt;}
.x3f{left:429.342358pt;}
.x38{left:434.879322pt;}
.x27{left:457.718800pt;}
.x3b{left:462.780170pt;}
.x8a{left:463.711200pt;}
.x5f{left:474.587867pt;}
.x7b{left:475.618667pt;}
.x60{left:482.163067pt;}
.x61{left:484.360667pt;}
.x62{left:486.746133pt;}
.xc{left:499.110400pt;}
.x7c{left:500.878542pt;}
.xd{left:503.141733pt;}
.xe{left:508.472267pt;}
.xf{left:512.503467pt;}
.x75{left:520.763973pt;}
.x19{left:522.794933pt;}
.x57{left:525.506400pt;}
.x58{left:526.870800pt;}
.x59{left:528.311733pt;}
.x12{left:536.425733pt;}
.x13{left:540.374800pt;}
.x74{left:542.556338pt;}
.x84{left:543.759200pt;}
.x5a{left:545.730133pt;}
.x73{left:547.472346pt;}
.x2a{left:548.454000pt;}
.x24{left:550.831200pt;}
.x5b{left:552.934267pt;}
.x26{left:555.650933pt;}
.x8{left:558.473067pt;}
.x9{left:562.504400pt;}
.x71{left:564.615172pt;}
.x39{left:574.943078pt;}
.x2c{left:580.705067pt;}
.x22{left:587.391333pt;}
.x3a{left:588.621183pt;}
.x5d{left:589.890967pt;}
.x7a{left:594.042893pt;}
.x43{left:596.998251pt;}
.x25{left:600.521333pt;}
.x29{left:601.923200pt;}
.x79{left:603.154076pt;}
.x1b{left:608.899333pt;}
.x77{left:610.953413pt;}
.x3c{left:612.008975pt;}
.x42{left:617.000492pt;}
.x40{left:619.842826pt;}
.x23{left:622.749733pt;}
.x41{left:623.672461pt;}
.x78{left:628.864899pt;}
.x7e{left:630.905068pt;}
.x63{left:636.902000pt;}
.x2d{left:640.935867pt;}
.x64{left:646.787600pt;}
.x6a{left:648.073262pt;}
.x7d{left:649.021530pt;}
.x2b{left:665.163986pt;}
.x2e{left:680.443067pt;}
}




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