
    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_1c23396ae2b0c5dec3344fe2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_d0cf6837f94ab7217bcc241b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.916992;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_7d33b464fac4dca465fdb3ff.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_1baab45743aeeaef8bc5bbe8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_e6119c5aba947218eb18b141.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_2a90dff1b95d4b8342b0bb31.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_74a0ed65be45464abe7bf714.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_40b883e12af31392606333f0.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.142090;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_5f2d56a3bc7fbedbec30d590.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_3d76f80386cd6a1d10526bdd.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.me{transform:matrix(0.230860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230860,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.235684,0.000001,0.000001,0.250000,0,0);-ms-transform:matrix(0.235684,0.000001,0.000001,0.250000,0,0);-webkit-transform:matrix(0.235684,0.000001,0.000001,0.250000,0,0);}
.md{transform:matrix(0.235684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235684,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.237062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237062,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.238030,0.000000,-0.079335,0.237078,0,0);-ms-transform:matrix(0.238030,0.000000,-0.079335,0.237078,0,0);-webkit-transform:matrix(0.238030,0.000000,-0.079335,0.237078,0,0);}
.m26{transform:matrix(0.239081,0.000000,-0.079686,0.236960,0,0);-ms-transform:matrix(0.239081,0.000000,-0.079686,0.236960,0,0);-webkit-transform:matrix(0.239081,0.000000,-0.079686,0.236960,0,0);}
.m20{transform:matrix(0.239166,0.000000,-0.079714,0.236951,0,0);-ms-transform:matrix(0.239166,0.000000,-0.079714,0.236951,0,0);-webkit-transform:matrix(0.239166,0.000000,-0.079714,0.236951,0,0);}
.m10{transform:matrix(0.243034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243034,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.244659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244659,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.245732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245732,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.245734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245734,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.247413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247413,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.247861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247861,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.247861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247861,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.248769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248769,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.249179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249179,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.249333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249333,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);}
.m29{transform:matrix(0.250137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250137,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.250318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250318,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250641,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.250875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250875,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.251004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251004,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.251189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251189,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.251327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251327,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.251457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251457,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.252179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252179,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.252193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252193,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.252237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252237,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.252277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252277,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.252337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252337,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.252337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252337,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.252804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252804,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.252920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252920,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.253174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253174,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.253264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253264,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.253631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253631,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.253994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253994,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.254062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254062,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.255728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255728,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.255728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255728,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.259042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259042,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.263176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263176,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.263176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263176,0.000000,0.000000,0.250000,0,0);}
.v5{vertical-align:-82.800000px;}
.v4{vertical-align:-65.906283px;}
.v2{vertical-align:-51.937323px;}
.v1{vertical-align:-19.188329px;}
.v3{vertical-align:-14.282913px;}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-3.000000px;}
.lsb{letter-spacing:-2.994000px;}
.ls8{letter-spacing:-2.988000px;}
.lsa{letter-spacing:-2.700000px;}
.ls55{letter-spacing:-0.216000px;}
.ls56{letter-spacing:-0.192000px;}
.ls53{letter-spacing:-0.168000px;}
.ls52{letter-spacing:-0.126000px;}
.ls2f{letter-spacing:-0.024000px;}
.ls7{letter-spacing:-0.012000px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.012000px;}
.ls1{letter-spacing:0.024000px;}
.ls28{letter-spacing:0.060000px;}
.ls51{letter-spacing:0.096000px;}
.ls0{letter-spacing:0.120000px;}
.ls23{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.150000px;}
.ls26{letter-spacing:0.168000px;}
.ls2{letter-spacing:0.300000px;}
.ls30{letter-spacing:0.624000px;}
.ls4f{letter-spacing:3.000000px;}
.ls27{letter-spacing:4.200000px;}
.ls15{letter-spacing:10.314708px;}
.ls25{letter-spacing:12.000000px;}
.lsc{letter-spacing:12.060000px;}
.ls4e{letter-spacing:13.200000px;}
.ls24{letter-spacing:16.758400px;}
.ls1e{letter-spacing:16.800000px;}
.ls22{letter-spacing:17.042644px;}
.ls17{letter-spacing:17.247509px;}
.ls38{letter-spacing:17.350771px;}
.ls10{letter-spacing:17.673890px;}
.lsf{letter-spacing:18.169379px;}
.lse{letter-spacing:18.972781px;}
.ls16{letter-spacing:20.643321px;}
.ls4{letter-spacing:24.540000px;}
.ls14{letter-spacing:37.215646px;}
.ls2e{letter-spacing:40.682525px;}
.ls37{letter-spacing:43.939496px;}
.ls44{letter-spacing:44.650108px;}
.ls42{letter-spacing:45.601758px;}
.ls4b{letter-spacing:45.783247px;}
.ls31{letter-spacing:46.079387px;}
.ls1b{letter-spacing:46.766796px;}
.ls1c{letter-spacing:47.746843px;}
.ls19{letter-spacing:47.985876px;}
.ls45{letter-spacing:48.389280px;}
.ls4c{letter-spacing:52.120644px;}
.ls36{letter-spacing:52.348403px;}
.ls12{letter-spacing:52.872731px;}
.ls3a{letter-spacing:53.956712px;}
.ls4a{letter-spacing:54.984000px;}
.ls49{letter-spacing:56.503516px;}
.ls20{letter-spacing:61.658342px;}
.ls33{letter-spacing:62.829927px;}
.ls34{letter-spacing:63.540538px;}
.ls39{letter-spacing:64.380841px;}
.ls48{letter-spacing:64.440069px;}
.ls43{letter-spacing:67.800000px;}
.ls1d{letter-spacing:68.423198px;}
.ls1a{letter-spacing:68.721989px;}
.ls32{letter-spacing:74.627286px;}
.ls2a{letter-spacing:87.725113px;}
.ls59{letter-spacing:102.384000px;}
.ls58{letter-spacing:102.534000px;}
.ls13{letter-spacing:104.500906px;}
.ls54{letter-spacing:109.800000px;}
.ls1f{letter-spacing:116.485784px;}
.ls21{letter-spacing:126.600000px;}
.ls29{letter-spacing:138.340353px;}
.ls50{letter-spacing:138.384000px;}
.ls57{letter-spacing:138.534000px;}
.ls35{letter-spacing:157.933472px;}
.ls18{letter-spacing:174.271672px;}
.ls3c{letter-spacing:184.850602px;}
.ls11{letter-spacing:208.147942px;}
.lsd{letter-spacing:329.552873px;}
.ls41{letter-spacing:405.936990px;}
.ls3e{letter-spacing:457.989304px;}
.ls3f{letter-spacing:473.445111px;}
.ls40{letter-spacing:480.669664px;}
.ls3d{letter-spacing:483.038370px;}
.ls2c{letter-spacing:556.651342px;}
.ls47{letter-spacing:566.277930px;}
.ls46{letter-spacing:587.895743px;}
.ls4d{letter-spacing:625.102408px;}
.ls3b{letter-spacing:627.292566px;}
.ls2d{letter-spacing:633.302610px;}
.ls2b{letter-spacing:733.262574px;}
.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;}
}
.ws11{word-spacing:-116.571099px;}
.wsf{word-spacing:-68.806535px;}
.ws33{word-spacing:-45.684831px;}
.ws43{word-spacing:-39.528000px;}
.ws3f{word-spacing:-22.450266px;}
.wse{word-spacing:-18.024000px;}
.ws9{word-spacing:-18.000000px;}
.ws46{word-spacing:-17.832000px;}
.ws48{word-spacing:-17.808000px;}
.ws47{word-spacing:-17.784000px;}
.wsb{word-spacing:-17.331805px;}
.ws44{word-spacing:-16.500000px;}
.ws45{word-spacing:-16.374000px;}
.ws1{word-spacing:-15.120000px;}
.ws0{word-spacing:-15.000000px;}
.ws3{word-spacing:-13.524000px;}
.ws2{word-spacing:-13.512000px;}
.ws5{word-spacing:-13.500000px;}
.ws4{word-spacing:-13.488000px;}
.ws6{word-spacing:-10.512000px;}
.ws8{word-spacing:-10.506000px;}
.ws7{word-spacing:-10.500000px;}
.ws13{word-spacing:-6.171856px;}
.ws14{word-spacing:-0.084152px;}
.ws34{word-spacing:-0.083073px;}
.wsa{word-spacing:0.000000px;}
.ws19{word-spacing:2.737059px;}
.ws17{word-spacing:11.317975px;}
.ws1d{word-spacing:23.661976px;}
.ws21{word-spacing:24.608050px;}
.ws42{word-spacing:26.518284px;}
.ws28{word-spacing:29.868796px;}
.ws3d{word-spacing:33.415859px;}
.ws2b{word-spacing:34.167109px;}
.ws40{word-spacing:34.500156px;}
.ws3e{word-spacing:35.492184px;}
.ws23{word-spacing:38.490987px;}
.ws26{word-spacing:38.660551px;}
.ws31{word-spacing:43.493120px;}
.ws2e{word-spacing:43.662683px;}
.ws12{word-spacing:43.794815px;}
.ws29{word-spacing:44.340939px;}
.ws2d{word-spacing:44.344599px;}
.ws22{word-spacing:44.595284px;}
.ws2c{word-spacing:44.762157px;}
.ws39{word-spacing:45.549384px;}
.ws1f{word-spacing:45.688666px;}
.ws1e{word-spacing:45.746486px;}
.wsc{word-spacing:46.576731px;}
.ws3a{word-spacing:47.885250px;}
.ws3b{word-spacing:48.404332px;}
.ws1c{word-spacing:49.262181px;}
.ws20{word-spacing:49.613030px;}
.ws18{word-spacing:52.688391px;}
.ws37{word-spacing:55.367908px;}
.ws2f{word-spacing:59.432118px;}
.ws1b{word-spacing:59.604912px;}
.ws24{word-spacing:59.686464px;}
.ws16{word-spacing:63.408539px;}
.ws32{word-spacing:65.366852px;}
.ws10{word-spacing:66.835880px;}
.wsd{word-spacing:66.917728px;}
.ws1a{word-spacing:71.356802px;}
.ws38{word-spacing:71.979841px;}
.ws15{word-spacing:79.271390px;}
.ws41{word-spacing:85.174216px;}
.ws3c{word-spacing:120.589004px;}
.ws30{word-spacing:157.126269px;}
.ws36{word-spacing:160.407373px;}
.ws35{word-spacing:176.270579px;}
.ws2a{word-spacing:178.628275px;}
.ws27{word-spacing:202.813913px;}
.ws25{word-spacing:210.812234px;}
._61{margin-left:-638.080022px;}
._54{margin-left:-330.576454px;}
._51{margin-left:-242.729236px;}
._47{margin-left:-180.743113px;}
._7e{margin-left:-137.004413px;}
._7d{margin-left:-116.464769px;}
._55{margin-left:-83.956691px;}
._4c{margin-left:-20.957219px;}
._53{margin-left:-12.540829px;}
._52{margin-left:-7.862776px;}
._32{margin-left:-4.536000px;}
._2{margin-left:-3.240000px;}
._3{margin-left:-2.160000px;}
._1{margin-left:-1.140000px;}
._0{width:1.050000px;}
._1c{width:2.376000px;}
._2a{width:3.660000px;}
._10{width:4.896000px;}
._6{width:6.192000px;}
._5{width:7.362000px;}
._4{width:8.406000px;}
._24{width:9.612000px;}
._13{width:10.728000px;}
._14{width:11.808000px;}
._19{width:13.608000px;}
._1a{width:14.862000px;}
._37{width:16.560000px;}
._20{width:19.224000px;}
._44{width:21.168000px;}
._15{width:22.680000px;}
._7{width:24.336000px;}
._e{width:25.782000px;}
._8{width:27.648000px;}
._9{width:28.728000px;}
._18{width:29.880000px;}
._1b{width:30.960000px;}
._3f{width:32.688000px;}
._6f{width:34.446000px;}
._42{width:35.712000px;}
._1f{width:36.936000px;}
._36{width:38.304000px;}
._22{width:40.032000px;}
._a{width:41.616000px;}
._b{width:43.056000px;}
._48{width:44.094000px;}
._23{width:46.080000px;}
._33{width:47.952000px;}
._34{width:49.104000px;}
._25{width:50.184000px;}
._26{width:51.336000px;}
._3c{width:52.632000px;}
._31{width:55.152000px;}
._d{width:56.304000px;}
._c{width:57.660000px;}
._4f{width:59.328000px;}
._35{width:60.552000px;}
._29{width:61.920000px;}
._11{width:63.864000px;}
._12{width:64.872000px;}
._3e{width:66.006000px;}
._2e{width:67.350000px;}
._3a{width:69.048000px;}
._3b{width:70.446000px;}
._45{width:71.520000px;}
._46{width:73.224000px;}
._38{width:75.168000px;}
._6b{width:76.259758px;}
._56{width:77.904000px;}
._57{width:78.912000px;}
._69{width:80.459084px;}
._50{width:82.296000px;}
._21{width:84.456000px;}
._93{width:86.760000px;}
._94{width:87.840000px;}
._4e{width:88.860000px;}
._27{width:90.000000px;}
._28{width:91.224000px;}
._16{width:93.384000px;}
._91{width:94.992000px;}
._40{width:96.048000px;}
._41{width:97.128000px;}
._8f{width:98.136000px;}
._67{width:101.372886px;}
._43{width:106.128000px;}
._5f{width:107.353546px;}
._92{width:108.358454px;}
._2d{width:109.728000px;}
._2c{width:111.228000px;}
._39{width:114.768000px;}
._81{width:117.144000px;}
._3d{width:118.968000px;}
._2b{width:120.888000px;}
._95{width:121.896000px;}
._f{width:130.104000px;}
._5d{width:132.350121px;}
._75{width:140.048763px;}
._2f{width:142.272000px;}
._30{width:143.352000px;}
._8d{width:146.787969px;}
._89{width:148.054510px;}
._6e{width:150.600000px;}
._1d{width:153.000000px;}
._1e{width:154.128000px;}
._5b{width:160.453829px;}
._58{width:162.864000px;}
._73{width:167.524042px;}
._8e{width:176.544000px;}
._8a{width:188.145461px;}
._4b{width:194.280000px;}
._78{width:203.164608px;}
._74{width:204.436119px;}
._77{width:208.054806px;}
._5a{width:211.567049px;}
._65{width:214.264598px;}
._17{width:216.288000px;}
._80{width:219.682685px;}
._63{width:221.917730px;}
._8b{width:225.721200px;}
._62{width:227.428671px;}
._7b{width:232.079055px;}
._49{width:234.230887px;}
._79{width:239.276960px;}
._64{width:246.310905px;}
._76{width:259.432643px;}
._59{width:260.812100px;}
._4d{width:280.544644px;}
._6a{width:284.546323px;}
._5c{width:295.978213px;}
._5e{width:315.016978px;}
._71{width:316.995391px;}
._90{width:320.424000px;}
._88{width:342.068798px;}
._7a{width:343.101471px;}
._6d{width:344.723244px;}
._82{width:350.495950px;}
._84{width:365.667619px;}
._6c{width:377.798501px;}
._7f{width:389.912001px;}
._68{width:408.600000px;}
._8c{width:413.043248px;}
._66{width:418.775459px;}
._70{width:439.787024px;}
._7c{width:450.870194px;}
._83{width:456.791297px;}
._85{width:483.304969px;}
._60{width:498.730182px;}
._86{width:499.875296px;}
._4a{width:505.702085px;}
._87{width:513.760721px;}
._72{width:531.788067px;}
.fc1{color:rgb(32,33,36);}
.fc0{color:rgb(0,0,0);}
.fs26{font-size:37.484925px;}
.fs27{font-size:38.109269px;}
.fs17{font-size:43.868121px;}
.fs8{font-size:48.060664px;}
.fsf{font-size:48.061510px;}
.fs21{font-size:48.272008px;}
.fs12{font-size:48.415340px;}
.fs1a{font-size:48.592585px;}
.fsc{font-size:48.848785px;}
.fs1d{font-size:48.979510px;}
.fs14{font-size:49.354455px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs25{font-size:64.885163px;}
.fs28{font-size:65.965882px;}
.fs4{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs18{font-size:76.029424px;}
.fs6{font-size:80.008532px;}
.fsd{font-size:82.584575px;}
.fs9{font-size:83.024476px;}
.fs10{font-size:83.025938px;}
.fs23{font-size:83.072970px;}
.fs20{font-size:83.511486px;}
.fs13{font-size:83.653634px;}
.fs1b{font-size:83.986518px;}
.fs0{font-size:84.000000px;}
.fs16{font-size:84.152219px;}
.fs7{font-size:84.296449px;}
.fsb{font-size:84.545974px;}
.fs1e{font-size:84.781909px;}
.fs15{font-size:85.314549px;}
.fs19{font-size:87.549807px;}
.fs22{font-size:88.110538px;}
.fs2a{font-size:88.110566px;}
.fs24{font-size:89.447347px;}
.fse{font-size:89.624015px;}
.fs29{font-size:98.840546px;}
.fsa{font-size:124.614063px;}
.fs11{font-size:124.616257px;}
.fs1c{font-size:126.048751px;}
.fs1f{font-size:127.033703px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.100000px;}
.y1a1{bottom:2.637318px;}
.y100{bottom:2.676365px;}
.y1b1{bottom:2.932622px;}
.y1b7{bottom:2.932624px;}
.ya6{bottom:3.191911px;}
.yca{bottom:3.191916px;}
.y145{bottom:3.446023px;}
.ye6{bottom:3.733881px;}
.y14a{bottom:3.733897px;}
.y13a{bottom:3.733900px;}
.y1ac{bottom:3.733942px;}
.y175{bottom:3.733944px;}
.y16c{bottom:3.769055px;}
.y18d{bottom:3.769065px;}
.y190{bottom:3.769067px;}
.y12d{bottom:3.769076px;}
.y133{bottom:3.769077px;}
.y131{bottom:3.769080px;}
.y17f{bottom:3.769082px;}
.y152{bottom:3.769094px;}
.y158{bottom:3.769096px;}
.y156{bottom:3.769097px;}
.y1a7{bottom:3.769714px;}
.y15f{bottom:3.769731px;}
.y21{bottom:3.900000px;}
.y1f{bottom:3.915000px;}
.yf5{bottom:4.463978px;}
.ydd{bottom:4.464012px;}
.yc4{bottom:4.464046px;}
.y184{bottom:4.844961px;}
.ya9{bottom:4.844967px;}
.yf3{bottom:4.881436px;}
.y7{bottom:5.400000px;}
.y1b4{bottom:5.781426px;}
.yb{bottom:6.000000px;}
.y120{bottom:6.253457px;}
.y1f3{bottom:6.300000px;}
.y1f6{bottom:6.435000px;}
.y1fb{bottom:6.450000px;}
.yc{bottom:6.750000px;}
.yef{bottom:6.773897px;}
.yda{bottom:6.773924px;}
.yc1{bottom:6.773957px;}
.y107{bottom:6.773969px;}
.yeb{bottom:6.787344px;}
.y19e{bottom:6.840555px;}
.y1a4{bottom:6.840557px;}
.y10d{bottom:7.393605px;}
.yb5{bottom:7.393631px;}
.ybb{bottom:7.393633px;}
.yb9{bottom:7.393635px;}
.ycf{bottom:7.393754px;}
.yd3{bottom:7.393757px;}
.y116{bottom:8.871167px;}
.y11c{bottom:8.871169px;}
.y11a{bottom:8.871171px;}
.ydc{bottom:9.089021px;}
.yc3{bottom:9.089053px;}
.y188{bottom:9.142764px;}
.ye7{bottom:9.191002px;}
.y149{bottom:9.191015px;}
.y14b{bottom:9.191021px;}
.y161{bottom:9.191029px;}
.y13b{bottom:9.191035px;}
.y174{bottom:9.191046px;}
.y1ab{bottom:9.191052px;}
.y162{bottom:9.191064px;}
.y15e{bottom:9.191076px;}
.y176{bottom:9.191079px;}
.y160{bottom:9.191083px;}
.yc6{bottom:9.362251px;}
.yd5{bottom:10.964492px;}
.yee{bottom:12.279873px;}
.yd9{bottom:12.279895px;}
.ydb{bottom:12.279910px;}
.yc0{bottom:12.279926px;}
.y106{bottom:12.279941px;}
.yc2{bottom:12.279950px;}
.y108{bottom:12.279953px;}
.yec{bottom:12.334118px;}
.yfd{bottom:12.543224px;}
.y101{bottom:12.543226px;}
.y1b6{bottom:14.328318px;}
.y1ba{bottom:14.802867px;}
.y1a0{bottom:15.246923px;}
.y102{bottom:17.476778px;}
.yff{bottom:17.476795px;}
.y16f{bottom:18.415209px;}
.y130{bottom:18.415224px;}
.y17e{bottom:18.415229px;}
.y155{bottom:18.415287px;}
.y1b9{bottom:18.600634px;}
.y1b3{bottom:18.600640px;}
.y1b8{bottom:18.600644px;}
.y180{bottom:19.025177px;}
.y15a{bottom:19.025193px;}
.y1a3{bottom:19.450384px;}
.y19d{bottom:19.450386px;}
.y144{bottom:19.922298px;}
.ya{bottom:19.950000px;}
.y6{bottom:20.550000px;}
.y110{bottom:21.748260px;}
.yb8{bottom:21.748296px;}
.yd2{bottom:21.748653px;}
.yea{bottom:21.930634px;}
.y111{bottom:22.361096px;}
.y119{bottom:23.377773px;}
.y16d{bottom:23.906165px;}
.y192{bottom:23.906193px;}
.y134{bottom:23.906194px;}
.y191{bottom:23.906201px;}
.y12e{bottom:23.906202px;}
.y17c{bottom:23.906204px;}
.y132{bottom:23.906206px;}
.y159{bottom:23.906232px;}
.y153{bottom:23.906240px;}
.y157{bottom:23.906246px;}
.y121{bottom:23.995553px;}
.y1e{bottom:24.615000px;}
.y11f{bottom:24.649311px;}
.y19f{bottom:25.411141px;}
.y142{bottom:25.414735px;}
.y1b0{bottom:26.030204px;}
.y10e{bottom:27.158178px;}
.yb6{bottom:27.158244px;}
.ybc{bottom:27.158251px;}
.yba{bottom:27.158259px;}
.yd6{bottom:27.158691px;}
.yd4{bottom:27.158697px;}
.y1f4{bottom:28.200000px;}
.y11e{bottom:28.831259px;}
.y117{bottom:28.831269px;}
.y11b{bottom:28.831272px;}
.y1b2{bottom:28.935257px;}
.yfc{bottom:28.955924px;}
.yfe{bottom:29.374832px;}
.y19c{bottom:29.614606px;}
.y1a2{bottom:29.614607px;}
.y143{bottom:33.203336px;}
.y151{bottom:33.455014px;}
.y18c{bottom:33.455015px;}
.y9{bottom:33.900000px;}
.y1b5{bottom:35.359321px;}
.y5{bottom:36.000000px;}
.y18e{bottom:37.188702px;}
.y141{bottom:38.695773px;}
.yd0{bottom:40.143016px;}
.y11d{bottom:44.209479px;}
.y1d{bottom:45.315000px;}
.y16e{bottom:45.445105px;}
.y18f{bottom:45.445116px;}
.y12f{bottom:45.445128px;}
.y17d{bottom:45.445131px;}
.y154{bottom:45.445146px;}
.y10f{bottom:48.256415px;}
.yb7{bottom:48.256444px;}
.yd1{bottom:48.257285px;}
.y1fa{bottom:49.950000px;}
.y1fd{bottom:49.995000px;}
.y1f5{bottom:50.100000px;}
.y118{bottom:50.172739px;}
.y1f1{bottom:50.700000px;}
.y3{bottom:57.637500px;}
.y1c{bottom:66.015000px;}
.y1f9{bottom:71.850000px;}
.y2{bottom:81.637500px;}
.y1b{bottom:86.715000px;}
.y1f8{bottom:93.600000px;}
.y1a{bottom:107.415000px;}
.y226{bottom:111.187500px;}
.ya3{bottom:111.937500px;}
.y252{bottom:115.387500px;}
.y1ef{bottom:120.337500px;}
.y3c{bottom:121.987500px;}
.y215{bottom:126.187500px;}
.y19{bottom:128.115000px;}
.y225{bottom:131.887500px;}
.y1a8{bottom:132.487500px;}
.ya2{bottom:135.637500px;}
.y251{bottom:136.087500px;}
.y82{bottom:142.237500px;}
.y1ee{bottom:144.187500px;}
.y3b{bottom:145.837500px;}
.y18{bottom:148.815000px;}
.y214{bottom:150.045000px;}
.y66{bottom:150.495000px;}
.y224{bottom:152.580000px;}
.yfa{bottom:156.195000px;}
.y1a6{bottom:156.225000px;}
.y250{bottom:156.795000px;}
.ya1{bottom:159.495000px;}
.y14e{bottom:163.245000px;}
.y14f{bottom:163.275000px;}
.y81{bottom:166.080000px;}
.y1ed{bottom:167.895000px;}
.y3a{bottom:169.695000px;}
.y223{bottom:173.295000px;}
.y213{bottom:173.745000px;}
.y65{bottom:174.345000px;}
.y24f{bottom:177.495000px;}
.yf9{bottom:179.895000px;}
.ya0{bottom:183.345000px;}
.y80{bottom:189.795000px;}
.y1ec{bottom:191.745000px;}
.y1a5{bottom:191.880000px;}
.y19b{bottom:191.924980px;}
.y39{bottom:193.395000px;}
.y222{bottom:193.995000px;}
.y212{bottom:197.595000px;}
.y64{bottom:198.195000px;}
.y14d{bottom:198.945000px;}
.yf8{bottom:203.745000px;}
.y9f{bottom:207.045000px;}
.y7f{bottom:213.645000px;}
.y221{bottom:214.695000px;}
.y1eb{bottom:215.595000px;}
.y38{bottom:217.245000px;}
.y24e{bottom:218.880000px;}
.y211{bottom:221.445000px;}
.y63{bottom:221.895000px;}
.y14c{bottom:222.795000px;}
.yf7{bottom:227.595000px;}
.y9e{bottom:230.895000px;}
.y220{bottom:235.395000px;}
.y7e{bottom:237.495000px;}
.y1ea{bottom:239.295000px;}
.y24d{bottom:239.580000px;}
.y37{bottom:241.095000px;}
.y19a{bottom:243.945000px;}
.y210{bottom:245.145000px;}
.y62{bottom:245.745000px;}
.y147{bottom:246.495000px;}
.y148{bottom:246.524980px;}
.y256{bottom:250.845000px;}
.yf6{bottom:251.295000px;}
.yf4{bottom:251.325000px;}
.y9d{bottom:254.745000px;}
.y21f{bottom:256.095000px;}
.y24c{bottom:260.295000px;}
.y7d{bottom:261.195000px;}
.y1e9{bottom:263.130000px;}
.y36{bottom:264.795000px;}
.y199{bottom:267.645000px;}
.y20f{bottom:268.995000px;}
.y61{bottom:269.595000px;}
.y255{bottom:274.695000px;}
.y21e{bottom:276.795000px;}
.y9c{bottom:278.445000px;}
.y1d8{bottom:280.995000px;}
.yf1{bottom:281.145000px;}
.yf2{bottom:281.175000px;}
.y146{bottom:282.195000px;}
.y140{bottom:282.225000px;}
.y7c{bottom:285.045000px;}
.y1e8{bottom:286.995000px;}
.y35{bottom:288.645000px;}
.y197{bottom:291.495000px;}
.y198{bottom:291.524980px;}
.y20e{bottom:292.845000px;}
.y60{bottom:293.295000px;}
.y21d{bottom:297.495000px;}
.y254{bottom:298.545000px;}
.y24b{bottom:301.545000px;}
.y9b{bottom:302.295000px;}
.y1d7{bottom:304.845000px;}
.y7b{bottom:308.895000px;}
.y1e7{bottom:310.695000px;}
.yf0{bottom:311.145000px;}
.y34{bottom:312.495000px;}
.y20d{bottom:316.545000px;}
.y5f{bottom:317.130000px;}
.y21c{bottom:318.195000px;}
.y24a{bottom:322.245000px;}
.y9a{bottom:326.145000px;}
.y196{bottom:327.195000px;}
.y1d6{bottom:328.695000px;}
.y1e6{bottom:330.630000px;}
.y7a{bottom:332.595000px;}
.ye8{bottom:334.830000px;}
.ye9{bottom:334.874980px;}
.yed{bottom:334.875000px;}
.y33{bottom:336.195000px;}
.y21b{bottom:338.895000px;}
.y20c{bottom:340.380000px;}
.y5e{bottom:340.995000px;}
.y249{bottom:342.945000px;}
.y13f{bottom:348.045000px;}
.y99{bottom:349.995000px;}
.y195{bottom:350.880000px;}
.y1d5{bottom:352.395000px;}
.y79{bottom:356.445000px;}
.y21a{bottom:359.595000px;}
.y32{bottom:360.045000px;}
.y248{bottom:363.645000px;}
.y20b{bottom:364.245000px;}
.y5d{bottom:364.695000px;}
.y13e{bottom:371.895000px;}
.y98{bottom:373.695000px;}
.y194{bottom:374.745000px;}
.y1d4{bottom:376.245000px;}
.ye4{bottom:377.145000px;}
.ye5{bottom:377.175000px;}
.y78{bottom:380.325000px;}
.y31{bottom:383.925000px;}
.y247{bottom:384.375000px;}
.y20a{bottom:387.975000px;}
.y5c{bottom:388.575000px;}
.y13d{bottom:395.625000px;}
.y97{bottom:397.575000px;}
.y18b{bottom:398.624959px;}
.y193{bottom:398.625000px;}
.y1d3{bottom:399.975000px;}
.y219{bottom:401.025000px;}
.y77{bottom:404.025000px;}
.y246{bottom:405.075000px;}
.y30{bottom:407.775000px;}
.y209{bottom:411.825000px;}
.y5b{bottom:412.425000px;}
.ye3{bottom:412.725000px;}
.y13c{bottom:419.475000px;}
.y96{bottom:421.425000px;}
.y218{bottom:421.725000px;}
.y1d2{bottom:425.175000px;}
.y245{bottom:425.775000px;}
.y76{bottom:427.875000px;}
.y2f{bottom:431.475000px;}
.y208{bottom:435.675000px;}
.y5a{bottom:436.125000px;}
.ye2{bottom:436.575000px;}
.y217{bottom:442.425000px;}
.y95{bottom:445.125000px;}
.y244{bottom:446.475000px;}
.y1d1{bottom:449.025000px;}
.y75{bottom:451.725000px;}
.y139{bottom:455.174959px;}
.y138{bottom:455.175000px;}
.y2e{bottom:455.325000px;}
.y207{bottom:459.525000px;}
.y59{bottom:459.975000px;}
.ye1{bottom:460.425000px;}
.y216{bottom:463.125000px;}
.y18a{bottom:464.475000px;}
.y243{bottom:467.175000px;}
.y94{bottom:468.975000px;}
.y1d0{bottom:472.725000px;}
.y74{bottom:475.425000px;}
.y2d{bottom:479.175000px;}
.y206{bottom:483.225000px;}
.y58{bottom:483.825000px;}
.ye0{bottom:484.125000px;}
.y242{bottom:487.875000px;}
.y189{bottom:488.175000px;}
.y137{bottom:490.725000px;}
.y93{bottom:492.825000px;}
.y1cf{bottom:496.575000px;}
.y73{bottom:499.275000px;}
.y2c{bottom:502.875000px;}
.y205{bottom:507.075000px;}
.y57{bottom:507.525000px;}
.ydf{bottom:507.975000px;}
.y241{bottom:508.575000px;}
.y187{bottom:512.024959px;}
.y186{bottom:512.025000px;}
.y136{bottom:514.575000px;}
.y92{bottom:516.525000px;}
.y1ce{bottom:520.275000px;}
.y72{bottom:523.125000px;}
.y2b{bottom:526.725000px;}
.y240{bottom:529.275000px;}
.y204{bottom:530.925000px;}
.y56{bottom:531.375000px;}
.yde{bottom:531.825000px;}
.y12c{bottom:538.424959px;}
.y135{bottom:538.425000px;}
.y91{bottom:540.375000px;}
.y1cd{bottom:545.475000px;}
.y185{bottom:546.075000px;}
.y71{bottom:546.975000px;}
.y23f{bottom:549.975000px;}
.y2a{bottom:550.575000px;}
.y203{bottom:554.625000px;}
.y55{bottom:555.225000px;}
.yd8{bottom:555.524959px;}
.yd7{bottom:555.525000px;}
.y90{bottom:564.225000px;}
.y1cc{bottom:569.325000px;}
.y183{bottom:569.774959px;}
.y182{bottom:569.775000px;}
.y70{bottom:570.675000px;}
.y29{bottom:574.275000px;}
.y202{bottom:578.475000px;}
.y54{bottom:579.075000px;}
.y8f{bottom:587.925000px;}
.y1cb{bottom:589.125000px;}
.y23e{bottom:591.375000px;}
.yce{bottom:594.524959px;}
.y6f{bottom:594.525000px;}
.y28{bottom:598.125000px;}
.y17b{bottom:599.774959px;}
.y181{bottom:599.775000px;}
.y201{bottom:602.325000px;}
.y53{bottom:602.775000px;}
.y12b{bottom:604.275000px;}
.y1e5{bottom:605.475000px;}
.y8e{bottom:611.775000px;}
.y23d{bottom:612.075000px;}
.y6e{bottom:618.375000px;}
.y27{bottom:621.975000px;}
.y200{bottom:626.025000px;}
.y52{bottom:626.625000px;}
.y12a{bottom:627.975000px;}
.y1e4{bottom:629.175000px;}
.y23c{bottom:632.775000px;}
.y8d{bottom:635.625000px;}
.y6d{bottom:642.075000px;}
.y26{bottom:645.675000px;}
.y1ff{bottom:649.875000px;}
.y51{bottom:650.475000px;}
.y129{bottom:651.825000px;}
.y1e3{bottom:653.025000px;}
.y253{bottom:653.475000px;}
.y8c{bottom:659.325000px;}
.ycd{bottom:662.775000px;}
.y17a{bottom:665.625000px;}
.y6c{bottom:665.925000px;}
.y25{bottom:669.525000px;}
.y1fe{bottom:673.725000px;}
.y50{bottom:674.175000px;}
.y128{bottom:675.675000px;}
.y1e2{bottom:676.875000px;}
.y8b{bottom:683.175000px;}
.ycc{bottom:686.625000px;}
.y179{bottom:689.325000px;}
.y6b{bottom:689.775000px;}
.y1fc{bottom:691.275000px;}
.y1ca{bottom:692.925000px;}
.y24{bottom:693.375000px;}
.y23b{bottom:694.875000px;}
.y4f{bottom:698.025000px;}
.y127{bottom:699.375000px;}
.y1e1{bottom:700.575000px;}
.y8a{bottom:707.025000px;}
.yc9{bottom:710.474919px;}
.ycb{bottom:710.475000px;}
.y178{bottom:713.175000px;}
.y6a{bottom:713.475000px;}
.y23a{bottom:715.575000px;}
.y1c9{bottom:716.775000px;}
.y4e{bottom:721.875000px;}
.y126{bottom:723.225000px;}
.y1e0{bottom:724.425000px;}
.y23{bottom:726.075000px;}
.y89{bottom:730.725000px;}
.y239{bottom:736.275000px;}
.y177{bottom:737.025000px;}
.y69{bottom:737.370000px;}
.yc8{bottom:737.970000px;}
.y1c8{bottom:740.670000px;}
.y22{bottom:742.905000px;}
.y4d{bottom:745.620000px;}
.y125{bottom:747.120000px;}
.y1df{bottom:748.320000px;}
.y88{bottom:754.620000px;}
.y238{bottom:757.020000px;}
.y1f7{bottom:757.470000px;}
.y173{bottom:760.724919px;}
.y172{bottom:760.770000px;}
.y68{bottom:761.220000px;}
.yc5{bottom:761.624919px;}
.yc7{bottom:761.670000px;}
.y1c7{bottom:764.370000px;}
.y4c{bottom:769.470000px;}
.y124{bottom:770.820000px;}
.y1de{bottom:772.170000px;}
.y237{bottom:777.720000px;}
.y87{bottom:778.470000px;}
.y67{bottom:781.170000px;}
.y20{bottom:784.320000px;}
.y1c6{bottom:788.220000px;}
.ybf{bottom:791.474919px;}
.ybe{bottom:791.520000px;}
.y4b{bottom:793.320000px;}
.y123{bottom:794.670000px;}
.y1dd{bottom:795.870000px;}
.y171{bottom:796.470000px;}
.y236{bottom:798.420000px;}
.y86{bottom:802.320000px;}
.y17{bottom:805.005000px;}
.y1c5{bottom:812.070000px;}
.y4a{bottom:817.020000px;}
.y115{bottom:818.474919px;}
.y122{bottom:818.520000px;}
.y235{bottom:819.120000px;}
.y1dc{bottom:819.705000px;}
.y16b{bottom:820.275000px;}
.y170{bottom:820.320000px;}
.y85{bottom:826.020000px;}
.yb4{bottom:830.474919px;}
.ybd{bottom:830.520000px;}
.y1c4{bottom:835.770000px;}
.y234{bottom:839.820000px;}
.y49{bottom:840.870000px;}
.y1db{bottom:843.570000px;}
.y84{bottom:849.870000px;}
.y1c3{bottom:859.620000px;}
.y233{bottom:860.520000px;}
.y48{bottom:864.720000px;}
.y1da{bottom:867.270000px;}
.y83{bottom:869.820000px;}
.y232{bottom:881.220000px;}
.y1c2{bottom:883.470000px;}
.y16a{bottom:886.170000px;}
.y1d9{bottom:887.220000px;}
.y47{bottom:888.420000px;}
.y114{bottom:893.370000px;}
.yb3{bottom:898.920000px;}
.y231{bottom:901.920000px;}
.y1c1{bottom:907.170000px;}
.y169{bottom:909.870000px;}
.y46{bottom:912.270000px;}
.y113{bottom:917.220000px;}
.y230{bottom:922.620000px;}
.yb2{bottom:922.770000px;}
.y1c0{bottom:931.020000px;}
.y1f0{bottom:933.570000px;}
.y168{bottom:933.720000px;}
.y45{bottom:936.120000px;}
.y10c{bottom:941.025000px;}
.y112{bottom:941.070000px;}
.y22f{bottom:943.320000px;}
.yb1{bottom:946.470000px;}
.y1bf{bottom:954.870000px;}
.y167{bottom:957.570000px;}
.y44{bottom:959.970000px;}
.y22e{bottom:964.020000px;}
.yb0{bottom:970.320000px;}
.y16{bottom:974.220000px;}
.y1f2{bottom:977.970000px;}
.y1be{bottom:978.524919px;}
.y1bd{bottom:978.570000px;}
.y166{bottom:981.270000px;}
.y43{bottom:983.670000px;}
.y22d{bottom:984.720000px;}
.y15{bottom:993.420000px;}
.yaf{bottom:994.170000px;}
.y165{bottom:1005.120000px;}
.y22c{bottom:1005.420000px;}
.y42{bottom:1007.520000px;}
.y10b{bottom:1009.320000px;}
.y14{bottom:1014.120000px;}
.y1bc{bottom:1014.270000px;}
.yae{bottom:1017.870000px;}
.y22b{bottom:1026.120000px;}
.y164{bottom:1028.970000px;}
.y41{bottom:1031.370000px;}
.y10a{bottom:1033.170000px;}
.y13{bottom:1034.820000px;}
.y1af{bottom:1038.074919px;}
.y1bb{bottom:1038.120000px;}
.yad{bottom:1041.720000px;}
.y22a{bottom:1046.820000px;}
.y15d{bottom:1048.724919px;}
.y163{bottom:1048.770000px;}
.y40{bottom:1055.070000px;}
.y12{bottom:1055.520000px;}
.y109{bottom:1057.020000px;}
.yac{bottom:1065.570000px;}
.y229{bottom:1067.520000px;}
.y11{bottom:1076.220000px;}
.y3f{bottom:1078.920000px;}
.y105{bottom:1080.674919px;}
.y104{bottom:1080.720000px;}
.y15c{bottom:1084.470000px;}
.y228{bottom:1088.220000px;}
.yab{bottom:1089.374919px;}
.yaa{bottom:1089.420000px;}
.y1ae{bottom:1090.920000px;}
.y10{bottom:1096.950000px;}
.y3e{bottom:1102.800000px;}
.y150{bottom:1108.274919px;}
.y15b{bottom:1108.350000px;}
.y227{bottom:1108.950000px;}
.y1ad{bottom:1114.650000px;}
.ya8{bottom:1116.674919px;}
.ya7{bottom:1116.750000px;}
.yfb{bottom:1119.674919px;}
.y103{bottom:1119.750000px;}
.y3d{bottom:1126.500000px;}
.yf{bottom:1129.650000px;}
.y1aa{bottom:1138.424919px;}
.y1a9{bottom:1138.500000px;}
.ya5{bottom:1146.674919px;}
.ya4{bottom:1146.750000px;}
.ye{bottom:1150.350000px;}
.y1{bottom:1176.900000px;}
.y4{bottom:1202.550000px;}
.y8{bottom:1207.800000px;}
.h8{height:17.887500px;}
.h39{height:18.900565px;}
.h2e{height:18.900606px;}
.h23{height:18.900647px;}
.h12{height:20.399996px;}
.h10{height:20.700000px;}
.h75{height:21.735000px;}
.h37{height:22.950605px;}
.h60{height:22.950646px;}
.h14{height:22.950687px;}
.h2d{height:25.349405px;}
.h21{height:25.349446px;}
.h61{height:27.000229px;}
.h2f{height:28.650066px;}
.h57{height:28.650087px;}
.h53{height:28.650107px;}
.h5a{height:28.650148px;}
.h36{height:31.949749px;}
.h2c{height:31.949790px;}
.h1d{height:31.949831px;}
.h32{height:35.251267px;}
.h6e{height:35.299455px;}
.h66{height:36.771101px;}
.h6c{height:37.383555px;}
.h6a{height:37.402163px;}
.h11{height:41.400000px;}
.h3e{height:43.032742px;}
.h3c{height:43.054162px;}
.h76{height:43.650000px;}
.h1b{height:44.517129px;}
.h64{height:44.999741px;}
.h49{height:45.009831px;}
.h6{height:45.300000px;}
.h51{height:45.368228px;}
.h69{height:45.749312px;}
.h78{height:46.567383px;}
.h19{height:47.145447px;}
.h29{height:47.146277px;}
.h17{height:47.168914px;}
.h27{height:47.169744px;}
.h5c{height:47.352766px;}
.h3b{height:47.399451px;}
.h30{height:47.493368px;}
.h47{height:47.667238px;}
.h45{height:47.690965px;}
.h1f{height:47.918559px;}
.h4f{height:48.046795px;}
.h4d{height:48.070711px;}
.h34{height:48.414599px;}
.h33{height:48.438698px;}
.h3{height:48.600000px;}
.hf{height:50.484375px;}
.ha{height:50.800781px;}
.h7{height:52.998047px;}
.h5{height:55.942383px;}
.h55{height:58.798685px;}
.h4c{height:58.798726px;}
.h58{height:58.798766px;}
.h4{height:58.886719px;}
.h68{height:60.101150px;}
.h6f{height:61.102186px;}
.h40{height:61.349102px;}
.h16{height:61.349184px;}
.h26{height:61.350223px;}
.h67{height:63.649557px;}
.h65{height:63.681239px;}
.h6d{height:64.709695px;}
.h6b{height:64.741905px;}
.hd{height:64.775391px;}
.h7a{height:65.437500px;}
.h77{height:65.535000px;}
.h9{height:65.645508px;}
.h73{height:66.150000px;}
.h74{height:66.515625px;}
.h44{height:67.951610px;}
.hc{height:70.664062px;}
.hb{height:72.562500px;}
.h72{height:74.004654px;}
.h3f{height:74.581598px;}
.h3d{height:74.618722px;}
.h42{height:76.903043px;}
.h5f{height:77.354145px;}
.h4a{height:77.794153px;}
.h13{height:78.484932px;}
.h56{height:78.530899px;}
.h22{height:81.011919px;}
.h41{height:81.094719px;}
.h1a{height:81.443444px;}
.h2a{height:81.444878px;}
.h18{height:81.483983px;}
.h28{height:81.485418px;}
.h62{height:81.531577px;}
.h5e{height:81.614107px;}
.h71{height:81.614133px;}
.h5d{height:81.921180px;}
.h5b{height:81.961957px;}
.h31{height:82.060620px;}
.h54{height:82.101466px;}
.h48{height:82.387165px;}
.h46{height:82.428175px;}
.h2{height:82.441406px;}
.h3a{height:82.549711px;}
.h38{height:82.590801px;}
.h25{height:82.691194px;}
.h15{height:82.732355px;}
.h63{height:82.852352px;}
.h20{height:82.935968px;}
.h1e{height:82.977250px;}
.h50{height:83.167410px;}
.h4e{height:83.208808px;}
.h35{height:83.689907px;}
.h24{height:87.917308px;}
.h70{height:91.552986px;}
.h1c{height:96.237881px;}
.h2b{height:96.239575px;}
.h52{height:98.143389px;}
.h79{height:109.050000px;}
.h43{height:115.426210px;}
.h4b{height:116.755118px;}
.h59{height:117.667448px;}
.he{height:165.600000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2a{width:12.300318px;}
.w15{width:16.349972px;}
.wf{width:16.350053px;}
.w16{width:18.750306px;}
.w17{width:18.900312px;}
.wb{width:22.949758px;}
.w9{width:22.949840px;}
.w22{width:25.350010px;}
.w1c{width:26.999502px;}
.w14{width:31.949972px;}
.we{width:31.950013px;}
.w10{width:34.349130px;}
.w1b{width:35.249841px;}
.w11{width:37.649716px;}
.wa{width:44.999967px;}
.w2b{width:46.649819px;}
.w2f{width:46.649839px;}
.w23{width:50.698522px;}
.w25{width:50.698532px;}
.w28{width:50.698593px;}
.w13{width:53.247877px;}
.w2e{width:54.000358px;}
.w34{width:58.200000px;}
.w18{width:63.901763px;}
.wd{width:67.951131px;}
.w36{width:69.900000px;}
.w37{width:75.187500px;}
.w35{width:81.600000px;}
.w1a{width:88.349963px;}
.w32{width:105.187500px;}
.w19{width:105.600087px;}
.w1e{width:120.300772px;}
.w12{width:132.603069px;}
.w27{width:135.001302px;}
.w21{width:156.294219px;}
.w6{width:178.350000px;}
.w31{width:189.000013px;}
.wc{width:189.000043px;}
.w24{width:192.443530px;}
.w2c{width:198.003632px;}
.w1f{width:241.190765px;}
.w20{width:251.989952px;}
.w5{width:262.995000px;}
.w3{width:282.495000px;}
.w33{width:287.145000px;}
.w4{width:297.780000px;}
.w26{width:298.795718px;}
.w2d{width:302.549596px;}
.w30{width:315.151156px;}
.w29{width:319.801761px;}
.w1d{width:335.541237px;}
.w7{width:745.770000px;}
.w8{width:750.270000px;}
.w2{width:892.949987px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2a{left:1.373523px;}
.x21{left:3.351553px;}
.x33{left:5.227079px;}
.x4{left:6.900000px;}
.x8e{left:9.439580px;}
.x86{left:11.297973px;}
.x9{left:12.435000px;}
.x4a{left:13.783337px;}
.x7{left:16.200000px;}
.xe{left:17.295000px;}
.x55{left:19.723315px;}
.x1b{left:20.887500px;}
.x5{left:22.200000px;}
.x2e{left:23.693477px;}
.x80{left:26.333785px;}
.xb{left:32.100000px;}
.x51{left:33.165015px;}
.x28{left:35.891491px;}
.x49{left:37.514641px;}
.x3b{left:38.648032px;}
.x37{left:40.645236px;}
.x3{left:42.599987px;}
.x59{left:44.280534px;}
.x63{left:45.848498px;}
.x5a{left:48.036545px;}
.x50{left:52.149068px;}
.x57{left:53.887848px;}
.x46{left:55.198041px;}
.x3a{left:62.781275px;}
.x81{left:63.867236px;}
.x38{left:64.922523px;}
.x62{left:67.236988px;}
.x91{left:69.599987px;}
.x52{left:71.134474px;}
.x36{left:72.978969px;}
.x4c{left:74.363187px;}
.x61{left:78.220316px;}
.x6a{left:83.672271px;}
.x85{left:85.164747px;}
.x4f{left:89.563232px;}
.x67{left:90.674990px;}
.x6e{left:92.174990px;}
.x5f{left:94.480166px;}
.x1c{left:95.699987px;}
.x39{left:97.511345px;}
.x1a{left:100.200000px;}
.x19{left:104.700000px;}
.xd{left:106.980000px;}
.x10{left:109.349987px;}
.x5d{left:110.564121px;}
.x7a{left:111.892410px;}
.x58{left:113.591144px;}
.x78{left:115.156214px;}
.x8d{left:116.553807px;}
.x29{left:119.061369px;}
.x5c{left:120.178331px;}
.x6{left:121.687500px;}
.x2b{left:123.362666px;}
.x68{left:124.711613px;}
.x75{left:126.036397px;}
.xa{left:128.130000px;}
.x27{left:129.218288px;}
.x5e{left:141.070136px;}
.x6f{left:142.837487px;}
.x73{left:146.051958px;}
.x94{left:149.287500px;}
.x69{left:150.327320px;}
.x7f{left:152.012904px;}
.x72{left:156.052235px;}
.x79{left:158.274218px;}
.x6c{left:172.874980px;}
.x54{left:178.274980px;}
.x95{left:208.245000px;}
.x6d{left:223.529987px;}
.x65{left:225.374980px;}
.x66{left:250.694987px;}
.x64{left:265.994987px;}
.x70{left:276.494987px;}
.x6b{left:288.194987px;}
.x96{left:290.595000px;}
.x60{left:294.644987px;}
.x56{left:298.544987px;}
.x1{left:303.494987px;}
.x8{left:305.145000px;}
.x8b{left:318.824980px;}
.x90{left:329.144987px;}
.x5b{left:336.944987px;}
.x8f{left:357.779987px;}
.x97{left:361.245000px;}
.x8c{left:365.444987px;}
.x53{left:378.224987px;}
.x11{left:414.524987px;}
.x1f{left:436.424987px;}
.x1d{left:457.274987px;}
.x71{left:467.925000px;}
.x34{left:491.624987px;}
.x1e{left:510.374987px;}
.x25{left:528.675000px;}
.x4b{left:535.274959px;}
.x35{left:548.024987px;}
.x26{left:551.624987px;}
.x7d{left:552.675000px;}
.x98{left:566.474987px;}
.x2d{left:591.675000px;}
.x3d{left:593.624959px;}
.x7e{left:599.324987px;}
.x88{left:611.324959px;}
.x17{left:619.574987px;}
.x4d{left:623.624987px;}
.xc{left:625.425000px;}
.x41{left:629.774959px;}
.x14{left:631.124987px;}
.x3c{left:643.004987px;}
.x76{left:645.419987px;}
.x3e{left:646.904987px;}
.x42{left:648.569987px;}
.x13{left:657.869987px;}
.x2f{left:659.654987px;}
.x3f{left:664.124959px;}
.x89{left:665.354987px;}
.x16{left:672.719987px;}
.x45{left:676.724959px;}
.x23{left:685.124919px;}
.x83{left:686.924919px;}
.x77{left:689.774919px;}
.x40{left:696.119987px;}
.x30{left:698.174919px;}
.x2c{left:699.419987px;}
.x82{left:708.404987px;}
.xf{left:713.655000px;}
.x12{left:718.619987px;}
.x24{left:730.169987px;}
.x84{left:737.654987px;}
.x20{left:738.674919px;}
.x47{left:740.654987px;}
.x48{left:744.974919px;}
.x7c{left:751.754987px;}
.x87{left:759.854987px;}
.x22{left:761.654987px;}
.x7b{left:777.119987px;}
.x74{left:779.069987px;}
.x31{left:782.624919px;}
.x15{left:789.569987px;}
.x43{left:796.574919px;}
.x32{left:799.004987px;}
.x44{left:815.504987px;}
.x2{left:819.119987px;}
.x4e{left:823.574919px;}
.x8a{left:832.619987px;}
.x18{left:850.619987px;}
.x92{left:854.069987px;}
.x93{left:855.719987px;}
@media print{
.v5{vertical-align:-73.600000pt;}
.v4{vertical-align:-58.583363pt;}
.v2{vertical-align:-46.166510pt;}
.v1{vertical-align:-17.056292pt;}
.v3{vertical-align:-12.695922pt;}
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-2.666667pt;}
.lsb{letter-spacing:-2.661333pt;}
.ls8{letter-spacing:-2.656000pt;}
.lsa{letter-spacing:-2.400000pt;}
.ls55{letter-spacing:-0.192000pt;}
.ls56{letter-spacing:-0.170667pt;}
.ls53{letter-spacing:-0.149333pt;}
.ls52{letter-spacing:-0.112000pt;}
.ls2f{letter-spacing:-0.021333pt;}
.ls7{letter-spacing:-0.010667pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.010667pt;}
.ls1{letter-spacing:0.021333pt;}
.ls28{letter-spacing:0.053333pt;}
.ls51{letter-spacing:0.085333pt;}
.ls0{letter-spacing:0.106667pt;}
.ls23{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.133333pt;}
.ls26{letter-spacing:0.149333pt;}
.ls2{letter-spacing:0.266667pt;}
.ls30{letter-spacing:0.554667pt;}
.ls4f{letter-spacing:2.666667pt;}
.ls27{letter-spacing:3.733333pt;}
.ls15{letter-spacing:9.168629pt;}
.ls25{letter-spacing:10.666667pt;}
.lsc{letter-spacing:10.720000pt;}
.ls4e{letter-spacing:11.733333pt;}
.ls24{letter-spacing:14.896355pt;}
.ls1e{letter-spacing:14.933333pt;}
.ls22{letter-spacing:15.149017pt;}
.ls17{letter-spacing:15.331119pt;}
.ls38{letter-spacing:15.422908pt;}
.ls10{letter-spacing:15.710124pt;}
.lsf{letter-spacing:16.150559pt;}
.lse{letter-spacing:16.864694pt;}
.ls16{letter-spacing:18.349619pt;}
.ls4{letter-spacing:21.813333pt;}
.ls14{letter-spacing:33.080575pt;}
.ls2e{letter-spacing:36.162245pt;}
.ls37{letter-spacing:39.057330pt;}
.ls44{letter-spacing:39.688985pt;}
.ls42{letter-spacing:40.534896pt;}
.ls4b{letter-spacing:40.696220pt;}
.ls31{letter-spacing:40.959456pt;}
.ls1b{letter-spacing:41.570485pt;}
.ls1c{letter-spacing:42.441638pt;}
.ls19{letter-spacing:42.654112pt;}
.ls45{letter-spacing:43.012693pt;}
.ls4c{letter-spacing:46.329461pt;}
.ls36{letter-spacing:46.531913pt;}
.ls12{letter-spacing:46.997983pt;}
.ls3a{letter-spacing:47.961522pt;}
.ls4a{letter-spacing:48.874667pt;}
.ls49{letter-spacing:50.225348pt;}
.ls20{letter-spacing:54.807415pt;}
.ls33{letter-spacing:55.848824pt;}
.ls34{letter-spacing:56.480479pt;}
.ls39{letter-spacing:57.227414pt;}
.ls48{letter-spacing:57.280061pt;}
.ls43{letter-spacing:60.266667pt;}
.ls1d{letter-spacing:60.820621pt;}
.ls1a{letter-spacing:61.086213pt;}
.ls32{letter-spacing:66.335365pt;}
.ls2a{letter-spacing:77.977879pt;}
.ls59{letter-spacing:91.008000pt;}
.ls58{letter-spacing:91.141333pt;}
.ls13{letter-spacing:92.889694pt;}
.ls54{letter-spacing:97.600000pt;}
.ls1f{letter-spacing:103.542919pt;}
.ls21{letter-spacing:112.533333pt;}
.ls29{letter-spacing:122.969202pt;}
.ls50{letter-spacing:123.008000pt;}
.ls57{letter-spacing:123.141333pt;}
.ls35{letter-spacing:140.385309pt;}
.ls18{letter-spacing:154.908153pt;}
.ls3c{letter-spacing:164.311646pt;}
.ls11{letter-spacing:185.020393pt;}
.lsd{letter-spacing:292.935887pt;}
.ls41{letter-spacing:360.832880pt;}
.ls3e{letter-spacing:407.101604pt;}
.ls3f{letter-spacing:420.840099pt;}
.ls40{letter-spacing:427.261924pt;}
.ls3d{letter-spacing:429.367440pt;}
.ls2c{letter-spacing:494.801193pt;}
.ls47{letter-spacing:503.358160pt;}
.ls46{letter-spacing:522.573994pt;}
.ls4d{letter-spacing:555.646585pt;}
.ls3b{letter-spacing:557.593392pt;}
.ls2d{letter-spacing:562.935653pt;}
.ls2b{letter-spacing:651.788954pt;}
.ws11{word-spacing:-103.618754pt;}
.wsf{word-spacing:-61.161365pt;}
.ws33{word-spacing:-40.608739pt;}
.ws43{word-spacing:-35.136000pt;}
.ws3f{word-spacing:-19.955792pt;}
.wse{word-spacing:-16.021333pt;}
.ws9{word-spacing:-16.000000pt;}
.ws46{word-spacing:-15.850667pt;}
.ws48{word-spacing:-15.829333pt;}
.ws47{word-spacing:-15.808000pt;}
.wsb{word-spacing:-15.406049pt;}
.ws44{word-spacing:-14.666667pt;}
.ws45{word-spacing:-14.554667pt;}
.ws1{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.333333pt;}
.ws3{word-spacing:-12.021333pt;}
.ws2{word-spacing:-12.010667pt;}
.ws5{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.989333pt;}
.ws6{word-spacing:-9.344000pt;}
.ws8{word-spacing:-9.338667pt;}
.ws7{word-spacing:-9.333333pt;}
.ws13{word-spacing:-5.486094pt;}
.ws14{word-spacing:-0.074802pt;}
.ws34{word-spacing:-0.073843pt;}
.wsa{word-spacing:0.000000pt;}
.ws19{word-spacing:2.432942pt;}
.ws17{word-spacing:10.060422pt;}
.ws1d{word-spacing:21.032867pt;}
.ws21{word-spacing:21.873822pt;}
.ws42{word-spacing:23.571808pt;}
.ws28{word-spacing:26.550041pt;}
.ws3d{word-spacing:29.702986pt;}
.ws2b{word-spacing:30.370764pt;}
.ws40{word-spacing:30.666805pt;}
.ws3e{word-spacing:31.548608pt;}
.ws23{word-spacing:34.214211pt;}
.ws26{word-spacing:34.364934pt;}
.ws31{word-spacing:38.660551pt;}
.ws2e{word-spacing:38.811274pt;}
.ws12{word-spacing:38.928724pt;}
.ws29{word-spacing:39.414168pt;}
.ws2d{word-spacing:39.417422pt;}
.ws22{word-spacing:39.640253pt;}
.ws2c{word-spacing:39.788584pt;}
.ws39{word-spacing:40.488342pt;}
.ws1f{word-spacing:40.612147pt;}
.ws1e{word-spacing:40.663544pt;}
.wsc{word-spacing:41.401539pt;}
.ws3a{word-spacing:42.564667pt;}
.ws3b{word-spacing:43.026073pt;}
.ws1c{word-spacing:43.788605pt;}
.ws20{word-spacing:44.100471pt;}
.ws18{word-spacing:46.834125pt;}
.ws37{word-spacing:49.215918pt;}
.ws2f{word-spacing:52.828550pt;}
.ws1b{word-spacing:52.982144pt;}
.ws24{word-spacing:53.054635pt;}
.ws16{word-spacing:56.363146pt;}
.ws32{word-spacing:58.103869pt;}
.ws10{word-spacing:59.409671pt;}
.wsd{word-spacing:59.482425pt;}
.ws1a{word-spacing:63.428269pt;}
.ws38{word-spacing:63.982081pt;}
.ws15{word-spacing:70.463458pt;}
.ws41{word-spacing:75.710414pt;}
.ws3c{word-spacing:107.190226pt;}
.ws30{word-spacing:139.667795pt;}
.ws36{word-spacing:142.584331pt;}
.ws35{word-spacing:156.684959pt;}
.ws2a{word-spacing:158.780688pt;}
.ws27{word-spacing:180.279034pt;}
.ws25{word-spacing:187.388652pt;}
._61{margin-left:-567.182242pt;}
._54{margin-left:-293.845737pt;}
._51{margin-left:-215.759321pt;}
._47{margin-left:-160.660545pt;}
._7e{margin-left:-121.781701pt;}
._7d{margin-left:-103.524239pt;}
._55{margin-left:-74.628170pt;}
._4c{margin-left:-18.628639pt;}
._53{margin-left:-11.147403pt;}
._52{margin-left:-6.989134pt;}
._32{margin-left:-4.032000pt;}
._2{margin-left:-2.880000pt;}
._3{margin-left:-1.920000pt;}
._1{margin-left:-1.013333pt;}
._0{width:0.933333pt;}
._1c{width:2.112000pt;}
._2a{width:3.253333pt;}
._10{width:4.352000pt;}
._6{width:5.504000pt;}
._5{width:6.544000pt;}
._4{width:7.472000pt;}
._24{width:8.544000pt;}
._13{width:9.536000pt;}
._14{width:10.496000pt;}
._19{width:12.096000pt;}
._1a{width:13.210667pt;}
._37{width:14.720000pt;}
._20{width:17.088000pt;}
._44{width:18.816000pt;}
._15{width:20.160000pt;}
._7{width:21.632000pt;}
._e{width:22.917333pt;}
._8{width:24.576000pt;}
._9{width:25.536000pt;}
._18{width:26.560000pt;}
._1b{width:27.520000pt;}
._3f{width:29.056000pt;}
._6f{width:30.618667pt;}
._42{width:31.744000pt;}
._1f{width:32.832000pt;}
._36{width:34.048000pt;}
._22{width:35.584000pt;}
._a{width:36.992000pt;}
._b{width:38.272000pt;}
._48{width:39.194667pt;}
._23{width:40.960000pt;}
._33{width:42.624000pt;}
._34{width:43.648000pt;}
._25{width:44.608000pt;}
._26{width:45.632000pt;}
._3c{width:46.784000pt;}
._31{width:49.024000pt;}
._d{width:50.048000pt;}
._c{width:51.253333pt;}
._4f{width:52.736000pt;}
._35{width:53.824000pt;}
._29{width:55.040000pt;}
._11{width:56.768000pt;}
._12{width:57.664000pt;}
._3e{width:58.672000pt;}
._2e{width:59.866667pt;}
._3a{width:61.376000pt;}
._3b{width:62.618667pt;}
._45{width:63.573333pt;}
._46{width:65.088000pt;}
._38{width:66.816000pt;}
._6b{width:67.786452pt;}
._56{width:69.248000pt;}
._57{width:70.144000pt;}
._69{width:71.519186pt;}
._50{width:73.152000pt;}
._21{width:75.072000pt;}
._93{width:77.120000pt;}
._94{width:78.080000pt;}
._4e{width:78.986667pt;}
._27{width:80.000000pt;}
._28{width:81.088000pt;}
._16{width:83.008000pt;}
._91{width:84.437333pt;}
._40{width:85.376000pt;}
._41{width:86.336000pt;}
._8f{width:87.232000pt;}
._67{width:90.109232pt;}
._43{width:94.336000pt;}
._5f{width:95.425375pt;}
._92{width:96.318625pt;}
._2d{width:97.536000pt;}
._2c{width:98.869333pt;}
._39{width:102.016000pt;}
._81{width:104.128000pt;}
._3d{width:105.749333pt;}
._2b{width:107.456000pt;}
._95{width:108.352000pt;}
._f{width:115.648000pt;}
._5d{width:117.644552pt;}
._75{width:124.487789pt;}
._2f{width:126.464000pt;}
._30{width:127.424000pt;}
._8d{width:130.478194pt;}
._89{width:131.604009pt;}
._6e{width:133.866667pt;}
._1d{width:136.000000pt;}
._1e{width:137.002667pt;}
._5b{width:142.625626pt;}
._58{width:144.768000pt;}
._73{width:148.910259pt;}
._8e{width:156.928000pt;}
._8a{width:167.240410pt;}
._4b{width:172.693333pt;}
._78{width:180.590763pt;}
._74{width:181.720994pt;}
._77{width:184.937605pt;}
._5a{width:188.059599pt;}
._65{width:190.457421pt;}
._17{width:192.256000pt;}
._80{width:195.273497pt;}
._63{width:197.260204pt;}
._8b{width:200.641067pt;}
._62{width:202.158819pt;}
._7b{width:206.292493pt;}
._49{width:208.205233pt;}
._79{width:212.690631pt;}
._64{width:218.943026pt;}
._76{width:230.606794pt;}
._59{width:231.832978pt;}
._4d{width:249.373017pt;}
._6a{width:252.930065pt;}
._5c{width:263.091745pt;}
._5e{width:280.015091pt;}
._71{width:281.773681pt;}
._90{width:284.821333pt;}
._88{width:304.061154pt;}
._7a{width:304.979085pt;}
._6d{width:306.420661pt;}
._82{width:311.551956pt;}
._84{width:325.037883pt;}
._6c{width:335.820890pt;}
._7f{width:346.588446pt;}
._68{width:363.200000pt;}
._8c{width:367.149554pt;}
._66{width:372.244852pt;}
._70{width:390.921799pt;}
._7c{width:400.773506pt;}
._83{width:406.036708pt;}
._85{width:429.604417pt;}
._60{width:443.315718pt;}
._86{width:444.333597pt;}
._4a{width:449.512965pt;}
._87{width:456.676197pt;}
._72{width:472.700504pt;}
.fs26{font-size:33.319933pt;}
.fs27{font-size:33.874906pt;}
.fs17{font-size:38.993885pt;}
.fs8{font-size:42.720591pt;}
.fsf{font-size:42.721343pt;}
.fs21{font-size:42.908452pt;}
.fs12{font-size:43.035858pt;}
.fs1a{font-size:43.193409pt;}
.fsc{font-size:43.421142pt;}
.fs1d{font-size:43.537343pt;}
.fs14{font-size:43.870626pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs25{font-size:57.675701pt;}
.fs28{font-size:58.636339pt;}
.fs4{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs18{font-size:67.581710pt;}
.fs6{font-size:71.118695pt;}
.fsd{font-size:73.408511pt;}
.fs9{font-size:73.799535pt;}
.fs10{font-size:73.800834pt;}
.fs23{font-size:73.842640pt;}
.fs20{font-size:74.232432pt;}
.fs13{font-size:74.358785pt;}
.fs1b{font-size:74.654683pt;}
.fs0{font-size:74.666667pt;}
.fs16{font-size:74.801972pt;}
.fs7{font-size:74.930177pt;}
.fsb{font-size:75.151977pt;}
.fs1e{font-size:75.361697pt;}
.fs15{font-size:75.835155pt;}
.fs19{font-size:77.822051pt;}
.fs22{font-size:78.320478pt;}
.fs2a{font-size:78.320504pt;}
.fs24{font-size:79.508753pt;}
.fse{font-size:79.665791pt;}
.fs29{font-size:87.858263pt;}
.fsa{font-size:110.768056pt;}
.fs11{font-size:110.770006pt;}
.fs1c{font-size:112.043335pt;}
.fs1f{font-size:112.918847pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:1.866667pt;}
.y1a1{bottom:2.344282pt;}
.y100{bottom:2.378991pt;}
.y1b1{bottom:2.606775pt;}
.y1b7{bottom:2.606777pt;}
.ya6{bottom:2.837255pt;}
.yca{bottom:2.837259pt;}
.y145{bottom:3.063132pt;}
.ye6{bottom:3.319006pt;}
.y14a{bottom:3.319020pt;}
.y13a{bottom:3.319022pt;}
.y1ac{bottom:3.319060pt;}
.y175{bottom:3.319061pt;}
.y16c{bottom:3.350271pt;}
.y18d{bottom:3.350280pt;}
.y190{bottom:3.350282pt;}
.y12d{bottom:3.350290pt;}
.y133{bottom:3.350291pt;}
.y131{bottom:3.350293pt;}
.y17f{bottom:3.350295pt;}
.y152{bottom:3.350306pt;}
.y158{bottom:3.350307pt;}
.y156{bottom:3.350308pt;}
.y1a7{bottom:3.350857pt;}
.y15f{bottom:3.350872pt;}
.y21{bottom:3.466667pt;}
.y1f{bottom:3.480000pt;}
.yf5{bottom:3.967980pt;}
.ydd{bottom:3.968011pt;}
.yc4{bottom:3.968041pt;}
.y184{bottom:4.306632pt;}
.ya9{bottom:4.306637pt;}
.yf3{bottom:4.339054pt;}
.y7{bottom:4.800000pt;}
.y1b4{bottom:5.139046pt;}
.yb{bottom:5.333333pt;}
.y120{bottom:5.558628pt;}
.y1f3{bottom:5.600000pt;}
.y1f6{bottom:5.720000pt;}
.y1fb{bottom:5.733333pt;}
.yc{bottom:6.000000pt;}
.yef{bottom:6.021241pt;}
.yda{bottom:6.021266pt;}
.yc1{bottom:6.021295pt;}
.y107{bottom:6.021306pt;}
.yeb{bottom:6.033195pt;}
.y19e{bottom:6.080494pt;}
.y1a4{bottom:6.080495pt;}
.y10d{bottom:6.572093pt;}
.yb5{bottom:6.572116pt;}
.ybb{bottom:6.572119pt;}
.yb9{bottom:6.572120pt;}
.ycf{bottom:6.572225pt;}
.yd3{bottom:6.572228pt;}
.y116{bottom:7.885482pt;}
.y11c{bottom:7.885484pt;}
.y11a{bottom:7.885485pt;}
.ydc{bottom:8.079130pt;}
.yc3{bottom:8.079159pt;}
.y188{bottom:8.126902pt;}
.ye7{bottom:8.169779pt;}
.y149{bottom:8.169791pt;}
.y14b{bottom:8.169796pt;}
.y161{bottom:8.169803pt;}
.y13b{bottom:8.169809pt;}
.y174{bottom:8.169819pt;}
.y1ab{bottom:8.169824pt;}
.y162{bottom:8.169834pt;}
.y15e{bottom:8.169846pt;}
.y176{bottom:8.169848pt;}
.y160{bottom:8.169851pt;}
.yc6{bottom:8.322001pt;}
.yd5{bottom:9.746215pt;}
.yee{bottom:10.915442pt;}
.yd9{bottom:10.915462pt;}
.ydb{bottom:10.915476pt;}
.yc0{bottom:10.915489pt;}
.y106{bottom:10.915503pt;}
.yc2{bottom:10.915511pt;}
.y108{bottom:10.915513pt;}
.yec{bottom:10.963661pt;}
.yfd{bottom:11.149533pt;}
.y101{bottom:11.149534pt;}
.y1b6{bottom:12.736283pt;}
.y1ba{bottom:13.158104pt;}
.y1a0{bottom:13.552820pt;}
.y102{bottom:15.534914pt;}
.yff{bottom:15.534929pt;}
.y16f{bottom:16.369074pt;}
.y130{bottom:16.369088pt;}
.y17e{bottom:16.369093pt;}
.y155{bottom:16.369144pt;}
.y1b9{bottom:16.533897pt;}
.y1b3{bottom:16.533902pt;}
.y1b8{bottom:16.533906pt;}
.y180{bottom:16.911269pt;}
.y15a{bottom:16.911283pt;}
.y1a3{bottom:17.289230pt;}
.y19d{bottom:17.289232pt;}
.y144{bottom:17.708709pt;}
.ya{bottom:17.733333pt;}
.y6{bottom:18.266667pt;}
.y110{bottom:19.331786pt;}
.yb8{bottom:19.331819pt;}
.yd2{bottom:19.332136pt;}
.yea{bottom:19.493897pt;}
.y111{bottom:19.876530pt;}
.y119{bottom:20.780243pt;}
.y16d{bottom:21.249925pt;}
.y192{bottom:21.249949pt;}
.y134{bottom:21.249950pt;}
.y191{bottom:21.249956pt;}
.y12e{bottom:21.249957pt;}
.y17c{bottom:21.249959pt;}
.y132{bottom:21.249961pt;}
.y159{bottom:21.249984pt;}
.y153{bottom:21.249991pt;}
.y157{bottom:21.249996pt;}
.y121{bottom:21.329380pt;}
.y1e{bottom:21.880000pt;}
.y11f{bottom:21.910499pt;}
.y19f{bottom:22.587681pt;}
.y142{bottom:22.590875pt;}
.y1b0{bottom:23.137959pt;}
.y10e{bottom:24.140603pt;}
.yb6{bottom:24.140662pt;}
.ybc{bottom:24.140668pt;}
.yba{bottom:24.140675pt;}
.yd6{bottom:24.141059pt;}
.yd4{bottom:24.141064pt;}
.y1f4{bottom:25.066667pt;}
.y11e{bottom:25.627786pt;}
.y117{bottom:25.627794pt;}
.y11b{bottom:25.627797pt;}
.y1b2{bottom:25.720229pt;}
.yfc{bottom:25.738599pt;}
.yfe{bottom:26.110961pt;}
.y19c{bottom:26.324094pt;}
.y1a2{bottom:26.324095pt;}
.y143{bottom:29.514077pt;}
.y151{bottom:29.737791pt;}
.y18c{bottom:29.737791pt;}
.y9{bottom:30.133333pt;}
.y1b5{bottom:31.430508pt;}
.y5{bottom:32.000000pt;}
.y18e{bottom:33.056624pt;}
.y141{bottom:34.396243pt;}
.yd0{bottom:35.682681pt;}
.y11d{bottom:39.297315pt;}
.y1d{bottom:40.280000pt;}
.y16e{bottom:40.395649pt;}
.y18f{bottom:40.395658pt;}
.y12f{bottom:40.395670pt;}
.y17d{bottom:40.395672pt;}
.y154{bottom:40.395685pt;}
.y10f{bottom:42.894591pt;}
.yb7{bottom:42.894617pt;}
.yd1{bottom:42.895365pt;}
.y1fa{bottom:44.400000pt;}
.y1fd{bottom:44.440000pt;}
.y1f5{bottom:44.533333pt;}
.y118{bottom:44.597990pt;}
.y1f1{bottom:45.066667pt;}
.y3{bottom:51.233333pt;}
.y1c{bottom:58.680000pt;}
.y1f9{bottom:63.866667pt;}
.y2{bottom:72.566667pt;}
.y1b{bottom:77.080000pt;}
.y1f8{bottom:83.200000pt;}
.y1a{bottom:95.480000pt;}
.y226{bottom:98.833333pt;}
.ya3{bottom:99.500000pt;}
.y252{bottom:102.566667pt;}
.y1ef{bottom:106.966667pt;}
.y3c{bottom:108.433333pt;}
.y215{bottom:112.166667pt;}
.y19{bottom:113.880000pt;}
.y225{bottom:117.233333pt;}
.y1a8{bottom:117.766667pt;}
.ya2{bottom:120.566667pt;}
.y251{bottom:120.966667pt;}
.y82{bottom:126.433333pt;}
.y1ee{bottom:128.166667pt;}
.y3b{bottom:129.633333pt;}
.y18{bottom:132.280000pt;}
.y214{bottom:133.373333pt;}
.y66{bottom:133.773333pt;}
.y224{bottom:135.626667pt;}
.yfa{bottom:138.840000pt;}
.y1a6{bottom:138.866667pt;}
.y250{bottom:139.373333pt;}
.ya1{bottom:141.773333pt;}
.y14e{bottom:145.106667pt;}
.y14f{bottom:145.133333pt;}
.y81{bottom:147.626667pt;}
.y1ed{bottom:149.240000pt;}
.y3a{bottom:150.840000pt;}
.y223{bottom:154.040000pt;}
.y213{bottom:154.440000pt;}
.y65{bottom:154.973333pt;}
.y24f{bottom:157.773333pt;}
.yf9{bottom:159.906667pt;}
.ya0{bottom:162.973333pt;}
.y80{bottom:168.706667pt;}
.y1ec{bottom:170.440000pt;}
.y1a5{bottom:170.560000pt;}
.y19b{bottom:170.599982pt;}
.y39{bottom:171.906667pt;}
.y222{bottom:172.440000pt;}
.y212{bottom:175.640000pt;}
.y64{bottom:176.173333pt;}
.y14d{bottom:176.840000pt;}
.yf8{bottom:181.106667pt;}
.y9f{bottom:184.040000pt;}
.y7f{bottom:189.906667pt;}
.y221{bottom:190.840000pt;}
.y1eb{bottom:191.640000pt;}
.y38{bottom:193.106667pt;}
.y24e{bottom:194.560000pt;}
.y211{bottom:196.840000pt;}
.y63{bottom:197.240000pt;}
.y14c{bottom:198.040000pt;}
.yf7{bottom:202.306667pt;}
.y9e{bottom:205.240000pt;}
.y220{bottom:209.240000pt;}
.y7e{bottom:211.106667pt;}
.y1ea{bottom:212.706667pt;}
.y24d{bottom:212.960000pt;}
.y37{bottom:214.306667pt;}
.y19a{bottom:216.840000pt;}
.y210{bottom:217.906667pt;}
.y62{bottom:218.440000pt;}
.y147{bottom:219.106667pt;}
.y148{bottom:219.133315pt;}
.y256{bottom:222.973333pt;}
.yf6{bottom:223.373333pt;}
.yf4{bottom:223.400000pt;}
.y9d{bottom:226.440000pt;}
.y21f{bottom:227.640000pt;}
.y24c{bottom:231.373333pt;}
.y7d{bottom:232.173333pt;}
.y1e9{bottom:233.893333pt;}
.y36{bottom:235.373333pt;}
.y199{bottom:237.906667pt;}
.y20f{bottom:239.106667pt;}
.y61{bottom:239.640000pt;}
.y255{bottom:244.173333pt;}
.y21e{bottom:246.040000pt;}
.y9c{bottom:247.506667pt;}
.y1d8{bottom:249.773333pt;}
.yf1{bottom:249.906667pt;}
.yf2{bottom:249.933333pt;}
.y146{bottom:250.840000pt;}
.y140{bottom:250.866667pt;}
.y7c{bottom:253.373333pt;}
.y1e8{bottom:255.106667pt;}
.y35{bottom:256.573333pt;}
.y197{bottom:259.106667pt;}
.y198{bottom:259.133315pt;}
.y20e{bottom:260.306667pt;}
.y60{bottom:260.706667pt;}
.y21d{bottom:264.440000pt;}
.y254{bottom:265.373333pt;}
.y24b{bottom:268.040000pt;}
.y9b{bottom:268.706667pt;}
.y1d7{bottom:270.973333pt;}
.y7b{bottom:274.573333pt;}
.y1e7{bottom:276.173333pt;}
.yf0{bottom:276.573333pt;}
.y34{bottom:277.773333pt;}
.y20d{bottom:281.373333pt;}
.y5f{bottom:281.893333pt;}
.y21c{bottom:282.840000pt;}
.y24a{bottom:286.440000pt;}
.y9a{bottom:289.906667pt;}
.y196{bottom:290.840000pt;}
.y1d6{bottom:292.173333pt;}
.y1e6{bottom:293.893333pt;}
.y7a{bottom:295.640000pt;}
.ye8{bottom:297.626667pt;}
.ye9{bottom:297.666649pt;}
.yed{bottom:297.666667pt;}
.y33{bottom:298.840000pt;}
.y21b{bottom:301.240000pt;}
.y20c{bottom:302.560000pt;}
.y5e{bottom:303.106667pt;}
.y249{bottom:304.840000pt;}
.y13f{bottom:309.373333pt;}
.y99{bottom:311.106667pt;}
.y195{bottom:311.893333pt;}
.y1d5{bottom:313.240000pt;}
.y79{bottom:316.840000pt;}
.y21a{bottom:319.640000pt;}
.y32{bottom:320.040000pt;}
.y248{bottom:323.240000pt;}
.y20b{bottom:323.773333pt;}
.y5d{bottom:324.173333pt;}
.y13e{bottom:330.573333pt;}
.y98{bottom:332.173333pt;}
.y194{bottom:333.106667pt;}
.y1d4{bottom:334.440000pt;}
.ye4{bottom:335.240000pt;}
.ye5{bottom:335.266667pt;}
.y78{bottom:338.066667pt;}
.y31{bottom:341.266667pt;}
.y247{bottom:341.666667pt;}
.y20a{bottom:344.866667pt;}
.y5c{bottom:345.400000pt;}
.y13d{bottom:351.666667pt;}
.y97{bottom:353.400000pt;}
.y18b{bottom:354.333297pt;}
.y193{bottom:354.333333pt;}
.y1d3{bottom:355.533333pt;}
.y219{bottom:356.466667pt;}
.y77{bottom:359.133333pt;}
.y246{bottom:360.066667pt;}
.y30{bottom:362.466667pt;}
.y209{bottom:366.066667pt;}
.y5b{bottom:366.600000pt;}
.ye3{bottom:366.866667pt;}
.y13c{bottom:372.866667pt;}
.y96{bottom:374.600000pt;}
.y218{bottom:374.866667pt;}
.y1d2{bottom:377.933333pt;}
.y245{bottom:378.466667pt;}
.y76{bottom:380.333333pt;}
.y2f{bottom:383.533333pt;}
.y208{bottom:387.266667pt;}
.y5a{bottom:387.666667pt;}
.ye2{bottom:388.066667pt;}
.y217{bottom:393.266667pt;}
.y95{bottom:395.666667pt;}
.y244{bottom:396.866667pt;}
.y1d1{bottom:399.133333pt;}
.y75{bottom:401.533333pt;}
.y139{bottom:404.599964pt;}
.y138{bottom:404.600000pt;}
.y2e{bottom:404.733333pt;}
.y207{bottom:408.466667pt;}
.y59{bottom:408.866667pt;}
.ye1{bottom:409.266667pt;}
.y216{bottom:411.666667pt;}
.y18a{bottom:412.866667pt;}
.y243{bottom:415.266667pt;}
.y94{bottom:416.866667pt;}
.y1d0{bottom:420.200000pt;}
.y74{bottom:422.600000pt;}
.y2d{bottom:425.933333pt;}
.y206{bottom:429.533333pt;}
.y58{bottom:430.066667pt;}
.ye0{bottom:430.333333pt;}
.y242{bottom:433.666667pt;}
.y189{bottom:433.933333pt;}
.y137{bottom:436.200000pt;}
.y93{bottom:438.066667pt;}
.y1cf{bottom:441.400000pt;}
.y73{bottom:443.800000pt;}
.y2c{bottom:447.000000pt;}
.y205{bottom:450.733333pt;}
.y57{bottom:451.133333pt;}
.ydf{bottom:451.533333pt;}
.y241{bottom:452.066667pt;}
.y187{bottom:455.133297pt;}
.y186{bottom:455.133333pt;}
.y136{bottom:457.400000pt;}
.y92{bottom:459.133333pt;}
.y1ce{bottom:462.466667pt;}
.y72{bottom:465.000000pt;}
.y2b{bottom:468.200000pt;}
.y240{bottom:470.466667pt;}
.y204{bottom:471.933333pt;}
.y56{bottom:472.333333pt;}
.yde{bottom:472.733333pt;}
.y12c{bottom:478.599964pt;}
.y135{bottom:478.600000pt;}
.y91{bottom:480.333333pt;}
.y1cd{bottom:484.866667pt;}
.y185{bottom:485.400000pt;}
.y71{bottom:486.200000pt;}
.y23f{bottom:488.866667pt;}
.y2a{bottom:489.400000pt;}
.y203{bottom:493.000000pt;}
.y55{bottom:493.533333pt;}
.yd8{bottom:493.799964pt;}
.yd7{bottom:493.800000pt;}
.y90{bottom:501.533333pt;}
.y1cc{bottom:506.066667pt;}
.y183{bottom:506.466630pt;}
.y182{bottom:506.466667pt;}
.y70{bottom:507.266667pt;}
.y29{bottom:510.466667pt;}
.y202{bottom:514.200000pt;}
.y54{bottom:514.733333pt;}
.y8f{bottom:522.600000pt;}
.y1cb{bottom:523.666667pt;}
.y23e{bottom:525.666667pt;}
.yce{bottom:528.466630pt;}
.y6f{bottom:528.466667pt;}
.y28{bottom:531.666667pt;}
.y17b{bottom:533.133297pt;}
.y181{bottom:533.133333pt;}
.y201{bottom:535.400000pt;}
.y53{bottom:535.800000pt;}
.y12b{bottom:537.133333pt;}
.y1e5{bottom:538.200000pt;}
.y8e{bottom:543.800000pt;}
.y23d{bottom:544.066667pt;}
.y6e{bottom:549.666667pt;}
.y27{bottom:552.866667pt;}
.y200{bottom:556.466667pt;}
.y52{bottom:557.000000pt;}
.y12a{bottom:558.200000pt;}
.y1e4{bottom:559.266667pt;}
.y23c{bottom:562.466667pt;}
.y8d{bottom:565.000000pt;}
.y6d{bottom:570.733333pt;}
.y26{bottom:573.933333pt;}
.y1ff{bottom:577.666667pt;}
.y51{bottom:578.200000pt;}
.y129{bottom:579.400000pt;}
.y1e3{bottom:580.466667pt;}
.y253{bottom:580.866667pt;}
.y8c{bottom:586.066667pt;}
.ycd{bottom:589.133333pt;}
.y17a{bottom:591.666667pt;}
.y6c{bottom:591.933333pt;}
.y25{bottom:595.133333pt;}
.y1fe{bottom:598.866667pt;}
.y50{bottom:599.266667pt;}
.y128{bottom:600.600000pt;}
.y1e2{bottom:601.666667pt;}
.y8b{bottom:607.266667pt;}
.ycc{bottom:610.333333pt;}
.y179{bottom:612.733333pt;}
.y6b{bottom:613.133333pt;}
.y1fc{bottom:614.466667pt;}
.y1ca{bottom:615.933333pt;}
.y24{bottom:616.333333pt;}
.y23b{bottom:617.666667pt;}
.y4f{bottom:620.466667pt;}
.y127{bottom:621.666667pt;}
.y1e1{bottom:622.733333pt;}
.y8a{bottom:628.466667pt;}
.yc9{bottom:631.533261pt;}
.ycb{bottom:631.533333pt;}
.y178{bottom:633.933333pt;}
.y6a{bottom:634.200000pt;}
.y23a{bottom:636.066667pt;}
.y1c9{bottom:637.133333pt;}
.y4e{bottom:641.666667pt;}
.y126{bottom:642.866667pt;}
.y1e0{bottom:643.933333pt;}
.y23{bottom:645.400000pt;}
.y89{bottom:649.533333pt;}
.y239{bottom:654.466667pt;}
.y177{bottom:655.133333pt;}
.y69{bottom:655.440000pt;}
.yc8{bottom:655.973333pt;}
.y1c8{bottom:658.373333pt;}
.y22{bottom:660.360000pt;}
.y4d{bottom:662.773333pt;}
.y125{bottom:664.106667pt;}
.y1df{bottom:665.173333pt;}
.y88{bottom:670.773333pt;}
.y238{bottom:672.906667pt;}
.y1f7{bottom:673.306667pt;}
.y173{bottom:676.199928pt;}
.y172{bottom:676.240000pt;}
.y68{bottom:676.640000pt;}
.yc5{bottom:676.999928pt;}
.yc7{bottom:677.040000pt;}
.y1c7{bottom:679.440000pt;}
.y4c{bottom:683.973333pt;}
.y124{bottom:685.173333pt;}
.y1de{bottom:686.373333pt;}
.y237{bottom:691.306667pt;}
.y87{bottom:691.973333pt;}
.y67{bottom:694.373333pt;}
.y20{bottom:697.173333pt;}
.y1c6{bottom:700.640000pt;}
.ybf{bottom:703.533261pt;}
.ybe{bottom:703.573333pt;}
.y4b{bottom:705.173333pt;}
.y123{bottom:706.373333pt;}
.y1dd{bottom:707.440000pt;}
.y171{bottom:707.973333pt;}
.y236{bottom:709.706667pt;}
.y86{bottom:713.173333pt;}
.y17{bottom:715.560000pt;}
.y1c5{bottom:721.840000pt;}
.y4a{bottom:726.240000pt;}
.y115{bottom:727.533261pt;}
.y122{bottom:727.573333pt;}
.y235{bottom:728.106667pt;}
.y1dc{bottom:728.626667pt;}
.y16b{bottom:729.133333pt;}
.y170{bottom:729.173333pt;}
.y85{bottom:734.240000pt;}
.yb4{bottom:738.199928pt;}
.ybd{bottom:738.240000pt;}
.y1c4{bottom:742.906667pt;}
.y234{bottom:746.506667pt;}
.y49{bottom:747.440000pt;}
.y1db{bottom:749.840000pt;}
.y84{bottom:755.440000pt;}
.y1c3{bottom:764.106667pt;}
.y233{bottom:764.906667pt;}
.y48{bottom:768.640000pt;}
.y1da{bottom:770.906667pt;}
.y83{bottom:773.173333pt;}
.y232{bottom:783.306667pt;}
.y1c2{bottom:785.306667pt;}
.y16a{bottom:787.706667pt;}
.y1d9{bottom:788.640000pt;}
.y47{bottom:789.706667pt;}
.y114{bottom:794.106667pt;}
.yb3{bottom:799.040000pt;}
.y231{bottom:801.706667pt;}
.y1c1{bottom:806.373333pt;}
.y169{bottom:808.773333pt;}
.y46{bottom:810.906667pt;}
.y113{bottom:815.306667pt;}
.y230{bottom:820.106667pt;}
.yb2{bottom:820.240000pt;}
.y1c0{bottom:827.573333pt;}
.y1f0{bottom:829.840000pt;}
.y168{bottom:829.973333pt;}
.y45{bottom:832.106667pt;}
.y10c{bottom:836.466667pt;}
.y112{bottom:836.506667pt;}
.y22f{bottom:838.506667pt;}
.yb1{bottom:841.306667pt;}
.y1bf{bottom:848.773333pt;}
.y167{bottom:851.173333pt;}
.y44{bottom:853.306667pt;}
.y22e{bottom:856.906667pt;}
.yb0{bottom:862.506667pt;}
.y16{bottom:865.973333pt;}
.y1f2{bottom:869.306667pt;}
.y1be{bottom:869.799928pt;}
.y1bd{bottom:869.840000pt;}
.y166{bottom:872.240000pt;}
.y43{bottom:874.373333pt;}
.y22d{bottom:875.306667pt;}
.y15{bottom:883.040000pt;}
.yaf{bottom:883.706667pt;}
.y165{bottom:893.440000pt;}
.y22c{bottom:893.706667pt;}
.y42{bottom:895.573333pt;}
.y10b{bottom:897.173333pt;}
.y14{bottom:901.440000pt;}
.y1bc{bottom:901.573333pt;}
.yae{bottom:904.773333pt;}
.y22b{bottom:912.106667pt;}
.y164{bottom:914.640000pt;}
.y41{bottom:916.773333pt;}
.y10a{bottom:918.373333pt;}
.y13{bottom:919.840000pt;}
.y1af{bottom:922.733261pt;}
.y1bb{bottom:922.773333pt;}
.yad{bottom:925.973333pt;}
.y22a{bottom:930.506667pt;}
.y15d{bottom:932.199928pt;}
.y163{bottom:932.240000pt;}
.y40{bottom:937.840000pt;}
.y12{bottom:938.240000pt;}
.y109{bottom:939.573333pt;}
.yac{bottom:947.173333pt;}
.y229{bottom:948.906667pt;}
.y11{bottom:956.640000pt;}
.y3f{bottom:959.040000pt;}
.y105{bottom:960.599928pt;}
.y104{bottom:960.640000pt;}
.y15c{bottom:963.973333pt;}
.y228{bottom:967.306667pt;}
.yab{bottom:968.333261pt;}
.yaa{bottom:968.373333pt;}
.y1ae{bottom:969.706667pt;}
.y10{bottom:975.066667pt;}
.y3e{bottom:980.266667pt;}
.y150{bottom:985.133261pt;}
.y15b{bottom:985.200000pt;}
.y227{bottom:985.733333pt;}
.y1ad{bottom:990.800000pt;}
.ya8{bottom:992.599928pt;}
.ya7{bottom:992.666667pt;}
.yfb{bottom:995.266594pt;}
.y103{bottom:995.333333pt;}
.y3d{bottom:1001.333333pt;}
.yf{bottom:1004.133333pt;}
.y1aa{bottom:1011.933261pt;}
.y1a9{bottom:1012.000000pt;}
.ya5{bottom:1019.266594pt;}
.ya4{bottom:1019.333333pt;}
.ye{bottom:1022.533333pt;}
.y1{bottom:1046.133333pt;}
.y4{bottom:1068.933333pt;}
.y8{bottom:1073.600000pt;}
.h8{height:15.900000pt;}
.h39{height:16.800502pt;}
.h2e{height:16.800539pt;}
.h23{height:16.800575pt;}
.h12{height:18.133330pt;}
.h10{height:18.400000pt;}
.h75{height:19.320000pt;}
.h37{height:20.400538pt;}
.h60{height:20.400574pt;}
.h14{height:20.400610pt;}
.h2d{height:22.532805pt;}
.h21{height:22.532841pt;}
.h61{height:24.000203pt;}
.h2f{height:25.466726pt;}
.h57{height:25.466744pt;}
.h53{height:25.466762pt;}
.h5a{height:25.466798pt;}
.h36{height:28.399777pt;}
.h2c{height:28.399813pt;}
.h1d{height:28.399849pt;}
.h32{height:31.334460pt;}
.h6e{height:31.377293pt;}
.h66{height:32.685423pt;}
.h6c{height:33.229827pt;}
.h6a{height:33.246367pt;}
.h11{height:36.800000pt;}
.h3e{height:38.251326pt;}
.h3c{height:38.270366pt;}
.h76{height:38.800000pt;}
.h1b{height:39.570781pt;}
.h64{height:39.999770pt;}
.h49{height:40.008739pt;}
.h6{height:40.266667pt;}
.h51{height:40.327314pt;}
.h69{height:40.666055pt;}
.h78{height:41.393229pt;}
.h19{height:41.907064pt;}
.h29{height:41.907801pt;}
.h17{height:41.927923pt;}
.h27{height:41.928661pt;}
.h5c{height:42.091347pt;}
.h3b{height:42.132845pt;}
.h30{height:42.216327pt;}
.h47{height:42.370878pt;}
.h45{height:42.391969pt;}
.h1f{height:42.594275pt;}
.h4f{height:42.708262pt;}
.h4d{height:42.729521pt;}
.h34{height:43.035200pt;}
.h33{height:43.056621pt;}
.h3{height:43.200000pt;}
.hf{height:44.875000pt;}
.ha{height:45.156250pt;}
.h7{height:47.109375pt;}
.h5{height:49.726562pt;}
.h55{height:52.265498pt;}
.h4c{height:52.265534pt;}
.h58{height:52.265570pt;}
.h4{height:52.343750pt;}
.h68{height:53.423244pt;}
.h6f{height:54.313055pt;}
.h40{height:54.532536pt;}
.h16{height:54.532608pt;}
.h26{height:54.533532pt;}
.h67{height:56.577384pt;}
.h65{height:56.605546pt;}
.h6d{height:57.519729pt;}
.h6b{height:57.548360pt;}
.hd{height:57.578125pt;}
.h7a{height:58.166667pt;}
.h77{height:58.253333pt;}
.h9{height:58.351562pt;}
.h73{height:58.800000pt;}
.h74{height:59.125000pt;}
.h44{height:60.401431pt;}
.hc{height:62.812500pt;}
.hb{height:64.500000pt;}
.h72{height:65.781915pt;}
.h3f{height:66.294754pt;}
.h3d{height:66.327753pt;}
.h42{height:68.358260pt;}
.h5f{height:68.759240pt;}
.h4a{height:69.150358pt;}
.h13{height:69.764384pt;}
.h56{height:69.805244pt;}
.h22{height:72.010595pt;}
.h41{height:72.084194pt;}
.h1a{height:72.394172pt;}
.h2a{height:72.395447pt;}
.h18{height:72.430207pt;}
.h28{height:72.431482pt;}
.h62{height:72.472513pt;}
.h5e{height:72.545873pt;}
.h71{height:72.545896pt;}
.h5d{height:72.818826pt;}
.h5b{height:72.855073pt;}
.h31{height:72.942773pt;}
.h54{height:72.979081pt;}
.h48{height:73.233036pt;}
.h46{height:73.269488pt;}
.h2{height:73.281250pt;}
.h3a{height:73.377521pt;}
.h38{height:73.414045pt;}
.h25{height:73.503284pt;}
.h15{height:73.539871pt;}
.h63{height:73.646535pt;}
.h20{height:73.720861pt;}
.h1e{height:73.757556pt;}
.h50{height:73.926587pt;}
.h4e{height:73.963384pt;}
.h35{height:74.391029pt;}
.h24{height:78.148718pt;}
.h70{height:81.380432pt;}
.h1c{height:85.544783pt;}
.h2b{height:85.546289pt;}
.h52{height:87.238568pt;}
.h79{height:96.933333pt;}
.h43{height:102.601075pt;}
.h4b{height:103.782327pt;}
.h59{height:104.593287pt;}
.he{height:147.200000pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2a{width:10.933616pt;}
.w15{width:14.533308pt;}
.wf{width:14.533381pt;}
.w16{width:16.666938pt;}
.w17{width:16.800277pt;}
.wb{width:20.399785pt;}
.w9{width:20.399858pt;}
.w22{width:22.533342pt;}
.w1c{width:23.999557pt;}
.w14{width:28.399975pt;}
.we{width:28.400012pt;}
.w10{width:30.532560pt;}
.w1b{width:31.333192pt;}
.w11{width:33.466414pt;}
.wa{width:39.999971pt;}
.w2b{width:41.466505pt;}
.w2f{width:41.466523pt;}
.w23{width:45.065353pt;}
.w25{width:45.065362pt;}
.w28{width:45.065416pt;}
.w13{width:47.331446pt;}
.w2e{width:48.000318pt;}
.w34{width:51.733333pt;}
.w18{width:56.801567pt;}
.wd{width:60.401005pt;}
.w36{width:62.133333pt;}
.w37{width:66.833333pt;}
.w35{width:72.533333pt;}
.w1a{width:78.533301pt;}
.w32{width:93.500000pt;}
.w19{width:93.866744pt;}
.w1e{width:106.934019pt;}
.w12{width:117.869395pt;}
.w27{width:120.001158pt;}
.w21{width:138.928195pt;}
.w6{width:158.533333pt;}
.w31{width:168.000011pt;}
.wc{width:168.000039pt;}
.w24{width:171.060916pt;}
.w2c{width:176.003229pt;}
.w1f{width:214.391792pt;}
.w20{width:223.991068pt;}
.w5{width:233.773333pt;}
.w3{width:251.106667pt;}
.w33{width:255.240000pt;}
.w4{width:264.693333pt;}
.w26{width:265.596194pt;}
.w2d{width:268.932974pt;}
.w30{width:280.134361pt;}
.w29{width:284.268232pt;}
.w1d{width:298.258877pt;}
.w7{width:662.906667pt;}
.w8{width:666.906667pt;}
.w2{width:793.733322pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2a{left:1.220910pt;}
.x21{left:2.979158pt;}
.x33{left:4.646292pt;}
.x4{left:6.133333pt;}
.x8e{left:8.390738pt;}
.x86{left:10.042642pt;}
.x9{left:11.053333pt;}
.x4a{left:12.251855pt;}
.x7{left:14.400000pt;}
.xe{left:15.373333pt;}
.x55{left:17.531836pt;}
.x1b{left:18.566667pt;}
.x5{left:19.733333pt;}
.x2e{left:21.060868pt;}
.x80{left:23.407809pt;}
.xb{left:28.533333pt;}
.x51{left:29.480014pt;}
.x28{left:31.903547pt;}
.x49{left:33.346348pt;}
.x3b{left:34.353806pt;}
.x37{left:36.129098pt;}
.x3{left:37.866655pt;}
.x59{left:39.360475pt;}
.x63{left:40.754221pt;}
.x5a{left:42.699151pt;}
.x50{left:46.354727pt;}
.x57{left:47.900309pt;}
.x46{left:49.064925pt;}
.x3a{left:55.805578pt;}
.x81{left:56.770876pt;}
.x38{left:57.708910pt;}
.x62{left:59.766212pt;}
.x91{left:61.866655pt;}
.x52{left:63.230644pt;}
.x36{left:64.870194pt;}
.x4c{left:66.100610pt;}
.x61{left:69.529170pt;}
.x6a{left:74.375352pt;}
.x85{left:75.701997pt;}
.x4f{left:79.611762pt;}
.x67{left:80.599991pt;}
.x6e{left:81.933324pt;}
.x5f{left:83.982369pt;}
.x1c{left:85.066655pt;}
.x39{left:86.676751pt;}
.x1a{left:89.066667pt;}
.x19{left:93.066667pt;}
.xd{left:95.093333pt;}
.x10{left:97.199988pt;}
.x5d{left:98.279219pt;}
.x7a{left:99.459920pt;}
.x58{left:100.969906pt;}
.x78{left:102.361079pt;}
.x8d{left:103.603384pt;}
.x29{left:105.832328pt;}
.x5c{left:106.825183pt;}
.x6{left:108.166667pt;}
.x2b{left:109.655703pt;}
.x68{left:110.854767pt;}
.x75{left:112.032353pt;}
.xa{left:113.893333pt;}
.x27{left:114.860701pt;}
.x5e{left:125.395676pt;}
.x6f{left:126.966655pt;}
.x73{left:129.823962pt;}
.x94{left:132.700000pt;}
.x69{left:133.624284pt;}
.x7f{left:135.122581pt;}
.x72{left:138.713098pt;}
.x79{left:140.688194pt;}
.x6c{left:153.666649pt;}
.x54{left:158.466649pt;}
.x95{left:185.106667pt;}
.x6d{left:198.693322pt;}
.x65{left:200.333315pt;}
.x66{left:222.839988pt;}
.x64{left:236.439988pt;}
.x70{left:245.773322pt;}
.x6b{left:256.173322pt;}
.x96{left:258.306667pt;}
.x60{left:261.906655pt;}
.x56{left:265.373322pt;}
.x1{left:269.773322pt;}
.x8{left:271.240000pt;}
.x8b{left:283.399982pt;}
.x90{left:292.573322pt;}
.x5b{left:299.506655pt;}
.x8f{left:318.026655pt;}
.x97{left:321.106667pt;}
.x8c{left:324.839988pt;}
.x53{left:336.199988pt;}
.x11{left:368.466655pt;}
.x1f{left:387.933322pt;}
.x1d{left:406.466655pt;}
.x71{left:415.933333pt;}
.x34{left:436.999988pt;}
.x1e{left:453.666655pt;}
.x25{left:469.933333pt;}
.x4b{left:475.799964pt;}
.x35{left:487.133322pt;}
.x26{left:490.333322pt;}
.x7d{left:491.266667pt;}
.x98{left:503.533322pt;}
.x2d{left:525.933333pt;}
.x3d{left:527.666630pt;}
.x7e{left:532.733322pt;}
.x88{left:543.399964pt;}
.x17{left:550.733322pt;}
.x4d{left:554.333322pt;}
.xc{left:555.933333pt;}
.x41{left:559.799964pt;}
.x14{left:560.999988pt;}
.x3c{left:571.559988pt;}
.x76{left:573.706655pt;}
.x3e{left:575.026655pt;}
.x42{left:576.506655pt;}
.x13{left:584.773322pt;}
.x2f{left:586.359988pt;}
.x3f{left:590.333297pt;}
.x89{left:591.426655pt;}
.x16{left:597.973322pt;}
.x45{left:601.533297pt;}
.x23{left:608.999928pt;}
.x83{left:610.599928pt;}
.x77{left:613.133261pt;}
.x40{left:618.773322pt;}
.x30{left:620.599928pt;}
.x2c{left:621.706655pt;}
.x82{left:629.693322pt;}
.xf{left:634.360000pt;}
.x12{left:638.773322pt;}
.x24{left:649.039988pt;}
.x84{left:655.693322pt;}
.x20{left:656.599928pt;}
.x47{left:658.359988pt;}
.x48{left:662.199928pt;}
.x7c{left:668.226655pt;}
.x87{left:675.426655pt;}
.x22{left:677.026655pt;}
.x7b{left:690.773322pt;}
.x74{left:692.506655pt;}
.x31{left:695.666594pt;}
.x15{left:701.839988pt;}
.x43{left:708.066594pt;}
.x32{left:710.226655pt;}
.x44{left:724.893322pt;}
.x2{left:728.106655pt;}
.x4e{left:732.066594pt;}
.x8a{left:740.106655pt;}
.x18{left:756.106655pt;}
.x92{left:759.173322pt;}
.x93{left:760.639988pt;}
}




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