
    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_e9e40853772822350a348e0c.woff')format("woff");}.ff1{font-family:ff1;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_b0392038ec9f373e3629717d.woff')format("woff");}.ff2{font-family:ff2;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_49b10402a253c2c94c7429a2.woff')format("woff");}.ff3{font-family:ff3;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_a84b6241f97607745a8fe301.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_684b7d2798097cdb71c12bfb.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_ef0652fbd7d443ca30fc079e.woff')format("woff");}.ff6{font-family:ff6;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m30{transform:matrix(0.000000,0.250003,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250003,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250003,-0.250000,0.000000,0,0);}
.m3{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m18{transform:matrix(0.000000,0.249998,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.249998,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.249998,-0.250000,0.000000,0,0);}
.m2d{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.043412,0.246202,-0.246202,0.043412,0,0);-ms-transform:matrix(0.043412,0.246202,-0.246202,0.043412,0,0);-webkit-transform:matrix(0.043412,0.246202,-0.246202,0.043412,0,0);}
.m2{transform:matrix(0.043412,-0.246202,0.246202,0.043412,0,0);-ms-transform:matrix(0.043412,-0.246202,0.246202,0.043412,0,0);-webkit-transform:matrix(0.043412,-0.246202,0.246202,0.043412,0,0);}
.m19{transform:matrix(0.043412,0.246200,-0.246202,0.043412,0,0);-ms-transform:matrix(0.043412,0.246200,-0.246202,0.043412,0,0);-webkit-transform:matrix(0.043412,0.246200,-0.246202,0.043412,0,0);}
.m13{transform:matrix(0.043412,-0.246200,0.246202,0.043412,0,0);-ms-transform:matrix(0.043412,-0.246200,0.246202,0.043412,0,0);-webkit-transform:matrix(0.043412,-0.246200,0.246202,0.043412,0,0);}
.m31{transform:matrix(0.043412,0.246205,-0.246202,0.043413,0,0);-ms-transform:matrix(0.043412,0.246205,-0.246202,0.043413,0,0);-webkit-transform:matrix(0.043412,0.246205,-0.246202,0.043413,0,0);}
.m2f{transform:matrix(0.043412,-0.246205,0.246202,0.043413,0,0);-ms-transform:matrix(0.043412,-0.246205,0.246202,0.043413,0,0);-webkit-transform:matrix(0.043412,-0.246205,0.246202,0.043413,0,0);}
.m16{transform:matrix(0.085505,0.234921,-0.234923,0.085504,0,0);-ms-transform:matrix(0.085505,0.234921,-0.234923,0.085504,0,0);-webkit-transform:matrix(0.085505,0.234921,-0.234923,0.085504,0,0);}
.m17{transform:matrix(0.085505,-0.234921,0.234923,0.085504,0,0);-ms-transform:matrix(0.085505,-0.234921,0.234923,0.085504,0,0);-webkit-transform:matrix(0.085505,-0.234921,0.234923,0.085504,0,0);}
.m1{transform:matrix(0.085505,-0.234923,0.234923,0.085505,0,0);-ms-transform:matrix(0.085505,-0.234923,0.234923,0.085505,0,0);-webkit-transform:matrix(0.085505,-0.234923,0.234923,0.085505,0,0);}
.m2e{transform:matrix(0.085505,-0.234926,0.234923,0.085506,0,0);-ms-transform:matrix(0.085505,-0.234926,0.234923,0.085506,0,0);-webkit-transform:matrix(0.085505,-0.234926,0.234923,0.085506,0,0);}
.m10{transform:matrix(0.139798,0.207259,-0.207259,0.139798,0,0);-ms-transform:matrix(0.139798,0.207259,-0.207259,0.139798,0,0);-webkit-transform:matrix(0.139798,0.207259,-0.207259,0.139798,0,0);}
.m25{transform:matrix(0.139798,0.207258,-0.207260,0.139797,0,0);-ms-transform:matrix(0.139798,0.207258,-0.207260,0.139797,0,0);-webkit-transform:matrix(0.139798,0.207258,-0.207260,0.139797,0,0);}
.m3d{transform:matrix(0.140159,0.207017,-0.207014,0.140161,0,0);-ms-transform:matrix(0.140159,0.207017,-0.207014,0.140161,0,0);-webkit-transform:matrix(0.140159,0.207017,-0.207014,0.140161,0,0);}
.m45{transform:matrix(0.140160,0.207015,-0.207015,0.140160,0,0);-ms-transform:matrix(0.140160,0.207015,-0.207015,0.140160,0,0);-webkit-transform:matrix(0.140160,0.207015,-0.207015,0.140160,0,0);}
.m3f{transform:matrix(0.167929,-0.185202,0.185200,0.167931,0,0);-ms-transform:matrix(0.167929,-0.185202,0.185200,0.167931,0,0);-webkit-transform:matrix(0.167929,-0.185202,0.185200,0.167931,0,0);}
.m12{transform:matrix(0.167930,-0.185201,0.185201,0.167930,0,0);-ms-transform:matrix(0.167930,-0.185201,0.185201,0.167930,0,0);-webkit-transform:matrix(0.167930,-0.185201,0.185201,0.167930,0,0);}
.m27{transform:matrix(0.167931,-0.185200,0.185202,0.167929,0,0);-ms-transform:matrix(0.167931,-0.185200,0.185202,0.167929,0,0);-webkit-transform:matrix(0.167931,-0.185200,0.185202,0.167929,0,0);}
.me{transform:matrix(0.172089,0.181343,-0.181343,0.172089,0,0);-ms-transform:matrix(0.172089,0.181343,-0.181343,0.172089,0,0);-webkit-transform:matrix(0.172089,0.181343,-0.181343,0.172089,0,0);}
.m3b{transform:matrix(0.172404,0.181044,-0.181042,0.172406,0,0);-ms-transform:matrix(0.172404,0.181044,-0.181042,0.172406,0,0);-webkit-transform:matrix(0.172404,0.181044,-0.181042,0.172406,0,0);}
.m23{transform:matrix(0.172406,0.181042,-0.181044,0.172404,0,0);-ms-transform:matrix(0.172406,0.181042,-0.181044,0.172404,0,0);-webkit-transform:matrix(0.172406,0.181042,-0.181044,0.172404,0,0);}
.m2c{transform:matrix(0.172721,0.180742,-0.180742,0.172721,0,0);-ms-transform:matrix(0.172721,0.180742,-0.180742,0.172721,0,0);-webkit-transform:matrix(0.172721,0.180742,-0.180742,0.172721,0,0);}
.m2b{transform:matrix(0.191230,0.161031,-0.161031,0.191230,0,0);-ms-transform:matrix(0.191230,0.161031,-0.161031,0.191230,0,0);-webkit-transform:matrix(0.191230,0.161031,-0.161031,0.191230,0,0);}
.m39{transform:matrix(0.191510,0.160698,-0.160696,0.191512,0,0);-ms-transform:matrix(0.191510,0.160698,-0.160696,0.191512,0,0);-webkit-transform:matrix(0.191510,0.160698,-0.160696,0.191512,0,0);}
.m21{transform:matrix(0.191512,0.160696,-0.160698,0.191510,0,0);-ms-transform:matrix(0.191512,0.160696,-0.160698,0.191510,0,0);-webkit-transform:matrix(0.191512,0.160696,-0.160698,0.191510,0,0);}
.mc{transform:matrix(0.191791,0.160362,-0.160362,0.191791,0,0);-ms-transform:matrix(0.191791,0.160362,-0.160362,0.191791,0,0);-webkit-transform:matrix(0.191791,0.160362,-0.160362,0.191791,0,0);}
.m3e{transform:matrix(0.193182,-0.158683,0.158682,0.193184,0,0);-ms-transform:matrix(0.193182,-0.158683,0.158682,0.193184,0,0);-webkit-transform:matrix(0.193182,-0.158683,0.158682,0.193184,0,0);}
.m26{transform:matrix(0.193184,-0.158682,0.158683,0.193183,0,0);-ms-transform:matrix(0.193184,-0.158682,0.158683,0.193183,0,0);-webkit-transform:matrix(0.193184,-0.158682,0.158683,0.193183,0,0);}
.m11{transform:matrix(0.193460,-0.158345,0.158345,0.193460,0,0);-ms-transform:matrix(0.193460,-0.158345,0.158345,0.193460,0,0);-webkit-transform:matrix(0.193460,-0.158345,0.158345,0.193460,0,0);}
.ma{transform:matrix(0.204034,0.144464,-0.144464,0.204034,0,0);-ms-transform:matrix(0.204034,0.144464,-0.144464,0.204034,0,0);-webkit-transform:matrix(0.204034,0.144464,-0.144464,0.204034,0,0);}
.m1f{transform:matrix(0.204036,0.144464,-0.144465,0.204034,0,0);-ms-transform:matrix(0.204036,0.144464,-0.144465,0.204034,0,0);-webkit-transform:matrix(0.204036,0.144464,-0.144465,0.204034,0,0);}
.m37{transform:matrix(0.204285,0.144108,-0.144107,0.204287,0,0);-ms-transform:matrix(0.204285,0.144108,-0.144107,0.204287,0,0);-webkit-transform:matrix(0.204285,0.144108,-0.144107,0.204287,0,0);}
.m43{transform:matrix(0.204286,0.144108,-0.144108,0.204286,0,0);-ms-transform:matrix(0.204286,0.144108,-0.144108,0.204286,0,0);-webkit-transform:matrix(0.204286,0.144108,-0.144108,0.204286,0,0);}
.m3c{transform:matrix(0.207987,-0.138712,0.138710,0.207989,0,0);-ms-transform:matrix(0.207987,-0.138712,0.138710,0.207989,0,0);-webkit-transform:matrix(0.207987,-0.138712,0.138710,0.207989,0,0);}
.mf{transform:matrix(0.207989,-0.138711,0.138711,0.207989,0,0);-ms-transform:matrix(0.207989,-0.138711,0.138711,0.207989,0,0);-webkit-transform:matrix(0.207989,-0.138711,0.138711,0.207989,0,0);}
.m24{transform:matrix(0.207990,-0.138711,0.138712,0.207988,0,0);-ms-transform:matrix(0.207990,-0.138711,0.138712,0.207988,0,0);-webkit-transform:matrix(0.207990,-0.138711,0.138712,0.207988,0,0);}
.m47{transform:matrix(0.210378,0.135060,-0.135060,0.210378,0,0);-ms-transform:matrix(0.210378,0.135060,-0.135060,0.210378,0,0);-webkit-transform:matrix(0.210378,0.135060,-0.135060,0.210378,0,0);}
.m8{transform:matrix(0.212703,0.131368,-0.131368,0.212703,0,0);-ms-transform:matrix(0.212703,0.131368,-0.131368,0.212703,0,0);-webkit-transform:matrix(0.212703,0.131368,-0.131368,0.212703,0,0);}
.m35{transform:matrix(0.212930,0.130997,-0.130995,0.212932,0,0);-ms-transform:matrix(0.212930,0.130997,-0.130995,0.212932,0,0);-webkit-transform:matrix(0.212930,0.130997,-0.130995,0.212932,0,0);}
.m42{transform:matrix(0.212932,0.130996,-0.130996,0.212932,0,0);-ms-transform:matrix(0.212932,0.130996,-0.130996,0.212932,0,0);-webkit-transform:matrix(0.212932,0.130996,-0.130996,0.212932,0,0);}
.m1d{transform:matrix(0.212933,0.130996,-0.130997,0.212931,0,0);-ms-transform:matrix(0.212933,0.130996,-0.130997,0.212931,0,0);-webkit-transform:matrix(0.212933,0.130996,-0.130997,0.212931,0,0);}
.m2a{transform:matrix(0.213388,0.130252,-0.130252,0.213388,0,0);-ms-transform:matrix(0.213388,0.130252,-0.130252,0.213388,0,0);-webkit-transform:matrix(0.213388,0.130252,-0.130252,0.213388,0,0);}
.m22{transform:matrix(0.217590,-0.123106,0.123107,0.217588,0,0);-ms-transform:matrix(0.217590,-0.123106,0.123107,0.217588,0,0);-webkit-transform:matrix(0.217590,-0.123106,0.123107,0.217588,0,0);}
.m3a{transform:matrix(0.217802,-0.122726,0.122725,0.217804,0,0);-ms-transform:matrix(0.217802,-0.122726,0.122725,0.217804,0,0);-webkit-transform:matrix(0.217802,-0.122726,0.122725,0.217804,0,0);}
.md{transform:matrix(0.217803,-0.122726,0.122726,0.217803,0,0);-ms-transform:matrix(0.217803,-0.122726,0.122726,0.217803,0,0);-webkit-transform:matrix(0.217803,-0.122726,0.122726,0.217803,0,0);}
.m29{transform:matrix(0.219286,0.120056,-0.120056,0.219286,0,0);-ms-transform:matrix(0.219286,0.120056,-0.120056,0.219286,0,0);-webkit-transform:matrix(0.219286,0.120056,-0.120056,0.219286,0,0);}
.m33{transform:matrix(0.219494,0.119673,-0.119672,0.219496,0,0);-ms-transform:matrix(0.219494,0.119673,-0.119672,0.219496,0,0);-webkit-transform:matrix(0.219494,0.119673,-0.119672,0.219496,0,0);}
.m6{transform:matrix(0.219496,0.119673,-0.119673,0.219496,0,0);-ms-transform:matrix(0.219496,0.119673,-0.119673,0.219496,0,0);-webkit-transform:matrix(0.219496,0.119673,-0.119673,0.219496,0,0);}
.m1b{transform:matrix(0.219497,0.119673,-0.119674,0.219495,0,0);-ms-transform:matrix(0.219497,0.119673,-0.119674,0.219495,0,0);-webkit-transform:matrix(0.219497,0.119673,-0.119674,0.219495,0,0);}
.m28{transform:matrix(0.224122,0.110768,-0.110768,0.224122,0,0);-ms-transform:matrix(0.224122,0.110768,-0.110768,0.224122,0,0);-webkit-transform:matrix(0.224122,0.110768,-0.110768,0.224122,0,0);}
.mb{transform:matrix(0.224122,-0.110768,0.110768,0.224122,0,0);-ms-transform:matrix(0.224122,-0.110768,0.110768,0.224122,0,0);-webkit-transform:matrix(0.224122,-0.110768,0.110768,0.224122,0,0);}
.m32{transform:matrix(0.224313,0.110377,-0.110376,0.224315,0,0);-ms-transform:matrix(0.224313,0.110377,-0.110376,0.224315,0,0);-webkit-transform:matrix(0.224313,0.110377,-0.110376,0.224315,0,0);}
.m38{transform:matrix(0.224313,-0.110377,0.110376,0.224315,0,0);-ms-transform:matrix(0.224313,-0.110377,0.110376,0.224315,0,0);-webkit-transform:matrix(0.224313,-0.110377,0.110376,0.224315,0,0);}
.m40{transform:matrix(0.224315,0.110377,-0.110377,0.224315,0,0);-ms-transform:matrix(0.224315,0.110377,-0.110377,0.224315,0,0);-webkit-transform:matrix(0.224315,0.110377,-0.110377,0.224315,0,0);}
.m44{transform:matrix(0.224315,-0.110377,0.110377,0.224315,0,0);-ms-transform:matrix(0.224315,-0.110377,0.110377,0.224315,0,0);-webkit-transform:matrix(0.224315,-0.110377,0.110377,0.224315,0,0);}
.m1a{transform:matrix(0.224316,0.110376,-0.110377,0.224314,0,0);-ms-transform:matrix(0.224316,0.110376,-0.110377,0.224314,0,0);-webkit-transform:matrix(0.224316,0.110376,-0.110377,0.224314,0,0);}
.m20{transform:matrix(0.224316,-0.110376,0.110377,0.224314,0,0);-ms-transform:matrix(0.224316,-0.110376,0.110377,0.224314,0,0);-webkit-transform:matrix(0.224316,-0.110376,0.110377,0.224314,0,0);}
.m5{transform:matrix(0.224507,0.109985,-0.109985,0.224507,0,0);-ms-transform:matrix(0.224507,0.109985,-0.109985,0.224507,0,0);-webkit-transform:matrix(0.224507,0.109985,-0.109985,0.224507,0,0);}
.m46{transform:matrix(0.227127,0.104467,-0.104467,0.227127,0,0);-ms-transform:matrix(0.227127,0.104467,-0.104467,0.227127,0,0);-webkit-transform:matrix(0.227127,0.104467,-0.104467,0.227127,0,0);}
.m36{transform:matrix(0.228914,-0.100487,0.100486,0.228916,0,0);-ms-transform:matrix(0.228914,-0.100487,0.100486,0.228916,0,0);-webkit-transform:matrix(0.228914,-0.100487,0.100486,0.228916,0,0);}
.m9{transform:matrix(0.228916,-0.100487,0.100487,0.228916,0,0);-ms-transform:matrix(0.228916,-0.100487,0.100487,0.228916,0,0);-webkit-transform:matrix(0.228916,-0.100487,0.100487,0.228916,0,0);}
.m1e{transform:matrix(0.229092,-0.100087,0.100088,0.229090,0,0);-ms-transform:matrix(0.229092,-0.100087,0.100088,0.229090,0,0);-webkit-transform:matrix(0.229092,-0.100087,0.100088,0.229090,0,0);}
.m34{transform:matrix(0.232602,-0.091625,0.091624,0.232605,0,0);-ms-transform:matrix(0.232602,-0.091625,0.091624,0.232605,0,0);-webkit-transform:matrix(0.232602,-0.091625,0.091624,0.232605,0,0);}
.m41{transform:matrix(0.232604,-0.091625,0.091625,0.232604,0,0);-ms-transform:matrix(0.232604,-0.091625,0.091625,0.232604,0,0);-webkit-transform:matrix(0.232604,-0.091625,0.091625,0.232604,0,0);}
.m1c{transform:matrix(0.232606,-0.091625,0.091626,0.232604,0,0);-ms-transform:matrix(0.232606,-0.091625,0.091626,0.232604,0,0);-webkit-transform:matrix(0.232606,-0.091625,0.091626,0.232604,0,0);}
.m7{transform:matrix(0.232764,-0.091219,0.091219,0.232764,0,0);-ms-transform:matrix(0.232764,-0.091219,0.091219,0.232764,0,0);-webkit-transform:matrix(0.232764,-0.091219,0.091219,0.232764,0,0);}
.m14{transform:matrix(0.246204,0.043412,-0.043413,0.246202,0,0);-ms-transform:matrix(0.246204,0.043412,-0.043413,0.246202,0,0);-webkit-transform:matrix(0.246204,0.043412,-0.043413,0.246202,0,0);}
.m15{transform:matrix(0.246204,-0.043412,0.043413,0.246202,0,0);-ms-transform:matrix(0.246204,-0.043412,0.043413,0.246202,0,0);-webkit-transform:matrix(0.246204,-0.043412,0.043413,0.246202,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);}
.m48{transform:matrix(0.272813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272813,0.000000,0.000000,0.250000,0,0);}
.v9{vertical-align:-36.000000px;}
.v8{vertical-align:-15.600000px;}
.v2{vertical-align:-3.239064px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:6.046860px;}
.v5{vertical-align:13.822968px;}
.v3{vertical-align:14.976000px;}
.v4{vertical-align:17.280000px;}
.v7{vertical-align:19.200000px;}
.v6{vertical-align:20.448000px;}
.ls8{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000168px;}
.ls1{letter-spacing:0.000600px;}
.ls3{letter-spacing:0.000840px;}
.ls4{letter-spacing:0.008220px;}
.ls5{letter-spacing:0.010560px;}
.ls7{letter-spacing:3.510960px;}
.ls6{letter-spacing:3.750000px;}
.ls2{letter-spacing:28.569600px;}
.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;}
}
.ws9{word-spacing:-32.572800px;}
.ws1e{word-spacing:-15.012000px;}
.ws1c{word-spacing:-10.675200px;}
.ws1d{word-spacing:-8.673600px;}
.ws77{word-spacing:-7.500000px;}
.ws8{word-spacing:-6.004800px;}
.wsa{word-spacing:-4.003200px;}
.ws2{word-spacing:-3.803040px;}
.wsa6{word-spacing:-3.750000px;}
.ws65{word-spacing:-0.720990px;}
.ws38{word-spacing:-0.720480px;}
.ws7e{word-spacing:-0.631410px;}
.ws99{word-spacing:-0.629010px;}
.ws40{word-spacing:-0.480930px;}
.ws36{word-spacing:-0.448620px;}
.ws22{word-spacing:-0.388590px;}
.ws5b{word-spacing:-0.300450px;}
.ws42{word-spacing:-0.298620px;}
.wsa9{word-spacing:-0.210060px;}
.wsaa{word-spacing:-0.195990px;}
.wsa2{word-spacing:-0.180465px;}
.ws9a{word-spacing:-0.149550px;}
.ws20{word-spacing:-0.149040px;}
.ws3a{word-spacing:-0.119520px;}
.ws73{word-spacing:-0.090450px;}
.wsab{word-spacing:0.000000px;}
.ws2f{word-spacing:0.059460px;}
.ws70{word-spacing:0.090600px;}
.ws37{word-spacing:0.119520px;}
.ws9f{word-spacing:0.120420px;}
.ws4a{word-spacing:0.240000px;}
.wsa5{word-spacing:0.284475px;}
.wsa4{word-spacing:0.285930px;}
.wsa8{word-spacing:0.300585px;}
.wsa3{word-spacing:0.329010px;}
.ws9e{word-spacing:0.359190px;}
.ws8b{word-spacing:0.388620px;}
.ws56{word-spacing:0.389940px;}
.ws9c{word-spacing:0.390540px;}
.wsa0{word-spacing:0.418080px;}
.ws79{word-spacing:0.480000px;}
.ws24{word-spacing:0.539070px;}
.ws23{word-spacing:0.540000px;}
.ws3e{word-spacing:0.750000px;}
.ws7b{word-spacing:0.779070px;}
.ws97{word-spacing:0.870930px;}
.ws3b{word-spacing:0.900000px;}
.ws28{word-spacing:0.960930px;}
.ws35{word-spacing:1.019520px;}
.wsa7{word-spacing:1.019535px;}
.ws30{word-spacing:1.048530px;}
.ws5e{word-spacing:1.080000px;}
.ws3d{word-spacing:1.139070px;}
.ws86{word-spacing:1.258140px;}
.ws4d{word-spacing:1.258590px;}
.ws5c{word-spacing:1.380900px;}
.ws43{word-spacing:1.410000px;}
.ws4f{word-spacing:1.440000px;}
.ws9d{word-spacing:1.498230px;}
.ws57{word-spacing:1.560510px;}
.ws31{word-spacing:1.588470px;}
.ws7c{word-spacing:1.590000px;}
.ws39{word-spacing:1.739070px;}
.ws34{word-spacing:1.739940px;}
.ws29{word-spacing:1.740000px;}
.ws32{word-spacing:1.950000px;}
.wsa1{word-spacing:2.009460px;}
.ws48{word-spacing:2.038590px;}
.ws25{word-spacing:2.099040px;}
.ws8e{word-spacing:2.129580px;}
.ws44{word-spacing:2.160450px;}
.ws8f{word-spacing:2.371440px;}
.ws75{word-spacing:2.398620px;}
.ws83{word-spacing:2.399550px;}
.ws3f{word-spacing:2.518590px;}
.ws2d{word-spacing:2.519100px;}
.ws1f{word-spacing:2.519520px;}
.ws5f{word-spacing:2.550000px;}
.ws50{word-spacing:2.579520px;}
.ws81{word-spacing:2.819100px;}
.ws89{word-spacing:2.939490px;}
.ws71{word-spacing:3.448230px;}
.ws9b{word-spacing:3.539490px;}
.ws98{word-spacing:3.540450px;}
.ws41{word-spacing:3.720000px;}
.ws66{word-spacing:3.868950px;}
.ws61{word-spacing:3.898530px;}
.ws84{word-spacing:3.899130px;}
.ws4e{word-spacing:4.140000px;}
.ws72{word-spacing:4.200000px;}
.ws68{word-spacing:4.231050px;}
.ws2b{word-spacing:4.350000px;}
.ws5a{word-spacing:4.619520px;}
.ws45{word-spacing:4.708110px;}
.ws27{word-spacing:4.709550px;}
.ws26{word-spacing:4.738590px;}
.ws6a{word-spacing:4.769520px;}
.ws88{word-spacing:4.858140px;}
.ws7d{word-spacing:4.921440px;}
.ws3c{word-spacing:4.979070px;}
.ws82{word-spacing:5.399550px;}
.ws33{word-spacing:5.581050px;}
.ws67{word-spacing:5.699130px;}
.ws6e{word-spacing:5.850600px;}
.ws21{word-spacing:5.878140px;}
.ws6f{word-spacing:5.881350px;}
.ws7a{word-spacing:6.118140px;}
.ws64{word-spacing:6.240540px;}
.ws54{word-spacing:6.300000px;}
.ws49{word-spacing:6.418590px;}
.ws63{word-spacing:6.479880px;}
.ws6d{word-spacing:6.660060px;}
.ws5d{word-spacing:6.779520px;}
.ws8c{word-spacing:6.871440px;}
.ws80{word-spacing:6.959040px;}
.ws4c{word-spacing:6.989070px;}
.ws74{word-spacing:7.139070px;}
.ws2c{word-spacing:7.259550px;}
.ws52{word-spacing:7.439070px;}
.ws51{word-spacing:7.439490px;}
.ws59{word-spacing:7.469520px;}
.ws96{word-spacing:7.680480px;}
.ws62{word-spacing:7.859460px;}
.ws87{word-spacing:8.189490px;}
.ws90{word-spacing:8.640000px;}
.ws53{word-spacing:8.821440px;}
.ws19{word-spacing:9.267840px;}
.ws6c{word-spacing:10.349400px;}
.ws60{word-spacing:10.559040px;}
.ws2e{word-spacing:10.560510px;}
.ws58{word-spacing:10.680000px;}
.ws46{word-spacing:10.978140px;}
.ws93{word-spacing:11.159040px;}
.ws95{word-spacing:11.220480px;}
.ws7f{word-spacing:11.310510px;}
.ws8a{word-spacing:12.151470px;}
.ws78{word-spacing:12.448620px;}
.ws76{word-spacing:12.479070px;}
.ws2a{word-spacing:13.799040px;}
.ws4b{word-spacing:13.950000px;}
.ws91{word-spacing:14.340000px;}
.ws47{word-spacing:17.520000px;}
.ws55{word-spacing:18.120480px;}
.ws1a{word-spacing:20.820240px;}
.ws6b{word-spacing:22.560000px;}
.ws10{word-spacing:24.566400px;}
.ws85{word-spacing:24.840000px;}
.ws8d{word-spacing:25.290600px;}
.ws94{word-spacing:26.399700px;}
.ws17{word-spacing:29.427840px;}
.ws69{word-spacing:31.740600px;}
.ws4{word-spacing:33.949080px;}
.ws1{word-spacing:33.949680px;}
.ws5{word-spacing:33.950880px;}
.ws3{word-spacing:34.310880px;}
.ws0{word-spacing:34.582128px;}
.wsc{word-spacing:35.937600px;}
.wse{word-spacing:39.939600px;}
.wsb{word-spacing:39.945600px;}
.ws92{word-spacing:40.019400px;}
.ws1b{word-spacing:46.740241px;}
.ws18{word-spacing:48.931200px;}
.ws15{word-spacing:52.929600px;}
.ws13{word-spacing:56.937600px;}
.ws16{word-spacing:95.395200px;}
.ws11{word-spacing:95.683200px;}
.ws12{word-spacing:224.707200px;}
.ws7{word-spacing:241.987200px;}
.ws6{word-spacing:241.993200px;}
.ws14{word-spacing:272.773440px;}
.wsf{word-spacing:273.345840px;}
.wsd{word-spacing:366.660600px;}
._20{margin-left:-641.532007px;}
._6{margin-left:-630.727200px;}
._b{margin-left:-378.726600px;}
._f{margin-left:-116.985600px;}
._e{margin-left:-112.292400px;}
._d{margin-left:-109.956000px;}
._5{margin-left:-99.999600px;}
._4{margin-left:-96.277200px;}
._3{margin-left:-91.987200px;}
._2{margin-left:-83.978400px;}
._7{margin-left:-29.406000px;}
._c{margin-left:-25.950000px;}
._1b{margin-left:-4.301478px;}
._1c{margin-left:-2.792772px;}
._1a{margin-left:-1.644035px;}
._1e{width:5.069087px;}
._1d{width:10.024812px;}
._17{width:15.641136px;}
._18{width:32.159857px;}
._15{width:35.225136px;}
._14{width:38.555136px;}
._9{width:40.228800px;}
._1{width:43.327824px;}
._a{width:44.857776px;}
._8{width:51.957600px;}
._0{width:53.068608px;}
._16{width:56.650800px;}
._19{width:58.628497px;}
._12{width:61.228800px;}
._11{width:68.949600px;}
._23{width:100.427208px;}
._13{width:133.262400px;}
._21{width:144.157451px;}
._10{width:258.829200px;}
._22{width:298.176388px;}
._1f{width:603.552006px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs23{font-size:9.360000px;}
.fs27{font-size:10.080000px;}
.fs3a{font-size:10.943996px;}
.fs36{font-size:10.943997px;}
.fs39{font-size:10.943999px;}
.fs35{font-size:10.944000px;}
.fs37{font-size:10.944001px;}
.fs34{font-size:10.944002px;}
.fs33{font-size:10.944003px;}
.fs38{font-size:10.944005px;}
.fs3b{font-size:10.944007px;}
.fsd{font-size:11.403895px;}
.fsc{font-size:11.404020px;}
.fse{font-size:11.404026px;}
.fsb{font-size:11.592000px;}
.fs29{font-size:11.605914px;}
.fs2a{font-size:11.605915px;}
.fs2b{font-size:11.605920px;}
.fs31{font-size:11.605977px;}
.fs2d{font-size:11.605979px;}
.fs30{font-size:11.605981px;}
.fs32{font-size:11.605983px;}
.fs2f{font-size:11.605987px;}
.fs2c{font-size:11.606037px;}
.fs2e{font-size:11.606042px;}
.fs25{font-size:12.096000px;}
.fs1d{font-size:13.679994px;}
.fs20{font-size:13.679995px;}
.fs1c{font-size:13.680000px;}
.fs1e{font-size:13.680001px;}
.fs1b{font-size:13.680003px;}
.fs1a{font-size:13.680004px;}
.fs21{font-size:13.680006px;}
.fs1f{font-size:13.680008px;}
.fs24{font-size:14.400000px;}
.fs4a{font-size:15.000000px;}
.fs47{font-size:15.780000px;}
.fs8{font-size:16.631992px;}
.fs9{font-size:16.631994px;}
.fsa{font-size:16.631999px;}
.fs4{font-size:16.632000px;}
.fs5{font-size:16.632001px;}
.fs3{font-size:16.632004px;}
.fs2{font-size:16.632005px;}
.fs6{font-size:16.632008px;}
.fs7{font-size:16.632009px;}
.fs12{font-size:17.278676px;}
.fs11{font-size:17.278683px;}
.fs13{font-size:17.278688px;}
.fs15{font-size:17.278737px;}
.fs14{font-size:17.278740px;}
.fs19{font-size:17.278741px;}
.fs17{font-size:17.278744px;}
.fs16{font-size:17.278745px;}
.fs18{font-size:17.278747px;}
.fs10{font-size:17.278801px;}
.fsf{font-size:17.278810px;}
.fs22{font-size:18.000000px;}
.fs41{font-size:18.792000px;}
.fs1{font-size:19.152000px;}
.fs49{font-size:21.000000px;}
.fs3f{font-size:21.383996px;}
.fs3e{font-size:21.384000px;}
.fs3d{font-size:21.384005px;}
.fs3c{font-size:21.384007px;}
.fs26{font-size:21.600000px;}
.fs28{font-size:23.904000px;}
.fs4c{font-size:24.000000px;}
.fs40{font-size:27.216000px;}
.fs48{font-size:30.000000px;}
.fs44{font-size:31.200000px;}
.fs4b{font-size:36.000000px;}
.fs43{font-size:38.400000px;}
.fs45{font-size:39.000000px;}
.fs42{font-size:48.000000px;}
.fs46{font-size:54.000000px;}
.fs0{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y1ee{bottom:8.475420px;}
.y3{bottom:24.444150px;}
.y1e3{bottom:25.440405px;}
.y1e2{bottom:30.690405px;}
.y8{bottom:33.506250px;}
.y7{bottom:33.900000px;}
.yaa{bottom:33.984000px;}
.y1e1{bottom:35.940405px;}
.y37{bottom:39.498000px;}
.y1e0{bottom:41.190405px;}
.ya{bottom:42.153450px;}
.y9{bottom:42.415950px;}
.y4d{bottom:44.569500px;}
.y1df{bottom:46.440405px;}
.y2{bottom:46.825800px;}
.y4c{bottom:46.989000px;}
.y38{bottom:47.619000px;}
.y4b{bottom:49.494000px;}
.y1d0{bottom:50.370390px;}
.y1de{bottom:51.690405px;}
.y4a{bottom:51.999000px;}
.y49{bottom:54.505500px;}
.y39{bottom:55.740000px;}
.y1dd{bottom:56.940405px;}
.y48{bottom:57.097500px;}
.y1cf{bottom:59.370390px;}
.ybc{bottom:59.544000px;}
.y47{bottom:59.688000px;}
.y2e{bottom:59.886000px;}
.yb{bottom:60.519750px;}
.y1dc{bottom:62.190405px;}
.y46{bottom:62.280000px;}
.y3a{bottom:63.774000px;}
.y45{bottom:64.872000px;}
.yd{bottom:65.578200px;}
.y1db{bottom:67.440405px;}
.y44{bottom:67.464000px;}
.y2f{bottom:68.179500px;}
.y16a{bottom:68.201745px;}
.y1ce{bottom:68.370390px;}
.y43{bottom:70.143000px;}
.y3b{bottom:71.895000px;}
.y1da{bottom:72.690405px;}
.y16b{bottom:73.709565px;}
.y30{bottom:76.473000px;}
.y1d9{bottom:77.940405px;}
.y169{bottom:79.866000px;}
.y3c{bottom:79.929000px;}
.yc{bottom:81.563100px;}
.y6c{bottom:83.430000px;}
.y89{bottom:83.430150px;}
.y98{bottom:83.430300px;}
.y1d8{bottom:83.684940px;}
.y31{bottom:84.768000px;}
.yf{bottom:85.257450px;}
.y3d{bottom:87.964500px;}
.y8d{bottom:89.421150px;}
.y7e{bottom:89.425800px;}
.y8c{bottom:89.550600px;}
.y7d{bottom:89.555250px;}
.y1c{bottom:91.396500px;}
.y1d{bottom:92.605500px;}
.y32{bottom:93.061500px;}
.y4{bottom:93.114300px;}
.y1e{bottom:93.816000px;}
.y1f{bottom:95.025000px;}
.y3e{bottom:95.998500px;}
.y20{bottom:96.235500px;}
.y8f{bottom:96.533250px;}
.y80{bottom:96.537900px;}
.y8e{bottom:96.646350px;}
.y7f{bottom:96.651000px;}
.y21{bottom:97.531500px;}
.y97{bottom:98.264700px;}
.y88{bottom:98.269350px;}
.y22{bottom:98.740500px;}
.y9a{bottom:99.632850px;}
.y8b{bottom:99.637500px;}
.y23{bottom:100.036500px;}
.y33{bottom:101.268000px;}
.y24{bottom:101.332500px;}
.y134{bottom:102.440700px;}
.y25{bottom:102.628500px;}
.y99{bottom:102.782850px;}
.y8a{bottom:102.787500px;}
.ye{bottom:103.066950px;}
.y26{bottom:103.924500px;}
.y3f{bottom:104.032500px;}
.y11{bottom:105.194550px;}
.y27{bottom:105.306000px;}
.y90{bottom:105.990300px;}
.y81{bottom:105.994950px;}
.y28{bottom:106.689000px;}
.y29{bottom:108.070500px;}
.y2a{bottom:109.453500px;}
.y34{bottom:109.476000px;}
.y2b{bottom:110.835000px;}
.y40{bottom:112.068000px;}
.y2c{bottom:112.218000px;}
.y2d{bottom:113.686500px;}
.y133{bottom:116.602200px;}
.y91{bottom:117.088500px;}
.y82{bottom:117.093150px;}
.y35{bottom:117.684000px;}
.y41{bottom:120.102000px;}
.y5{bottom:124.613700px;}
.y10{bottom:125.263500px;}
.y13{bottom:125.644350px;}
.y36{bottom:125.890500px;}
.y42{bottom:128.050500px;}
.y92{bottom:128.487900px;}
.y83{bottom:128.492550px;}
.y6{bottom:137.717700px;}
.y93{bottom:140.383650px;}
.y84{bottom:140.388300px;}
.y15{bottom:146.745750px;}
.y12{bottom:148.715700px;}
.y94{bottom:152.814000px;}
.y85{bottom:152.818500px;}
.y137{bottom:154.723500px;}
.y138{bottom:163.219500px;}
.y95{bottom:166.356000px;}
.y86{bottom:166.360500px;}
.y17{bottom:169.135500px;}
.y139{bottom:171.715500px;}
.y13e{bottom:172.444500px;}
.y136{bottom:173.587500px;}
.y14{bottom:174.162000px;}
.y13a{bottom:180.211500px;}
.y96{bottom:182.235000px;}
.y87{bottom:182.239500px;}
.y13b{bottom:188.707500px;}
.y135{bottom:190.147500px;}
.y70{bottom:190.414500px;}
.y61{bottom:190.419000px;}
.y6f{bottom:190.543500px;}
.y60{bottom:190.548000px;}
.y18{bottom:193.986000px;}
.y13c{bottom:197.275500px;}
.y72{bottom:197.526000px;}
.y63{bottom:197.532000px;}
.y71{bottom:197.640000px;}
.y62{bottom:197.644500px;}
.y7a{bottom:199.258500px;}
.y6b{bottom:199.263000px;}
.y7c{bottom:200.622000px;}
.y6e{bottom:200.628000px;}
.y16{bottom:203.767500px;}
.y7b{bottom:203.772000px;}
.y6d{bottom:203.778000px;}
.y13d{bottom:205.771500px;}
.y73{bottom:206.983500px;}
.y64{bottom:206.988000px;}
.y13f{bottom:209.515500px;}
.y140{bottom:214.627500px;}
.y74{bottom:218.082000px;}
.y65{bottom:218.086500px;}
.y19{bottom:221.820000px;}
.y75{bottom:229.482000px;}
.y66{bottom:229.486500px;}
.y1a{bottom:229.506000px;}
.y1d7{bottom:233.340390px;}
.y76{bottom:241.377000px;}
.y67{bottom:241.381500px;}
.y1d6{bottom:242.340390px;}
.y1d5{bottom:251.340390px;}
.y77{bottom:253.807500px;}
.y68{bottom:253.812000px;}
.y1d4{bottom:260.340390px;}
.y78{bottom:267.348000px;}
.y69{bottom:267.354000px;}
.y1d3{bottom:269.340390px;}
.y1d2{bottom:278.340390px;}
.y79{bottom:283.228500px;}
.y6a{bottom:283.233000px;}
.y1d1{bottom:287.340390px;}
.y174{bottom:307.094460px;}
.y176{bottom:308.954460px;}
.y4f{bottom:330.883500px;}
.y4e{bottom:331.221000px;}
.y51{bottom:339.865500px;}
.y50{bottom:340.120500px;}
.y1b{bottom:343.144500px;}
.y1eb{bottom:348.660000px;}
.y1cd{bottom:348.915390px;}
.y52{bottom:357.276000px;}
.y1cc{bottom:357.915390px;}
.yeb{bottom:362.854500px;}
.yd8{bottom:362.869500px;}
.yc7{bottom:363.079500px;}
.y54{bottom:363.117000px;}
.y1cb{bottom:366.915390px;}
.ye9{bottom:372.624000px;}
.yd6{bottom:372.639000px;}
.yc5{bottom:372.849000px;}
.y1ca{bottom:375.915390px;}
.ye4{bottom:375.936000px;}
.yd1{bottom:375.951000px;}
.yc0{bottom:376.161000px;}
.y53{bottom:380.202000px;}
.y1e6{bottom:380.565000px;}
.ye8{bottom:381.120000px;}
.yd5{bottom:381.135000px;}
.yc4{bottom:381.345000px;}
.yea{bottom:382.435500px;}
.yd7{bottom:382.452000px;}
.y1e9{bottom:382.605000px;}
.yc6{bottom:382.660500px;}
.y56{bottom:384.649500px;}
.y1c9{bottom:384.915390px;}
.ye7{bottom:389.616000px;}
.yd4{bottom:389.631000px;}
.yc3{bottom:389.841000px;}
.y1c8{bottom:393.915390px;}
.ye6{bottom:398.112000px;}
.yd3{bottom:398.127000px;}
.yc2{bottom:398.337000px;}
.y1c7{bottom:402.915390px;}
.y55{bottom:403.558500px;}
.y58{bottom:406.449000px;}
.ye5{bottom:406.608000px;}
.yd2{bottom:406.623000px;}
.yc1{bottom:406.833000px;}
.y1e8{bottom:409.184850px;}
.yec{bottom:410.890500px;}
.yd9{bottom:410.905500px;}
.yc8{bottom:411.115500px;}
.y1c6{bottom:411.915390px;}
.y1ea{bottom:414.495300px;}
.yed{bottom:419.386500px;}
.yda{bottom:419.401500px;}
.yc9{bottom:419.611500px;}
.y1c5{bottom:420.915390px;}
.yf2{bottom:426.451500px;}
.ydf{bottom:426.466500px;}
.yce{bottom:426.676500px;}
.y1ed{bottom:427.290420px;}
.y57{bottom:427.786500px;}
.yee{bottom:427.882500px;}
.ydb{bottom:427.897500px;}
.yca{bottom:428.107500px;}
.y5a{bottom:428.691000px;}
.y1c4{bottom:429.915390px;}
.yef{bottom:436.378500px;}
.ydc{bottom:436.393500px;}
.ycb{bottom:436.603500px;}
.y1ec{bottom:436.770300px;}
.y1c3{bottom:438.915390px;}
.yf0{bottom:444.873000px;}
.ydd{bottom:444.889500px;}
.ycc{bottom:445.098000px;}
.y1c2{bottom:447.915390px;}
.yf6{bottom:448.184691px;}
.ye3{bottom:448.201191px;}
.yd0{bottom:448.409691px;}
.y5c{bottom:451.642500px;}
.y59{bottom:453.262500px;}
.yf1{bottom:453.442500px;}
.yde{bottom:453.457500px;}
.ycd{bottom:453.667500px;}
.y1e7{bottom:454.980000px;}
.y1c1{bottom:456.915390px;}
.yf3{bottom:457.186500px;}
.ye0{bottom:457.201500px;}
.ycf{bottom:457.411500px;}
.yf5{bottom:461.288601px;}
.ye2{bottom:461.305101px;}
.yf4{bottom:462.297000px;}
.ye1{bottom:462.313500px;}
.y1c0{bottom:465.915390px;}
.yba{bottom:467.890500px;}
.y1bf{bottom:474.915390px;}
.y5e{bottom:476.005500px;}
.yb8{bottom:476.868000px;}
.yb1{bottom:476.869500px;}
.ybb{bottom:478.090500px;}
.y5b{bottom:481.005000px;}
.ybd{bottom:481.042500px;}
.y1be{bottom:483.915390px;}
.yb7{bottom:489.612000px;}
.yb0{bottom:489.613500px;}
.y1bd{bottom:492.915390px;}
.yb9{bottom:501.583500px;}
.yb2{bottom:501.585000px;}
.y1bc{bottom:501.915390px;}
.yb6{bottom:502.356000px;}
.yaf{bottom:502.357500px;}
.y5f{bottom:502.936500px;}
.y1bb{bottom:510.915390px;}
.y5d{bottom:513.193500px;}
.yb3{bottom:515.100000px;}
.yae{bottom:515.101500px;}
.y1ba{bottom:519.915390px;}
.yb5{bottom:527.916000px;}
.yad{bottom:527.917500px;}
.y1b9{bottom:528.915390px;}
.y1b8{bottom:537.915390px;}
.yb4{bottom:540.660000px;}
.yac{bottom:540.661500px;}
.ya7{bottom:544.902000px;}
.ya3{bottom:544.903500px;}
.y9e{bottom:544.905000px;}
.ya9{bottom:546.126000px;}
.y1b7{bottom:546.915390px;}
.y1b6{bottom:555.915390px;}
.ya4{bottom:556.875000px;}
.y9f{bottom:556.876500px;}
.ya6{bottom:557.646000px;}
.ya2{bottom:557.647500px;}
.y9d{bottom:557.649000px;}
.y1b5{bottom:564.915390px;}
.ya1{bottom:570.391500px;}
.y9c{bottom:570.393000px;}
.y1b4{bottom:573.915390px;}
.y1b3{bottom:582.915390px;}
.ya5{bottom:583.134000px;}
.y9b{bottom:583.135500px;}
.ya8{bottom:586.086000px;}
.ya0{bottom:586.087500px;}
.ybf{bottom:589.830000px;}
.ybe{bottom:589.831500px;}
.y1b2{bottom:591.915390px;}
.yab{bottom:592.060500px;}
.y1b1{bottom:600.915390px;}
.y175{bottom:619.604460px;}
.y1b0{bottom:649.395240px;}
.y19f{bottom:650.445000px;}
.y15e{bottom:657.655500px;}
.y19e{bottom:659.445000px;}
.y15d{bottom:664.296000px;}
.y1af{bottom:667.395240px;}
.y19d{bottom:668.445000px;}
.y1ae{bottom:676.395240px;}
.y19c{bottom:677.445000px;}
.y157{bottom:679.734000px;}
.y156{bottom:680.079000px;}
.y167{bottom:680.659500px;}
.y1ad{bottom:685.395240px;}
.y19b{bottom:686.445000px;}
.y166{bottom:687.300000px;}
.y159{bottom:690.852000px;}
.y158{bottom:691.027500px;}
.y15f{bottom:692.970000px;}
.y142{bottom:693.457500px;}
.y141{bottom:693.561000px;}
.y1ac{bottom:694.395240px;}
.y168{bottom:694.915500px;}
.y19a{bottom:695.445000px;}
.y144{bottom:699.147000px;}
.y143{bottom:699.238500px;}
.y155{bottom:701.647500px;}
.y1ab{bottom:703.395240px;}
.y154{bottom:704.167500px;}
.y199{bottom:704.445000px;}
.y165{bottom:706.909500px;}
.y145{bottom:709.152000px;}
.y160{bottom:712.087500px;}
.y147{bottom:712.767000px;}
.y198{bottom:713.445000px;}
.y1aa{bottom:721.395240px;}
.y197{bottom:722.445000px;}
.y146{bottom:723.429000px;}
.y149{bottom:726.172500px;}
.y1a9{bottom:730.395240px;}
.y161{bottom:731.203500px;}
.y196{bottom:731.445000px;}
.y148{bottom:737.979000px;}
.y1a8{bottom:739.380000px;}
.y14b{bottom:739.798500px;}
.y195{bottom:740.445000px;}
.y15a{bottom:740.595000px;}
.y1a7{bottom:748.380000px;}
.y194{bottom:749.445000px;}
.y162{bottom:750.319500px;}
.y14a{bottom:753.082500px;}
.y14d{bottom:753.646500px;}
.y1a6{bottom:757.380000px;}
.y193{bottom:758.445000px;}
.y1a5{bottom:766.380000px;}
.y192{bottom:767.445000px;}
.y150{bottom:768.010500px;}
.y14c{bottom:768.994500px;}
.y163{bottom:769.435500px;}
.y1a4{bottom:775.380000px;}
.y191{bottom:776.445000px;}
.y152{bottom:783.187500px;}
.y1a3{bottom:784.380000px;}
.y15b{bottom:785.235000px;}
.y190{bottom:785.445000px;}
.y14f{bottom:786.252000px;}
.y14e{bottom:786.270000px;}
.y15c{bottom:787.093500px;}
.y16c{bottom:788.227050px;}
.y164{bottom:788.713500px;}
.y1a2{bottom:793.380000px;}
.y18f{bottom:794.445000px;}
.y153{bottom:799.912500px;}
.y1a1{bottom:802.380000px;}
.y18e{bottom:803.445000px;}
.y151{bottom:806.293500px;}
.y1a0{bottom:811.380000px;}
.y18d{bottom:812.445000px;}
.y173{bottom:832.334460px;}
.y1e4{bottom:832.335405px;}
.yf8{bottom:871.533000px;}
.yf7{bottom:871.759500px;}
.y182{bottom:872.265000px;}
.y10a{bottom:875.973000px;}
.y11f{bottom:875.974500px;}
.y109{bottom:876.148500px;}
.y11e{bottom:876.150000px;}
.yfa{bottom:877.566000px;}
.yf9{bottom:877.738500px;}
.y181{bottom:881.265000px;}
.y10c{bottom:881.662500px;}
.y121{bottom:881.664000px;}
.y10b{bottom:881.752500px;}
.y120{bottom:881.754000px;}
.y178{bottom:886.275000px;}
.y11d{bottom:888.024000px;}
.y132{bottom:888.025500px;}
.y180{bottom:890.265000px;}
.y11c{bottom:891.768000px;}
.y131{bottom:891.769500px;}
.y177{bottom:892.200000px;}
.yfb{bottom:892.626000px;}
.y10d{bottom:892.890000px;}
.y122{bottom:892.891500px;}
.y10f{bottom:896.505000px;}
.y124{bottom:896.506500px;}
.y17f{bottom:899.265000px;}
.yfd{bottom:900.031500px;}
.y10e{bottom:907.168500px;}
.y123{bottom:907.170000px;}
.y17e{bottom:908.265000px;}
.y111{bottom:909.912000px;}
.y126{bottom:909.913500px;}
.yfc{bottom:915.511500px;}
.y17d{bottom:917.265000px;}
.yff{bottom:921.633000px;}
.y110{bottom:921.861000px;}
.y125{bottom:921.862500px;}
.y113{bottom:923.536500px;}
.y128{bottom:923.538000px;}
.y17c{bottom:926.265000px;}
.y17b{bottom:935.265000px;}
.y112{bottom:936.964500px;}
.y127{bottom:936.966000px;}
.y115{bottom:937.456500px;}
.y12a{bottom:937.459500px;}
.yfe{bottom:938.917500px;}
.y101{bottom:943.530000px;}
.y17a{bottom:944.265000px;}
.y118{bottom:951.822000px;}
.y12d{bottom:951.823500px;}
.y114{bottom:952.948500px;}
.y129{bottom:952.950000px;}
.y172{bottom:961.619760px;}
.y100{bottom:963.016500px;}
.y103{bottom:965.838000px;}
.y11a{bottom:967.069500px;}
.y12f{bottom:967.071000px;}
.y117{bottom:970.279500px;}
.y12c{bottom:970.281000px;}
.y116{bottom:970.296000px;}
.y12b{bottom:970.297500px;}
.y11b{bottom:983.940000px;}
.y130{bottom:983.941500px;}
.y102{bottom:988.437000px;}
.y105{bottom:988.974000px;}
.y119{bottom:990.391500px;}
.y12e{bottom:990.393000px;}
.y18c{bottom:996.135000px;}
.y18b{bottom:1005.135000px;}
.y107{bottom:1013.346000px;}
.y18a{bottom:1014.135000px;}
.y104{bottom:1015.950000px;}
.y189{bottom:1023.135000px;}
.y188{bottom:1032.135000px;}
.y108{bottom:1040.371500px;}
.y187{bottom:1041.135000px;}
.y106{bottom:1047.892500px;}
.y186{bottom:1050.135000px;}
.y185{bottom:1059.135000px;}
.y184{bottom:1068.135000px;}
.y183{bottom:1077.135000px;}
.y1e5{bottom:1092.360405px;}
.y179{bottom:1092.630000px;}
.y171{bottom:1129.499760px;}
.y170{bottom:1142.265000px;}
.y16f{bottom:1155.015000px;}
.y16e{bottom:1172.834550px;}
.y16d{bottom:1195.215000px;}
.y1{bottom:1223.295000px;}
.h46{height:11.414246px;}
.h42{height:11.414247px;}
.h45{height:11.414249px;}
.h41{height:11.414250px;}
.h43{height:11.414251px;}
.h40{height:11.414252px;}
.h3f{height:11.414254px;}
.h44{height:11.414255px;}
.h47{height:11.414257px;}
.h11{height:11.893906px;}
.h10{height:11.894037px;}
.h12{height:11.894043px;}
.h35{height:12.104605px;}
.h36{height:12.104607px;}
.h37{height:12.104612px;}
.h3d{height:12.104672px;}
.h39{height:12.104674px;}
.h3c{height:12.104675px;}
.h3e{height:12.104678px;}
.h3b{height:12.104681px;}
.h38{height:12.104734px;}
.h3a{height:12.104739px;}
.h2e{height:12.615750px;}
.h22{height:14.267806px;}
.h25{height:14.267807px;}
.h21{height:14.267813px;}
.h23{height:14.267814px;}
.h20{height:14.267816px;}
.h1f{height:14.267817px;}
.h26{height:14.267818px;}
.h24{height:14.267820px;}
.h56{height:14.721680px;}
.h2b{height:15.018750px;}
.h57{height:15.117188px;}
.h53{height:16.458047px;}
.hb{height:17.346648px;}
.hc{height:17.346650px;}
.hd{height:17.346655px;}
.h7{height:17.346656px;}
.h8{height:17.346658px;}
.h6{height:17.346660px;}
.h5{height:17.346662px;}
.h9{height:17.346664px;}
.ha{height:17.346666px;}
.h16{height:18.021119px;}
.h15{height:18.021126px;}
.h1b{height:18.021127px;}
.h17{height:18.021132px;}
.h19{height:18.021183px;}
.h18{height:18.021185px;}
.h1e{height:18.021187px;}
.h1c{height:18.021190px;}
.h1a{height:18.021191px;}
.h1d{height:18.021193px;}
.h14{height:18.021249px;}
.h13{height:18.021259px;}
.he{height:18.136954px;}
.h28{height:18.773438px;}
.h4f{height:19.599469px;}
.h4{height:19.974937px;}
.h55{height:21.902344px;}
.h4c{height:22.302839px;}
.h4b{height:22.302844px;}
.h4a{height:22.302848px;}
.h49{height:22.302851px;}
.h2f{height:22.528125px;}
.h32{height:24.931125px;}
.h59{height:25.031250px;}
.h4d{height:28.385438px;}
.h54{height:29.443359px;}
.h2c{height:29.994750px;}
.h30{height:32.298750px;}
.h51{height:32.540625px;}
.h33{height:35.466750px;}
.h48{height:35.467950px;}
.h58{height:37.546875px;}
.h2d{height:38.232000px;}
.h34{height:38.936529px;}
.h52{height:56.320313px;}
.h50{height:59.250000px;}
.h31{height:63.792000px;}
.h27{height:87.660000px;}
.h29{height:87.660150px;}
.h2a{height:87.660300px;}
.h2{height:93.867188px;}
.h4e{height:95.742000px;}
.h3{height:166.571700px;}
.hf{height:182.289000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.wa{width:57.348000px;}
.w9{width:91.008000px;}
.w7{width:93.958500px;}
.w5{width:93.960000px;}
.w4{width:93.960150px;}
.w6{width:93.960450px;}
.w8{width:154.008000px;}
.w2{width:178.542000px;}
.w3{width:195.510000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4e{left:1.728000px;}
.x42{left:2.944950px;}
.x3{left:13.104000px;}
.x9b{left:14.742000px;}
.x9c{left:17.333595px;}
.x9d{left:19.277730px;}
.x3c{left:25.127400px;}
.x3e{left:26.490750px;}
.x3f{left:28.758450px;}
.xa1{left:31.889685px;}
.x11{left:36.937500px;}
.x23{left:43.613100px;}
.xb2{left:46.095270px;}
.x24{left:47.163900px;}
.x25{left:49.842150px;}
.x22{left:52.079850px;}
.xa7{left:53.145150px;}
.x26{left:55.198800px;}
.x27{left:57.790500px;}
.x3a{left:59.215500px;}
.x21{left:60.632850px;}
.x28{left:63.147000px;}
.x5{left:65.268000px;}
.x39{left:66.499800px;}
.x20{left:69.099600px;}
.x41{left:70.710300px;}
.x30{left:72.059700px;}
.x2f{left:75.256650px;}
.x1f{left:77.652600px;}
.x2e{left:81.649800px;}
.x38{left:83.346750px;}
.x2d{left:84.846150px;}
.x1e{left:86.119350px;}
.x2c{left:88.042950px;}
.x1{left:91.920150px;}
.x1d{left:94.672200px;}
.x2b{left:97.805250px;}
.x37{left:100.020750px;}
.x2a{left:101.088300px;}
.x1c{left:103.225200px;}
.x29{left:104.371350px;}
.x3b{left:105.483450px;}
.x36{left:108.400800px;}
.x40{left:110.683650px;}
.x1b{left:111.691950px;}
.x35{left:116.694000px;}
.x1a{left:120.244500px;}
.x6{left:121.338000px;}
.x34{left:125.074500px;}
.x19{left:128.797500px;}
.x33{left:133.369500px;}
.x18{left:137.350500px;}
.x4{left:140.238000px;}
.x32{left:141.663000px;}
.xae{left:144.450000px;}
.x17{left:145.903500px;}
.x31{left:149.956500px;}
.x16{left:154.456500px;}
.x15{left:163.009500px;}
.x14{left:171.649500px;}
.x46{left:175.449000px;}
.x47{left:177.004500px;}
.x48{left:178.036500px;}
.x13{left:180.202500px;}
.x49{left:184.048500px;}
.xa3{left:186.030300px;}
.x4a{left:187.804500px;}
.x12{left:188.842500px;}
.x43{left:194.199000px;}
.x4b{left:200.430000px;}
.xa4{left:207.285150px;}
.xa0{left:214.724925px;}
.x44{left:216.978000px;}
.x9f{left:231.240000px;}
.x3d{left:235.750500px;}
.xa9{left:253.380345px;}
.x45{left:256.338000px;}
.x9e{left:340.613100px;}
.x9a{left:347.740500px;}
.x67{left:350.685000px;}
.x4f{left:353.319000px;}
.xb{left:355.203000px;}
.xd{left:356.707500px;}
.x7a{left:357.774000px;}
.xe{left:359.178000px;}
.x4d{left:361.051500px;}
.x50{left:364.152000px;}
.xf{left:366.835500px;}
.x2{left:367.990500px;}
.xb0{left:370.979970px;}
.x7{left:387.828000px;}
.x76{left:389.083500px;}
.xaf{left:411.900120px;}
.x8{left:430.450500px;}
.x96{left:431.713500px;}
.x77{left:435.016500px;}
.xb1{left:439.695270px;}
.x93{left:442.420500px;}
.x97{left:454.660500px;}
.x10{left:460.222500px;}
.x9{left:467.656500px;}
.x98{left:470.347500px;}
.x78{left:476.253000px;}
.x94{left:481.183500px;}
.x99{left:483.694500px;}
.xa{left:506.361000px;}
.x51{left:508.288500px;}
.x4c{left:514.060500px;}
.xa2{left:517.125236px;}
.x79{left:518.397000px;}
.x5d{left:523.897500px;}
.x5a{left:525.903000px;}
.x59{left:527.904000px;}
.x69{left:528.910500px;}
.x5b{left:530.632500px;}
.x6b{left:532.431000px;}
.x5e{left:534.732000px;}
.x6a{left:536.536500px;}
.x95{left:548.488500px;}
.xc{left:551.242500px;}
.x5c{left:557.749500px;}
.x6c{left:559.477500px;}
.x7b{left:564.934500px;}
.x7f{left:582.039000px;}
.x81{left:583.444500px;}
.x82{left:590.991000px;}
.xa5{left:595.260300px;}
.xa8{left:596.325300px;}
.x5f{left:598.227000px;}
.x68{left:599.961000px;}
.x7c{left:603.522000px;}
.xaa{left:605.895345px;}
.xac{left:612.270345px;}
.xa6{left:616.530450px;}
.x6e{left:620.100000px;}
.x56{left:621.699000px;}
.x53{left:623.703000px;}
.x52{left:625.704000px;}
.xab{left:627.150195px;}
.x54{left:628.432500px;}
.x70{left:629.467500px;}
.x57{left:632.532000px;}
.x6f{left:633.571500px;}
.x8f{left:636.856500px;}
.x8d{left:640.857000px;}
.x8e{left:642.055500px;}
.x90{left:645.576000px;}
.x8b{left:649.681500px;}
.x7d{left:657.898500px;}
.x55{left:667.213500px;}
.x71{left:668.248500px;}
.x7e{left:684.193500px;}
.x80{left:714.114000px;}
.x58{left:719.356500px;}
.x6d{left:720.468000px;}
.x86{left:722.352000px;}
.x88{left:723.756000px;}
.x92{left:724.860000px;}
.x89{left:731.302500px;}
.x73{left:733.830000px;}
.x64{left:735.429000px;}
.x61{left:737.433000px;}
.x60{left:739.435500px;}
.x63{left:743.161500px;}
.x65{left:746.262000px;}
.x74{left:747.301500px;}
.x8c{left:771.570000px;}
.x83{left:772.786500px;}
.x8a{left:796.267500px;}
.x84{left:798.211500px;}
.x85{left:824.505000px;}
.x66{left:827.398500px;}
.x72{left:828.582000px;}
.x62{left:833.170500px;}
.x75{left:834.349500px;}
.xad{left:850.395000px;}
.x91{left:853.357500px;}
.x87{left:854.427000px;}
@media print{
.v9{vertical-align:-32.000000pt;}
.v8{vertical-align:-13.866667pt;}
.v2{vertical-align:-2.879168pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:5.374987pt;}
.v5{vertical-align:12.287083pt;}
.v3{vertical-align:13.312000pt;}
.v4{vertical-align:15.360000pt;}
.v7{vertical-align:17.066667pt;}
.v6{vertical-align:18.176000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000149pt;}
.ls1{letter-spacing:0.000533pt;}
.ls3{letter-spacing:0.000747pt;}
.ls4{letter-spacing:0.007307pt;}
.ls5{letter-spacing:0.009387pt;}
.ls7{letter-spacing:3.120853pt;}
.ls6{letter-spacing:3.333333pt;}
.ls2{letter-spacing:25.395200pt;}
.ws9{word-spacing:-28.953600pt;}
.ws1e{word-spacing:-13.344000pt;}
.ws1c{word-spacing:-9.489067pt;}
.ws1d{word-spacing:-7.709867pt;}
.ws77{word-spacing:-6.666667pt;}
.ws8{word-spacing:-5.337600pt;}
.wsa{word-spacing:-3.558400pt;}
.ws2{word-spacing:-3.380480pt;}
.wsa6{word-spacing:-3.333333pt;}
.ws65{word-spacing:-0.640880pt;}
.ws38{word-spacing:-0.640427pt;}
.ws7e{word-spacing:-0.561253pt;}
.ws99{word-spacing:-0.559120pt;}
.ws40{word-spacing:-0.427493pt;}
.ws36{word-spacing:-0.398773pt;}
.ws22{word-spacing:-0.345413pt;}
.ws5b{word-spacing:-0.267067pt;}
.ws42{word-spacing:-0.265440pt;}
.wsa9{word-spacing:-0.186720pt;}
.wsaa{word-spacing:-0.174213pt;}
.wsa2{word-spacing:-0.160413pt;}
.ws9a{word-spacing:-0.132933pt;}
.ws20{word-spacing:-0.132480pt;}
.ws3a{word-spacing:-0.106240pt;}
.ws73{word-spacing:-0.080400pt;}
.wsab{word-spacing:0.000000pt;}
.ws2f{word-spacing:0.052853pt;}
.ws70{word-spacing:0.080533pt;}
.ws37{word-spacing:0.106240pt;}
.ws9f{word-spacing:0.107040pt;}
.ws4a{word-spacing:0.213333pt;}
.wsa5{word-spacing:0.252867pt;}
.wsa4{word-spacing:0.254160pt;}
.wsa8{word-spacing:0.267187pt;}
.wsa3{word-spacing:0.292453pt;}
.ws9e{word-spacing:0.319280pt;}
.ws8b{word-spacing:0.345440pt;}
.ws56{word-spacing:0.346613pt;}
.ws9c{word-spacing:0.347147pt;}
.wsa0{word-spacing:0.371627pt;}
.ws79{word-spacing:0.426667pt;}
.ws24{word-spacing:0.479173pt;}
.ws23{word-spacing:0.480000pt;}
.ws3e{word-spacing:0.666667pt;}
.ws7b{word-spacing:0.692507pt;}
.ws97{word-spacing:0.774160pt;}
.ws3b{word-spacing:0.800000pt;}
.ws28{word-spacing:0.854160pt;}
.ws35{word-spacing:0.906240pt;}
.wsa7{word-spacing:0.906253pt;}
.ws30{word-spacing:0.932027pt;}
.ws5e{word-spacing:0.960000pt;}
.ws3d{word-spacing:1.012507pt;}
.ws86{word-spacing:1.118347pt;}
.ws4d{word-spacing:1.118747pt;}
.ws5c{word-spacing:1.227467pt;}
.ws43{word-spacing:1.253333pt;}
.ws4f{word-spacing:1.280000pt;}
.ws9d{word-spacing:1.331760pt;}
.ws57{word-spacing:1.387120pt;}
.ws31{word-spacing:1.411973pt;}
.ws7c{word-spacing:1.413333pt;}
.ws39{word-spacing:1.545840pt;}
.ws34{word-spacing:1.546613pt;}
.ws29{word-spacing:1.546667pt;}
.ws32{word-spacing:1.733333pt;}
.wsa1{word-spacing:1.786187pt;}
.ws48{word-spacing:1.812080pt;}
.ws25{word-spacing:1.865813pt;}
.ws8e{word-spacing:1.892960pt;}
.ws44{word-spacing:1.920400pt;}
.ws8f{word-spacing:2.107947pt;}
.ws75{word-spacing:2.132107pt;}
.ws83{word-spacing:2.132933pt;}
.ws3f{word-spacing:2.238747pt;}
.ws2d{word-spacing:2.239200pt;}
.ws1f{word-spacing:2.239573pt;}
.ws5f{word-spacing:2.266667pt;}
.ws50{word-spacing:2.292907pt;}
.ws81{word-spacing:2.505867pt;}
.ws89{word-spacing:2.612880pt;}
.ws71{word-spacing:3.065093pt;}
.ws9b{word-spacing:3.146213pt;}
.ws98{word-spacing:3.147067pt;}
.ws41{word-spacing:3.306667pt;}
.ws66{word-spacing:3.439067pt;}
.ws61{word-spacing:3.465360pt;}
.ws84{word-spacing:3.465893pt;}
.ws4e{word-spacing:3.680000pt;}
.ws72{word-spacing:3.733333pt;}
.ws68{word-spacing:3.760933pt;}
.ws2b{word-spacing:3.866667pt;}
.ws5a{word-spacing:4.106240pt;}
.ws45{word-spacing:4.184987pt;}
.ws27{word-spacing:4.186267pt;}
.ws26{word-spacing:4.212080pt;}
.ws6a{word-spacing:4.239573pt;}
.ws88{word-spacing:4.318347pt;}
.ws7d{word-spacing:4.374613pt;}
.ws3c{word-spacing:4.425840pt;}
.ws82{word-spacing:4.799600pt;}
.ws33{word-spacing:4.960933pt;}
.ws67{word-spacing:5.065893pt;}
.ws6e{word-spacing:5.200533pt;}
.ws21{word-spacing:5.225013pt;}
.ws6f{word-spacing:5.227867pt;}
.ws7a{word-spacing:5.438347pt;}
.ws64{word-spacing:5.547147pt;}
.ws54{word-spacing:5.600000pt;}
.ws49{word-spacing:5.705413pt;}
.ws63{word-spacing:5.759893pt;}
.ws6d{word-spacing:5.920053pt;}
.ws5d{word-spacing:6.026240pt;}
.ws8c{word-spacing:6.107947pt;}
.ws80{word-spacing:6.185813pt;}
.ws4c{word-spacing:6.212507pt;}
.ws74{word-spacing:6.345840pt;}
.ws2c{word-spacing:6.452933pt;}
.ws52{word-spacing:6.612507pt;}
.ws51{word-spacing:6.612880pt;}
.ws59{word-spacing:6.639573pt;}
.ws96{word-spacing:6.827093pt;}
.ws62{word-spacing:6.986187pt;}
.ws87{word-spacing:7.279547pt;}
.ws90{word-spacing:7.680000pt;}
.ws53{word-spacing:7.841280pt;}
.ws19{word-spacing:8.238080pt;}
.ws6c{word-spacing:9.199467pt;}
.ws60{word-spacing:9.385813pt;}
.ws2e{word-spacing:9.387120pt;}
.ws58{word-spacing:9.493334pt;}
.ws46{word-spacing:9.758347pt;}
.ws93{word-spacing:9.919147pt;}
.ws95{word-spacing:9.973760pt;}
.ws7f{word-spacing:10.053787pt;}
.ws8a{word-spacing:10.801307pt;}
.ws78{word-spacing:11.065440pt;}
.ws76{word-spacing:11.092507pt;}
.ws2a{word-spacing:12.265814pt;}
.ws4b{word-spacing:12.400000pt;}
.ws91{word-spacing:12.746667pt;}
.ws47{word-spacing:15.573334pt;}
.ws55{word-spacing:16.107094pt;}
.ws1a{word-spacing:18.506880pt;}
.ws6b{word-spacing:20.053334pt;}
.ws10{word-spacing:21.836800pt;}
.ws85{word-spacing:22.080000pt;}
.ws8d{word-spacing:22.480534pt;}
.ws94{word-spacing:23.466400pt;}
.ws17{word-spacing:26.158080pt;}
.ws69{word-spacing:28.213867pt;}
.ws4{word-spacing:30.176960pt;}
.ws1{word-spacing:30.177493pt;}
.ws5{word-spacing:30.178560pt;}
.ws3{word-spacing:30.498560pt;}
.ws0{word-spacing:30.739669pt;}
.wsc{word-spacing:31.944533pt;}
.wse{word-spacing:35.501867pt;}
.wsb{word-spacing:35.507200pt;}
.ws92{word-spacing:35.572800pt;}
.ws1b{word-spacing:41.546880pt;}
.ws18{word-spacing:43.494400pt;}
.ws15{word-spacing:47.048533pt;}
.ws13{word-spacing:50.611200pt;}
.ws16{word-spacing:84.795733pt;}
.ws11{word-spacing:85.051733pt;}
.ws12{word-spacing:199.739733pt;}
.ws7{word-spacing:215.099733pt;}
.ws6{word-spacing:215.105067pt;}
.ws14{word-spacing:242.465280pt;}
.wsf{word-spacing:242.974080pt;}
.wsd{word-spacing:325.920533pt;}
._20{margin-left:-570.250673pt;}
._6{margin-left:-560.646400pt;}
._b{margin-left:-336.645867pt;}
._f{margin-left:-103.987200pt;}
._e{margin-left:-99.815467pt;}
._d{margin-left:-97.738667pt;}
._5{margin-left:-88.888533pt;}
._4{margin-left:-85.579733pt;}
._3{margin-left:-81.766400pt;}
._2{margin-left:-74.647467pt;}
._7{margin-left:-26.138667pt;}
._c{margin-left:-23.066667pt;}
._1b{margin-left:-3.823536pt;}
._1c{margin-left:-2.482464pt;}
._1a{margin-left:-1.461365pt;}
._1e{width:4.505856pt;}
._1d{width:8.910944pt;}
._17{width:13.903232pt;}
._18{width:28.586539pt;}
._15{width:31.311232pt;}
._14{width:34.271232pt;}
._9{width:35.758933pt;}
._1{width:38.513621pt;}
._a{width:39.873579pt;}
._8{width:46.184533pt;}
._0{width:47.172096pt;}
._16{width:50.356267pt;}
._19{width:52.114219pt;}
._12{width:54.425600pt;}
._11{width:61.288533pt;}
._23{width:89.268630pt;}
._13{width:118.455467pt;}
._21{width:128.139957pt;}
._10{width:230.070400pt;}
._22{width:265.045678pt;}
._1f{width:536.490672pt;}
.fs23{font-size:8.320000pt;}
.fs27{font-size:8.960000pt;}
.fs3a{font-size:9.727996pt;}
.fs36{font-size:9.727997pt;}
.fs39{font-size:9.727999pt;}
.fs35{font-size:9.728000pt;}
.fs37{font-size:9.728001pt;}
.fs34{font-size:9.728002pt;}
.fs33{font-size:9.728003pt;}
.fs38{font-size:9.728004pt;}
.fs3b{font-size:9.728006pt;}
.fsd{font-size:10.136796pt;}
.fsc{font-size:10.136907pt;}
.fse{font-size:10.136912pt;}
.fsb{font-size:10.304000pt;}
.fs29{font-size:10.316368pt;}
.fs2a{font-size:10.316369pt;}
.fs2b{font-size:10.316373pt;}
.fs31{font-size:10.316424pt;}
.fs2d{font-size:10.316426pt;}
.fs30{font-size:10.316427pt;}
.fs32{font-size:10.316430pt;}
.fs2f{font-size:10.316432pt;}
.fs2c{font-size:10.316478pt;}
.fs2e{font-size:10.316482pt;}
.fs25{font-size:10.752000pt;}
.fs1d{font-size:12.159994pt;}
.fs20{font-size:12.159995pt;}
.fs1c{font-size:12.160000pt;}
.fs1e{font-size:12.160001pt;}
.fs1b{font-size:12.160003pt;}
.fs1a{font-size:12.160004pt;}
.fs21{font-size:12.160005pt;}
.fs1f{font-size:12.160007pt;}
.fs24{font-size:12.800000pt;}
.fs4a{font-size:13.333333pt;}
.fs47{font-size:14.026667pt;}
.fs8{font-size:14.783993pt;}
.fs9{font-size:14.783995pt;}
.fsa{font-size:14.783999pt;}
.fs4{font-size:14.784000pt;}
.fs5{font-size:14.784001pt;}
.fs3{font-size:14.784003pt;}
.fs2{font-size:14.784005pt;}
.fs6{font-size:14.784007pt;}
.fs7{font-size:14.784008pt;}
.fs12{font-size:15.358823pt;}
.fs11{font-size:15.358829pt;}
.fs13{font-size:15.358834pt;}
.fs15{font-size:15.358877pt;}
.fs14{font-size:15.358880pt;}
.fs19{font-size:15.358881pt;}
.fs17{font-size:15.358883pt;}
.fs16{font-size:15.358885pt;}
.fs18{font-size:15.358886pt;}
.fs10{font-size:15.358934pt;}
.fsf{font-size:15.358942pt;}
.fs22{font-size:16.000000pt;}
.fs41{font-size:16.704000pt;}
.fs1{font-size:17.024000pt;}
.fs49{font-size:18.666667pt;}
.fs3f{font-size:19.007996pt;}
.fs3e{font-size:19.008000pt;}
.fs3d{font-size:19.008004pt;}
.fs3c{font-size:19.008006pt;}
.fs26{font-size:19.200000pt;}
.fs28{font-size:21.248000pt;}
.fs4c{font-size:21.333333pt;}
.fs40{font-size:24.192000pt;}
.fs48{font-size:26.666667pt;}
.fs44{font-size:27.733333pt;}
.fs4b{font-size:32.000000pt;}
.fs43{font-size:34.133333pt;}
.fs45{font-size:34.666667pt;}
.fs42{font-size:42.666667pt;}
.fs46{font-size:48.000000pt;}
.fs0{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y1ee{bottom:7.533707pt;}
.y3{bottom:21.728133pt;}
.y1e3{bottom:22.613693pt;}
.y1e2{bottom:27.280360pt;}
.y8{bottom:29.783333pt;}
.y7{bottom:30.133333pt;}
.yaa{bottom:30.208000pt;}
.y1e1{bottom:31.947027pt;}
.y37{bottom:35.109333pt;}
.y1e0{bottom:36.613693pt;}
.ya{bottom:37.469733pt;}
.y9{bottom:37.703067pt;}
.y4d{bottom:39.617333pt;}
.y1df{bottom:41.280360pt;}
.y2{bottom:41.622933pt;}
.y4c{bottom:41.768000pt;}
.y38{bottom:42.328000pt;}
.y4b{bottom:43.994667pt;}
.y1d0{bottom:44.773680pt;}
.y1de{bottom:45.947027pt;}
.y4a{bottom:46.221333pt;}
.y49{bottom:48.449333pt;}
.y39{bottom:49.546667pt;}
.y1dd{bottom:50.613693pt;}
.y48{bottom:50.753333pt;}
.y1cf{bottom:52.773680pt;}
.ybc{bottom:52.928000pt;}
.y47{bottom:53.056000pt;}
.y2e{bottom:53.232000pt;}
.yb{bottom:53.795333pt;}
.y1dc{bottom:55.280360pt;}
.y46{bottom:55.360000pt;}
.y3a{bottom:56.688000pt;}
.y45{bottom:57.664000pt;}
.yd{bottom:58.291733pt;}
.y1db{bottom:59.947027pt;}
.y44{bottom:59.968000pt;}
.y2f{bottom:60.604000pt;}
.y16a{bottom:60.623773pt;}
.y1ce{bottom:60.773680pt;}
.y43{bottom:62.349333pt;}
.y3b{bottom:63.906667pt;}
.y1da{bottom:64.613693pt;}
.y16b{bottom:65.519613pt;}
.y30{bottom:67.976000pt;}
.y1d9{bottom:69.280360pt;}
.y169{bottom:70.992000pt;}
.y3c{bottom:71.048000pt;}
.yc{bottom:72.500533pt;}
.y6c{bottom:74.160000pt;}
.y89{bottom:74.160133pt;}
.y98{bottom:74.160267pt;}
.y1d8{bottom:74.386613pt;}
.y31{bottom:75.349333pt;}
.yf{bottom:75.784400pt;}
.y3d{bottom:78.190667pt;}
.y8d{bottom:79.485467pt;}
.y7e{bottom:79.489600pt;}
.y8c{bottom:79.600533pt;}
.y7d{bottom:79.604667pt;}
.y1c{bottom:81.241333pt;}
.y1d{bottom:82.316000pt;}
.y32{bottom:82.721333pt;}
.y4{bottom:82.768267pt;}
.y1e{bottom:83.392000pt;}
.y1f{bottom:84.466667pt;}
.y3e{bottom:85.332000pt;}
.y20{bottom:85.542667pt;}
.y8f{bottom:85.807333pt;}
.y80{bottom:85.811467pt;}
.y8e{bottom:85.907867pt;}
.y7f{bottom:85.912000pt;}
.y21{bottom:86.694667pt;}
.y97{bottom:87.346400pt;}
.y88{bottom:87.350533pt;}
.y22{bottom:87.769333pt;}
.y9a{bottom:88.562533pt;}
.y8b{bottom:88.566667pt;}
.y23{bottom:88.921333pt;}
.y33{bottom:90.016000pt;}
.y24{bottom:90.073333pt;}
.y134{bottom:91.058400pt;}
.y25{bottom:91.225333pt;}
.y99{bottom:91.362533pt;}
.y8a{bottom:91.366667pt;}
.ye{bottom:91.615067pt;}
.y26{bottom:92.377333pt;}
.y3f{bottom:92.473333pt;}
.y11{bottom:93.506267pt;}
.y27{bottom:93.605333pt;}
.y90{bottom:94.213600pt;}
.y81{bottom:94.217733pt;}
.y28{bottom:94.834667pt;}
.y29{bottom:96.062667pt;}
.y2a{bottom:97.292000pt;}
.y34{bottom:97.312000pt;}
.y2b{bottom:98.520000pt;}
.y40{bottom:99.616000pt;}
.y2c{bottom:99.749333pt;}
.y2d{bottom:101.054667pt;}
.y133{bottom:103.646400pt;}
.y91{bottom:104.078667pt;}
.y82{bottom:104.082800pt;}
.y35{bottom:104.608000pt;}
.y41{bottom:106.757333pt;}
.y5{bottom:110.767733pt;}
.y10{bottom:111.345333pt;}
.y13{bottom:111.683867pt;}
.y36{bottom:111.902667pt;}
.y42{bottom:113.822667pt;}
.y92{bottom:114.211467pt;}
.y83{bottom:114.215600pt;}
.y6{bottom:122.415733pt;}
.y93{bottom:124.785467pt;}
.y84{bottom:124.789600pt;}
.y15{bottom:130.440667pt;}
.y12{bottom:132.191733pt;}
.y94{bottom:135.834667pt;}
.y85{bottom:135.838667pt;}
.y137{bottom:137.532000pt;}
.y138{bottom:145.084000pt;}
.y95{bottom:147.872000pt;}
.y86{bottom:147.876000pt;}
.y17{bottom:150.342667pt;}
.y139{bottom:152.636000pt;}
.y13e{bottom:153.284000pt;}
.y136{bottom:154.300000pt;}
.y14{bottom:154.810667pt;}
.y13a{bottom:160.188000pt;}
.y96{bottom:161.986667pt;}
.y87{bottom:161.990667pt;}
.y13b{bottom:167.740000pt;}
.y135{bottom:169.020000pt;}
.y70{bottom:169.257333pt;}
.y61{bottom:169.261333pt;}
.y6f{bottom:169.372000pt;}
.y60{bottom:169.376000pt;}
.y18{bottom:172.432000pt;}
.y13c{bottom:175.356000pt;}
.y72{bottom:175.578667pt;}
.y63{bottom:175.584000pt;}
.y71{bottom:175.680000pt;}
.y62{bottom:175.684000pt;}
.y7a{bottom:177.118667pt;}
.y6b{bottom:177.122667pt;}
.y7c{bottom:178.330667pt;}
.y6e{bottom:178.336000pt;}
.y16{bottom:181.126667pt;}
.y7b{bottom:181.130667pt;}
.y6d{bottom:181.136000pt;}
.y13d{bottom:182.908000pt;}
.y73{bottom:183.985333pt;}
.y64{bottom:183.989333pt;}
.y13f{bottom:186.236000pt;}
.y140{bottom:190.780000pt;}
.y74{bottom:193.850667pt;}
.y65{bottom:193.854667pt;}
.y19{bottom:197.173333pt;}
.y75{bottom:203.984000pt;}
.y66{bottom:203.988000pt;}
.y1a{bottom:204.005333pt;}
.y1d7{bottom:207.413680pt;}
.y76{bottom:214.557333pt;}
.y67{bottom:214.561333pt;}
.y1d6{bottom:215.413680pt;}
.y1d5{bottom:223.413680pt;}
.y77{bottom:225.606667pt;}
.y68{bottom:225.610667pt;}
.y1d4{bottom:231.413680pt;}
.y78{bottom:237.642667pt;}
.y69{bottom:237.648000pt;}
.y1d3{bottom:239.413680pt;}
.y1d2{bottom:247.413680pt;}
.y79{bottom:251.758667pt;}
.y6a{bottom:251.762667pt;}
.y1d1{bottom:255.413680pt;}
.y174{bottom:272.972853pt;}
.y176{bottom:274.626187pt;}
.y4f{bottom:294.118667pt;}
.y4e{bottom:294.418667pt;}
.y51{bottom:302.102667pt;}
.y50{bottom:302.329333pt;}
.y1b{bottom:305.017333pt;}
.y1eb{bottom:309.920000pt;}
.y1cd{bottom:310.147013pt;}
.y52{bottom:317.578667pt;}
.y1cc{bottom:318.147013pt;}
.yeb{bottom:322.537333pt;}
.yd8{bottom:322.550667pt;}
.yc7{bottom:322.737333pt;}
.y54{bottom:322.770667pt;}
.y1cb{bottom:326.147013pt;}
.ye9{bottom:331.221333pt;}
.yd6{bottom:331.234667pt;}
.yc5{bottom:331.421333pt;}
.y1ca{bottom:334.147013pt;}
.ye4{bottom:334.165333pt;}
.yd1{bottom:334.178667pt;}
.yc0{bottom:334.365333pt;}
.y53{bottom:337.957333pt;}
.y1e6{bottom:338.280000pt;}
.ye8{bottom:338.773333pt;}
.yd5{bottom:338.786667pt;}
.yc4{bottom:338.973333pt;}
.yea{bottom:339.942667pt;}
.yd7{bottom:339.957333pt;}
.y1e9{bottom:340.093333pt;}
.yc6{bottom:340.142667pt;}
.y56{bottom:341.910667pt;}
.y1c9{bottom:342.147013pt;}
.ye7{bottom:346.325333pt;}
.yd4{bottom:346.338667pt;}
.yc3{bottom:346.525333pt;}
.y1c8{bottom:350.147013pt;}
.ye6{bottom:353.877333pt;}
.yd3{bottom:353.890667pt;}
.yc2{bottom:354.077333pt;}
.y1c7{bottom:358.147013pt;}
.y55{bottom:358.718667pt;}
.y58{bottom:361.288000pt;}
.ye5{bottom:361.429333pt;}
.yd2{bottom:361.442667pt;}
.yc1{bottom:361.629333pt;}
.y1e8{bottom:363.719867pt;}
.yec{bottom:365.236000pt;}
.yd9{bottom:365.249333pt;}
.yc8{bottom:365.436000pt;}
.y1c6{bottom:366.147013pt;}
.y1ea{bottom:368.440267pt;}
.yed{bottom:372.788000pt;}
.yda{bottom:372.801333pt;}
.yc9{bottom:372.988000pt;}
.y1c5{bottom:374.147013pt;}
.yf2{bottom:379.068000pt;}
.ydf{bottom:379.081333pt;}
.yce{bottom:379.268000pt;}
.y1ed{bottom:379.813707pt;}
.y57{bottom:380.254667pt;}
.yee{bottom:380.340000pt;}
.ydb{bottom:380.353333pt;}
.yca{bottom:380.540000pt;}
.y5a{bottom:381.058667pt;}
.y1c4{bottom:382.147013pt;}
.yef{bottom:387.892000pt;}
.ydc{bottom:387.905333pt;}
.ycb{bottom:388.092000pt;}
.y1ec{bottom:388.240267pt;}
.y1c3{bottom:390.147013pt;}
.yf0{bottom:395.442667pt;}
.ydd{bottom:395.457333pt;}
.ycc{bottom:395.642667pt;}
.y1c2{bottom:398.147013pt;}
.yf6{bottom:398.386392pt;}
.ye3{bottom:398.401059pt;}
.yd0{bottom:398.586392pt;}
.y5c{bottom:401.460000pt;}
.y59{bottom:402.900000pt;}
.yf1{bottom:403.060000pt;}
.yde{bottom:403.073333pt;}
.ycd{bottom:403.260000pt;}
.y1e7{bottom:404.426667pt;}
.y1c1{bottom:406.147013pt;}
.yf3{bottom:406.388000pt;}
.ye0{bottom:406.401333pt;}
.ycf{bottom:406.588000pt;}
.yf5{bottom:410.034312pt;}
.ye2{bottom:410.048979pt;}
.yf4{bottom:410.930667pt;}
.ye1{bottom:410.945333pt;}
.y1c0{bottom:414.147013pt;}
.yba{bottom:415.902667pt;}
.y1bf{bottom:422.147013pt;}
.y5e{bottom:423.116000pt;}
.yb8{bottom:423.882667pt;}
.yb1{bottom:423.884000pt;}
.ybb{bottom:424.969333pt;}
.y5b{bottom:427.560000pt;}
.ybd{bottom:427.593333pt;}
.y1be{bottom:430.147013pt;}
.yb7{bottom:435.210667pt;}
.yb0{bottom:435.212000pt;}
.y1bd{bottom:438.147013pt;}
.yb9{bottom:445.852000pt;}
.yb2{bottom:445.853333pt;}
.y1bc{bottom:446.147013pt;}
.yb6{bottom:446.538667pt;}
.yaf{bottom:446.540000pt;}
.y5f{bottom:447.054667pt;}
.y1bb{bottom:454.147013pt;}
.y5d{bottom:456.172000pt;}
.yb3{bottom:457.866667pt;}
.yae{bottom:457.868000pt;}
.y1ba{bottom:462.147013pt;}
.yb5{bottom:469.258667pt;}
.yad{bottom:469.260000pt;}
.y1b9{bottom:470.147013pt;}
.y1b8{bottom:478.147013pt;}
.yb4{bottom:480.586667pt;}
.yac{bottom:480.588000pt;}
.ya7{bottom:484.357333pt;}
.ya3{bottom:484.358667pt;}
.y9e{bottom:484.360000pt;}
.ya9{bottom:485.445333pt;}
.y1b7{bottom:486.147013pt;}
.y1b6{bottom:494.147013pt;}
.ya4{bottom:495.000000pt;}
.y9f{bottom:495.001333pt;}
.ya6{bottom:495.685333pt;}
.ya2{bottom:495.686667pt;}
.y9d{bottom:495.688000pt;}
.y1b5{bottom:502.147013pt;}
.ya1{bottom:507.014667pt;}
.y9c{bottom:507.016000pt;}
.y1b4{bottom:510.147013pt;}
.y1b3{bottom:518.147013pt;}
.ya5{bottom:518.341333pt;}
.y9b{bottom:518.342667pt;}
.ya8{bottom:520.965333pt;}
.ya0{bottom:520.966667pt;}
.ybf{bottom:524.293333pt;}
.ybe{bottom:524.294667pt;}
.y1b2{bottom:526.147013pt;}
.yab{bottom:526.276000pt;}
.y1b1{bottom:534.147013pt;}
.y175{bottom:550.759520pt;}
.y1b0{bottom:577.240213pt;}
.y19f{bottom:578.173333pt;}
.y15e{bottom:584.582667pt;}
.y19e{bottom:586.173333pt;}
.y15d{bottom:590.485333pt;}
.y1af{bottom:593.240213pt;}
.y19d{bottom:594.173333pt;}
.y1ae{bottom:601.240213pt;}
.y19c{bottom:602.173333pt;}
.y157{bottom:604.208000pt;}
.y156{bottom:604.514667pt;}
.y167{bottom:605.030667pt;}
.y1ad{bottom:609.240213pt;}
.y19b{bottom:610.173333pt;}
.y166{bottom:610.933333pt;}
.y159{bottom:614.090667pt;}
.y158{bottom:614.246667pt;}
.y15f{bottom:615.973333pt;}
.y142{bottom:616.406667pt;}
.y141{bottom:616.498667pt;}
.y1ac{bottom:617.240213pt;}
.y168{bottom:617.702667pt;}
.y19a{bottom:618.173333pt;}
.y144{bottom:621.464000pt;}
.y143{bottom:621.545333pt;}
.y155{bottom:623.686667pt;}
.y1ab{bottom:625.240213pt;}
.y154{bottom:625.926667pt;}
.y199{bottom:626.173333pt;}
.y165{bottom:628.364000pt;}
.y145{bottom:630.357333pt;}
.y160{bottom:632.966667pt;}
.y147{bottom:633.570667pt;}
.y198{bottom:634.173333pt;}
.y1aa{bottom:641.240213pt;}
.y197{bottom:642.173333pt;}
.y146{bottom:643.048000pt;}
.y149{bottom:645.486667pt;}
.y1a9{bottom:649.240213pt;}
.y161{bottom:649.958667pt;}
.y196{bottom:650.173333pt;}
.y148{bottom:655.981333pt;}
.y1a8{bottom:657.226667pt;}
.y14b{bottom:657.598667pt;}
.y195{bottom:658.173333pt;}
.y15a{bottom:658.306667pt;}
.y1a7{bottom:665.226667pt;}
.y194{bottom:666.173333pt;}
.y162{bottom:666.950667pt;}
.y14a{bottom:669.406667pt;}
.y14d{bottom:669.908000pt;}
.y1a6{bottom:673.226667pt;}
.y193{bottom:674.173333pt;}
.y1a5{bottom:681.226667pt;}
.y192{bottom:682.173333pt;}
.y150{bottom:682.676000pt;}
.y14c{bottom:683.550667pt;}
.y163{bottom:683.942667pt;}
.y1a4{bottom:689.226667pt;}
.y191{bottom:690.173333pt;}
.y152{bottom:696.166667pt;}
.y1a3{bottom:697.226667pt;}
.y15b{bottom:697.986667pt;}
.y190{bottom:698.173333pt;}
.y14f{bottom:698.890667pt;}
.y14e{bottom:698.906667pt;}
.y15c{bottom:699.638667pt;}
.y16c{bottom:700.646267pt;}
.y164{bottom:701.078667pt;}
.y1a2{bottom:705.226667pt;}
.y18f{bottom:706.173333pt;}
.y153{bottom:711.033333pt;}
.y1a1{bottom:713.226667pt;}
.y18e{bottom:714.173333pt;}
.y151{bottom:716.705333pt;}
.y1a0{bottom:721.226667pt;}
.y18d{bottom:722.173333pt;}
.y173{bottom:739.852853pt;}
.y1e4{bottom:739.853693pt;}
.yf8{bottom:774.696000pt;}
.yf7{bottom:774.897333pt;}
.y182{bottom:775.346667pt;}
.y10a{bottom:778.642667pt;}
.y11f{bottom:778.644000pt;}
.y109{bottom:778.798667pt;}
.y11e{bottom:778.800000pt;}
.yfa{bottom:780.058667pt;}
.yf9{bottom:780.212000pt;}
.y181{bottom:783.346667pt;}
.y10c{bottom:783.700000pt;}
.y121{bottom:783.701333pt;}
.y10b{bottom:783.780000pt;}
.y120{bottom:783.781333pt;}
.y178{bottom:787.800000pt;}
.y11d{bottom:789.354667pt;}
.y132{bottom:789.356000pt;}
.y180{bottom:791.346667pt;}
.y11c{bottom:792.682667pt;}
.y131{bottom:792.684000pt;}
.y177{bottom:793.066667pt;}
.yfb{bottom:793.445333pt;}
.y10d{bottom:793.680000pt;}
.y122{bottom:793.681333pt;}
.y10f{bottom:796.893333pt;}
.y124{bottom:796.894667pt;}
.y17f{bottom:799.346667pt;}
.yfd{bottom:800.028000pt;}
.y10e{bottom:806.372000pt;}
.y123{bottom:806.373333pt;}
.y17e{bottom:807.346667pt;}
.y111{bottom:808.810667pt;}
.y126{bottom:808.812000pt;}
.yfc{bottom:813.788000pt;}
.y17d{bottom:815.346667pt;}
.yff{bottom:819.229333pt;}
.y110{bottom:819.432000pt;}
.y125{bottom:819.433333pt;}
.y113{bottom:820.921333pt;}
.y128{bottom:820.922667pt;}
.y17c{bottom:823.346667pt;}
.y17b{bottom:831.346667pt;}
.y112{bottom:832.857333pt;}
.y127{bottom:832.858667pt;}
.y115{bottom:833.294667pt;}
.y12a{bottom:833.297333pt;}
.yfe{bottom:834.593333pt;}
.y101{bottom:838.693333pt;}
.y17a{bottom:839.346667pt;}
.y118{bottom:846.064000pt;}
.y12d{bottom:846.065333pt;}
.y114{bottom:847.065333pt;}
.y129{bottom:847.066667pt;}
.y172{bottom:854.773120pt;}
.y100{bottom:856.014667pt;}
.y103{bottom:858.522667pt;}
.y11a{bottom:859.617333pt;}
.y12f{bottom:859.618667pt;}
.y117{bottom:862.470667pt;}
.y12c{bottom:862.472000pt;}
.y116{bottom:862.485333pt;}
.y12b{bottom:862.486667pt;}
.y11b{bottom:874.613333pt;}
.y130{bottom:874.614667pt;}
.y102{bottom:878.610667pt;}
.y105{bottom:879.088000pt;}
.y119{bottom:880.348000pt;}
.y12e{bottom:880.349333pt;}
.y18c{bottom:885.453333pt;}
.y18b{bottom:893.453333pt;}
.y107{bottom:900.752000pt;}
.y18a{bottom:901.453333pt;}
.y104{bottom:903.066667pt;}
.y189{bottom:909.453333pt;}
.y188{bottom:917.453333pt;}
.y108{bottom:924.774667pt;}
.y187{bottom:925.453333pt;}
.y106{bottom:931.460000pt;}
.y186{bottom:933.453333pt;}
.y185{bottom:941.453333pt;}
.y184{bottom:949.453333pt;}
.y183{bottom:957.453333pt;}
.y1e5{bottom:970.987027pt;}
.y179{bottom:971.226667pt;}
.y171{bottom:1003.999787pt;}
.y170{bottom:1015.346667pt;}
.y16f{bottom:1026.680000pt;}
.y16e{bottom:1042.519600pt;}
.y16d{bottom:1062.413333pt;}
.y1{bottom:1087.373333pt;}
.h46{height:10.145996pt;}
.h42{height:10.145997pt;}
.h45{height:10.145999pt;}
.h41{height:10.146000pt;}
.h43{height:10.146001pt;}
.h40{height:10.146002pt;}
.h3f{height:10.146003pt;}
.h44{height:10.146005pt;}
.h47{height:10.146006pt;}
.h11{height:10.572361pt;}
.h10{height:10.572477pt;}
.h12{height:10.572483pt;}
.h35{height:10.759649pt;}
.h36{height:10.759650pt;}
.h37{height:10.759655pt;}
.h3d{height:10.759708pt;}
.h39{height:10.759710pt;}
.h3c{height:10.759711pt;}
.h3e{height:10.759714pt;}
.h3b{height:10.759717pt;}
.h38{height:10.759764pt;}
.h3a{height:10.759768pt;}
.h2e{height:11.214000pt;}
.h22{height:12.682494pt;}
.h25{height:12.682495pt;}
.h21{height:12.682500pt;}
.h23{height:12.682501pt;}
.h20{height:12.682503pt;}
.h1f{height:12.682504pt;}
.h26{height:12.682505pt;}
.h24{height:12.682507pt;}
.h56{height:13.085938pt;}
.h2b{height:13.350000pt;}
.h57{height:13.437500pt;}
.h53{height:14.629375pt;}
.hb{height:15.419243pt;}
.hc{height:15.419245pt;}
.hd{height:15.419249pt;}
.h7{height:15.419250pt;}
.h8{height:15.419251pt;}
.h6{height:15.419253pt;}
.h5{height:15.419255pt;}
.h9{height:15.419257pt;}
.ha{height:15.419259pt;}
.h16{height:16.018773pt;}
.h15{height:16.018779pt;}
.h1b{height:16.018780pt;}
.h17{height:16.018784pt;}
.h19{height:16.018829pt;}
.h18{height:16.018831pt;}
.h1e{height:16.018833pt;}
.h1c{height:16.018835pt;}
.h1a{height:16.018837pt;}
.h1d{height:16.018838pt;}
.h14{height:16.018888pt;}
.h13{height:16.018897pt;}
.he{height:16.121737pt;}
.h28{height:16.687500pt;}
.h4f{height:17.421750pt;}
.h4{height:17.755500pt;}
.h55{height:19.468750pt;}
.h4c{height:19.824746pt;}
.h4b{height:19.824750pt;}
.h4a{height:19.824754pt;}
.h49{height:19.824756pt;}
.h2f{height:20.025000pt;}
.h32{height:22.161000pt;}
.h59{height:22.250000pt;}
.h4d{height:25.231500pt;}
.h54{height:26.171875pt;}
.h2c{height:26.662000pt;}
.h30{height:28.710000pt;}
.h51{height:28.925000pt;}
.h33{height:31.526000pt;}
.h48{height:31.527067pt;}
.h58{height:33.375000pt;}
.h2d{height:33.984000pt;}
.h34{height:34.610248pt;}
.h52{height:50.062500pt;}
.h50{height:52.666667pt;}
.h31{height:56.704000pt;}
.h27{height:77.920000pt;}
.h29{height:77.920133pt;}
.h2a{height:77.920267pt;}
.h2{height:83.437500pt;}
.h4e{height:85.104000pt;}
.h3{height:148.063733pt;}
.hf{height:162.034667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.wa{width:50.976000pt;}
.w9{width:80.896000pt;}
.w7{width:83.518667pt;}
.w5{width:83.520000pt;}
.w4{width:83.520133pt;}
.w6{width:83.520400pt;}
.w8{width:136.896000pt;}
.w2{width:158.704000pt;}
.w3{width:173.786667pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4e{left:1.536000pt;}
.x42{left:2.617733pt;}
.x3{left:11.648000pt;}
.x9b{left:13.104000pt;}
.x9c{left:15.407640pt;}
.x9d{left:17.135760pt;}
.x3c{left:22.335467pt;}
.x3e{left:23.547333pt;}
.x3f{left:25.563067pt;}
.xa1{left:28.346387pt;}
.x11{left:32.833333pt;}
.x23{left:38.767200pt;}
.xb2{left:40.973573pt;}
.x24{left:41.923467pt;}
.x25{left:44.304133pt;}
.x22{left:46.293200pt;}
.xa7{left:47.240133pt;}
.x26{left:49.065600pt;}
.x27{left:51.369333pt;}
.x3a{left:52.636000pt;}
.x21{left:53.895867pt;}
.x28{left:56.130667pt;}
.x5{left:58.016000pt;}
.x39{left:59.110933pt;}
.x20{left:61.421867pt;}
.x41{left:62.853600pt;}
.x30{left:64.053067pt;}
.x2f{left:66.894800pt;}
.x1f{left:69.024533pt;}
.x2e{left:72.577600pt;}
.x38{left:74.086000pt;}
.x2d{left:75.418800pt;}
.x1e{left:76.550533pt;}
.x2c{left:78.260400pt;}
.x1{left:81.706800pt;}
.x1d{left:84.153067pt;}
.x2b{left:86.938000pt;}
.x37{left:88.907333pt;}
.x2a{left:89.856267pt;}
.x1c{left:91.755733pt;}
.x29{left:92.774533pt;}
.x3b{left:93.763067pt;}
.x36{left:96.356267pt;}
.x40{left:98.385467pt;}
.x1b{left:99.281733pt;}
.x35{left:103.728000pt;}
.x1a{left:106.884000pt;}
.x6{left:107.856000pt;}
.x34{left:111.177333pt;}
.x19{left:114.486667pt;}
.x33{left:118.550667pt;}
.x18{left:122.089333pt;}
.x4{left:124.656000pt;}
.x32{left:125.922667pt;}
.xae{left:128.400000pt;}
.x17{left:129.692000pt;}
.x31{left:133.294667pt;}
.x16{left:137.294667pt;}
.x15{left:144.897333pt;}
.x14{left:152.577333pt;}
.x46{left:155.954667pt;}
.x47{left:157.337333pt;}
.x48{left:158.254667pt;}
.x13{left:160.180000pt;}
.x49{left:163.598667pt;}
.xa3{left:165.360267pt;}
.x4a{left:166.937333pt;}
.x12{left:167.860000pt;}
.x43{left:172.621333pt;}
.x4b{left:178.160000pt;}
.xa4{left:184.253467pt;}
.xa0{left:190.866600pt;}
.x44{left:192.869333pt;}
.x9f{left:205.546667pt;}
.x3d{left:209.556000pt;}
.xa9{left:225.226973pt;}
.x45{left:227.856000pt;}
.x9e{left:302.767200pt;}
.x9a{left:309.102667pt;}
.x67{left:311.720000pt;}
.x4f{left:314.061333pt;}
.xb{left:315.736000pt;}
.xd{left:317.073333pt;}
.x7a{left:318.021333pt;}
.xe{left:319.269333pt;}
.x4d{left:320.934667pt;}
.x50{left:323.690667pt;}
.xf{left:326.076000pt;}
.x2{left:327.102667pt;}
.xb0{left:329.759973pt;}
.x7{left:344.736000pt;}
.x76{left:345.852000pt;}
.xaf{left:366.133440pt;}
.x8{left:382.622667pt;}
.x96{left:383.745333pt;}
.x77{left:386.681333pt;}
.xb1{left:390.840240pt;}
.x93{left:393.262667pt;}
.x97{left:404.142667pt;}
.x10{left:409.086667pt;}
.x9{left:415.694667pt;}
.x98{left:418.086667pt;}
.x78{left:423.336000pt;}
.x94{left:427.718667pt;}
.x99{left:429.950667pt;}
.xa{left:450.098667pt;}
.x51{left:451.812000pt;}
.x4c{left:456.942667pt;}
.xa2{left:459.666877pt;}
.x79{left:460.797333pt;}
.x5d{left:465.686667pt;}
.x5a{left:467.469333pt;}
.x59{left:469.248000pt;}
.x69{left:470.142667pt;}
.x5b{left:471.673333pt;}
.x6b{left:473.272000pt;}
.x5e{left:475.317333pt;}
.x6a{left:476.921333pt;}
.x95{left:487.545333pt;}
.xc{left:489.993333pt;}
.x5c{left:495.777333pt;}
.x6c{left:497.313333pt;}
.x7b{left:502.164000pt;}
.x7f{left:517.368000pt;}
.x81{left:518.617333pt;}
.x82{left:525.325333pt;}
.xa5{left:529.120267pt;}
.xa8{left:530.066933pt;}
.x5f{left:531.757333pt;}
.x68{left:533.298667pt;}
.x7c{left:536.464000pt;}
.xaa{left:538.573640pt;}
.xac{left:544.240307pt;}
.xa6{left:548.027067pt;}
.x6e{left:551.200000pt;}
.x56{left:552.621333pt;}
.x53{left:554.402667pt;}
.x52{left:556.181333pt;}
.xab{left:557.466840pt;}
.x54{left:558.606667pt;}
.x70{left:559.526667pt;}
.x57{left:562.250667pt;}
.x6f{left:563.174667pt;}
.x8f{left:566.094667pt;}
.x8d{left:569.650667pt;}
.x8e{left:570.716000pt;}
.x90{left:573.845333pt;}
.x8b{left:577.494667pt;}
.x7d{left:584.798667pt;}
.x55{left:593.078667pt;}
.x71{left:593.998667pt;}
.x7e{left:608.172000pt;}
.x80{left:634.768000pt;}
.x58{left:639.428000pt;}
.x6d{left:640.416000pt;}
.x86{left:642.090667pt;}
.x88{left:643.338667pt;}
.x92{left:644.320000pt;}
.x89{left:650.046667pt;}
.x73{left:652.293333pt;}
.x64{left:653.714667pt;}
.x61{left:655.496000pt;}
.x60{left:657.276000pt;}
.x63{left:660.588000pt;}
.x65{left:663.344000pt;}
.x74{left:664.268000pt;}
.x8c{left:685.840000pt;}
.x83{left:686.921333pt;}
.x8a{left:707.793333pt;}
.x84{left:709.521333pt;}
.x85{left:732.893333pt;}
.x66{left:735.465333pt;}
.x72{left:736.517333pt;}
.x62{left:740.596000pt;}
.x75{left:741.644000pt;}
.xad{left:755.906667pt;}
.x91{left:758.540000pt;}
.x87{left:759.490667pt;}
}




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