
    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_1f3a13006238de35a67463a4.woff')format("woff");}.ff1{font-family:ff1;line-height:1.334000;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_50ce0e167f4c3174fb8ec573.woff')format("woff");}.ff2{font-family:ff2;line-height:1.136000;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_1093fae5e340d00fc94dbd0a.woff')format("woff");}.ff3{font-family:ff3;line-height:1.120000;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_1f3a13006238de35a67463a4.woff')format("woff");}.ff4{font-family:ff4;line-height:1.334000;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_624730becde28ade142034ad.woff')format("woff");}.ff5{font-family:ff5;line-height:0.984000;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_728a3bd73b777166d18d6644.woff')format("woff");}.ff6{font-family:ff6;line-height:0.945000;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_dd2846a0ff976c3849ee0e26.woff')format("woff");}.ff7{font-family:ff7;line-height:0.960000;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_bc59ed2fb7ab88945bd969b7.woff')format("woff");}.ff8{font-family:ff8;line-height:0.300000;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_9b012c21810b751c7a2fc38c.woff')format("woff");}.ff9{font-family:ff9;line-height:0.764750;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;}
.m4{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);}
.m2f{transform:matrix(0.141265,-0.199482,0.170098,0.183212,0,0);-ms-transform:matrix(0.141265,-0.199482,0.170098,0.183212,0,0);-webkit-transform:matrix(0.141265,-0.199482,0.170098,0.183212,0,0);}
.m2e{transform:matrix(0.149073,-0.193793,0.162734,0.189783,0,0);-ms-transform:matrix(0.149073,-0.193793,0.162734,0.189783,0,0);-webkit-transform:matrix(0.149073,-0.193793,0.162734,0.189783,0,0);}
.m2d{transform:matrix(0.155861,-0.188450,0.155929,0.195413,0,0);-ms-transform:matrix(0.155861,-0.188450,0.155929,0.195413,0,0);-webkit-transform:matrix(0.155861,-0.188450,0.155929,0.195413,0,0);}
.m2c{transform:matrix(0.162808,-0.182559,0.148540,0.201087,0,0);-ms-transform:matrix(0.162808,-0.182559,0.148540,0.201087,0,0);-webkit-transform:matrix(0.162808,-0.182559,0.148540,0.201087,0,0);}
.m2b{transform:matrix(0.169101,-0.176816,0.141442,0.206141,0,0);-ms-transform:matrix(0.169101,-0.176816,0.141442,0.206141,0,0);-webkit-transform:matrix(0.169101,-0.176816,0.141442,0.206141,0,0);}
.m2a{transform:matrix(0.174044,-0.172016,0.135577,0.210045,0,0);-ms-transform:matrix(0.174044,-0.172016,0.135577,0.210045,0,0);-webkit-transform:matrix(0.174044,-0.172016,0.135577,0.210045,0,0);}
.m29{transform:matrix(0.178734,-0.167191,0.129740,0.213699,0,0);-ms-transform:matrix(0.178734,-0.167191,0.129740,0.213699,0,0);-webkit-transform:matrix(0.178734,-0.167191,0.129740,0.213699,0,0);}
.m28{transform:matrix(0.184163,-0.161266,0.122637,0.217853,0,0);-ms-transform:matrix(0.184163,-0.161266,0.122637,0.217853,0,0);-webkit-transform:matrix(0.184163,-0.161266,0.122637,0.217853,0,0);}
.m27{transform:matrix(0.189475,-0.155071,0.115294,0.221827,0,0);-ms-transform:matrix(0.189475,-0.155071,0.115294,0.221827,0,0);-webkit-transform:matrix(0.189475,-0.155071,0.115294,0.221827,0,0);}
.m26{transform:matrix(0.198857,-0.142984,0.101174,0.228613,0,0);-ms-transform:matrix(0.198857,-0.142984,0.101174,0.228613,0,0);-webkit-transform:matrix(0.198857,-0.142984,0.101174,0.228613,0,0);}
.m8{transform:matrix(0.199955,0.140948,-0.183903,0.169351,0,0);-ms-transform:matrix(0.199955,0.140948,-0.183903,0.169351,0,0);-webkit-transform:matrix(0.199955,0.140948,-0.183903,0.169351,0,0);}
.m25{transform:matrix(0.204044,-0.135561,0.092627,0.232207,0,0);-ms-transform:matrix(0.204044,-0.135561,0.092627,0.232207,0,0);-webkit-transform:matrix(0.204044,-0.135561,0.092627,0.232207,0,0);}
.m9{transform:matrix(0.205197,0.133299,-0.177346,0.176206,0,0);-ms-transform:matrix(0.205197,0.133299,-0.177346,0.176206,0,0);-webkit-transform:matrix(0.205197,0.133299,-0.177346,0.176206,0,0);}
.m24{transform:matrix(0.209186,-0.127579,0.083524,0.235635,0,0);-ms-transform:matrix(0.209186,-0.127579,0.083524,0.235635,0,0);-webkit-transform:matrix(0.209186,-0.127579,0.083524,0.235635,0,0);}
.ma{transform:matrix(0.209412,0.126676,-0.171595,0.181811,0,0);-ms-transform:matrix(0.209412,0.126676,-0.171595,0.181811,0,0);-webkit-transform:matrix(0.209412,0.126676,-0.171595,0.181811,0,0);}
.m23{transform:matrix(0.214630,-0.118299,0.073060,0.239086,0,0);-ms-transform:matrix(0.214630,-0.118299,0.073060,0.239086,0,0);-webkit-transform:matrix(0.214630,-0.118299,0.073060,0.239086,0,0);}
.mb{transform:matrix(0.216460,0.114389,-0.160769,0.191450,0,0);-ms-transform:matrix(0.216460,0.114389,-0.160769,0.191450,0,0);-webkit-transform:matrix(0.216460,0.114389,-0.160769,0.191450,0,0);}
.m22{transform:matrix(0.219428,-0.109241,0.062950,0.241945,0,0);-ms-transform:matrix(0.219428,-0.109241,0.062950,0.241945,0,0);-webkit-transform:matrix(0.219428,-0.109241,0.062950,0.241945,0,0);}
.mc{transform:matrix(0.221222,0.105031,-0.152388,0.198186,0,0);-ms-transform:matrix(0.221222,0.105031,-0.152388,0.198186,0,0);-webkit-transform:matrix(0.221222,0.105031,-0.152388,0.198186,0,0);}
.m20{transform:matrix(0.223593,-0.100542,0.053340,0.244243,0,0);-ms-transform:matrix(0.223593,-0.100542,0.053340,0.244243,0,0);-webkit-transform:matrix(0.223593,-0.100542,0.053340,0.244243,0,0);}
.m21{transform:matrix(0.224640,-0.098193,0.050762,0.244792,0,0);-ms-transform:matrix(0.224640,-0.098193,0.050762,0.244792,0,0);-webkit-transform:matrix(0.224640,-0.098193,0.050762,0.244792,0,0);}
.m7{transform:matrix(0.225613,-0.095965,0.048317,0.245287,0,0);-ms-transform:matrix(0.225613,-0.095965,0.048317,0.245287,0,0);-webkit-transform:matrix(0.225613,-0.095965,0.048317,0.245287,0,0);}
.md{transform:matrix(0.225743,0.095080,-0.143370,0.204805,0,0);-ms-transform:matrix(0.225743,0.095080,-0.143370,0.204805,0,0);-webkit-transform:matrix(0.225743,0.095080,-0.143370,0.204805,0,0);}
.m2{transform:matrix(0.227026,0.000000,-0.035957,0.247401,0,0);-ms-transform:matrix(0.227026,0.000000,-0.035957,0.247401,0,0);-webkit-transform:matrix(0.227026,0.000000,-0.035957,0.247401,0,0);}
.m1f{transform:matrix(0.228755,-0.088297,0.039960,0.246786,0,0);-ms-transform:matrix(0.228755,-0.088297,0.039960,0.246786,0,0);-webkit-transform:matrix(0.228755,-0.088297,0.039960,0.246786,0,0);}
.m3{transform:matrix(0.229412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229412,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.230341,0.083505,-0.132734,0.211853,0,0);-ms-transform:matrix(0.230341,0.083505,-0.132734,0.211853,0,0);-webkit-transform:matrix(0.230341,0.083505,-0.132734,0.211853,0,0);}
.m1e{transform:matrix(0.233300,-0.075586,0.026238,0.248619,0,0);-ms-transform:matrix(0.233300,-0.075586,0.026238,0.248619,0,0);-webkit-transform:matrix(0.233300,-0.075586,0.026238,0.248619,0,0);}
.mf{transform:matrix(0.235741,0.067057,-0.117381,0.220730,0,0);-ms-transform:matrix(0.235741,0.067057,-0.117381,0.220730,0,0);-webkit-transform:matrix(0.235741,0.067057,-0.117381,0.220730,0,0);}
.m1d{transform:matrix(0.237093,-0.062821,0.012632,0.249681,0,0);-ms-transform:matrix(0.237093,-0.062821,0.012632,0.249681,0,0);-webkit-transform:matrix(0.237093,-0.062821,0.012632,0.249681,0,0);}
.m12{transform:matrix(0.239971,0.050176,-0.101346,0.228536,0,0);-ms-transform:matrix(0.239971,0.050176,-0.101346,0.228536,0,0);-webkit-transform:matrix(0.239971,0.050176,-0.101346,0.228536,0,0);}
.m1c{transform:matrix(0.239979,-0.050764,-0.000078,0.250000,0,0);-ms-transform:matrix(0.239979,-0.050764,-0.000078,0.250000,0,0);-webkit-transform:matrix(0.239979,-0.050764,-0.000078,0.250000,0,0);}
.m10{transform:matrix(0.240164,0.049273,-0.100478,0.228920,0,0);-ms-transform:matrix(0.240164,0.049273,-0.100478,0.228920,0,0);-webkit-transform:matrix(0.240164,0.049273,-0.100478,0.228920,0,0);}
.m13{transform:matrix(0.241341,0.043265,-0.094703,0.231368,0,0);-ms-transform:matrix(0.241341,0.043265,-0.094703,0.231368,0,0);-webkit-transform:matrix(0.241341,0.043265,-0.094703,0.231368,0,0);}
.m1b{transform:matrix(0.242196,-0.038902,-0.012450,0.249690,0,0);-ms-transform:matrix(0.242196,-0.038902,-0.012450,0.249690,0,0);-webkit-transform:matrix(0.242196,-0.038902,-0.012450,0.249690,0,0);}
.m14{transform:matrix(0.242589,0.035788,-0.087465,0.234201,0,0);-ms-transform:matrix(0.242589,0.035788,-0.087465,0.234201,0,0);-webkit-transform:matrix(0.242589,0.035788,-0.087465,0.234201,0,0);}
.m11{transform:matrix(0.243195,0.031509,-0.083302,0.235713,0,0);-ms-transform:matrix(0.243195,0.031509,-0.083302,0.235713,0,0);-webkit-transform:matrix(0.243195,0.031509,-0.083302,0.235713,0,0);}
.m1a{transform:matrix(0.243664,-0.028363,-0.023339,0.248908,0,0);-ms-transform:matrix(0.243664,-0.028363,-0.023339,0.248908,0,0);-webkit-transform:matrix(0.243664,-0.028363,-0.023339,0.248908,0,0);}
.m15{transform:matrix(0.243708,0.027308,-0.079199,0.237123,0,0);-ms-transform:matrix(0.243708,0.027308,-0.079199,0.237123,0,0);-webkit-transform:matrix(0.243708,0.027308,-0.079199,0.237123,0,0);}
.m16{transform:matrix(0.244569,0.018359,-0.070406,0.239881,0,0);-ms-transform:matrix(0.244569,0.018359,-0.070406,0.239881,0,0);-webkit-transform:matrix(0.244569,0.018359,-0.070406,0.239881,0,0);}
.m17{transform:matrix(0.245069,0.010122,-0.062244,0.242127,0,0);-ms-transform:matrix(0.245069,0.010122,-0.062244,0.242127,0,0);-webkit-transform:matrix(0.245069,0.010122,-0.062244,0.242127,0,0);}
.m19{transform:matrix(0.245114,-0.009635,-0.042433,0.246373,0,0);-ms-transform:matrix(0.245114,-0.009635,-0.042433,0.246373,0,0);-webkit-transform:matrix(0.245114,-0.009635,-0.042433,0.246373,0,0);}
.m18{transform:matrix(0.245287,0.001224,-0.053366,0.244238,0,0);-ms-transform:matrix(0.245287,0.001224,-0.053366,0.244238,0,0);-webkit-transform:matrix(0.245287,0.001224,-0.053366,0.244238,0,0);}
.m6{transform:matrix(0.245293,0.000000,-0.052138,0.244503,0,0);-ms-transform:matrix(0.245293,0.000000,-0.052138,0.244503,0,0);-webkit-transform:matrix(0.245293,0.000000,-0.052138,0.244503,0,0);}
.m1{transform:matrix(0.246922,0.000000,-0.039108,0.246922,0,0);-ms-transform:matrix(0.246922,0.000000,-0.039108,0.246922,0,0);-webkit-transform:matrix(0.246922,0.000000,-0.039108,0.246922,0,0);}
.m5{transform:matrix(0.248379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248379,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);}
.m30{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-20.160000px;}
.v7{vertical-align:-12.960000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:15.840000px;}
.v6{vertical-align:17.280000px;}
.v3{vertical-align:20.160000px;}
.v2{vertical-align:22.498560px;}
.v1{vertical-align:72.000000px;}
.lsb{letter-spacing:-0.918000px;}
.ls21{letter-spacing:-0.912000px;}
.ls1b{letter-spacing:-0.865292px;}
.ls39{letter-spacing:-0.489600px;}
.ls3a{letter-spacing:-0.326400px;}
.ls29{letter-spacing:-0.226800px;}
.ls50{letter-spacing:-0.129600px;}
.ls4d{letter-spacing:-0.043200px;}
.ls17{letter-spacing:-0.028800px;}
.ls2e{letter-spacing:-0.024000px;}
.ls1c{letter-spacing:-0.021600px;}
.ls2b{letter-spacing:-0.018000px;}
.ls19{letter-spacing:-0.017280px;}
.ls1a{letter-spacing:-0.015840px;}
.ls6{letter-spacing:-0.014400px;}
.ls2a{letter-spacing:-0.012000px;}
.lsc{letter-spacing:-0.010307px;}
.lsd{letter-spacing:-0.010200px;}
.ls5{letter-spacing:-0.009600px;}
.ls51{letter-spacing:-0.007290px;}
.ls26{letter-spacing:-0.005100px;}
.ls36{letter-spacing:-0.004800px;}
.ls3d{letter-spacing:-0.003075px;}
.ls4{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.002160px;}
.ls14{letter-spacing:0.004320px;}
.ls16{letter-spacing:0.004348px;}
.ls33{letter-spacing:0.005100px;}
.ls15{letter-spacing:0.008640px;}
.ls20{letter-spacing:0.010800px;}
.ls9{letter-spacing:0.013800px;}
.lse{letter-spacing:0.017100px;}
.ls3b{letter-spacing:0.018450px;}
.ls3e{letter-spacing:0.021525px;}
.ls8{letter-spacing:0.021600px;}
.ls7{letter-spacing:0.021869px;}
.ls1e{letter-spacing:0.025200px;}
.lsf{letter-spacing:0.033600px;}
.ls38{letter-spacing:0.070800px;}
.ls13{letter-spacing:0.120000px;}
.ls4b{letter-spacing:0.209100px;}
.ls32{letter-spacing:0.210000px;}
.ls23{letter-spacing:0.240000px;}
.lsa{letter-spacing:0.258000px;}
.ls12{letter-spacing:0.264000px;}
.ls24{letter-spacing:0.270000px;}
.ls1{letter-spacing:0.276000px;}
.ls3{letter-spacing:0.282000px;}
.ls2{letter-spacing:0.288000px;}
.ls10{letter-spacing:0.294000px;}
.ls1d{letter-spacing:0.300000px;}
.ls11{letter-spacing:0.306000px;}
.ls31{letter-spacing:0.312000px;}
.ls2c{letter-spacing:0.318000px;}
.ls43{letter-spacing:0.324000px;}
.ls35{letter-spacing:0.342000px;}
.ls22{letter-spacing:0.367200px;}
.ls41{letter-spacing:0.437400px;}
.ls4c{letter-spacing:0.453900px;}
.ls4a{letter-spacing:0.459000px;}
.ls4e{letter-spacing:0.464100px;}
.ls49{letter-spacing:0.465600px;}
.ls45{letter-spacing:0.470400px;}
.ls4f{letter-spacing:0.474300px;}
.ls48{letter-spacing:0.480000px;}
.ls46{letter-spacing:0.484800px;}
.ls47{letter-spacing:0.489600px;}
.ls2d{letter-spacing:0.600000px;}
.ls44{letter-spacing:0.900000px;}
.ls28{letter-spacing:0.945000px;}
.ls40{letter-spacing:1.026000px;}
.ls37{letter-spacing:1.161000px;}
.ls1f{letter-spacing:1.242000px;}
.ls0{letter-spacing:1.314000px;}
.ls42{letter-spacing:1.341000px;}
.ls2f{letter-spacing:1.440000px;}
.ls3f{letter-spacing:1.467000px;}
.ls30{letter-spacing:1.575000px;}
.ls34{letter-spacing:1.602000px;}
.ls27{letter-spacing:1.620000px;}
.ls3c{letter-spacing:8.296170px;}
.ls25{letter-spacing:17.040000px;}
.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;}
}
.ws3{word-spacing:-127.500000px;}
.ws4{word-spacing:-105.000000px;}
.ws83{word-spacing:-37.044000px;}
.wsc9{word-spacing:-24.696000px;}
.ws1{word-spacing:-17.493000px;}
.ws94{word-spacing:-16.844484px;}
.wsb2{word-spacing:-15.888000px;}
.wsb0{word-spacing:-15.882000px;}
.wsaf{word-spacing:-15.324000px;}
.ws4e{word-spacing:-15.300000px;}
.ws4d{word-spacing:-15.294000px;}
.ws0{word-spacing:-15.288000px;}
.ws2d{word-spacing:-15.282000px;}
.ws78{word-spacing:-15.264000px;}
.wsb3{word-spacing:-13.719000px;}
.wsb5{word-spacing:-13.713900px;}
.wsb4{word-spacing:-13.209000px;}
.wsb7{word-spacing:-13.203900px;}
.ws30{word-spacing:-12.018240px;}
.ws2{word-spacing:-11.990400px;}
.ws8a{word-spacing:-11.985600px;}
.ws8d{word-spacing:-11.510400px;}
.ws89{word-spacing:-8.700000px;}
.ws92{word-spacing:-8.548544px;}
.ws93{word-spacing:-8.545469px;}
.ws4a{word-spacing:-7.494000px;}
.ws34{word-spacing:-6.048346px;}
.ws2e{word-spacing:-6.009120px;}
.ws33{word-spacing:-5.178706px;}
.ws2f{word-spacing:-3.985920px;}
.ws53{word-spacing:-1.266000px;}
.ws1a{word-spacing:-1.194000px;}
.ws5f{word-spacing:-1.158000px;}
.ws74{word-spacing:-0.588000px;}
.ws99{word-spacing:-0.558000px;}
.wsa1{word-spacing:-0.546000px;}
.ws2c{word-spacing:-0.486000px;}
.ws70{word-spacing:-0.480000px;}
.ws79{word-spacing:-0.462000px;}
.wsa5{word-spacing:-0.450000px;}
.wsb1{word-spacing:-0.420000px;}
.wsb6{word-spacing:-0.402900px;}
.ws75{word-spacing:-0.360000px;}
.ws2b{word-spacing:-0.348000px;}
.ws60{word-spacing:-0.270000px;}
.wsab{word-spacing:-0.258000px;}
.ws58{word-spacing:-0.204000px;}
.ws7c{word-spacing:-0.192000px;}
.wsa4{word-spacing:-0.186000px;}
.ws91{word-spacing:-0.182400px;}
.ws1b{word-spacing:-0.168300px;}
.ws7d{word-spacing:-0.156000px;}
.ws7f{word-spacing:-0.150000px;}
.ws38{word-spacing:-0.147900px;}
.ws69{word-spacing:-0.144000px;}
.ws52{word-spacing:-0.138000px;}
.ws3e{word-spacing:-0.136800px;}
.ws9e{word-spacing:-0.132600px;}
.ws41{word-spacing:-0.132000px;}
.ws81{word-spacing:-0.126000px;}
.ws4f{word-spacing:-0.122400px;}
.ws72{word-spacing:-0.120000px;}
.wsa9{word-spacing:-0.114000px;}
.ws24{word-spacing:-0.109200px;}
.ws3f{word-spacing:-0.108000px;}
.wscd{word-spacing:-0.107100px;}
.ws6e{word-spacing:-0.102000px;}
.wsa6{word-spacing:-0.096000px;}
.ws7b{word-spacing:-0.090000px;}
.ws80{word-spacing:-0.086700px;}
.ws62{word-spacing:-0.084000px;}
.ws9c{word-spacing:-0.078000px;}
.ws29{word-spacing:-0.072000px;}
.ws2a{word-spacing:-0.071400px;}
.wsca{word-spacing:-0.070200px;}
.ws27{word-spacing:-0.066000px;}
.ws46{word-spacing:-0.060000px;}
.wsce{word-spacing:-0.056100px;}
.ws40{word-spacing:-0.054000px;}
.ws4b{word-spacing:-0.048000px;}
.ws6b{word-spacing:-0.045900px;}
.wsac{word-spacing:-0.043200px;}
.ws18{word-spacing:-0.042000px;}
.wsd3{word-spacing:-0.040800px;}
.ws19{word-spacing:-0.036000px;}
.ws1e{word-spacing:-0.033600px;}
.ws14{word-spacing:-0.032400px;}
.wsc8{word-spacing:-0.030600px;}
.ws10{word-spacing:-0.030000px;}
.ws98{word-spacing:-0.028800px;}
.wsd2{word-spacing:-0.025500px;}
.wsf{word-spacing:-0.024000px;}
.ws64{word-spacing:-0.021600px;}
.ws85{word-spacing:-0.019200px;}
.wsd{word-spacing:-0.018000px;}
.ws44{word-spacing:-0.016800px;}
.ws55{word-spacing:-0.015300px;}
.ws7e{word-spacing:-0.014400px;}
.wse{word-spacing:-0.012000px;}
.ws48{word-spacing:-0.010800px;}
.wsc6{word-spacing:-0.010200px;}
.ws1f{word-spacing:-0.009600px;}
.ws97{word-spacing:-0.009225px;}
.ws45{word-spacing:-0.008400px;}
.ws9d{word-spacing:-0.007200px;}
.ws15{word-spacing:-0.006900px;}
.ws96{word-spacing:-0.006150px;}
.ws9{word-spacing:-0.006000px;}
.ws21{word-spacing:-0.005700px;}
.wsa0{word-spacing:-0.005400px;}
.ws5e{word-spacing:-0.005100px;}
.ws36{word-spacing:-0.004800px;}
.ws3d{word-spacing:-0.002174px;}
.ws3b{word-spacing:-0.002160px;}
.ws5{word-spacing:0.000000px;}
.ws35{word-spacing:0.004800px;}
.wsc5{word-spacing:0.005100px;}
.ws9f{word-spacing:0.005400px;}
.ws12{word-spacing:0.006000px;}
.ws8e{word-spacing:0.007200px;}
.wsad{word-spacing:0.008400px;}
.ws6{word-spacing:0.009600px;}
.ws3c{word-spacing:0.009900px;}
.ws56{word-spacing:0.010200px;}
.ws68{word-spacing:0.010800px;}
.ws13{word-spacing:0.012000px;}
.ws84{word-spacing:0.014400px;}
.ws76{word-spacing:0.016800px;}
.wsc{word-spacing:0.018000px;}
.ws90{word-spacing:0.019200px;}
.ws50{word-spacing:0.020400px;}
.ws8c{word-spacing:0.021600px;}
.wsa{word-spacing:0.024000px;}
.wscf{word-spacing:0.025500px;}
.ws63{word-spacing:0.028800px;}
.ws16{word-spacing:0.030000px;}
.wsd0{word-spacing:0.030600px;}
.wscb{word-spacing:0.032400px;}
.ws86{word-spacing:0.033600px;}
.ws57{word-spacing:0.035700px;}
.ws7{word-spacing:0.036000px;}
.ws20{word-spacing:0.038400px;}
.ws88{word-spacing:0.040800px;}
.ws17{word-spacing:0.042000px;}
.ws8f{word-spacing:0.043200px;}
.ws5c{word-spacing:0.045900px;}
.ws11{word-spacing:0.048000px;}
.ws8{word-spacing:0.054000px;}
.wsd1{word-spacing:0.056100px;}
.wsb{word-spacing:0.060000px;}
.ws5d{word-spacing:0.061200px;}
.wscc{word-spacing:0.064800px;}
.ws1d{word-spacing:0.066000px;}
.wsc7{word-spacing:0.066300px;}
.ws1c{word-spacing:0.072000px;}
.ws39{word-spacing:0.078000px;}
.wsb9{word-spacing:0.081600px;}
.ws28{word-spacing:0.084000px;}
.ws6a{word-spacing:0.090000px;}
.ws25{word-spacing:0.092400px;}
.ws3a{word-spacing:0.093600px;}
.ws51{word-spacing:0.096000px;}
.wsbc{word-spacing:0.100800px;}
.ws73{word-spacing:0.102000px;}
.ws5b{word-spacing:0.108000px;}
.ws82{word-spacing:0.112200px;}
.ws26{word-spacing:0.114000px;}
.ws54{word-spacing:0.120000px;}
.ws47{word-spacing:0.126000px;}
.ws43{word-spacing:0.132000px;}
.ws65{word-spacing:0.138000px;}
.ws5a{word-spacing:0.144000px;}
.wsc4{word-spacing:0.148800px;}
.ws49{word-spacing:0.150000px;}
.ws66{word-spacing:0.156000px;}
.ws4c{word-spacing:0.168000px;}
.ws95{word-spacing:0.174000px;}
.wsbb{word-spacing:0.177600px;}
.ws6d{word-spacing:0.180000px;}
.wsbd{word-spacing:0.187200px;}
.ws59{word-spacing:0.198000px;}
.ws42{word-spacing:0.204000px;}
.ws61{word-spacing:0.210000px;}
.ws87{word-spacing:0.216000px;}
.wsa3{word-spacing:0.222000px;}
.ws71{word-spacing:0.246000px;}
.wsa2{word-spacing:0.264000px;}
.wsc2{word-spacing:0.292800px;}
.wsa7{word-spacing:0.318000px;}
.wsc3{word-spacing:0.321600px;}
.ws37{word-spacing:0.336000px;}
.wsae{word-spacing:0.342000px;}
.ws77{word-spacing:0.384000px;}
.ws6f{word-spacing:0.396000px;}
.wsaa{word-spacing:0.414000px;}
.wsbf{word-spacing:0.441600px;}
.wsa8{word-spacing:0.444000px;}
.ws6c{word-spacing:0.480000px;}
.ws8b{word-spacing:0.492000px;}
.ws67{word-spacing:0.522000px;}
.wsba{word-spacing:0.523200px;}
.ws23{word-spacing:0.540000px;}
.ws9a{word-spacing:0.552000px;}
.ws9b{word-spacing:0.624000px;}
.wsbe{word-spacing:0.676800px;}
.wsc0{word-spacing:0.729600px;}
.wsc1{word-spacing:0.768000px;}
.ws7a{word-spacing:1.440000px;}
.ws22{word-spacing:1.476000px;}
.ws32{word-spacing:216.488160px;}
.ws31{word-spacing:349.738560px;}
.wsb8{word-spacing:722.296800px;}
._6{margin-left:-54.852000px;}
._4{margin-left:-49.140000px;}
._22{margin-left:-17.772000px;}
._1e{margin-left:-8.035200px;}
._21{margin-left:-6.501600px;}
._3{margin-left:-5.250000px;}
._5{margin-left:-3.612000px;}
._1c{margin-left:-2.592000px;}
._1{margin-left:-1.182000px;}
._0{width:1.200000px;}
._23{width:2.413200px;}
._a{width:7.524000px;}
._24{width:11.740800px;}
._1d{width:12.887700px;}
._1f{width:14.400000px;}
._2{width:16.752000px;}
._20{width:17.772000px;}
._9{width:24.018000px;}
._27{width:31.701600px;}
._28{width:68.294100px;}
._16{width:125.424000px;}
._2a{width:128.622000px;}
._12{width:150.312000px;}
._c{width:185.244000px;}
._19{width:195.996000px;}
._f{width:224.880000px;}
._1a{width:232.890000px;}
._e{width:235.758000px;}
._17{width:257.130000px;}
._2f{width:280.418400px;}
._b{width:283.422000px;}
._d{width:300.258000px;}
._1b{width:341.352000px;}
._15{width:359.370000px;}
._26{width:374.768400px;}
._10{width:380.640000px;}
._2b{width:382.127700px;}
._7{width:395.802000px;}
._18{width:411.612000px;}
._11{width:417.198000px;}
._2d{width:423.855900px;}
._8{width:437.334000px;}
._2e{width:480.277200px;}
._29{width:482.337600px;}
._14{width:529.962000px;}
._2c{width:554.645400px;}
._25{width:619.940700px;}
._13{width:642.780000px;}
.fc6{color:rgb(11,20,35);}
.fc4{color:rgb(25,26,33);}
.fc3{color:rgb(65,102,121);}
.fc5{color:rgb(0,15,36);}
.fc2{color:transparent;}
.fc7{color:rgb(35,31,32);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fse{font-size:14.400000px;}
.fsf{font-size:19.800000px;}
.fsd{font-size:21.600000px;}
.fs11{font-size:21.741000px;}
.fs13{font-size:28.200000px;}
.fs3f{font-size:30.000000px;}
.fs2b{font-size:30.744269px;}
.fs2a{font-size:30.745201px;}
.fs2c{font-size:30.745797px;}
.fs29{font-size:30.746751px;}
.fs2d{font-size:30.746917px;}
.fs27{font-size:30.747335px;}
.fs28{font-size:30.747475px;}
.fs2e{font-size:30.748211px;}
.fs2f{font-size:30.749152px;}
.fs14{font-size:30.749331px;}
.fs25{font-size:30.749927px;}
.fs26{font-size:30.750151px;}
.fs15{font-size:30.750159px;}
.fs30{font-size:30.750799px;}
.fs31{font-size:30.753350px;}
.fs24{font-size:30.753956px;}
.fs23{font-size:30.754231px;}
.fs32{font-size:30.756301px;}
.fs22{font-size:30.756335px;}
.fs1f{font-size:30.757474px;}
.fs33{font-size:30.758738px;}
.fs21{font-size:30.759376px;}
.fs34{font-size:30.760763px;}
.fs20{font-size:30.761831px;}
.fs1e{font-size:30.762089px;}
.fs1d{font-size:30.766540px;}
.fs35{font-size:30.767870px;}
.fs36{font-size:30.770006px;}
.fs37{font-size:30.772204px;}
.fs38{font-size:30.774098px;}
.fs1c{font-size:30.774217px;}
.fs1b{font-size:30.776348px;}
.fs39{font-size:30.776959px;}
.fs3a{font-size:30.780696px;}
.fs1a{font-size:30.780895px;}
.fs3b{font-size:30.783278px;}
.fs19{font-size:30.785765px;}
.fs3c{font-size:30.788290px;}
.fs18{font-size:30.791941px;}
.fs3d{font-size:30.792213px;}
.fs17{font-size:30.795792px;}
.fs16{font-size:30.799670px;}
.fs12{font-size:34.800000px;}
.fs10{font-size:43.200000px;}
.fs1{font-size:48.000000px;}
.fs7{font-size:51.000000px;}
.fs6{font-size:51.535848px;}
.fs3e{font-size:54.000000px;}
.fsa{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs5{font-size:69.000000px;}
.fsb{font-size:72.000000px;}
.fs40{font-size:72.897477px;}
.fsc{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.fs3{font-size:109.346215px;}
.fs2{font-size:171.000000px;}
.fs9{font-size:420.000000px;}
.fs8{font-size:510.000000px;}
.y0{bottom:0.000000px;}
.y25e{bottom:8.507296px;}
.y26a{bottom:30.211650px;}
.y269{bottom:31.308450px;}
.y268{bottom:32.834100px;}
.y267{bottom:34.749000px;}
.y266{bottom:35.978100px;}
.y265{bottom:38.177700px;}
.y264{bottom:39.835650px;}
.y25a{bottom:42.316645px;}
.y1{bottom:43.020000px;}
.y263{bottom:43.251300px;}
.y25b{bottom:43.255957px;}
.y262{bottom:46.214550px;}
.y25f{bottom:47.226570px;}
.y261{bottom:50.158650px;}
.y172{bottom:52.920000px;}
.y159{bottom:53.100000px;}
.y113{bottom:53.280000px;}
.y21e{bottom:53.460000px;}
.y213{bottom:53.640000px;}
.y1f6{bottom:53.820000px;}
.y199{bottom:54.360000px;}
.y2bf{bottom:55.980000px;}
.y2d5{bottom:56.160000px;}
.y2a1{bottom:56.340000px;}
.y271{bottom:58.089600px;}
.y272{bottom:58.177800px;}
.y270{bottom:58.368750px;}
.ya1{bottom:58.500000px;}
.y26f{bottom:59.105850px;}
.y273{bottom:59.703600px;}
.y26e{bottom:60.373050px;}
.y396{bottom:60.480000px;}
.y38b{bottom:60.660000px;}
.y274{bottom:60.894450px;}
.y26d{bottom:62.029650px;}
.y3{bottom:62.280000px;}
.y275{bottom:63.013500px;}
.y318{bottom:63.540000px;}
.y26c{bottom:63.925200px;}
.y3d{bottom:64.260000px;}
.y94{bottom:64.440000px;}
.y276{bottom:65.533200px;}
.y26b{bottom:66.305550px;}
.y364{bottom:67.683000px;}
.y1d0{bottom:68.040000px;}
.y277{bottom:68.846100px;}
.y25c{bottom:70.184524px;}
.y171{bottom:70.920000px;}
.y158{bottom:71.100000px;}
.y112{bottom:71.280000px;}
.y2db{bottom:71.280900px;}
.y21d{bottom:71.460000px;}
.y212{bottom:71.640000px;}
.y1f5{bottom:71.820000px;}
.ya0{bottom:72.000000px;}
.y198{bottom:72.360000px;}
.y278{bottom:72.882750px;}
.y1b7{bottom:72.900000px;}
.y125{bottom:73.080000px;}
.y2be{bottom:73.980000px;}
.y2d4{bottom:74.160000px;}
.y2a0{bottom:74.340000px;}
.y279{bottom:77.569950px;}
.y395{bottom:78.480000px;}
.y25d{bottom:81.000128px;}
.y363{bottom:81.182700px;}
.y317{bottom:81.540000px;}
.y3c{bottom:82.260000px;}
.y93{bottom:82.440000px;}
.y9f{bottom:85.500000px;}
.y1cf{bottom:86.040000px;}
.y259{bottom:87.754500px;}
.y170{bottom:88.920000px;}
.y157{bottom:89.100000px;}
.y111{bottom:89.280000px;}
.y2da{bottom:89.280450px;}
.y21c{bottom:89.460000px;}
.y211{bottom:89.640000px;}
.y1f4{bottom:89.820000px;}
.y30a{bottom:90.000000px;}
.y197{bottom:90.360000px;}
.y1b6{bottom:90.900000px;}
.y124{bottom:91.080000px;}
.y2bd{bottom:91.980000px;}
.y2d3{bottom:92.160000px;}
.y29f{bottom:92.340000px;}
.y362{bottom:94.682400px;}
.y394{bottom:96.480000px;}
.y27a{bottom:97.016400px;}
.y9e{bottom:99.000000px;}
.y316{bottom:99.540000px;}
.y3b{bottom:100.260000px;}
.y92{bottom:100.440000px;}
.y27b{bottom:100.644750px;}
.y260{bottom:101.627250px;}
.y27c{bottom:103.086900px;}
.y2a{bottom:104.040000px;}
.y16f{bottom:106.920000px;}
.y27d{bottom:106.972200px;}
.y156{bottom:107.100000px;}
.y110{bottom:107.280000px;}
.y21b{bottom:107.460000px;}
.y210{bottom:107.640000px;}
.y1f3{bottom:107.820000px;}
.y309{bottom:108.000000px;}
.y361{bottom:108.182100px;}
.y196{bottom:108.360000px;}
.y1b5{bottom:108.900000px;}
.y123{bottom:109.080000px;}
.y2bc{bottom:109.980000px;}
.y2d2{bottom:110.160000px;}
.y29e{bottom:110.340000px;}
.y27e{bottom:110.913450px;}
.y9d{bottom:112.500000px;}
.y393{bottom:114.480000px;}
.y27f{bottom:115.083900px;}
.y29{bottom:117.540000px;}
.y3a{bottom:118.260000px;}
.y91{bottom:118.440000px;}
.y360{bottom:121.681800px;}
.y1ce{bottom:122.040000px;}
.y315{bottom:122.940000px;}
.y280{bottom:123.233700px;}
.y16e{bottom:124.920000px;}
.y155{bottom:125.100000px;}
.y10f{bottom:125.280000px;}
.y21a{bottom:125.460000px;}
.y20f{bottom:125.640000px;}
.y1f2{bottom:125.820000px;}
.y9c{bottom:126.000000px;}
.y195{bottom:126.360000px;}
.y1b4{bottom:126.900000px;}
.y122{bottom:127.080000px;}
.y2bb{bottom:127.980000px;}
.y2d1{bottom:128.160000px;}
.y29d{bottom:128.340000px;}
.y281{bottom:128.518500px;}
.y258{bottom:129.631800px;}
.y28{bottom:131.040000px;}
.y392{bottom:132.480000px;}
.y282{bottom:133.696350px;}
.y35f{bottom:135.181500px;}
.y39{bottom:136.260000px;}
.y90{bottom:136.440000px;}
.y283{bottom:139.062000px;}
.y9b{bottom:139.500000px;}
.y1cd{bottom:140.040000px;}
.y314{bottom:140.940000px;}
.y28a{bottom:141.957900px;}
.y284{bottom:142.780050px;}
.y16d{bottom:142.920000px;}
.y154{bottom:143.100000px;}
.y10e{bottom:143.280000px;}
.y219{bottom:143.460000px;}
.y20e{bottom:143.640000px;}
.y1f1{bottom:143.820000px;}
.y308{bottom:144.000000px;}
.y194{bottom:144.360000px;}
.y27{bottom:144.540000px;}
.y1b3{bottom:144.900000px;}
.y121{bottom:145.080000px;}
.y2ba{bottom:145.980000px;}
.y2d0{bottom:146.160000px;}
.y29c{bottom:146.340000px;}
.y285{bottom:148.565700px;}
.y35e{bottom:148.681200px;}
.y289{bottom:149.476200px;}
.y391{bottom:150.480000px;}
.y9a{bottom:153.000000px;}
.y286{bottom:154.226400px;}
.y38{bottom:154.260000px;}
.y8f{bottom:154.440000px;}
.y26{bottom:158.040000px;}
.y313{bottom:158.940000px;}
.y287{bottom:160.398300px;}
.y16c{bottom:160.920000px;}
.y153{bottom:161.100000px;}
.y10d{bottom:161.280000px;}
.y218{bottom:161.460000px;}
.y20d{bottom:161.640000px;}
.y1f0{bottom:161.820000px;}
.y307{bottom:162.000000px;}
.y35d{bottom:162.180900px;}
.y193{bottom:162.360000px;}
.y1b2{bottom:162.900000px;}
.y120{bottom:163.080000px;}
.y2b9{bottom:163.980000px;}
.y2cf{bottom:164.160000px;}
.y29b{bottom:164.340000px;}
.y288{bottom:164.737350px;}
.y99{bottom:166.500000px;}
.y25{bottom:171.540000px;}
.y37{bottom:172.260000px;}
.y8e{bottom:172.440000px;}
.y35c{bottom:175.680600px;}
.y1cc{bottom:176.040000px;}
.y312{bottom:176.940000px;}
.y16b{bottom:178.920000px;}
.y152{bottom:179.100000px;}
.y10c{bottom:179.280000px;}
.y217{bottom:179.460000px;}
.y20c{bottom:179.640000px;}
.y1ef{bottom:179.820000px;}
.y98{bottom:180.000000px;}
.y192{bottom:180.360000px;}
.y1b1{bottom:180.900000px;}
.y11f{bottom:181.080000px;}
.y2b8{bottom:181.980000px;}
.y2ce{bottom:182.160000px;}
.y29a{bottom:182.340000px;}
.y390{bottom:186.480000px;}
.y35b{bottom:189.180300px;}
.y36{bottom:190.260000px;}
.y8d{bottom:190.440000px;}
.y97{bottom:193.500000px;}
.y1cb{bottom:194.040000px;}
.y311{bottom:194.940000px;}
.y16a{bottom:196.920000px;}
.y151{bottom:197.100000px;}
.y10b{bottom:197.280000px;}
.y216{bottom:197.460000px;}
.y20b{bottom:197.640000px;}
.y1ee{bottom:197.820000px;}
.y306{bottom:198.000000px;}
.y191{bottom:198.360000px;}
.y1b0{bottom:198.900000px;}
.y11e{bottom:199.080000px;}
.y2b7{bottom:199.980000px;}
.y2cd{bottom:200.160000px;}
.y299{bottom:200.340000px;}
.y35a{bottom:202.680000px;}
.y38f{bottom:204.480000px;}
.y96{bottom:207.000000px;}
.y35{bottom:208.260000px;}
.y8c{bottom:208.440000px;}
.y1ca{bottom:212.040000px;}
.y2{bottom:213.840000px;}
.y169{bottom:214.920000px;}
.y150{bottom:215.100000px;}
.y10a{bottom:215.280000px;}
.y215{bottom:215.460000px;}
.y20a{bottom:215.640000px;}
.y1ed{bottom:215.820000px;}
.y305{bottom:216.000000px;}
.y190{bottom:216.360000px;}
.y1af{bottom:216.900000px;}
.y11d{bottom:217.080000px;}
.y2b6{bottom:217.980000px;}
.y2cc{bottom:218.160000px;}
.y298{bottom:218.340000px;}
.y95{bottom:220.500000px;}
.y38e{bottom:222.480000px;}
.y359{bottom:225.540000px;}
.y34{bottom:226.260000px;}
.y8b{bottom:226.440000px;}
.y24{bottom:228.420000px;}
.y1c9{bottom:230.040000px;}
.y168{bottom:232.920000px;}
.y14f{bottom:233.100000px;}
.y109{bottom:233.280000px;}
.y214{bottom:233.460000px;}
.y209{bottom:233.640000px;}
.y1ec{bottom:233.820000px;}
.y304{bottom:234.000000px;}
.y18f{bottom:234.360000px;}
.y1ae{bottom:234.900000px;}
.y11c{bottom:235.080000px;}
.y2b5{bottom:235.980000px;}
.y2cb{bottom:236.160000px;}
.y297{bottom:236.340000px;}
.y358{bottom:238.140000px;}
.y38d{bottom:240.480000px;}
.y33{bottom:244.260000px;}
.y8a{bottom:244.440000px;}
.y23{bottom:246.420000px;}
.y1c8{bottom:248.040000px;}
.y167{bottom:250.920000px;}
.y14e{bottom:251.100000px;}
.y108{bottom:251.280000px;}
.y2e6{bottom:251.460000px;}
.y208{bottom:251.640000px;}
.y1eb{bottom:251.820000px;}
.y303{bottom:252.000000px;}
.y18e{bottom:252.360000px;}
.y1ad{bottom:252.900000px;}
.y11b{bottom:253.080000px;}
.y2b4{bottom:253.980000px;}
.y2ca{bottom:254.160000px;}
.y296{bottom:254.340000px;}
.y38c{bottom:258.480000px;}
.y32{bottom:262.260000px;}
.y89{bottom:262.440000px;}
.y357{bottom:263.700000px;}
.y22{bottom:264.420000px;}
.y1c7{bottom:266.040000px;}
.y166{bottom:268.920000px;}
.y14d{bottom:269.100000px;}
.y107{bottom:269.280000px;}
.y2e5{bottom:269.460000px;}
.y207{bottom:269.640000px;}
.y1ea{bottom:269.820000px;}
.y302{bottom:270.000000px;}
.y18d{bottom:270.360000px;}
.y1ac{bottom:270.900000px;}
.y11a{bottom:271.080000px;}
.y2b3{bottom:271.980000px;}
.y2c9{bottom:272.160000px;}
.y2a3{bottom:272.340000px;}
.y356{bottom:276.480000px;}
.y202{bottom:279.900000px;}
.y31{bottom:280.260000px;}
.y88{bottom:280.440000px;}
.y21{bottom:282.420000px;}
.y1c6{bottom:284.040000px;}
.y165{bottom:286.920000px;}
.y14c{bottom:287.100000px;}
.y106{bottom:287.280000px;}
.y2e4{bottom:287.460000px;}
.y206{bottom:287.640000px;}
.y1e9{bottom:287.820000px;}
.y301{bottom:288.000000px;}
.y18c{bottom:288.360000px;}
.y1ab{bottom:288.900000px;}
.y119{bottom:289.080000px;}
.y355{bottom:289.260000px;}
.y2b2{bottom:289.980000px;}
.y2c8{bottom:290.160000px;}
.y2a2{bottom:290.340000px;}
.y201{bottom:293.400000px;}
.y310{bottom:295.740000px;}
.y30{bottom:298.260000px;}
.y87{bottom:298.440000px;}
.y20{bottom:300.420000px;}
.y1c5{bottom:302.040000px;}
.y164{bottom:304.920000px;}
.y14b{bottom:305.100000px;}
.y105{bottom:305.280000px;}
.y2e3{bottom:305.460000px;}
.y205{bottom:305.640000px;}
.y1e8{bottom:305.820000px;}
.y300{bottom:306.000000px;}
.y18b{bottom:306.360000px;}
.ya3{bottom:306.900000px;}
.y118{bottom:307.080000px;}
.y2b1{bottom:307.980000px;}
.y2c7{bottom:308.160000px;}
.y295{bottom:308.340000px;}
.y30f{bottom:313.740000px;}
.y354{bottom:314.640000px;}
.y2f{bottom:316.260000px;}
.y86{bottom:316.440000px;}
.y1f{bottom:318.420000px;}
.y1c4{bottom:320.040000px;}
.y200{bottom:320.400000px;}
.y163{bottom:322.920000px;}
.y14a{bottom:323.100000px;}
.y104{bottom:323.280000px;}
.y2e2{bottom:323.460000px;}
.y204{bottom:323.640000px;}
.y1e7{bottom:323.820000px;}
.y2ff{bottom:324.000000px;}
.y18a{bottom:324.360000px;}
.y1aa{bottom:324.900000px;}
.y117{bottom:325.080000px;}
.y2b0{bottom:325.980000px;}
.y2c6{bottom:326.160000px;}
.y294{bottom:326.340000px;}
.y353{bottom:327.420000px;}
.y38a{bottom:329.940000px;}
.y30e{bottom:331.740000px;}
.y1ff{bottom:333.900000px;}
.y2e{bottom:334.260000px;}
.y85{bottom:334.440000px;}
.y1e{bottom:336.420000px;}
.y1c3{bottom:339.300000px;}
.y352{bottom:340.200000px;}
.y162{bottom:340.920000px;}
.y149{bottom:341.100000px;}
.y103{bottom:341.280000px;}
.y2e1{bottom:341.460000px;}
.y203{bottom:341.640000px;}
.y1e6{bottom:341.820000px;}
.y2fe{bottom:342.000000px;}
.y189{bottom:342.360000px;}
.y1a9{bottom:342.900000px;}
.y116{bottom:343.080000px;}
.y2af{bottom:343.980000px;}
.y2c5{bottom:344.160000px;}
.y293{bottom:344.340000px;}
.y389{bottom:346.140000px;}
.y1fe{bottom:347.400000px;}
.y84{bottom:352.440000px;}
.y351{bottom:352.980000px;}
.y1d{bottom:354.420000px;}
.y30d{bottom:355.140000px;}
.y161{bottom:358.920000px;}
.y148{bottom:359.100000px;}
.y179{bottom:359.279550px;}
.y102{bottom:359.280000px;}
.y2e0{bottom:359.460000px;}
.y1c2{bottom:359.640000px;}
.y1e5{bottom:359.820000px;}
.y2fd{bottom:360.000000px;}
.y188{bottom:360.360000px;}
.y1a8{bottom:360.900000px;}
.y1d3{bottom:361.080000px;}
.y2ae{bottom:361.980000px;}
.y2c4{bottom:362.160000px;}
.y292{bottom:362.340000px;}
.y350{bottom:365.760000px;}
.y83{bottom:370.440000px;}
.y1c{bottom:372.420000px;}
.y30c{bottom:373.140000px;}
.y1fd{bottom:374.400000px;}
.y160{bottom:376.920000px;}
.y147{bottom:377.100000px;}
.y101{bottom:377.280000px;}
.y24c{bottom:377.460000px;}
.y1c1{bottom:377.640000px;}
.y1e4{bottom:377.820000px;}
.y2fc{bottom:378.000000px;}
.y187{bottom:378.360000px;}
.y34f{bottom:378.540000px;}
.y1a7{bottom:378.900000px;}
.y234{bottom:379.080000px;}
.y2ad{bottom:379.980000px;}
.y2c3{bottom:380.160000px;}
.y291{bottom:380.340000px;}
.y1fc{bottom:387.900000px;}
.y82{bottom:388.440000px;}
.y18{bottom:390.420000px;}
.y30b{bottom:391.140000px;}
.y233{bottom:392.580000px;}
.y1d2{bottom:392.940000px;}
.y115{bottom:392.940300px;}
.y388{bottom:394.740000px;}
.y15f{bottom:394.920000px;}
.y146{bottom:395.100000px;}
.y100{bottom:395.280000px;}
.y24b{bottom:395.460000px;}
.y1c0{bottom:395.640000px;}
.y1e3{bottom:395.820000px;}
.y2fb{bottom:396.000000px;}
.y186{bottom:396.360000px;}
.y1a6{bottom:396.900000px;}
.y2ac{bottom:397.980000px;}
.y2c2{bottom:398.160000px;}
.y290{bottom:398.340000px;}
.yd9{bottom:399.741375px;}
.yd6{bottom:400.262072px;}
.y2de{bottom:400.680000px;}
.y1fb{bottom:401.400000px;}
.y34e{bottom:403.920000px;}
.y232{bottom:406.080000px;}
.yd8{bottom:406.082682px;}
.y81{bottom:406.440000px;}
.yd5{bottom:406.603379px;}
.y17{bottom:408.420000px;}
.y5c{bottom:410.940000px;}
.yd7{bottom:412.423988px;}
.y15e{bottom:412.920000px;}
.yd4{bottom:412.944685px;}
.y145{bottom:413.100000px;}
.yff{bottom:413.280000px;}
.y24a{bottom:413.460000px;}
.y1bf{bottom:413.640000px;}
.y1e2{bottom:413.820000px;}
.y2fa{bottom:414.000000px;}
.y185{bottom:414.360000px;}
.y1a5{bottom:414.900000px;}
.y2ab{bottom:415.980000px;}
.y2c1{bottom:416.160000px;}
.y28f{bottom:416.340000px;}
.y2dc{bottom:417.960000px;}
.y231{bottom:419.580000px;}
.y114{bottom:419.940000px;}
.y1d4{bottom:423.360000px;}
.yd3{bottom:423.747788px;}
.y80{bottom:424.440000px;}
.y16{bottom:426.420000px;}
.y1fa{bottom:428.400000px;}
.y5b{bottom:428.940000px;}
.yd2{bottom:430.089094px;}
.y15d{bottom:430.920000px;}
.y144{bottom:431.100000px;}
.yfe{bottom:431.280000px;}
.y249{bottom:431.460000px;}
.y1be{bottom:431.640000px;}
.y1e1{bottom:431.820000px;}
.y2f9{bottom:432.000000px;}
.y184{bottom:432.360000px;}
.y1a4{bottom:432.900000px;}
.y230{bottom:433.080000px;}
.y2c0{bottom:434.160000px;}
.y28e{bottom:434.340000px;}
.y1f9{bottom:441.900000px;}
.y7f{bottom:442.440000px;}
.y387{bottom:444.240000px;}
.y15{bottom:444.420000px;}
.y22f{bottom:446.580000px;}
.y5a{bottom:446.940000px;}
.y3a4{bottom:448.195050px;}
.y15c{bottom:448.920000px;}
.y143{bottom:449.100000px;}
.yfd{bottom:449.280000px;}
.y248{bottom:449.460000px;}
.y1bd{bottom:449.640000px;}
.y1e0{bottom:449.820000px;}
.y2f8{bottom:450.000000px;}
.y183{bottom:450.360000px;}
.y334{bottom:450.720000px;}
.y1a3{bottom:450.900000px;}
.y1f8{bottom:455.400000px;}
.y22e{bottom:460.080000px;}
.y7e{bottom:460.440000px;}
.y386{bottom:462.240000px;}
.y14{bottom:462.420000px;}
.y59{bottom:464.940000px;}
.y3a3{bottom:466.195500px;}
.y15b{bottom:466.920000px;}
.y142{bottom:467.100000px;}
.yfc{bottom:467.280000px;}
.y247{bottom:467.460000px;}
.y1bc{bottom:467.640000px;}
.y1df{bottom:467.820000px;}
.y2f7{bottom:468.000000px;}
.y182{bottom:468.360000px;}
.y1a2{bottom:468.900000px;}
.ye2{bottom:470.851838px;}
.y22d{bottom:473.580000px;}
.y2d6{bottom:473.760000px;}
.y28d{bottom:473.940000px;}
.ye1{bottom:477.193144px;}
.y7d{bottom:478.440000px;}
.y385{bottom:480.240000px;}
.y13{bottom:480.420000px;}
.ye0{bottom:483.534451px;}
.y3a2{bottom:484.195950px;}
.y15a{bottom:484.920000px;}
.y141{bottom:485.100000px;}
.yfb{bottom:485.280000px;}
.y246{bottom:485.460000px;}
.y1bb{bottom:485.640000px;}
.y1de{bottom:485.820000px;}
.y2f6{bottom:486.000000px;}
.yd1{bottom:486.253163px;}
.y181{bottom:486.360000px;}
.y1a1{bottom:486.900000px;}
.y22c{bottom:487.080000px;}
.y58{bottom:487.440000px;}
.yd0{bottom:492.594469px;}
.y7c{bottom:496.440000px;}
.y384{bottom:498.240000px;}
.y12{bottom:498.420000px;}
.y22b{bottom:500.580000px;}
.y3a1{bottom:502.196400px;}
.y34d{bottom:502.560000px;}
.y12f{bottom:502.920000px;}
.y140{bottom:503.100000px;}
.yfa{bottom:503.280000px;}
.y245{bottom:503.460000px;}
.y1ba{bottom:503.640000px;}
.y1dd{bottom:503.820000px;}
.y2f5{bottom:504.000000px;}
.y180{bottom:504.360000px;}
.y1a0{bottom:504.900000px;}
.y333{bottom:507.240000px;}
.y22a{bottom:514.080000px;}
.y7b{bottom:514.440000px;}
.y383{bottom:516.240000px;}
.y11{bottom:516.420000px;}
.y3a0{bottom:520.196850px;}
.y34c{bottom:520.560000px;}
.y12e{bottom:520.920000px;}
.y13f{bottom:521.100000px;}
.yf9{bottom:521.280000px;}
.y244{bottom:521.460000px;}
.y1b9{bottom:521.640000px;}
.y1dc{bottom:521.820000px;}
.y17f{bottom:522.360000px;}
.y19f{bottom:522.900000px;}
.y57{bottom:523.440000px;}
.y332{bottom:525.240000px;}
.y229{bottom:527.580000px;}
.y7a{bottom:532.440000px;}
.y382{bottom:534.240000px;}
.y10{bottom:534.420000px;}
.ydf{bottom:535.169326px;}
.y2d7{bottom:537.840000px;}
.y39f{bottom:538.197300px;}
.y34b{bottom:538.560000px;}
.ycf{bottom:538.794094px;}
.y12d{bottom:538.920000px;}
.y13e{bottom:539.100000px;}
.yf8{bottom:539.280000px;}
.y243{bottom:539.460000px;}
.y23f{bottom:539.640000px;}
.y1db{bottom:539.820000px;}
.y17e{bottom:540.360000px;}
.y19e{bottom:540.900000px;}
.y228{bottom:541.080000px;}
.y56{bottom:541.440000px;}
.yde{bottom:541.510632px;}
.y331{bottom:543.240000px;}
.yce{bottom:545.135400px;}
.ydd{bottom:547.851938px;}
.y2f4{bottom:549.000300px;}
.y79{bottom:550.440000px;}
.y381{bottom:552.240000px;}
.yf{bottom:552.420000px;}
.y227{bottom:554.580000px;}
.y39e{bottom:556.197750px;}
.y34a{bottom:556.560000px;}
.y12c{bottom:556.920000px;}
.y13d{bottom:557.100000px;}
.yf7{bottom:557.280000px;}
.y242{bottom:557.460000px;}
.y23e{bottom:557.640000px;}
.y1da{bottom:557.820000px;}
.y17d{bottom:558.360000px;}
.y2aa{bottom:558.540000px;}
.y19d{bottom:558.900000px;}
.y330{bottom:561.240000px;}
.y21f{bottom:562.140000px;}
.y55{bottom:563.760000px;}
.y226{bottom:568.080000px;}
.y78{bottom:568.440000px;}
.y380{bottom:570.240000px;}
.ye{bottom:570.420000px;}
.ydc{bottom:574.122132px;}
.y39d{bottom:574.198200px;}
.y349{bottom:574.560000px;}
.y12b{bottom:574.920000px;}
.y13c{bottom:575.100000px;}
.yf6{bottom:575.280000px;}
.y241{bottom:575.460000px;}
.y23d{bottom:575.640000px;}
.y1d9{bottom:575.820000px;}
.y2f3{bottom:576.000000px;}
.y17c{bottom:576.360000px;}
.y2a9{bottom:576.540000px;}
.y19c{bottom:576.900000px;}
.y32f{bottom:579.240000px;}
.y1d1{bottom:579.420000px;}
.ydb{bottom:580.463438px;}
.y225{bottom:581.580000px;}
.y77{bottom:586.440000px;}
.yda{bottom:586.804744px;}
.y37f{bottom:588.240000px;}
.yd{bottom:588.420000px;}
.y39c{bottom:592.198650px;}
.y348{bottom:592.560000px;}
.y12a{bottom:592.920000px;}
.y13b{bottom:593.100000px;}
.yf5{bottom:593.280000px;}
.y240{bottom:593.460000px;}
.y23c{bottom:593.640000px;}
.y1d8{bottom:593.820000px;}
.y17b{bottom:594.360000px;}
.y224{bottom:595.080000px;}
.y32e{bottom:597.240000px;}
.y54{bottom:599.760000px;}
.y76{bottom:604.440000px;}
.y37e{bottom:606.060000px;}
.yc{bottom:606.420000px;}
.y223{bottom:608.580000px;}
.y39b{bottom:610.199100px;}
.y347{bottom:610.560000px;}
.y129{bottom:610.920000px;}
.yf4{bottom:611.280000px;}
.y23b{bottom:611.460000px;}
.y256{bottom:611.820000px;}
.y17a{bottom:612.360000px;}
.y19b{bottom:615.600000px;}
.y53{bottom:617.760000px;}
.y32d{bottom:620.640000px;}
.y222{bottom:622.080000px;}
.y75{bottom:622.440000px;}
.y37d{bottom:624.060000px;}
.yb{bottom:624.420000px;}
.y39a{bottom:628.199550px;}
.y128{bottom:628.920000px;}
.yf3{bottom:629.280000px;}
.y23a{bottom:629.460000px;}
.y255{bottom:629.820000px;}
.y2a8{bottom:630.360000px;}
.y1f7{bottom:634.500000px;}
.y221{bottom:635.580000px;}
.y52{bottom:635.760000px;}
.y177{bottom:636.660000px;}
.y32c{bottom:638.640000px;}
.y74{bottom:640.440000px;}
.y37c{bottom:642.060000px;}
.ya{bottom:642.420000px;}
.y399{bottom:646.200000px;}
.y127{bottom:646.920000px;}
.y178{bottom:647.279550px;}
.yf2{bottom:647.280000px;}
.y239{bottom:647.460000px;}
.y254{bottom:647.820000px;}
.y2a7{bottom:648.360000px;}
.y220{bottom:649.080000px;}
.y176{bottom:650.160000px;}
.y19a{bottom:652.500000px;}
.y51{bottom:653.760000px;}
.y32b{bottom:656.640000px;}
.y73{bottom:658.440000px;}
.y37b{bottom:660.060000px;}
.y9{bottom:660.420000px;}
.y175{bottom:663.660000px;}
.y126{bottom:664.920000px;}
.yf1{bottom:665.280000px;}
.y238{bottom:665.460000px;}
.y253{bottom:665.820000px;}
.y2a6{bottom:666.360000px;}
.y346{bottom:670.500000px;}
.ya2{bottom:670.860000px;}
.y50{bottom:671.760000px;}
.y398{bottom:672.840000px;}
.y32a{bottom:674.640000px;}
.y72{bottom:676.440000px;}
.y174{bottom:677.160000px;}
.y37a{bottom:678.060000px;}
.y8{bottom:678.420000px;}
.yf0{bottom:683.280000px;}
.y237{bottom:683.460000px;}
.y252{bottom:683.820000px;}
.y2a5{bottom:684.360000px;}
.y345{bottom:688.500000px;}
.y4f{bottom:689.760000px;}
.y173{bottom:690.660000px;}
.y71{bottom:694.440000px;}
.y379{bottom:696.060000px;}
.y7{bottom:696.420000px;}
.yc8{bottom:697.387590px;}
.y329{bottom:698.040000px;}
.y135{bottom:701.280000px;}
.y236{bottom:701.460000px;}
.y251{bottom:701.820000px;}
.yc7{bottom:703.237500px;}
.y344{bottom:706.500000px;}
.y4e{bottom:707.760000px;}
.y70{bottom:712.440000px;}
.y378{bottom:714.060000px;}
.y6{bottom:714.420000px;}
.y328{bottom:716.040000px;}
.y134{bottom:719.280000px;}
.y235{bottom:719.460000px;}
.y250{bottom:719.820000px;}
.y343{bottom:724.500000px;}
.y4d{bottom:725.760000px;}
.y6f{bottom:730.440000px;}
.y139{bottom:730.620900px;}
.yad{bottom:731.662020px;}
.y377{bottom:732.060000px;}
.y5{bottom:732.420000px;}
.y327{bottom:734.040000px;}
.y2a4{bottom:734.220000px;}
.y133{bottom:737.280000px;}
.yc2{bottom:737.725050px;}
.y24f{bottom:737.820000px;}
.y342{bottom:742.500000px;}
.yc3{bottom:742.961970px;}
.y4c{bottom:743.760000px;}
.yc1{bottom:743.813100px;}
.y2f0{bottom:746.820000px;}
.yc0{bottom:748.313100px;}
.y6e{bottom:748.440000px;}
.y376{bottom:750.060000px;}
.y4{bottom:750.420000px;}
.y132{bottom:755.280000px;}
.ybd{bottom:755.659620px;}
.y24e{bottom:755.820000px;}
.y326{bottom:757.440000px;}
.y138{bottom:757.620900px;}
.yb4{bottom:757.911420px;}
.y24d{bottom:759.060000px;}
.y341{bottom:760.500000px;}
.yac{bottom:760.761000px;}
.ya9{bottom:760.761540px;}
.y4b{bottom:761.760000px;}
.ybc{bottom:761.959800px;}
.yb3{bottom:764.211600px;}
.y6d{bottom:766.440000px;}
.yae{bottom:766.762020px;}
.yab{bottom:767.061180px;}
.ya8{bottom:767.061720px;}
.y375{bottom:768.060000px;}
.ybb{bottom:768.259980px;}
.yb1{bottom:768.261060px;}
.y1b{bottom:768.420000px;}
.yb2{bottom:770.511780px;}
.y131{bottom:773.280000px;}
.yaa{bottom:773.361360px;}
.ya7{bottom:773.361900px;}
.yba{bottom:774.560160px;}
.yb0{bottom:774.561240px;}
.y325{bottom:775.440000px;}
.y340{bottom:778.500000px;}
.y4a{bottom:779.760000px;}
.yaf{bottom:780.861420px;}
.y6c{bottom:784.440000px;}
.y374{bottom:786.060000px;}
.y130{bottom:791.280000px;}
.y324{bottom:793.440000px;}
.y33f{bottom:796.500000px;}
.y49{bottom:797.760000px;}
.y257{bottom:797.940000px;}
.y6b{bottom:802.440000px;}
.y373{bottom:804.060000px;}
.y1a{bottom:804.960000px;}
.yef{bottom:809.280000px;}
.y28c{bottom:812.880000px;}
.y33e{bottom:814.500000px;}
.y48{bottom:815.760000px;}
.y323{bottom:816.840000px;}
.y6a{bottom:820.440000px;}
.y372{bottom:822.060000px;}
.y28b{bottom:826.380000px;}
.yee{bottom:827.280000px;}
.y2ef{bottom:827.460000px;}
.ybf{bottom:830.058660px;}
.y19{bottom:832.500000px;}
.y47{bottom:833.760000px;}
.y322{bottom:834.840000px;}
.ybe{bottom:836.358840px;}
.y69{bottom:838.440000px;}
.y371{bottom:840.060000px;}
.yb7{bottom:843.560280px;}
.yed{bottom:845.280000px;}
.y2ee{bottom:845.460000px;}
.yb6{bottom:849.860460px;}
.y46{bottom:851.760000px;}
.yb5{bottom:856.160100px;}
.y68{bottom:856.440000px;}
.y33d{bottom:856.620000px;}
.y370{bottom:858.060000px;}
.y321{bottom:858.240000px;}
.yb8{bottom:860.960160px;}
.ycd{bottom:862.762860px;}
.yec{bottom:863.280000px;}
.y2ed{bottom:863.460000px;}
.ycc{bottom:869.062500px;}
.y45{bottom:869.760000px;}
.y67{bottom:874.440000px;}
.y33c{bottom:874.620000px;}
.y36f{bottom:876.060000px;}
.y320{bottom:876.240000px;}
.yeb{bottom:881.280000px;}
.y2ec{bottom:881.460000px;}
.y44{bottom:887.760000px;}
.y66{bottom:892.440000px;}
.y36e{bottom:894.060000px;}
.y31f{bottom:894.240000px;}
.yc6{bottom:895.162140px;}
.ya6{bottom:898.200180px;}
.y33b{bottom:898.560000px;}
.yea{bottom:899.280000px;}
.y2eb{bottom:899.460000px;}
.yc5{bottom:901.462320px;}
.ya5{bottom:904.499820px;}
.y43{bottom:905.760000px;}
.yc4{bottom:907.762500px;}
.y2c{bottom:908.640000px;}
.y65{bottom:910.440000px;}
.ya4{bottom:910.800000px;}
.y36d{bottom:912.060000px;}
.y31e{bottom:912.240000px;}
.y33a{bottom:916.560000px;}
.ye9{bottom:917.280000px;}
.y2ea{bottom:917.460000px;}
.y42{bottom:923.760000px;}
.yb9{bottom:928.159920px;}
.y64{bottom:928.440000px;}
.y36c{bottom:930.060000px;}
.y339{bottom:934.560000px;}
.ye8{bottom:935.280000px;}
.y2e9{bottom:935.460000px;}
.y31d{bottom:935.640000px;}
.y63{bottom:946.440000px;}
.y36b{bottom:948.060000px;}
.y41{bottom:950.760000px;}
.y338{bottom:952.560000px;}
.ye7{bottom:953.280000px;}
.y2e8{bottom:953.460000px;}
.y31c{bottom:953.640000px;}
.y62{bottom:964.440000px;}
.y36a{bottom:966.060000px;}
.y337{bottom:970.560000px;}
.ye6{bottom:971.280000px;}
.y2e7{bottom:971.460000px;}
.y31b{bottom:971.640000px;}
.y40{bottom:971.640600px;}
.ycb{bottom:973.912860px;}
.y61{bottom:982.440000px;}
.y369{bottom:984.060000px;}
.y2b{bottom:985.860000px;}
.y336{bottom:988.560000px;}
.y2d8{bottom:989.279550px;}
.ye5{bottom:989.280000px;}
.y31a{bottom:995.040000px;}
.y3f{bottom:998.640300px;}
.y60{bottom:1000.440000px;}
.y368{bottom:1002.060000px;}
.yca{bottom:1003.612860px;}
.y335{bottom:1006.560000px;}
.ye4{bottom:1007.280000px;}
.y1d7{bottom:1012.500000px;}
.y319{bottom:1013.040000px;}
.yc9{bottom:1016.662500px;}
.y5f{bottom:1018.440000px;}
.y367{bottom:1020.060000px;}
.y2f2{bottom:1021.860000px;}
.y3e{bottom:1025.640000px;}
.y5e{bottom:1036.440000px;}
.y366{bottom:1038.060000px;}
.y1d6{bottom:1044.900000px;}
.y2dd{bottom:1048.499100px;}
.y137{bottom:1048.500000px;}
.y2f1{bottom:1048.860000px;}
.y2df{bottom:1048.860900px;}
.y5d{bottom:1054.440000px;}
.y397{bottom:1056.060000px;}
.y2d{bottom:1112.940000px;}
.y1b8{bottom:1113.300000px;}
.y136{bottom:1113.480000px;}
.ye3{bottom:1113.660000px;}
.y13a{bottom:1113.840150px;}
.y1d5{bottom:1114.020150px;}
.y2d9{bottom:1114.560000px;}
.y365{bottom:1116.720000px;}
.h11{height:10.612800px;}
.h12{height:14.592600px;}
.h10{height:15.919200px;}
.h15{height:16.110081px;}
.h34{height:22.781503px;}
.h33{height:22.782194px;}
.h35{height:22.782635px;}
.h32{height:22.783342px;}
.h36{height:22.783466px;}
.h30{height:22.783775px;}
.h31{height:22.783879px;}
.h37{height:22.784424px;}
.h38{height:22.785121px;}
.h17{height:22.785254px;}
.h2e{height:22.785696px;}
.h2f{height:22.785862px;}
.h39{height:22.786342px;}
.h3a{height:22.788232px;}
.h2d{height:22.788681px;}
.h2c{height:22.788885px;}
.h3b{height:22.790419px;}
.h2b{height:22.790444px;}
.h28{height:22.791288px;}
.h3c{height:22.792225px;}
.h2a{height:22.792697px;}
.h3d{height:22.793725px;}
.h29{height:22.794517px;}
.h27{height:22.794708px;}
.h26{height:22.798006px;}
.h18{height:22.798168px;}
.h3e{height:22.798992px;}
.h3f{height:22.800575px;}
.h1a{height:22.801243px;}
.h40{height:22.802203px;}
.h41{height:22.803607px;}
.h25{height:22.803694px;}
.h19{height:22.804318px;}
.h24{height:22.805274px;}
.h42{height:22.805727px;}
.h1b{height:22.807393px;}
.h43{height:22.808496px;}
.h23{height:22.808643px;}
.h44{height:22.810409px;}
.h22{height:22.812252px;}
.h45{height:22.814123px;}
.h21{height:22.816828px;}
.h46{height:22.817030px;}
.h20{height:22.819682px;}
.h1c{height:22.819693px;}
.h1f{height:22.822555px;}
.h1e{height:22.825843px;}
.h1d{height:22.831993px;}
.h13{height:31.838400px;}
.h2{height:40.848000px;}
.hf{height:42.900000px;}
.h48{height:43.401000px;}
.h4a{height:44.460000px;}
.h47{height:45.954000px;}
.h5{height:51.060000px;}
.h3{height:51.360000px;}
.h14{height:54.336960px;}
.ha{height:54.570000px;}
.h9{height:55.143358px;}
.h8{height:58.719000px;}
.hc{height:60.990000px;}
.h1{height:64.200000px;}
.hd{height:77.040000px;}
.h49{height:78.000300px;}
.he{height:89.880000px;}
.h7{height:115.560000px;}
.h6{height:117.000450px;}
.h4{height:145.521000px;}
.h16{height:221.040000px;}
.hb{height:434.010000px;}
.h0{height:1188.000000px;}
.w1{width:531.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x75{left:2.193300px;}
.x6f{left:15.879450px;}
.x73{left:24.174720px;}
.x10{left:29.340000px;}
.x76{left:43.719900px;}
.x72{left:46.552921px;}
.x77{left:49.376100px;}
.x4{left:54.000000px;}
.x56{left:55.080000px;}
.x4c{left:56.160000px;}
.x11{left:57.420000px;}
.x5c{left:58.500000px;}
.x4e{left:59.580000px;}
.xf{left:60.660000px;}
.x6c{left:63.000000px;}
.x15{left:64.080000px;}
.x3{left:66.600000px;}
.x49{left:68.580000px;}
.x46{left:69.660000px;}
.x4f{left:71.280000px;}
.x6{left:74.160000px;}
.x57{left:75.240000px;}
.x4d{left:76.500000px;}
.x6b{left:77.940000px;}
.x45{left:80.280000px;}
.x4a{left:82.440000px;}
.x5b{left:83.520000px;}
.x47{left:84.780000px;}
.x5{left:86.220000px;}
.x78{left:87.442800px;}
.x48{left:90.000000px;}
.x79{left:91.802700px;}
.x12{left:94.320000px;}
.xa0{left:96.120000px;}
.x7a{left:102.947850px;}
.xa3{left:109.980000px;}
.x17{left:111.780000px;}
.xa4{left:113.400000px;}
.x16{left:114.840000px;}
.xa5{left:123.120000px;}
.x7b{left:127.504800px;}
.x70{left:129.212921px;}
.x14{left:139.860000px;}
.x13{left:142.380600px;}
.x7{left:145.620000px;}
.x7c{left:148.434150px;}
.x7d{left:160.623750px;}
.x71{left:165.416515px;}
.x7e{left:182.243250px;}
.x7f{left:191.418900px;}
.x80{left:203.439300px;}
.x81{left:214.530000px;}
.x6e{left:221.612100px;}
.x82{left:226.293300px;}
.x83{left:238.119750px;}
.x84{left:249.717300px;}
.x74{left:251.178785px;}
.xe{left:262.440000px;}
.x8f{left:309.435900px;}
.x85{left:311.833350px;}
.x86{left:319.789200px;}
.x90{left:322.311475px;}
.x87{left:324.571800px;}
.x66{left:330.660000px;}
.x8{left:333.000000px;}
.x59{left:334.080000px;}
.x52{left:335.160000px;}
.x18{left:336.420000px;}
.x5d{left:337.500000px;}
.x50{left:338.580000px;}
.x68{left:344.160000px;}
.x19{left:346.500000px;}
.x5e{left:347.580000px;}
.x51{left:348.660000px;}
.x60{left:349.740000px;}
.x67{left:351.000000px;}
.x9{left:353.160000px;}
.x5a{left:354.240000px;}
.x53{left:355.500000px;}
.x61{left:360.000000px;}
.x88{left:361.123350px;}
.x63{left:362.700000px;}
.x69{left:365.220000px;}
.x9b{left:366.300000px;}
.x64{left:367.920000px;}
.x9a{left:369.900000px;}
.x89{left:372.583200px;}
.x94{left:373.860000px;}
.x8a{left:376.299750px;}
.x1b{left:378.000000px;}
.x8b{left:381.740400px;}
.x8c{left:386.701800px;}
.x8d{left:391.692900px;}
.x8e{left:394.972200px;}
.x91{left:402.480000px;}
.x62{left:403.560000px;}
.x99{left:418.860000px;}
.x5f{left:422.280000px;}
.x9e{left:447.839400px;}
.x44{left:454.428630px;}
.x43{left:460.519290px;}
.x2b{left:463.230150px;}
.x2a{left:465.045090px;}
.x40{left:470.777130px;}
.x65{left:471.960000px;}
.x9d{left:473.220000px;}
.x42{left:479.609910px;}
.x41{left:481.424850px;}
.x6d{left:490.680000px;}
.x34{left:511.920870px;}
.x28{left:515.389290px;}
.x27{left:519.194130px;}
.x29{left:524.145930px;}
.x9f{left:542.340000px;}
.x92{left:554.580000px;}
.xa6{left:563.040000px;}
.x31{left:578.394150px;}
.x25{left:580.568910px;}
.x26{left:582.342810px;}
.x3e{left:588.676410px;}
.x24{left:589.680870px;}
.x96{left:591.299550px;}
.x3f{left:596.268270px;}
.x2c{left:597.647490px;}
.x32{left:599.144400px;}
.x33{left:602.744400px;}
.x38{left:605.624850px;}
.xb{left:612.000000px;}
.x58{left:613.080000px;}
.x4b{left:614.160000px;}
.xd{left:615.420000px;}
.x54{left:616.680000px;}
.x35{left:620.108325px;}
.xa7{left:623.880000px;}
.x1a{left:625.500000px;}
.x55{left:626.940000px;}
.x2d{left:629.520450px;}
.x2f{left:630.630690px;}
.xa{left:632.160000px;}
.x2e{left:633.795630px;}
.x3c{left:635.871870px;}
.x3d{left:640.147050px;}
.xc{left:647.820000px;}
.x95{left:654.840000px;}
.x93{left:657.180000px;}
.x37{left:664.294470px;}
.x23{left:670.247790px;}
.x30{left:673.543410px;}
.x9c{left:676.080000px;}
.x3b{left:681.078510px;}
.x39{left:692.089650px;}
.x3a{left:695.927430px;}
.x6a{left:710.100000px;}
.x21{left:713.949990px;}
.x20{left:715.488990px;}
.x1d{left:716.759610px;}
.x1c{left:719.109150px;}
.x36{left:721.395000px;}
.x22{left:734.598510px;}
.x98{left:744.480000px;}
.x2{left:764.280000px;}
.x1f{left:767.949990px;}
.x1e{left:769.488990px;}
.x97{left:773.459100px;}
.xa1{left:774.900000px;}
.xa2{left:785.340000px;}
.x1{left:870.660000px;}
@media print{
.v4{vertical-align:-17.920000pt;}
.v7{vertical-align:-11.520000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:14.080000pt;}
.v6{vertical-align:15.360000pt;}
.v3{vertical-align:17.920000pt;}
.v2{vertical-align:19.998720pt;}
.v1{vertical-align:64.000000pt;}
.lsb{letter-spacing:-0.816000pt;}
.ls21{letter-spacing:-0.810667pt;}
.ls1b{letter-spacing:-0.769148pt;}
.ls39{letter-spacing:-0.435200pt;}
.ls3a{letter-spacing:-0.290133pt;}
.ls29{letter-spacing:-0.201600pt;}
.ls50{letter-spacing:-0.115200pt;}
.ls4d{letter-spacing:-0.038400pt;}
.ls17{letter-spacing:-0.025600pt;}
.ls2e{letter-spacing:-0.021333pt;}
.ls1c{letter-spacing:-0.019200pt;}
.ls2b{letter-spacing:-0.016000pt;}
.ls19{letter-spacing:-0.015360pt;}
.ls1a{letter-spacing:-0.014080pt;}
.ls6{letter-spacing:-0.012800pt;}
.ls2a{letter-spacing:-0.010667pt;}
.lsc{letter-spacing:-0.009162pt;}
.lsd{letter-spacing:-0.009067pt;}
.ls5{letter-spacing:-0.008533pt;}
.ls51{letter-spacing:-0.006480pt;}
.ls26{letter-spacing:-0.004533pt;}
.ls36{letter-spacing:-0.004267pt;}
.ls3d{letter-spacing:-0.002733pt;}
.ls4{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.001920pt;}
.ls14{letter-spacing:0.003840pt;}
.ls16{letter-spacing:0.003865pt;}
.ls33{letter-spacing:0.004533pt;}
.ls15{letter-spacing:0.007680pt;}
.ls20{letter-spacing:0.009600pt;}
.ls9{letter-spacing:0.012267pt;}
.lse{letter-spacing:0.015200pt;}
.ls3b{letter-spacing:0.016400pt;}
.ls3e{letter-spacing:0.019133pt;}
.ls8{letter-spacing:0.019200pt;}
.ls7{letter-spacing:0.019439pt;}
.ls1e{letter-spacing:0.022400pt;}
.lsf{letter-spacing:0.029867pt;}
.ls38{letter-spacing:0.062933pt;}
.ls13{letter-spacing:0.106667pt;}
.ls4b{letter-spacing:0.185867pt;}
.ls32{letter-spacing:0.186667pt;}
.ls23{letter-spacing:0.213333pt;}
.lsa{letter-spacing:0.229333pt;}
.ls12{letter-spacing:0.234667pt;}
.ls24{letter-spacing:0.240000pt;}
.ls1{letter-spacing:0.245333pt;}
.ls3{letter-spacing:0.250667pt;}
.ls2{letter-spacing:0.256000pt;}
.ls10{letter-spacing:0.261333pt;}
.ls1d{letter-spacing:0.266667pt;}
.ls11{letter-spacing:0.272000pt;}
.ls31{letter-spacing:0.277333pt;}
.ls2c{letter-spacing:0.282667pt;}
.ls43{letter-spacing:0.288000pt;}
.ls35{letter-spacing:0.304000pt;}
.ls22{letter-spacing:0.326400pt;}
.ls41{letter-spacing:0.388800pt;}
.ls4c{letter-spacing:0.403467pt;}
.ls4a{letter-spacing:0.408000pt;}
.ls4e{letter-spacing:0.412533pt;}
.ls49{letter-spacing:0.413867pt;}
.ls45{letter-spacing:0.418133pt;}
.ls4f{letter-spacing:0.421600pt;}
.ls48{letter-spacing:0.426667pt;}
.ls46{letter-spacing:0.430933pt;}
.ls47{letter-spacing:0.435200pt;}
.ls2d{letter-spacing:0.533333pt;}
.ls44{letter-spacing:0.800000pt;}
.ls28{letter-spacing:0.840000pt;}
.ls40{letter-spacing:0.912000pt;}
.ls37{letter-spacing:1.032000pt;}
.ls1f{letter-spacing:1.104000pt;}
.ls0{letter-spacing:1.168000pt;}
.ls42{letter-spacing:1.192000pt;}
.ls2f{letter-spacing:1.280000pt;}
.ls3f{letter-spacing:1.304000pt;}
.ls30{letter-spacing:1.400000pt;}
.ls34{letter-spacing:1.424000pt;}
.ls27{letter-spacing:1.440000pt;}
.ls3c{letter-spacing:7.374373pt;}
.ls25{letter-spacing:15.146667pt;}
.ws3{word-spacing:-113.333333pt;}
.ws4{word-spacing:-93.333333pt;}
.ws83{word-spacing:-32.928000pt;}
.wsc9{word-spacing:-21.952000pt;}
.ws1{word-spacing:-15.549333pt;}
.ws94{word-spacing:-14.972874pt;}
.wsb2{word-spacing:-14.122667pt;}
.wsb0{word-spacing:-14.117333pt;}
.wsaf{word-spacing:-13.621333pt;}
.ws4e{word-spacing:-13.600000pt;}
.ws4d{word-spacing:-13.594667pt;}
.ws0{word-spacing:-13.589333pt;}
.ws2d{word-spacing:-13.584000pt;}
.ws78{word-spacing:-13.568000pt;}
.wsb3{word-spacing:-12.194667pt;}
.wsb5{word-spacing:-12.190133pt;}
.wsb4{word-spacing:-11.741333pt;}
.wsb7{word-spacing:-11.736800pt;}
.ws30{word-spacing:-10.682880pt;}
.ws2{word-spacing:-10.658133pt;}
.ws8a{word-spacing:-10.653867pt;}
.ws8d{word-spacing:-10.231467pt;}
.ws89{word-spacing:-7.733333pt;}
.ws92{word-spacing:-7.598706pt;}
.ws93{word-spacing:-7.595973pt;}
.ws4a{word-spacing:-6.661333pt;}
.ws34{word-spacing:-5.376308pt;}
.ws2e{word-spacing:-5.341440pt;}
.ws33{word-spacing:-4.603294pt;}
.ws2f{word-spacing:-3.543040pt;}
.ws53{word-spacing:-1.125333pt;}
.ws1a{word-spacing:-1.061333pt;}
.ws5f{word-spacing:-1.029333pt;}
.ws74{word-spacing:-0.522667pt;}
.ws99{word-spacing:-0.496000pt;}
.wsa1{word-spacing:-0.485333pt;}
.ws2c{word-spacing:-0.432000pt;}
.ws70{word-spacing:-0.426667pt;}
.ws79{word-spacing:-0.410667pt;}
.wsa5{word-spacing:-0.400000pt;}
.wsb1{word-spacing:-0.373333pt;}
.wsb6{word-spacing:-0.358133pt;}
.ws75{word-spacing:-0.320000pt;}
.ws2b{word-spacing:-0.309333pt;}
.ws60{word-spacing:-0.240000pt;}
.wsab{word-spacing:-0.229333pt;}
.ws58{word-spacing:-0.181333pt;}
.ws7c{word-spacing:-0.170667pt;}
.wsa4{word-spacing:-0.165333pt;}
.ws91{word-spacing:-0.162133pt;}
.ws1b{word-spacing:-0.149600pt;}
.ws7d{word-spacing:-0.138667pt;}
.ws7f{word-spacing:-0.133333pt;}
.ws38{word-spacing:-0.131467pt;}
.ws69{word-spacing:-0.128000pt;}
.ws52{word-spacing:-0.122667pt;}
.ws3e{word-spacing:-0.121600pt;}
.ws9e{word-spacing:-0.117867pt;}
.ws41{word-spacing:-0.117333pt;}
.ws81{word-spacing:-0.112000pt;}
.ws4f{word-spacing:-0.108800pt;}
.ws72{word-spacing:-0.106667pt;}
.wsa9{word-spacing:-0.101333pt;}
.ws24{word-spacing:-0.097067pt;}
.ws3f{word-spacing:-0.096000pt;}
.wscd{word-spacing:-0.095200pt;}
.ws6e{word-spacing:-0.090667pt;}
.wsa6{word-spacing:-0.085333pt;}
.ws7b{word-spacing:-0.080000pt;}
.ws80{word-spacing:-0.077067pt;}
.ws62{word-spacing:-0.074667pt;}
.ws9c{word-spacing:-0.069333pt;}
.ws29{word-spacing:-0.064000pt;}
.ws2a{word-spacing:-0.063467pt;}
.wsca{word-spacing:-0.062400pt;}
.ws27{word-spacing:-0.058667pt;}
.ws46{word-spacing:-0.053333pt;}
.wsce{word-spacing:-0.049867pt;}
.ws40{word-spacing:-0.048000pt;}
.ws4b{word-spacing:-0.042667pt;}
.ws6b{word-spacing:-0.040800pt;}
.wsac{word-spacing:-0.038400pt;}
.ws18{word-spacing:-0.037333pt;}
.wsd3{word-spacing:-0.036267pt;}
.ws19{word-spacing:-0.032000pt;}
.ws1e{word-spacing:-0.029867pt;}
.ws14{word-spacing:-0.028800pt;}
.wsc8{word-spacing:-0.027200pt;}
.ws10{word-spacing:-0.026667pt;}
.ws98{word-spacing:-0.025600pt;}
.wsd2{word-spacing:-0.022667pt;}
.wsf{word-spacing:-0.021333pt;}
.ws64{word-spacing:-0.019200pt;}
.ws85{word-spacing:-0.017067pt;}
.wsd{word-spacing:-0.016000pt;}
.ws44{word-spacing:-0.014933pt;}
.ws55{word-spacing:-0.013600pt;}
.ws7e{word-spacing:-0.012800pt;}
.wse{word-spacing:-0.010667pt;}
.ws48{word-spacing:-0.009600pt;}
.wsc6{word-spacing:-0.009067pt;}
.ws1f{word-spacing:-0.008533pt;}
.ws97{word-spacing:-0.008200pt;}
.ws45{word-spacing:-0.007467pt;}
.ws9d{word-spacing:-0.006400pt;}
.ws15{word-spacing:-0.006133pt;}
.ws96{word-spacing:-0.005467pt;}
.ws9{word-spacing:-0.005333pt;}
.ws21{word-spacing:-0.005067pt;}
.wsa0{word-spacing:-0.004800pt;}
.ws5e{word-spacing:-0.004533pt;}
.ws36{word-spacing:-0.004267pt;}
.ws3d{word-spacing:-0.001933pt;}
.ws3b{word-spacing:-0.001920pt;}
.ws5{word-spacing:0.000000pt;}
.ws35{word-spacing:0.004267pt;}
.wsc5{word-spacing:0.004533pt;}
.ws9f{word-spacing:0.004800pt;}
.ws12{word-spacing:0.005333pt;}
.ws8e{word-spacing:0.006400pt;}
.wsad{word-spacing:0.007467pt;}
.ws6{word-spacing:0.008533pt;}
.ws3c{word-spacing:0.008800pt;}
.ws56{word-spacing:0.009067pt;}
.ws68{word-spacing:0.009600pt;}
.ws13{word-spacing:0.010667pt;}
.ws84{word-spacing:0.012800pt;}
.ws76{word-spacing:0.014933pt;}
.wsc{word-spacing:0.016000pt;}
.ws90{word-spacing:0.017067pt;}
.ws50{word-spacing:0.018133pt;}
.ws8c{word-spacing:0.019200pt;}
.wsa{word-spacing:0.021333pt;}
.wscf{word-spacing:0.022667pt;}
.ws63{word-spacing:0.025600pt;}
.ws16{word-spacing:0.026667pt;}
.wsd0{word-spacing:0.027200pt;}
.wscb{word-spacing:0.028800pt;}
.ws86{word-spacing:0.029867pt;}
.ws57{word-spacing:0.031733pt;}
.ws7{word-spacing:0.032000pt;}
.ws20{word-spacing:0.034133pt;}
.ws88{word-spacing:0.036267pt;}
.ws17{word-spacing:0.037333pt;}
.ws8f{word-spacing:0.038400pt;}
.ws5c{word-spacing:0.040800pt;}
.ws11{word-spacing:0.042667pt;}
.ws8{word-spacing:0.048000pt;}
.wsd1{word-spacing:0.049867pt;}
.wsb{word-spacing:0.053333pt;}
.ws5d{word-spacing:0.054400pt;}
.wscc{word-spacing:0.057600pt;}
.ws1d{word-spacing:0.058667pt;}
.wsc7{word-spacing:0.058933pt;}
.ws1c{word-spacing:0.064000pt;}
.ws39{word-spacing:0.069333pt;}
.wsb9{word-spacing:0.072533pt;}
.ws28{word-spacing:0.074667pt;}
.ws6a{word-spacing:0.080000pt;}
.ws25{word-spacing:0.082133pt;}
.ws3a{word-spacing:0.083200pt;}
.ws51{word-spacing:0.085333pt;}
.wsbc{word-spacing:0.089600pt;}
.ws73{word-spacing:0.090667pt;}
.ws5b{word-spacing:0.096000pt;}
.ws82{word-spacing:0.099733pt;}
.ws26{word-spacing:0.101333pt;}
.ws54{word-spacing:0.106667pt;}
.ws47{word-spacing:0.112000pt;}
.ws43{word-spacing:0.117333pt;}
.ws65{word-spacing:0.122667pt;}
.ws5a{word-spacing:0.128000pt;}
.wsc4{word-spacing:0.132267pt;}
.ws49{word-spacing:0.133333pt;}
.ws66{word-spacing:0.138667pt;}
.ws4c{word-spacing:0.149333pt;}
.ws95{word-spacing:0.154667pt;}
.wsbb{word-spacing:0.157867pt;}
.ws6d{word-spacing:0.160000pt;}
.wsbd{word-spacing:0.166400pt;}
.ws59{word-spacing:0.176000pt;}
.ws42{word-spacing:0.181333pt;}
.ws61{word-spacing:0.186667pt;}
.ws87{word-spacing:0.192000pt;}
.wsa3{word-spacing:0.197333pt;}
.ws71{word-spacing:0.218667pt;}
.wsa2{word-spacing:0.234667pt;}
.wsc2{word-spacing:0.260267pt;}
.wsa7{word-spacing:0.282667pt;}
.wsc3{word-spacing:0.285867pt;}
.ws37{word-spacing:0.298667pt;}
.wsae{word-spacing:0.304000pt;}
.ws77{word-spacing:0.341333pt;}
.ws6f{word-spacing:0.352000pt;}
.wsaa{word-spacing:0.368000pt;}
.wsbf{word-spacing:0.392533pt;}
.wsa8{word-spacing:0.394667pt;}
.ws6c{word-spacing:0.426667pt;}
.ws8b{word-spacing:0.437333pt;}
.ws67{word-spacing:0.464000pt;}
.wsba{word-spacing:0.465067pt;}
.ws23{word-spacing:0.480000pt;}
.ws9a{word-spacing:0.490667pt;}
.ws9b{word-spacing:0.554667pt;}
.wsbe{word-spacing:0.601600pt;}
.wsc0{word-spacing:0.648533pt;}
.wsc1{word-spacing:0.682667pt;}
.ws7a{word-spacing:1.280000pt;}
.ws22{word-spacing:1.312000pt;}
.ws32{word-spacing:192.433920pt;}
.ws31{word-spacing:310.878720pt;}
.wsb8{word-spacing:642.041600pt;}
._6{margin-left:-48.757333pt;}
._4{margin-left:-43.680000pt;}
._22{margin-left:-15.797333pt;}
._1e{margin-left:-7.142400pt;}
._21{margin-left:-5.779200pt;}
._3{margin-left:-4.666667pt;}
._5{margin-left:-3.210667pt;}
._1c{margin-left:-2.304000pt;}
._1{margin-left:-1.050667pt;}
._0{width:1.066667pt;}
._23{width:2.145067pt;}
._a{width:6.688000pt;}
._24{width:10.436267pt;}
._1d{width:11.455733pt;}
._1f{width:12.800000pt;}
._2{width:14.890667pt;}
._20{width:15.797333pt;}
._9{width:21.349333pt;}
._27{width:28.179200pt;}
._28{width:60.705867pt;}
._16{width:111.488000pt;}
._2a{width:114.330667pt;}
._12{width:133.610667pt;}
._c{width:164.661333pt;}
._19{width:174.218667pt;}
._f{width:199.893333pt;}
._1a{width:207.013333pt;}
._e{width:209.562667pt;}
._17{width:228.560000pt;}
._2f{width:249.260800pt;}
._b{width:251.930667pt;}
._d{width:266.896000pt;}
._1b{width:303.424000pt;}
._15{width:319.440000pt;}
._26{width:333.127467pt;}
._10{width:338.346667pt;}
._2b{width:339.669067pt;}
._7{width:351.824000pt;}
._18{width:365.877333pt;}
._11{width:370.842667pt;}
._2d{width:376.760800pt;}
._8{width:388.741333pt;}
._2e{width:426.913067pt;}
._29{width:428.744533pt;}
._14{width:471.077333pt;}
._2c{width:493.018133pt;}
._25{width:551.058400pt;}
._13{width:571.360000pt;}
.fse{font-size:12.800000pt;}
.fsf{font-size:17.600000pt;}
.fsd{font-size:19.200000pt;}
.fs11{font-size:19.325333pt;}
.fs13{font-size:25.066667pt;}
.fs3f{font-size:26.666667pt;}
.fs2b{font-size:27.328239pt;}
.fs2a{font-size:27.329068pt;}
.fs2c{font-size:27.329597pt;}
.fs29{font-size:27.330445pt;}
.fs2d{font-size:27.330593pt;}
.fs27{font-size:27.330964pt;}
.fs28{font-size:27.331089pt;}
.fs2e{font-size:27.331743pt;}
.fs2f{font-size:27.332579pt;}
.fs14{font-size:27.332739pt;}
.fs25{font-size:27.333269pt;}
.fs26{font-size:27.333468pt;}
.fs15{font-size:27.333475pt;}
.fs30{font-size:27.334044pt;}
.fs31{font-size:27.336311pt;}
.fs24{font-size:27.336850pt;}
.fs23{font-size:27.337094pt;}
.fs32{font-size:27.338935pt;}
.fs22{font-size:27.338964pt;}
.fs1f{font-size:27.339977pt;}
.fs33{font-size:27.341101pt;}
.fs21{font-size:27.341667pt;}
.fs34{font-size:27.342900pt;}
.fs20{font-size:27.343850pt;}
.fs1e{font-size:27.344079pt;}
.fs1d{font-size:27.348036pt;}
.fs35{font-size:27.349218pt;}
.fs36{font-size:27.351117pt;}
.fs37{font-size:27.353070pt;}
.fs38{font-size:27.354754pt;}
.fs1c{font-size:27.354859pt;}
.fs1b{font-size:27.356754pt;}
.fs39{font-size:27.357297pt;}
.fs3a{font-size:27.360619pt;}
.fs1a{font-size:27.360795pt;}
.fs3b{font-size:27.362914pt;}
.fs19{font-size:27.365124pt;}
.fs3c{font-size:27.367369pt;}
.fs18{font-size:27.370614pt;}
.fs3d{font-size:27.370856pt;}
.fs17{font-size:27.374037pt;}
.fs16{font-size:27.377484pt;}
.fs12{font-size:30.933333pt;}
.fs10{font-size:38.400000pt;}
.fs1{font-size:42.666667pt;}
.fs7{font-size:45.333333pt;}
.fs6{font-size:45.809643pt;}
.fs3e{font-size:48.000000pt;}
.fsa{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs5{font-size:61.333333pt;}
.fsb{font-size:64.000000pt;}
.fs40{font-size:64.797757pt;}
.fsc{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.fs3{font-size:97.196635pt;}
.fs2{font-size:152.000000pt;}
.fs9{font-size:373.333333pt;}
.fs8{font-size:453.333333pt;}
.y0{bottom:0.000000pt;}
.y25e{bottom:7.562041pt;}
.y26a{bottom:26.854800pt;}
.y269{bottom:27.829733pt;}
.y268{bottom:29.185867pt;}
.y267{bottom:30.888000pt;}
.y266{bottom:31.980533pt;}
.y265{bottom:33.935733pt;}
.y264{bottom:35.409467pt;}
.y25a{bottom:37.614796pt;}
.y1{bottom:38.240000pt;}
.y263{bottom:38.445600pt;}
.y25b{bottom:38.449740pt;}
.y262{bottom:41.079600pt;}
.y25f{bottom:41.979174pt;}
.y261{bottom:44.585467pt;}
.y172{bottom:47.040000pt;}
.y159{bottom:47.200000pt;}
.y113{bottom:47.360000pt;}
.y21e{bottom:47.520000pt;}
.y213{bottom:47.680000pt;}
.y1f6{bottom:47.840000pt;}
.y199{bottom:48.320000pt;}
.y2bf{bottom:49.760000pt;}
.y2d5{bottom:49.920000pt;}
.y2a1{bottom:50.080000pt;}
.y271{bottom:51.635200pt;}
.y272{bottom:51.713600pt;}
.y270{bottom:51.883333pt;}
.ya1{bottom:52.000000pt;}
.y26f{bottom:52.538533pt;}
.y273{bottom:53.069867pt;}
.y26e{bottom:53.664933pt;}
.y396{bottom:53.760000pt;}
.y38b{bottom:53.920000pt;}
.y274{bottom:54.128400pt;}
.y26d{bottom:55.137467pt;}
.y3{bottom:55.360000pt;}
.y275{bottom:56.012000pt;}
.y318{bottom:56.480000pt;}
.y26c{bottom:56.822400pt;}
.y3d{bottom:57.120000pt;}
.y94{bottom:57.280000pt;}
.y276{bottom:58.251733pt;}
.y26b{bottom:58.938267pt;}
.y364{bottom:60.162667pt;}
.y1d0{bottom:60.480000pt;}
.y277{bottom:61.196533pt;}
.y25c{bottom:62.386244pt;}
.y171{bottom:63.040000pt;}
.y158{bottom:63.200000pt;}
.y112{bottom:63.360000pt;}
.y2db{bottom:63.360800pt;}
.y21d{bottom:63.520000pt;}
.y212{bottom:63.680000pt;}
.y1f5{bottom:63.840000pt;}
.ya0{bottom:64.000000pt;}
.y198{bottom:64.320000pt;}
.y278{bottom:64.784667pt;}
.y1b7{bottom:64.800000pt;}
.y125{bottom:64.960000pt;}
.y2be{bottom:65.760000pt;}
.y2d4{bottom:65.920000pt;}
.y2a0{bottom:66.080000pt;}
.y279{bottom:68.951067pt;}
.y395{bottom:69.760000pt;}
.y25d{bottom:72.000114pt;}
.y363{bottom:72.162400pt;}
.y317{bottom:72.480000pt;}
.y3c{bottom:73.120000pt;}
.y93{bottom:73.280000pt;}
.y9f{bottom:76.000000pt;}
.y1cf{bottom:76.480000pt;}
.y259{bottom:78.004000pt;}
.y170{bottom:79.040000pt;}
.y157{bottom:79.200000pt;}
.y111{bottom:79.360000pt;}
.y2da{bottom:79.360400pt;}
.y21c{bottom:79.520000pt;}
.y211{bottom:79.680000pt;}
.y1f4{bottom:79.840000pt;}
.y30a{bottom:80.000000pt;}
.y197{bottom:80.320000pt;}
.y1b6{bottom:80.800000pt;}
.y124{bottom:80.960000pt;}
.y2bd{bottom:81.760000pt;}
.y2d3{bottom:81.920000pt;}
.y29f{bottom:82.080000pt;}
.y362{bottom:84.162133pt;}
.y394{bottom:85.760000pt;}
.y27a{bottom:86.236800pt;}
.y9e{bottom:88.000000pt;}
.y316{bottom:88.480000pt;}
.y3b{bottom:89.120000pt;}
.y92{bottom:89.280000pt;}
.y27b{bottom:89.462000pt;}
.y260{bottom:90.335333pt;}
.y27c{bottom:91.632800pt;}
.y2a{bottom:92.480000pt;}
.y16f{bottom:95.040000pt;}
.y27d{bottom:95.086400pt;}
.y156{bottom:95.200000pt;}
.y110{bottom:95.360000pt;}
.y21b{bottom:95.520000pt;}
.y210{bottom:95.680000pt;}
.y1f3{bottom:95.840000pt;}
.y309{bottom:96.000000pt;}
.y361{bottom:96.161867pt;}
.y196{bottom:96.320000pt;}
.y1b5{bottom:96.800000pt;}
.y123{bottom:96.960000pt;}
.y2bc{bottom:97.760000pt;}
.y2d2{bottom:97.920000pt;}
.y29e{bottom:98.080000pt;}
.y27e{bottom:98.589733pt;}
.y9d{bottom:100.000000pt;}
.y393{bottom:101.760000pt;}
.y27f{bottom:102.296800pt;}
.y29{bottom:104.480000pt;}
.y3a{bottom:105.120000pt;}
.y91{bottom:105.280000pt;}
.y360{bottom:108.161600pt;}
.y1ce{bottom:108.480000pt;}
.y315{bottom:109.280000pt;}
.y280{bottom:109.541067pt;}
.y16e{bottom:111.040000pt;}
.y155{bottom:111.200000pt;}
.y10f{bottom:111.360000pt;}
.y21a{bottom:111.520000pt;}
.y20f{bottom:111.680000pt;}
.y1f2{bottom:111.840000pt;}
.y9c{bottom:112.000000pt;}
.y195{bottom:112.320000pt;}
.y1b4{bottom:112.800000pt;}
.y122{bottom:112.960000pt;}
.y2bb{bottom:113.760000pt;}
.y2d1{bottom:113.920000pt;}
.y29d{bottom:114.080000pt;}
.y281{bottom:114.238667pt;}
.y258{bottom:115.228267pt;}
.y28{bottom:116.480000pt;}
.y392{bottom:117.760000pt;}
.y282{bottom:118.841200pt;}
.y35f{bottom:120.161333pt;}
.y39{bottom:121.120000pt;}
.y90{bottom:121.280000pt;}
.y283{bottom:123.610667pt;}
.y9b{bottom:124.000000pt;}
.y1cd{bottom:124.480000pt;}
.y314{bottom:125.280000pt;}
.y28a{bottom:126.184800pt;}
.y284{bottom:126.915600pt;}
.y16d{bottom:127.040000pt;}
.y154{bottom:127.200000pt;}
.y10e{bottom:127.360000pt;}
.y219{bottom:127.520000pt;}
.y20e{bottom:127.680000pt;}
.y1f1{bottom:127.840000pt;}
.y308{bottom:128.000000pt;}
.y194{bottom:128.320000pt;}
.y27{bottom:128.480000pt;}
.y1b3{bottom:128.800000pt;}
.y121{bottom:128.960000pt;}
.y2ba{bottom:129.760000pt;}
.y2d0{bottom:129.920000pt;}
.y29c{bottom:130.080000pt;}
.y285{bottom:132.058400pt;}
.y35e{bottom:132.161067pt;}
.y289{bottom:132.867733pt;}
.y391{bottom:133.760000pt;}
.y9a{bottom:136.000000pt;}
.y286{bottom:137.090133pt;}
.y38{bottom:137.120000pt;}
.y8f{bottom:137.280000pt;}
.y26{bottom:140.480000pt;}
.y313{bottom:141.280000pt;}
.y287{bottom:142.576267pt;}
.y16c{bottom:143.040000pt;}
.y153{bottom:143.200000pt;}
.y10d{bottom:143.360000pt;}
.y218{bottom:143.520000pt;}
.y20d{bottom:143.680000pt;}
.y1f0{bottom:143.840000pt;}
.y307{bottom:144.000000pt;}
.y35d{bottom:144.160800pt;}
.y193{bottom:144.320000pt;}
.y1b2{bottom:144.800000pt;}
.y120{bottom:144.960000pt;}
.y2b9{bottom:145.760000pt;}
.y2cf{bottom:145.920000pt;}
.y29b{bottom:146.080000pt;}
.y288{bottom:146.433200pt;}
.y99{bottom:148.000000pt;}
.y25{bottom:152.480000pt;}
.y37{bottom:153.120000pt;}
.y8e{bottom:153.280000pt;}
.y35c{bottom:156.160533pt;}
.y1cc{bottom:156.480000pt;}
.y312{bottom:157.280000pt;}
.y16b{bottom:159.040000pt;}
.y152{bottom:159.200000pt;}
.y10c{bottom:159.360000pt;}
.y217{bottom:159.520000pt;}
.y20c{bottom:159.680000pt;}
.y1ef{bottom:159.840000pt;}
.y98{bottom:160.000000pt;}
.y192{bottom:160.320000pt;}
.y1b1{bottom:160.800000pt;}
.y11f{bottom:160.960000pt;}
.y2b8{bottom:161.760000pt;}
.y2ce{bottom:161.920000pt;}
.y29a{bottom:162.080000pt;}
.y390{bottom:165.760000pt;}
.y35b{bottom:168.160267pt;}
.y36{bottom:169.120000pt;}
.y8d{bottom:169.280000pt;}
.y97{bottom:172.000000pt;}
.y1cb{bottom:172.480000pt;}
.y311{bottom:173.280000pt;}
.y16a{bottom:175.040000pt;}
.y151{bottom:175.200000pt;}
.y10b{bottom:175.360000pt;}
.y216{bottom:175.520000pt;}
.y20b{bottom:175.680000pt;}
.y1ee{bottom:175.840000pt;}
.y306{bottom:176.000000pt;}
.y191{bottom:176.320000pt;}
.y1b0{bottom:176.800000pt;}
.y11e{bottom:176.960000pt;}
.y2b7{bottom:177.760000pt;}
.y2cd{bottom:177.920000pt;}
.y299{bottom:178.080000pt;}
.y35a{bottom:180.160000pt;}
.y38f{bottom:181.760000pt;}
.y96{bottom:184.000000pt;}
.y35{bottom:185.120000pt;}
.y8c{bottom:185.280000pt;}
.y1ca{bottom:188.480000pt;}
.y2{bottom:190.080000pt;}
.y169{bottom:191.040000pt;}
.y150{bottom:191.200000pt;}
.y10a{bottom:191.360000pt;}
.y215{bottom:191.520000pt;}
.y20a{bottom:191.680000pt;}
.y1ed{bottom:191.840000pt;}
.y305{bottom:192.000000pt;}
.y190{bottom:192.320000pt;}
.y1af{bottom:192.800000pt;}
.y11d{bottom:192.960000pt;}
.y2b6{bottom:193.760000pt;}
.y2cc{bottom:193.920000pt;}
.y298{bottom:194.080000pt;}
.y95{bottom:196.000000pt;}
.y38e{bottom:197.760000pt;}
.y359{bottom:200.480000pt;}
.y34{bottom:201.120000pt;}
.y8b{bottom:201.280000pt;}
.y24{bottom:203.040000pt;}
.y1c9{bottom:204.480000pt;}
.y168{bottom:207.040000pt;}
.y14f{bottom:207.200000pt;}
.y109{bottom:207.360000pt;}
.y214{bottom:207.520000pt;}
.y209{bottom:207.680000pt;}
.y1ec{bottom:207.840000pt;}
.y304{bottom:208.000000pt;}
.y18f{bottom:208.320000pt;}
.y1ae{bottom:208.800000pt;}
.y11c{bottom:208.960000pt;}
.y2b5{bottom:209.760000pt;}
.y2cb{bottom:209.920000pt;}
.y297{bottom:210.080000pt;}
.y358{bottom:211.680000pt;}
.y38d{bottom:213.760000pt;}
.y33{bottom:217.120000pt;}
.y8a{bottom:217.280000pt;}
.y23{bottom:219.040000pt;}
.y1c8{bottom:220.480000pt;}
.y167{bottom:223.040000pt;}
.y14e{bottom:223.200000pt;}
.y108{bottom:223.360000pt;}
.y2e6{bottom:223.520000pt;}
.y208{bottom:223.680000pt;}
.y1eb{bottom:223.840000pt;}
.y303{bottom:224.000000pt;}
.y18e{bottom:224.320000pt;}
.y1ad{bottom:224.800000pt;}
.y11b{bottom:224.960000pt;}
.y2b4{bottom:225.760000pt;}
.y2ca{bottom:225.920000pt;}
.y296{bottom:226.080000pt;}
.y38c{bottom:229.760000pt;}
.y32{bottom:233.120000pt;}
.y89{bottom:233.280000pt;}
.y357{bottom:234.400000pt;}
.y22{bottom:235.040000pt;}
.y1c7{bottom:236.480000pt;}
.y166{bottom:239.040000pt;}
.y14d{bottom:239.200000pt;}
.y107{bottom:239.360000pt;}
.y2e5{bottom:239.520000pt;}
.y207{bottom:239.680000pt;}
.y1ea{bottom:239.840000pt;}
.y302{bottom:240.000000pt;}
.y18d{bottom:240.320000pt;}
.y1ac{bottom:240.800000pt;}
.y11a{bottom:240.960000pt;}
.y2b3{bottom:241.760000pt;}
.y2c9{bottom:241.920000pt;}
.y2a3{bottom:242.080000pt;}
.y356{bottom:245.760000pt;}
.y202{bottom:248.800000pt;}
.y31{bottom:249.120000pt;}
.y88{bottom:249.280000pt;}
.y21{bottom:251.040000pt;}
.y1c6{bottom:252.480000pt;}
.y165{bottom:255.040000pt;}
.y14c{bottom:255.200000pt;}
.y106{bottom:255.360000pt;}
.y2e4{bottom:255.520000pt;}
.y206{bottom:255.680000pt;}
.y1e9{bottom:255.840000pt;}
.y301{bottom:256.000000pt;}
.y18c{bottom:256.320000pt;}
.y1ab{bottom:256.800000pt;}
.y119{bottom:256.960000pt;}
.y355{bottom:257.120000pt;}
.y2b2{bottom:257.760000pt;}
.y2c8{bottom:257.920000pt;}
.y2a2{bottom:258.080000pt;}
.y201{bottom:260.800000pt;}
.y310{bottom:262.880000pt;}
.y30{bottom:265.120000pt;}
.y87{bottom:265.280000pt;}
.y20{bottom:267.040000pt;}
.y1c5{bottom:268.480000pt;}
.y164{bottom:271.040000pt;}
.y14b{bottom:271.200000pt;}
.y105{bottom:271.360000pt;}
.y2e3{bottom:271.520000pt;}
.y205{bottom:271.680000pt;}
.y1e8{bottom:271.840000pt;}
.y300{bottom:272.000000pt;}
.y18b{bottom:272.320000pt;}
.ya3{bottom:272.800000pt;}
.y118{bottom:272.960000pt;}
.y2b1{bottom:273.760000pt;}
.y2c7{bottom:273.920000pt;}
.y295{bottom:274.080000pt;}
.y30f{bottom:278.880000pt;}
.y354{bottom:279.680000pt;}
.y2f{bottom:281.120000pt;}
.y86{bottom:281.280000pt;}
.y1f{bottom:283.040000pt;}
.y1c4{bottom:284.480000pt;}
.y200{bottom:284.800000pt;}
.y163{bottom:287.040000pt;}
.y14a{bottom:287.200000pt;}
.y104{bottom:287.360000pt;}
.y2e2{bottom:287.520000pt;}
.y204{bottom:287.680000pt;}
.y1e7{bottom:287.840000pt;}
.y2ff{bottom:288.000000pt;}
.y18a{bottom:288.320000pt;}
.y1aa{bottom:288.800000pt;}
.y117{bottom:288.960000pt;}
.y2b0{bottom:289.760000pt;}
.y2c6{bottom:289.920000pt;}
.y294{bottom:290.080000pt;}
.y353{bottom:291.040000pt;}
.y38a{bottom:293.280000pt;}
.y30e{bottom:294.880000pt;}
.y1ff{bottom:296.800000pt;}
.y2e{bottom:297.120000pt;}
.y85{bottom:297.280000pt;}
.y1e{bottom:299.040000pt;}
.y1c3{bottom:301.600000pt;}
.y352{bottom:302.400000pt;}
.y162{bottom:303.040000pt;}
.y149{bottom:303.200000pt;}
.y103{bottom:303.360000pt;}
.y2e1{bottom:303.520000pt;}
.y203{bottom:303.680000pt;}
.y1e6{bottom:303.840000pt;}
.y2fe{bottom:304.000000pt;}
.y189{bottom:304.320000pt;}
.y1a9{bottom:304.800000pt;}
.y116{bottom:304.960000pt;}
.y2af{bottom:305.760000pt;}
.y2c5{bottom:305.920000pt;}
.y293{bottom:306.080000pt;}
.y389{bottom:307.680000pt;}
.y1fe{bottom:308.800000pt;}
.y84{bottom:313.280000pt;}
.y351{bottom:313.760000pt;}
.y1d{bottom:315.040000pt;}
.y30d{bottom:315.680000pt;}
.y161{bottom:319.040000pt;}
.y148{bottom:319.200000pt;}
.y179{bottom:319.359600pt;}
.y102{bottom:319.360000pt;}
.y2e0{bottom:319.520000pt;}
.y1c2{bottom:319.680000pt;}
.y1e5{bottom:319.840000pt;}
.y2fd{bottom:320.000000pt;}
.y188{bottom:320.320000pt;}
.y1a8{bottom:320.800000pt;}
.y1d3{bottom:320.960000pt;}
.y2ae{bottom:321.760000pt;}
.y2c4{bottom:321.920000pt;}
.y292{bottom:322.080000pt;}
.y350{bottom:325.120000pt;}
.y83{bottom:329.280000pt;}
.y1c{bottom:331.040000pt;}
.y30c{bottom:331.680000pt;}
.y1fd{bottom:332.800000pt;}
.y160{bottom:335.040000pt;}
.y147{bottom:335.200000pt;}
.y101{bottom:335.360000pt;}
.y24c{bottom:335.520000pt;}
.y1c1{bottom:335.680000pt;}
.y1e4{bottom:335.840000pt;}
.y2fc{bottom:336.000000pt;}
.y187{bottom:336.320000pt;}
.y34f{bottom:336.480000pt;}
.y1a7{bottom:336.800000pt;}
.y234{bottom:336.960000pt;}
.y2ad{bottom:337.760000pt;}
.y2c3{bottom:337.920000pt;}
.y291{bottom:338.080000pt;}
.y1fc{bottom:344.800000pt;}
.y82{bottom:345.280000pt;}
.y18{bottom:347.040000pt;}
.y30b{bottom:347.680000pt;}
.y233{bottom:348.960000pt;}
.y1d2{bottom:349.280000pt;}
.y115{bottom:349.280267pt;}
.y388{bottom:350.880000pt;}
.y15f{bottom:351.040000pt;}
.y146{bottom:351.200000pt;}
.y100{bottom:351.360000pt;}
.y24b{bottom:351.520000pt;}
.y1c0{bottom:351.680000pt;}
.y1e3{bottom:351.840000pt;}
.y2fb{bottom:352.000000pt;}
.y186{bottom:352.320000pt;}
.y1a6{bottom:352.800000pt;}
.y2ac{bottom:353.760000pt;}
.y2c2{bottom:353.920000pt;}
.y290{bottom:354.080000pt;}
.yd9{bottom:355.325667pt;}
.yd6{bottom:355.788509pt;}
.y2de{bottom:356.160000pt;}
.y1fb{bottom:356.800000pt;}
.y34e{bottom:359.040000pt;}
.y232{bottom:360.960000pt;}
.yd8{bottom:360.962384pt;}
.y81{bottom:361.280000pt;}
.yd5{bottom:361.425225pt;}
.y17{bottom:363.040000pt;}
.y5c{bottom:365.280000pt;}
.yd7{bottom:366.599100pt;}
.y15e{bottom:367.040000pt;}
.yd4{bottom:367.061942pt;}
.y145{bottom:367.200000pt;}
.yff{bottom:367.360000pt;}
.y24a{bottom:367.520000pt;}
.y1bf{bottom:367.680000pt;}
.y1e2{bottom:367.840000pt;}
.y2fa{bottom:368.000000pt;}
.y185{bottom:368.320000pt;}
.y1a5{bottom:368.800000pt;}
.y2ab{bottom:369.760000pt;}
.y2c1{bottom:369.920000pt;}
.y28f{bottom:370.080000pt;}
.y2dc{bottom:371.520000pt;}
.y231{bottom:372.960000pt;}
.y114{bottom:373.280000pt;}
.y1d4{bottom:376.320000pt;}
.yd3{bottom:376.664700pt;}
.y80{bottom:377.280000pt;}
.y16{bottom:379.040000pt;}
.y1fa{bottom:380.800000pt;}
.y5b{bottom:381.280000pt;}
.yd2{bottom:382.301417pt;}
.y15d{bottom:383.040000pt;}
.y144{bottom:383.200000pt;}
.yfe{bottom:383.360000pt;}
.y249{bottom:383.520000pt;}
.y1be{bottom:383.680000pt;}
.y1e1{bottom:383.840000pt;}
.y2f9{bottom:384.000000pt;}
.y184{bottom:384.320000pt;}
.y1a4{bottom:384.800000pt;}
.y230{bottom:384.960000pt;}
.y2c0{bottom:385.920000pt;}
.y28e{bottom:386.080000pt;}
.y1f9{bottom:392.800000pt;}
.y7f{bottom:393.280000pt;}
.y387{bottom:394.880000pt;}
.y15{bottom:395.040000pt;}
.y22f{bottom:396.960000pt;}
.y5a{bottom:397.280000pt;}
.y3a4{bottom:398.395600pt;}
.y15c{bottom:399.040000pt;}
.y143{bottom:399.200000pt;}
.yfd{bottom:399.360000pt;}
.y248{bottom:399.520000pt;}
.y1bd{bottom:399.680000pt;}
.y1e0{bottom:399.840000pt;}
.y2f8{bottom:400.000000pt;}
.y183{bottom:400.320000pt;}
.y334{bottom:400.640000pt;}
.y1a3{bottom:400.800000pt;}
.y1f8{bottom:404.800000pt;}
.y22e{bottom:408.960000pt;}
.y7e{bottom:409.280000pt;}
.y386{bottom:410.880000pt;}
.y14{bottom:411.040000pt;}
.y59{bottom:413.280000pt;}
.y3a3{bottom:414.396000pt;}
.y15b{bottom:415.040000pt;}
.y142{bottom:415.200000pt;}
.yfc{bottom:415.360000pt;}
.y247{bottom:415.520000pt;}
.y1bc{bottom:415.680000pt;}
.y1df{bottom:415.840000pt;}
.y2f7{bottom:416.000000pt;}
.y182{bottom:416.320000pt;}
.y1a2{bottom:416.800000pt;}
.ye2{bottom:418.534967pt;}
.y22d{bottom:420.960000pt;}
.y2d6{bottom:421.120000pt;}
.y28d{bottom:421.280000pt;}
.ye1{bottom:424.171684pt;}
.y7d{bottom:425.280000pt;}
.y385{bottom:426.880000pt;}
.y13{bottom:427.040000pt;}
.ye0{bottom:429.808401pt;}
.y3a2{bottom:430.396400pt;}
.y15a{bottom:431.040000pt;}
.y141{bottom:431.200000pt;}
.yfb{bottom:431.360000pt;}
.y246{bottom:431.520000pt;}
.y1bb{bottom:431.680000pt;}
.y1de{bottom:431.840000pt;}
.y2f6{bottom:432.000000pt;}
.yd1{bottom:432.225033pt;}
.y181{bottom:432.320000pt;}
.y1a1{bottom:432.800000pt;}
.y22c{bottom:432.960000pt;}
.y58{bottom:433.280000pt;}
.yd0{bottom:437.861750pt;}
.y7c{bottom:441.280000pt;}
.y384{bottom:442.880000pt;}
.y12{bottom:443.040000pt;}
.y22b{bottom:444.960000pt;}
.y3a1{bottom:446.396800pt;}
.y34d{bottom:446.720000pt;}
.y12f{bottom:447.040000pt;}
.y140{bottom:447.200000pt;}
.yfa{bottom:447.360000pt;}
.y245{bottom:447.520000pt;}
.y1ba{bottom:447.680000pt;}
.y1dd{bottom:447.840000pt;}
.y2f5{bottom:448.000000pt;}
.y180{bottom:448.320000pt;}
.y1a0{bottom:448.800000pt;}
.y333{bottom:450.880000pt;}
.y22a{bottom:456.960000pt;}
.y7b{bottom:457.280000pt;}
.y383{bottom:458.880000pt;}
.y11{bottom:459.040000pt;}
.y3a0{bottom:462.397200pt;}
.y34c{bottom:462.720000pt;}
.y12e{bottom:463.040000pt;}
.y13f{bottom:463.200000pt;}
.yf9{bottom:463.360000pt;}
.y244{bottom:463.520000pt;}
.y1b9{bottom:463.680000pt;}
.y1dc{bottom:463.840000pt;}
.y17f{bottom:464.320000pt;}
.y19f{bottom:464.800000pt;}
.y57{bottom:465.280000pt;}
.y332{bottom:466.880000pt;}
.y229{bottom:468.960000pt;}
.y7a{bottom:473.280000pt;}
.y382{bottom:474.880000pt;}
.y10{bottom:475.040000pt;}
.ydf{bottom:475.706067pt;}
.y2d7{bottom:478.080000pt;}
.y39f{bottom:478.397600pt;}
.y34b{bottom:478.720000pt;}
.ycf{bottom:478.928083pt;}
.y12d{bottom:479.040000pt;}
.y13e{bottom:479.200000pt;}
.yf8{bottom:479.360000pt;}
.y243{bottom:479.520000pt;}
.y23f{bottom:479.680000pt;}
.y1db{bottom:479.840000pt;}
.y17e{bottom:480.320000pt;}
.y19e{bottom:480.800000pt;}
.y228{bottom:480.960000pt;}
.y56{bottom:481.280000pt;}
.yde{bottom:481.342784pt;}
.y331{bottom:482.880000pt;}
.yce{bottom:484.564800pt;}
.ydd{bottom:486.979500pt;}
.y2f4{bottom:488.000267pt;}
.y79{bottom:489.280000pt;}
.y381{bottom:490.880000pt;}
.yf{bottom:491.040000pt;}
.y227{bottom:492.960000pt;}
.y39e{bottom:494.398000pt;}
.y34a{bottom:494.720000pt;}
.y12c{bottom:495.040000pt;}
.y13d{bottom:495.200000pt;}
.yf7{bottom:495.360000pt;}
.y242{bottom:495.520000pt;}
.y23e{bottom:495.680000pt;}
.y1da{bottom:495.840000pt;}
.y17d{bottom:496.320000pt;}
.y2aa{bottom:496.480000pt;}
.y19d{bottom:496.800000pt;}
.y330{bottom:498.880000pt;}
.y21f{bottom:499.680000pt;}
.y55{bottom:501.120000pt;}
.y226{bottom:504.960000pt;}
.y78{bottom:505.280000pt;}
.y380{bottom:506.880000pt;}
.ye{bottom:507.040000pt;}
.ydc{bottom:510.330784pt;}
.y39d{bottom:510.398400pt;}
.y349{bottom:510.720000pt;}
.y12b{bottom:511.040000pt;}
.y13c{bottom:511.200000pt;}
.yf6{bottom:511.360000pt;}
.y241{bottom:511.520000pt;}
.y23d{bottom:511.680000pt;}
.y1d9{bottom:511.840000pt;}
.y2f3{bottom:512.000000pt;}
.y17c{bottom:512.320000pt;}
.y2a9{bottom:512.480000pt;}
.y19c{bottom:512.800000pt;}
.y32f{bottom:514.880000pt;}
.y1d1{bottom:515.040000pt;}
.ydb{bottom:515.967500pt;}
.y225{bottom:516.960000pt;}
.y77{bottom:521.280000pt;}
.yda{bottom:521.604217pt;}
.y37f{bottom:522.880000pt;}
.yd{bottom:523.040000pt;}
.y39c{bottom:526.398800pt;}
.y348{bottom:526.720000pt;}
.y12a{bottom:527.040000pt;}
.y13b{bottom:527.200000pt;}
.yf5{bottom:527.360000pt;}
.y240{bottom:527.520000pt;}
.y23c{bottom:527.680000pt;}
.y1d8{bottom:527.840000pt;}
.y17b{bottom:528.320000pt;}
.y224{bottom:528.960000pt;}
.y32e{bottom:530.880000pt;}
.y54{bottom:533.120000pt;}
.y76{bottom:537.280000pt;}
.y37e{bottom:538.720000pt;}
.yc{bottom:539.040000pt;}
.y223{bottom:540.960000pt;}
.y39b{bottom:542.399200pt;}
.y347{bottom:542.720000pt;}
.y129{bottom:543.040000pt;}
.yf4{bottom:543.360000pt;}
.y23b{bottom:543.520000pt;}
.y256{bottom:543.840000pt;}
.y17a{bottom:544.320000pt;}
.y19b{bottom:547.200000pt;}
.y53{bottom:549.120000pt;}
.y32d{bottom:551.680000pt;}
.y222{bottom:552.960000pt;}
.y75{bottom:553.280000pt;}
.y37d{bottom:554.720000pt;}
.yb{bottom:555.040000pt;}
.y39a{bottom:558.399600pt;}
.y128{bottom:559.040000pt;}
.yf3{bottom:559.360000pt;}
.y23a{bottom:559.520000pt;}
.y255{bottom:559.840000pt;}
.y2a8{bottom:560.320000pt;}
.y1f7{bottom:564.000000pt;}
.y221{bottom:564.960000pt;}
.y52{bottom:565.120000pt;}
.y177{bottom:565.920000pt;}
.y32c{bottom:567.680000pt;}
.y74{bottom:569.280000pt;}
.y37c{bottom:570.720000pt;}
.ya{bottom:571.040000pt;}
.y399{bottom:574.400000pt;}
.y127{bottom:575.040000pt;}
.y178{bottom:575.359600pt;}
.yf2{bottom:575.360000pt;}
.y239{bottom:575.520000pt;}
.y254{bottom:575.840000pt;}
.y2a7{bottom:576.320000pt;}
.y220{bottom:576.960000pt;}
.y176{bottom:577.920000pt;}
.y19a{bottom:580.000000pt;}
.y51{bottom:581.120000pt;}
.y32b{bottom:583.680000pt;}
.y73{bottom:585.280000pt;}
.y37b{bottom:586.720000pt;}
.y9{bottom:587.040000pt;}
.y175{bottom:589.920000pt;}
.y126{bottom:591.040000pt;}
.yf1{bottom:591.360000pt;}
.y238{bottom:591.520000pt;}
.y253{bottom:591.840000pt;}
.y2a6{bottom:592.320000pt;}
.y346{bottom:596.000000pt;}
.ya2{bottom:596.320000pt;}
.y50{bottom:597.120000pt;}
.y398{bottom:598.080000pt;}
.y32a{bottom:599.680000pt;}
.y72{bottom:601.280000pt;}
.y174{bottom:601.920000pt;}
.y37a{bottom:602.720000pt;}
.y8{bottom:603.040000pt;}
.yf0{bottom:607.360000pt;}
.y237{bottom:607.520000pt;}
.y252{bottom:607.840000pt;}
.y2a5{bottom:608.320000pt;}
.y345{bottom:612.000000pt;}
.y4f{bottom:613.120000pt;}
.y173{bottom:613.920000pt;}
.y71{bottom:617.280000pt;}
.y379{bottom:618.720000pt;}
.y7{bottom:619.040000pt;}
.yc8{bottom:619.900080pt;}
.y329{bottom:620.480000pt;}
.y135{bottom:623.360000pt;}
.y236{bottom:623.520000pt;}
.y251{bottom:623.840000pt;}
.yc7{bottom:625.100000pt;}
.y344{bottom:628.000000pt;}
.y4e{bottom:629.120000pt;}
.y70{bottom:633.280000pt;}
.y378{bottom:634.720000pt;}
.y6{bottom:635.040000pt;}
.y328{bottom:636.480000pt;}
.y134{bottom:639.360000pt;}
.y235{bottom:639.520000pt;}
.y250{bottom:639.840000pt;}
.y343{bottom:644.000000pt;}
.y4d{bottom:645.120000pt;}
.y6f{bottom:649.280000pt;}
.y139{bottom:649.440800pt;}
.yad{bottom:650.366240pt;}
.y377{bottom:650.720000pt;}
.y5{bottom:651.040000pt;}
.y327{bottom:652.480000pt;}
.y2a4{bottom:652.640000pt;}
.y133{bottom:655.360000pt;}
.yc2{bottom:655.755600pt;}
.y24f{bottom:655.840000pt;}
.y342{bottom:660.000000pt;}
.yc3{bottom:660.410640pt;}
.y4c{bottom:661.120000pt;}
.yc1{bottom:661.167200pt;}
.y2f0{bottom:663.840000pt;}
.yc0{bottom:665.167200pt;}
.y6e{bottom:665.280000pt;}
.y376{bottom:666.720000pt;}
.y4{bottom:667.040000pt;}
.y132{bottom:671.360000pt;}
.ybd{bottom:671.697440pt;}
.y24e{bottom:671.840000pt;}
.y326{bottom:673.280000pt;}
.y138{bottom:673.440800pt;}
.yb4{bottom:673.699040pt;}
.y24d{bottom:674.720000pt;}
.y341{bottom:676.000000pt;}
.yac{bottom:676.232000pt;}
.ya9{bottom:676.232480pt;}
.y4b{bottom:677.120000pt;}
.ybc{bottom:677.297600pt;}
.yb3{bottom:679.299200pt;}
.y6d{bottom:681.280000pt;}
.yae{bottom:681.566240pt;}
.yab{bottom:681.832160pt;}
.ya8{bottom:681.832640pt;}
.y375{bottom:682.720000pt;}
.ybb{bottom:682.897760pt;}
.yb1{bottom:682.898720pt;}
.y1b{bottom:683.040000pt;}
.yb2{bottom:684.899360pt;}
.y131{bottom:687.360000pt;}
.yaa{bottom:687.432320pt;}
.ya7{bottom:687.432800pt;}
.yba{bottom:688.497920pt;}
.yb0{bottom:688.498880pt;}
.y325{bottom:689.280000pt;}
.y340{bottom:692.000000pt;}
.y4a{bottom:693.120000pt;}
.yaf{bottom:694.099040pt;}
.y6c{bottom:697.280000pt;}
.y374{bottom:698.720000pt;}
.y130{bottom:703.360000pt;}
.y324{bottom:705.280000pt;}
.y33f{bottom:708.000000pt;}
.y49{bottom:709.120000pt;}
.y257{bottom:709.280000pt;}
.y6b{bottom:713.280000pt;}
.y373{bottom:714.720000pt;}
.y1a{bottom:715.520000pt;}
.yef{bottom:719.360000pt;}
.y28c{bottom:722.560000pt;}
.y33e{bottom:724.000000pt;}
.y48{bottom:725.120000pt;}
.y323{bottom:726.080000pt;}
.y6a{bottom:729.280000pt;}
.y372{bottom:730.720000pt;}
.y28b{bottom:734.560000pt;}
.yee{bottom:735.360000pt;}
.y2ef{bottom:735.520000pt;}
.ybf{bottom:737.829920pt;}
.y19{bottom:740.000000pt;}
.y47{bottom:741.120000pt;}
.y322{bottom:742.080000pt;}
.ybe{bottom:743.430080pt;}
.y69{bottom:745.280000pt;}
.y371{bottom:746.720000pt;}
.yb7{bottom:749.831360pt;}
.yed{bottom:751.360000pt;}
.y2ee{bottom:751.520000pt;}
.yb6{bottom:755.431520pt;}
.y46{bottom:757.120000pt;}
.yb5{bottom:761.031200pt;}
.y68{bottom:761.280000pt;}
.y33d{bottom:761.440000pt;}
.y370{bottom:762.720000pt;}
.y321{bottom:762.880000pt;}
.yb8{bottom:765.297920pt;}
.ycd{bottom:766.900320pt;}
.yec{bottom:767.360000pt;}
.y2ed{bottom:767.520000pt;}
.ycc{bottom:772.500000pt;}
.y45{bottom:773.120000pt;}
.y67{bottom:777.280000pt;}
.y33c{bottom:777.440000pt;}
.y36f{bottom:778.720000pt;}
.y320{bottom:778.880000pt;}
.yeb{bottom:783.360000pt;}
.y2ec{bottom:783.520000pt;}
.y44{bottom:789.120000pt;}
.y66{bottom:793.280000pt;}
.y36e{bottom:794.720000pt;}
.y31f{bottom:794.880000pt;}
.yc6{bottom:795.699680pt;}
.ya6{bottom:798.400160pt;}
.y33b{bottom:798.720000pt;}
.yea{bottom:799.360000pt;}
.y2eb{bottom:799.520000pt;}
.yc5{bottom:801.299840pt;}
.ya5{bottom:803.999840pt;}
.y43{bottom:805.120000pt;}
.yc4{bottom:806.900000pt;}
.y2c{bottom:807.680000pt;}
.y65{bottom:809.280000pt;}
.ya4{bottom:809.600000pt;}
.y36d{bottom:810.720000pt;}
.y31e{bottom:810.880000pt;}
.y33a{bottom:814.720000pt;}
.ye9{bottom:815.360000pt;}
.y2ea{bottom:815.520000pt;}
.y42{bottom:821.120000pt;}
.yb9{bottom:825.031040pt;}
.y64{bottom:825.280000pt;}
.y36c{bottom:826.720000pt;}
.y339{bottom:830.720000pt;}
.ye8{bottom:831.360000pt;}
.y2e9{bottom:831.520000pt;}
.y31d{bottom:831.680000pt;}
.y63{bottom:841.280000pt;}
.y36b{bottom:842.720000pt;}
.y41{bottom:845.120000pt;}
.y338{bottom:846.720000pt;}
.ye7{bottom:847.360000pt;}
.y2e8{bottom:847.520000pt;}
.y31c{bottom:847.680000pt;}
.y62{bottom:857.280000pt;}
.y36a{bottom:858.720000pt;}
.y337{bottom:862.720000pt;}
.ye6{bottom:863.360000pt;}
.y2e7{bottom:863.520000pt;}
.y31b{bottom:863.680000pt;}
.y40{bottom:863.680533pt;}
.ycb{bottom:865.700320pt;}
.y61{bottom:873.280000pt;}
.y369{bottom:874.720000pt;}
.y2b{bottom:876.320000pt;}
.y336{bottom:878.720000pt;}
.y2d8{bottom:879.359600pt;}
.ye5{bottom:879.360000pt;}
.y31a{bottom:884.480000pt;}
.y3f{bottom:887.680267pt;}
.y60{bottom:889.280000pt;}
.y368{bottom:890.720000pt;}
.yca{bottom:892.100320pt;}
.y335{bottom:894.720000pt;}
.ye4{bottom:895.360000pt;}
.y1d7{bottom:900.000000pt;}
.y319{bottom:900.480000pt;}
.yc9{bottom:903.700000pt;}
.y5f{bottom:905.280000pt;}
.y367{bottom:906.720000pt;}
.y2f2{bottom:908.320000pt;}
.y3e{bottom:911.680000pt;}
.y5e{bottom:921.280000pt;}
.y366{bottom:922.720000pt;}
.y1d6{bottom:928.800000pt;}
.y2dd{bottom:931.999200pt;}
.y137{bottom:932.000000pt;}
.y2f1{bottom:932.320000pt;}
.y2df{bottom:932.320800pt;}
.y5d{bottom:937.280000pt;}
.y397{bottom:938.720000pt;}
.y2d{bottom:989.280000pt;}
.y1b8{bottom:989.600000pt;}
.y136{bottom:989.760000pt;}
.ye3{bottom:989.920000pt;}
.y13a{bottom:990.080133pt;}
.y1d5{bottom:990.240133pt;}
.y2d9{bottom:990.720000pt;}
.y365{bottom:992.640000pt;}
.h11{height:9.433600pt;}
.h12{height:12.971200pt;}
.h10{height:14.150400pt;}
.h15{height:14.320072pt;}
.h34{height:20.250225pt;}
.h33{height:20.250839pt;}
.h35{height:20.251231pt;}
.h32{height:20.251860pt;}
.h36{height:20.251969pt;}
.h30{height:20.252244pt;}
.h31{height:20.252337pt;}
.h37{height:20.252821pt;}
.h38{height:20.253441pt;}
.h17{height:20.253559pt;}
.h2e{height:20.253952pt;}
.h2f{height:20.254100pt;}
.h39{height:20.254526pt;}
.h3a{height:20.256206pt;}
.h2d{height:20.256606pt;}
.h2c{height:20.256787pt;}
.h3b{height:20.258151pt;}
.h2b{height:20.258172pt;}
.h28{height:20.258923pt;}
.h3c{height:20.259756pt;}
.h2a{height:20.260175pt;}
.h3d{height:20.261089pt;}
.h29{height:20.261793pt;}
.h27{height:20.261962pt;}
.h26{height:20.264894pt;}
.h18{height:20.265038pt;}
.h3e{height:20.265770pt;}
.h3f{height:20.267178pt;}
.h1a{height:20.267772pt;}
.h40{height:20.268625pt;}
.h41{height:20.269873pt;}
.h25{height:20.269951pt;}
.h19{height:20.270505pt;}
.h24{height:20.271354pt;}
.h42{height:20.271757pt;}
.h1b{height:20.273238pt;}
.h43{height:20.274219pt;}
.h23{height:20.274349pt;}
.h44{height:20.275919pt;}
.h22{height:20.277557pt;}
.h45{height:20.279220pt;}
.h21{height:20.281625pt;}
.h46{height:20.281804pt;}
.h20{height:20.284161pt;}
.h1c{height:20.284172pt;}
.h1f{height:20.286716pt;}
.h1e{height:20.289638pt;}
.h1d{height:20.295105pt;}
.h13{height:28.300800pt;}
.h2{height:36.309333pt;}
.hf{height:38.133333pt;}
.h48{height:38.578667pt;}
.h4a{height:39.520000pt;}
.h47{height:40.848000pt;}
.h5{height:45.386667pt;}
.h3{height:45.653333pt;}
.h14{height:48.299520pt;}
.ha{height:48.506667pt;}
.h9{height:49.016318pt;}
.h8{height:52.194667pt;}
.hc{height:54.213333pt;}
.h1{height:57.066667pt;}
.hd{height:68.480000pt;}
.h49{height:69.333600pt;}
.he{height:79.893333pt;}
.h7{height:102.720000pt;}
.h6{height:104.000400pt;}
.h4{height:129.352000pt;}
.h16{height:196.480000pt;}
.hb{height:385.786667pt;}
.h0{height:1056.000000pt;}
.w1{width:472.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x75{left:1.949600pt;}
.x6f{left:14.115067pt;}
.x73{left:21.488640pt;}
.x10{left:26.080000pt;}
.x76{left:38.862133pt;}
.x72{left:41.380374pt;}
.x77{left:43.889867pt;}
.x4{left:48.000000pt;}
.x56{left:48.960000pt;}
.x4c{left:49.920000pt;}
.x11{left:51.040000pt;}
.x5c{left:52.000000pt;}
.x4e{left:52.960000pt;}
.xf{left:53.920000pt;}
.x6c{left:56.000000pt;}
.x15{left:56.960000pt;}
.x3{left:59.200000pt;}
.x49{left:60.960000pt;}
.x46{left:61.920000pt;}
.x4f{left:63.360000pt;}
.x6{left:65.920000pt;}
.x57{left:66.880000pt;}
.x4d{left:68.000000pt;}
.x6b{left:69.280000pt;}
.x45{left:71.360000pt;}
.x4a{left:73.280000pt;}
.x5b{left:74.240000pt;}
.x47{left:75.360000pt;}
.x5{left:76.640000pt;}
.x78{left:77.726933pt;}
.x48{left:80.000000pt;}
.x79{left:81.602400pt;}
.x12{left:83.840000pt;}
.xa0{left:85.440000pt;}
.x7a{left:91.509200pt;}
.xa3{left:97.760000pt;}
.x17{left:99.360000pt;}
.xa4{left:100.800000pt;}
.x16{left:102.080000pt;}
.xa5{left:109.440000pt;}
.x7b{left:113.337600pt;}
.x70{left:114.855930pt;}
.x14{left:124.320000pt;}
.x13{left:126.560533pt;}
.x7{left:129.440000pt;}
.x7c{left:131.941467pt;}
.x7d{left:142.776667pt;}
.x71{left:147.036903pt;}
.x7e{left:161.994000pt;}
.x7f{left:170.150133pt;}
.x80{left:180.834933pt;}
.x81{left:190.693333pt;}
.x6e{left:196.988533pt;}
.x82{left:201.149600pt;}
.x83{left:211.662000pt;}
.x84{left:221.970933pt;}
.x74{left:223.270031pt;}
.xe{left:233.280000pt;}
.x8f{left:275.054133pt;}
.x85{left:277.185200pt;}
.x86{left:284.257067pt;}
.x90{left:286.499089pt;}
.x87{left:288.508267pt;}
.x66{left:293.920000pt;}
.x8{left:296.000000pt;}
.x59{left:296.960000pt;}
.x52{left:297.920000pt;}
.x18{left:299.040000pt;}
.x5d{left:300.000000pt;}
.x50{left:300.960000pt;}
.x68{left:305.920000pt;}
.x19{left:308.000000pt;}
.x5e{left:308.960000pt;}
.x51{left:309.920000pt;}
.x60{left:310.880000pt;}
.x67{left:312.000000pt;}
.x9{left:313.920000pt;}
.x5a{left:314.880000pt;}
.x53{left:316.000000pt;}
.x61{left:320.000000pt;}
.x88{left:320.998533pt;}
.x63{left:322.400000pt;}
.x69{left:324.640000pt;}
.x9b{left:325.600000pt;}
.x64{left:327.040000pt;}
.x9a{left:328.800000pt;}
.x89{left:331.185067pt;}
.x94{left:332.320000pt;}
.x8a{left:334.488667pt;}
.x1b{left:336.000000pt;}
.x8b{left:339.324800pt;}
.x8c{left:343.734933pt;}
.x8d{left:348.171467pt;}
.x8e{left:351.086400pt;}
.x91{left:357.760000pt;}
.x62{left:358.720000pt;}
.x99{left:372.320000pt;}
.x5f{left:375.360000pt;}
.x9e{left:398.079467pt;}
.x44{left:403.936560pt;}
.x43{left:409.350480pt;}
.x2b{left:411.760133pt;}
.x2a{left:413.373413pt;}
.x40{left:418.468560pt;}
.x65{left:419.520000pt;}
.x9d{left:420.640000pt;}
.x42{left:426.319920pt;}
.x41{left:427.933200pt;}
.x6d{left:436.160000pt;}
.x34{left:455.040773pt;}
.x28{left:458.123813pt;}
.x27{left:461.505893pt;}
.x29{left:465.907493pt;}
.x9f{left:482.080000pt;}
.x92{left:492.960000pt;}
.xa6{left:500.480000pt;}
.x31{left:514.128133pt;}
.x25{left:516.061253pt;}
.x26{left:517.638053pt;}
.x3e{left:523.267920pt;}
.x24{left:524.160773pt;}
.x96{left:525.599600pt;}
.x3f{left:530.016240pt;}
.x2c{left:531.242213pt;}
.x32{left:532.572800pt;}
.x33{left:535.772800pt;}
.x38{left:538.333200pt;}
.xb{left:544.000000pt;}
.x58{left:544.960000pt;}
.x4b{left:545.920000pt;}
.xd{left:547.040000pt;}
.x54{left:548.160000pt;}
.x35{left:551.207400pt;}
.xa7{left:554.560000pt;}
.x1a{left:556.000000pt;}
.x55{left:557.280000pt;}
.x2d{left:559.573733pt;}
.x2f{left:560.560613pt;}
.xa{left:561.920000pt;}
.x2e{left:563.373893pt;}
.x3c{left:565.219440pt;}
.x3d{left:569.019600pt;}
.xc{left:575.840000pt;}
.x95{left:582.080000pt;}
.x93{left:584.160000pt;}
.x37{left:590.483973pt;}
.x23{left:595.775813pt;}
.x30{left:598.705253pt;}
.x9c{left:600.960000pt;}
.x3b{left:605.403120pt;}
.x39{left:615.190800pt;}
.x3a{left:618.602160pt;}
.x6a{left:631.200000pt;}
.x21{left:634.622213pt;}
.x20{left:635.990213pt;}
.x1d{left:637.119653pt;}
.x1c{left:639.208133pt;}
.x36{left:641.240000pt;}
.x22{left:652.976453pt;}
.x98{left:661.760000pt;}
.x2{left:679.360000pt;}
.x1f{left:682.622213pt;}
.x1e{left:683.990213pt;}
.x97{left:687.519200pt;}
.xa1{left:688.800000pt;}
.xa2{left:698.080000pt;}
.x1{left:773.920000pt;}
}




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