
    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_b46a189c68c99fa4a206f58c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_f75f8d1583b15ca841c4a041.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_7612f289f6945a68e2045c8b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.895996;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_4eb34e8dc6bf25ae75867256.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;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_a6aa62fd007bbe55a8b46a66.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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_ccb5fd972506f2308a3cfeb2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.712000;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_f787649d5207fa6221ca42ee.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_b206b96274092bd748ed3b29.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.678223;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_c53f9abe2e0973ef5249b248.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.717285;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_bc4acbedaa6b5fc27fe871f4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.680176;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_eeddb211db5ba3e0c81d4b54.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.208008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_c56c2625bfdd704f72c7d052.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_bb4cdd0a15704cc3049c4f04.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_254582f87afa49d4e027c9e5.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.727000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_f6eadd0f5bd9cb99b066f183.woff2')format("woff");}.fff{font-family:fff;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_08ac6bf97c8d8debaf6e3980.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_35b749443830032119605418.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.938477;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:ff12;src:url('chunks/assets/font_30d93a460cb8e7e8e5be9423.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.938477;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:ff13;src:url('chunks/assets/font_9f016c51246195b9c93639b5.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.938477;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:ff14;src:url('chunks/assets/font_6eb3f849fd7f35e85b3da9b1.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.938477;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:ff15;src:url('chunks/assets/font_436b024dddf60403d44f3273.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.938477;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:ff16;src:url('chunks/assets/font_733d44eafb2b619ed6f49a72.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.938477;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:ff17;src:url('chunks/assets/font_57a2b10cdf92f5531b02bb5e.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.929199;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:ff18;src:url('chunks/assets/font_07dd4b4f6043a90c9ae55761.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.929199;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:ff19;src:url('chunks/assets/font_0f6c404908e18ac156e4b223.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.929199;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:ff1a;src:url('chunks/assets/font_455d266707296dead6ea2dc0.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.929199;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:ff1b;src:url('chunks/assets/font_383ba19c9b57b52d38f9f523.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.666504;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;}
.md{transform:matrix(0.000000,-0.249929,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249929,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249929,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.000000,-0.249966,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249966,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249966,0.250000,0.000000,0,0);}
.mf{transform:matrix(0.000000,-0.250217,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250217,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250217,0.250000,0.000000,0,0);}
.m7{transform:matrix(0.000000,-0.250282,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250282,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250282,0.250000,0.000000,0,0);}
.m9{transform:matrix(0.000000,-0.250283,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250283,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250283,0.250000,0.000000,0,0);}
.ma{transform:matrix(0.249717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249717,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249719,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249719,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.249784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249784,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249999,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);}
.m6{transform:matrix(0.250034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250034,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250035,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.250071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250071,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.250071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250071,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-25.920000px;}
.v6{vertical-align:-18.720000px;}
.v1{vertical-align:-14.400000px;}
.v7{vertical-align:-11.520000px;}
.v5{vertical-align:-10.080000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:3.158217px;}
.v8{vertical-align:11.520000px;}
.v2{vertical-align:14.400000px;}
.v9{vertical-align:20.160000px;}
.v4{vertical-align:41.760000px;}
.ls11{letter-spacing:-6.264000px;}
.ls14{letter-spacing:-6.048000px;}
.ls46{letter-spacing:-5.472000px;}
.ls65{letter-spacing:-3.816000px;}
.lsb{letter-spacing:-3.672000px;}
.ls4c{letter-spacing:-3.168000px;}
.ls86{letter-spacing:-2.376000px;}
.lsd{letter-spacing:-2.016000px;}
.ls17{letter-spacing:-1.728000px;}
.ls16{letter-spacing:-1.584000px;}
.ls6{letter-spacing:-1.440000px;}
.ls12{letter-spacing:-1.296000px;}
.ls15{letter-spacing:-1.152000px;}
.ls7{letter-spacing:-0.936000px;}
.ls88{letter-spacing:-0.792000px;}
.ls43{letter-spacing:-0.705888px;}
.ls99{letter-spacing:-0.649152px;}
.ls9{letter-spacing:-0.648000px;}
.ls39{letter-spacing:-0.634752px;}
.ls9d{letter-spacing:-0.589536px;}
.ls8b{letter-spacing:-0.576288px;}
.lsf{letter-spacing:-0.576000px;}
.ls37{letter-spacing:-0.530784px;}
.ls51{letter-spacing:-0.519840px;}
.ls55{letter-spacing:-0.508032px;}
.ls4{letter-spacing:-0.504000px;}
.ls23{letter-spacing:-0.483552px;}
.ls91{letter-spacing:-0.476928px;}
.ls54{letter-spacing:-0.465696px;}
.ls27{letter-spacing:-0.463680px;}
.ls22{letter-spacing:-0.458640px;}
.ls36{letter-spacing:-0.383040px;}
.ls3f{letter-spacing:-0.366624px;}
.ls5{letter-spacing:-0.288000px;}
.ls42{letter-spacing:-0.251712px;}
.ls92{letter-spacing:-0.218592px;}
.ls60{letter-spacing:-0.213957px;}
.ls64{letter-spacing:-0.213649px;}
.ls59{letter-spacing:-0.211128px;}
.ls5f{letter-spacing:-0.210391px;}
.ls63{letter-spacing:-0.210089px;}
.ls58{letter-spacing:-0.207610px;}
.ls5d{letter-spacing:-0.206708px;}
.ls5c{letter-spacing:-0.203263px;}
.ls8d{letter-spacing:-0.198720px;}
.ls2f{letter-spacing:-0.186048px;}
.ls90{letter-spacing:-0.165600px;}
.ls40{letter-spacing:-0.147744px;}
.lse{letter-spacing:-0.144000px;}
.ls4d{letter-spacing:-0.103968px;}
.ls9c{letter-spacing:-0.079488px;}
.ls29{letter-spacing:-0.046368px;}
.ls93{letter-spacing:-0.039744px;}
.ls44{letter-spacing:-0.038304px;}
.ls3{letter-spacing:0.000000px;}
.ls7a{letter-spacing:0.008203px;}
.ls7d{letter-spacing:0.008212px;}
.ls80{letter-spacing:0.008468px;}
.ls83{letter-spacing:0.008966px;}
.ls9a{letter-spacing:0.019872px;}
.ls3c{letter-spacing:0.032832px;}
.ls3b{letter-spacing:0.071136px;}
.ls10{letter-spacing:0.072000px;}
.ls4f{letter-spacing:0.076608px;}
.ls2d{letter-spacing:0.087552px;}
.ls50{letter-spacing:0.109440px;}
.ls89{letter-spacing:0.132480px;}
.ls2{letter-spacing:0.144000px;}
.ls26{letter-spacing:0.152352px;}
.ls9b{letter-spacing:0.158976px;}
.ls76{letter-spacing:0.174318px;}
.ls7c{letter-spacing:0.179701px;}
.ls7f{letter-spacing:0.179931px;}
.ls77{letter-spacing:0.180589px;}
.ls78{letter-spacing:0.184830px;}
.ls82{letter-spacing:0.185323px;}
.ls79{letter-spacing:0.189606px;}
.ls7b{letter-spacing:0.191392px;}
.ls7e{letter-spacing:0.191610px;}
.ls85{letter-spacing:0.196457px;}
.ls81{letter-spacing:0.197579px;}
.ls35{letter-spacing:0.202464px;}
.ls67{letter-spacing:0.204253px;}
.ls84{letter-spacing:0.209208px;}
.ls6f{letter-spacing:0.210561px;}
.ls71{letter-spacing:0.210831px;}
.ls69{letter-spacing:0.211601px;}
.ls6b{letter-spacing:0.216571px;}
.ls73{letter-spacing:0.217148px;}
.ls6d{letter-spacing:0.222167px;}
.ls75{letter-spacing:0.230194px;}
.ls30{letter-spacing:0.235296px;}
.ls5a{letter-spacing:0.242960px;}
.ls56{letter-spacing:0.248155px;}
.ls61{letter-spacing:0.251118px;}
.ls5e{letter-spacing:0.251480px;}
.ls41{letter-spacing:0.273600px;}
.ls5b{letter-spacing:0.276975px;}
.ls96{letter-spacing:0.278208px;}
.ls31{letter-spacing:0.279072px;}
.ls57{letter-spacing:0.282897px;}
.ls62{letter-spacing:0.286275px;}
.ls1{letter-spacing:0.288000px;}
.ls2a{letter-spacing:0.298080px;}
.ls13{letter-spacing:0.305280px;}
.ls28{letter-spacing:0.311328px;}
.ls4e{letter-spacing:0.311904px;}
.ls24{letter-spacing:0.331200px;}
.ls8c{letter-spacing:0.351072px;}
.lsc{letter-spacing:0.360000px;}
.ls33{letter-spacing:0.388512px;}
.ls8f{letter-spacing:0.397440px;}
.ls18{letter-spacing:0.408240px;}
.ls98{letter-spacing:0.410688px;}
.ls3d{letter-spacing:0.426816px;}
.ls45{letter-spacing:0.470592px;}
.ls25{letter-spacing:0.476928px;}
.ls95{letter-spacing:0.490176px;}
.lsa{letter-spacing:0.504000px;}
.ls38{letter-spacing:0.508896px;}
.ls2c{letter-spacing:0.535680px;}
.ls1b{letter-spacing:0.576000px;}
.ls2b{letter-spacing:0.593280px;}
.ls2e{letter-spacing:0.629280px;}
.ls8{letter-spacing:0.648000px;}
.ls34{letter-spacing:0.651168px;}
.ls3e{letter-spacing:0.656640px;}
.ls97{letter-spacing:0.669024px;}
.ls8a{letter-spacing:0.695520px;}
.ls32{letter-spacing:0.711360px;}
.ls0{letter-spacing:0.720000px;}
.ls3a{letter-spacing:0.733248px;}
.ls8e{letter-spacing:0.761760px;}
.ls94{letter-spacing:0.794880px;}
.ls47{letter-spacing:1.327680px;}
.ls4a{letter-spacing:2.160000px;}
.ls1f{letter-spacing:3.060000px;}
.ls48{letter-spacing:3.408480px;}
.ls21{letter-spacing:4.059360px;}
.ls4b{letter-spacing:5.040000px;}
.ls52{letter-spacing:6.480000px;}
.ls20{letter-spacing:9.570240px;}
.ls1e{letter-spacing:11.010240px;}
.ls49{letter-spacing:12.240000px;}
.ls19{letter-spacing:15.177600px;}
.ls1c{letter-spacing:19.656000px;}
.ls1a{letter-spacing:21.002400px;}
.ls66{letter-spacing:74.363060px;}
.ls70{letter-spacing:81.973654px;}
.ls68{letter-spacing:82.273202px;}
.ls1d{letter-spacing:83.016000px;}
.ls72{letter-spacing:110.619325px;}
.ls6c{letter-spacing:113.175908px;}
.ls74{letter-spacing:117.265155px;}
.ls6a{letter-spacing:141.802478px;}
.ls6e{letter-spacing:146.332668px;}
.ls53{letter-spacing:197.585280px;}
.ls87{letter-spacing:846.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd{word-spacing:-40.104000px;}
.ws18{word-spacing:-18.720000px;}
.ws4{word-spacing:-18.648000px;}
.ws8{word-spacing:-18.504000px;}
.ws6{word-spacing:-18.288000px;}
.ws5{word-spacing:-18.144000px;}
.ws9{word-spacing:-18.000000px;}
.ws13{word-spacing:-17.856000px;}
.ws1{word-spacing:-17.712000px;}
.ws0{word-spacing:-17.496000px;}
.ws7{word-spacing:-17.352000px;}
.ws60{word-spacing:-17.208000px;}
.ws3{word-spacing:-17.064000px;}
.ws16{word-spacing:-16.848000px;}
.ws14{word-spacing:-16.704000px;}
.ws2{word-spacing:-16.560000px;}
.wsc{word-spacing:-16.416000px;}
.wsb{word-spacing:-16.272000px;}
.ws69{word-spacing:-15.665760px;}
.ws6b{word-spacing:-15.639264px;}
.ws5f{word-spacing:-15.624000px;}
.ws63{word-spacing:-15.367680px;}
.ws6a{word-spacing:-15.321312px;}
.ws29{word-spacing:-15.299712px;}
.ws28{word-spacing:-15.268320px;}
.ws25{word-spacing:-15.122592px;}
.ws68{word-spacing:-15.102720px;}
.ws2a{word-spacing:-15.026112px;}
.ws6d{word-spacing:-14.990112px;}
.ws64{word-spacing:-14.970240px;}
.ws27{word-spacing:-14.923872px;}
.ws6e{word-spacing:-14.890752px;}
.ws3a{word-spacing:-14.832000px;}
.ws66{word-spacing:-14.804640px;}
.ws62{word-spacing:-14.771520px;}
.ws67{word-spacing:-14.751648px;}
.ws40{word-spacing:-14.654304px;}
.ws41{word-spacing:-14.611968px;}
.ws26{word-spacing:-14.506560px;}
.ws61{word-spacing:-14.486688px;}
.ws65{word-spacing:-14.393952px;}
.ws6f{word-spacing:-14.380704px;}
.wsa{word-spacing:-14.328000px;}
.ws6c{word-spacing:-14.321088px;}
.ws42{word-spacing:-14.184000px;}
.ws34{word-spacing:-13.099968px;}
.ws30{word-spacing:-13.078080px;}
.ws33{word-spacing:-13.017888px;}
.ws2f{word-spacing:-12.875616px;}
.ws2c{word-spacing:-12.755232px;}
.ws3c{word-spacing:-12.678624px;}
.ws2b{word-spacing:-12.645792px;}
.ws2d{word-spacing:-12.569184px;}
.ws39{word-spacing:-12.528000px;}
.ws3e{word-spacing:-12.476160px;}
.ws3d{word-spacing:-12.443328px;}
.ws32{word-spacing:-12.399552px;}
.ws38{word-spacing:-12.366720px;}
.ws37{word-spacing:-12.328416px;}
.ws3b{word-spacing:-12.262752px;}
.ws35{word-spacing:-12.115008px;}
.ws2e{word-spacing:-11.983680px;}
.ws15{word-spacing:-11.952000px;}
.ws3f{word-spacing:-11.846880px;}
.ws31{word-spacing:-11.731968px;}
.ws36{word-spacing:-11.660832px;}
.ws5e{word-spacing:-9.298962px;}
.ws4e{word-spacing:-8.974691px;}
.ws5a{word-spacing:-8.771957px;}
.ws4b{word-spacing:-8.748615px;}
.ws48{word-spacing:-8.547874px;}
.ws56{word-spacing:-8.516752px;}
.ws52{word-spacing:-8.505857px;}
.ws45{word-spacing:-8.251043px;}
.ws20{word-spacing:-0.576000px;}
.ws1b{word-spacing:-0.458640px;}
.ws17{word-spacing:-0.072000px;}
.ws11{word-spacing:-0.066000px;}
.ws23{word-spacing:-0.050400px;}
.ws24{word-spacing:-0.041760px;}
.ws10{word-spacing:-0.024000px;}
.ws12{word-spacing:-0.018000px;}
.wsf{word-spacing:-0.012000px;}
.wse{word-spacing:0.000000px;}
.ws1f{word-spacing:0.072000px;}
.ws22{word-spacing:0.408240px;}
.ws1e{word-spacing:15.264000px;}
.ws21{word-spacing:19.440000px;}
.ws1c{word-spacing:19.584000px;}
.ws1a{word-spacing:20.880000px;}
.ws1d{word-spacing:24.457680px;}
.ws19{word-spacing:24.644880px;}
.ws43{word-spacing:62.820436px;}
.ws53{word-spacing:69.977824px;}
.ws46{word-spacing:70.233537px;}
.ws57{word-spacing:98.264039px;}
.ws4c{word-spacing:100.535072px;}
.ws5b{word-spacing:104.167584px;}
.ws49{word-spacing:129.535880px;}
.ws4f{word-spacing:134.433578px;}
.ws44{word-spacing:150.979315px;}
.ws47{word-spacing:156.608336px;}
.ws4a{word-spacing:160.287106px;}
.ws4d{word-spacing:164.427854px;}
.ws50{word-spacing:330.170288px;}
.ws54{word-spacing:330.545863px;}
.ws51{word-spacing:334.709737px;}
.ws55{word-spacing:335.090476px;}
.ws58{word-spacing:340.842153px;}
.ws59{word-spacing:345.528328px;}
.ws5c{word-spacing:360.904415px;}
.ws5d{word-spacing:365.866422px;}
._70{margin-left:-617.285628px;}
._74{margin-left:-572.064555px;}
._25{margin-left:-534.990721px;}
._5c{margin-left:-512.979457px;}
._44{margin-left:-427.627672px;}
._65{margin-left:-335.069076px;}
._1e{margin-left:-323.456690px;}
._77{margin-left:-312.953425px;}
._24{margin-left:-305.900894px;}
._7f{margin-left:-304.708417px;}
._28{margin-left:-292.335053px;}
._7a{margin-left:-290.980591px;}
._63{margin-left:-285.739379px;}
._76{margin-left:-270.792612px;}
._1d{margin-left:-264.405379px;}
._20{margin-left:-252.435518px;}
._60{margin-left:-231.490191px;}
._3d{margin-left:-223.712298px;}
._4b{margin-left:-222.149728px;}
._6a{margin-left:-214.507836px;}
._7b{margin-left:-212.651232px;}
._5f{margin-left:-208.541292px;}
._43{margin-left:-204.180174px;}
._61{margin-left:-200.827606px;}
._30{margin-left:-195.778180px;}
._4e{margin-left:-191.614507px;}
._54{margin-left:-189.270652px;}
._4c{margin-left:-186.210619px;}
._42{margin-left:-180.676518px;}
._21{margin-left:-174.089741px;}
._72{margin-left:-163.392562px;}
._3f{margin-left:-158.019254px;}
._35{margin-left:-143.842286px;}
._22{margin-left:-137.458360px;}
._2b{margin-left:-127.948971px;}
._69{margin-left:-125.552645px;}
._6e{margin-left:-124.002669px;}
._2f{margin-left:-115.114621px;}
._23{margin-left:-104.672706px;}
._32{margin-left:-100.750788px;}
._49{margin-left:-97.925419px;}
._82{margin-left:-93.071102px;}
._6d{margin-left:-91.587936px;}
._52{margin-left:-85.359753px;}
._5b{margin-left:-79.793469px;}
._7d{margin-left:-78.535756px;}
._48{margin-left:-75.203048px;}
._47{margin-left:-70.515338px;}
._51{margin-left:-66.608913px;}
._55{margin-left:-61.139919px;}
._3c{margin-left:-50.983214px;}
._27{margin-left:-48.083403px;}
._6b{margin-left:-46.369048px;}
._7e{margin-left:-43.004913px;}
._4f{margin-left:-40.826510px;}
._83{margin-left:-30.084606px;}
._40{margin-left:-27.544665px;}
._5e{margin-left:-24.467201px;}
._33{margin-left:-19.469728px;}
._73{margin-left:-14.833871px;}
._3b{margin-left:-9.575111px;}
._3{margin-left:-7.488000px;}
._5{margin-left:-5.904000px;}
._8{margin-left:-4.752000px;}
._4{margin-left:-3.744000px;}
._b{margin-left:-2.520000px;}
._2{margin-left:-1.512000px;}
._0{width:1.008000px;}
._1{width:2.304000px;}
._6{width:3.384000px;}
._7{width:4.824000px;}
._9{width:6.408000px;}
._a{width:7.488000px;}
._11{width:11.956320px;}
._d{width:13.032000px;}
._c{width:14.184000px;}
._12{width:21.163680px;}
._13{width:22.320000px;}
._e{width:25.272000px;}
._17{width:30.051648px;}
._59{width:32.334243px;}
._3a{width:39.645841px;}
._6c{width:44.277421px;}
._50{width:47.458691px;}
._78{width:59.550021px;}
._84{width:61.299117px;}
._5a{width:64.487989px;}
._2e{width:72.413191px;}
._46{width:76.366234px;}
._86{width:79.529827px;}
._36{width:90.084000px;}
._19{width:92.010210px;}
._2d{width:93.227448px;}
._56{width:94.755123px;}
._68{width:98.452699px;}
._57{width:99.539834px;}
._39{width:100.710816px;}
._1c{width:102.831923px;}
._37{width:105.594023px;}
._1a{width:107.819543px;}
._38{width:109.657768px;}
._1b{width:112.002511px;}
._34{width:114.706697px;}
._5d{width:121.040265px;}
._31{width:125.147075px;}
._62{width:126.824013px;}
._67{width:130.867431px;}
._66{width:132.484798px;}
._53{width:145.900596px;}
._79{width:155.644802px;}
._85{width:156.891146px;}
._7c{width:158.942172px;}
._8a{width:161.735768px;}
._87{width:162.740580px;}
._64{width:165.640824px;}
._8c{width:166.963441px;}
._81{width:168.632402px;}
._41{width:170.901714px;}
._89{width:173.747616px;}
._8b{width:176.965131px;}
._88{width:178.064558px;}
._29{width:181.804414px;}
._3e{width:187.373806px;}
._8d{width:192.430052px;}
._71{width:195.280535px;}
._14{width:198.000000px;}
._18{width:200.880000px;}
._80{width:204.970765px;}
._4d{width:240.501183px;}
._58{width:248.935230px;}
._45{width:254.564312px;}
._4a{width:260.879699px;}
._2a{width:309.135453px;}
._75{width:324.483602px;}
._2c{width:349.448958px;}
._1f{width:391.675965px;}
._26{width:403.712325px;}
._6f{width:765.422714px;}
._16{width:846.000000px;}
._15{width:847.440000px;}
._10{width:1221.840000px;}
._f{width:1240.560000px;}
.fc3{color:transparent;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(64,85,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:24.296009px;}
.fs8{font-size:24.815515px;}
.fse{font-size:25.111827px;}
.fsc{font-size:25.148037px;}
.fs11{font-size:26.522772px;}
.fs10{font-size:26.526394px;}
.fs1d{font-size:27.341765px;}
.fs1c{font-size:27.345599px;}
.fs20{font-size:27.372867px;}
.fs1f{font-size:27.380626px;}
.fs13{font-size:27.480680px;}
.fs14{font-size:27.511630px;}
.fs16{font-size:28.126046px;}
.fs17{font-size:28.157886px;}
.fs22{font-size:28.201088px;}
.fs23{font-size:28.225514px;}
.fs19{font-size:28.852859px;}
.fs1a{font-size:28.885297px;}
.fs12{font-size:29.052968px;}
.fs26{font-size:29.886892px;}
.fs25{font-size:29.895364px;}
.fs1e{font-size:29.950200px;}
.fs21{font-size:29.988563px;}
.fs15{font-size:30.098147px;}
.fs18{font-size:30.804983px;}
.fs24{font-size:30.887173px;}
.fs1b{font-size:31.601023px;}
.fs27{font-size:32.742824px;}
.fsb{font-size:34.451411px;}
.fs9{font-size:35.188064px;}
.fsf{font-size:35.608231px;}
.fsd{font-size:35.659575px;}
.fs7{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs1{font-size:47.520000px;}
.fs3{font-size:50.400000px;}
.fs6{font-size:54.720000px;}
.fs5{font-size:60.480000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y20d{bottom:-23.741713px;}
.y1f1{bottom:-23.697678px;}
.y1ea{bottom:-22.349639px;}
.y1e3{bottom:-21.941331px;}
.y1f8{bottom:-21.847924px;}
.y1dc{bottom:-21.327408px;}
.y206{bottom:-20.848449px;}
.y1ff{bottom:-20.265964px;}
.y1f0{bottom:-13.724384px;}
.y20c{bottom:-13.422595px;}
.y1e9{bottom:-12.627500px;}
.y1e2{bottom:-12.442326px;}
.y1f7{bottom:-12.407569px;}
.y1db{bottom:-12.169828px;}
.y205{bottom:-11.102960px;}
.y1fe{bottom:-10.814870px;}
.y182{bottom:-8.050407px;}
.y150{bottom:-7.224790px;}
.y169{bottom:-6.270974px;}
.y19b{bottom:-5.484296px;}
.y0{bottom:0.000000px;}
.ybc{bottom:0.180000px;}
.y96{bottom:0.240000px;}
.y92{bottom:0.300000px;}
.y8c{bottom:0.360000px;}
.y86{bottom:0.420000px;}
.y183{bottom:0.440771px;}
.y81{bottom:0.480000px;}
.y101{bottom:0.540000px;}
.yef{bottom:0.600000px;}
.y238{bottom:0.780000px;}
.y7a{bottom:0.840000px;}
.y24f{bottom:0.900000px;}
.yd7{bottom:0.960000px;}
.y83{bottom:1.020000px;}
.ybe{bottom:1.080000px;}
.yc7{bottom:1.140000px;}
.y151{bottom:1.154112px;}
.yc3{bottom:1.200000px;}
.y1ef{bottom:1.234842px;}
.y8f{bottom:1.260000px;}
.y89{bottom:1.320000px;}
.y115{bottom:1.380000px;}
.y22a{bottom:1.440000px;}
.y215{bottom:1.500000px;}
.y1da{bottom:1.565883px;}
.y1f6{bottom:1.752286px;}
.y1e1{bottom:1.805500px;}
.y16a{bottom:1.932518px;}
.y1e8{bottom:1.955011px;}
.y20b{bottom:2.055339px;}
.y142{bottom:2.640000px;}
.y1ca{bottom:2.880000px;}
.y19c{bottom:2.994655px;}
.y13c{bottom:3.060000px;}
.y1c0{bottom:3.240000px;}
.y1fd{bottom:3.361092px;}
.y204{bottom:3.514574px;}
.ybb{bottom:3.780000px;}
.yc5{bottom:3.840000px;}
.ydd{bottom:3.900000px;}
.yd9{bottom:3.960000px;}
.yce{bottom:4.020000px;}
.ycb{bottom:4.080000px;}
.y100{bottom:4.140000px;}
.yee{bottom:4.200000px;}
.y145{bottom:4.440000px;}
.y248{bottom:4.500000px;}
.y95{bottom:4.560000px;}
.y91{bottom:4.620000px;}
.y8b{bottom:4.680000px;}
.y85{bottom:4.740000px;}
.y80{bottom:4.800000px;}
.ydb{bottom:4.860000px;}
.y213{bottom:4.920000px;}
.y114{bottom:4.980000px;}
.y136{bottom:5.040000px;}
.y21e{bottom:5.100000px;}
.y7b{bottom:5.160000px;}
.y24c{bottom:5.220000px;}
.y7d{bottom:5.340000px;}
.y24a{bottom:5.400000px;}
.y117{bottom:5.520000px;}
.y8e{bottom:5.580000px;}
.y88{bottom:5.640000px;}
.yb7{bottom:5.700000px;}
.y21a{bottom:5.760000px;}
.y216{bottom:5.820000px;}
.y98{bottom:5.880000px;}
.y220{bottom:6.360000px;}
.y1ba{bottom:6.420000px;}
.y219{bottom:6.480000px;}
.y227{bottom:6.540000px;}
.y105{bottom:6.600000px;}
.yff{bottom:6.660000px;}
.y10f{bottom:6.720000px;}
.y10b{bottom:6.780000px;}
.yb4{bottom:6.960000px;}
.yfd{bottom:7.260000px;}
.y10d{bottom:7.320000px;}
.y109{bottom:7.380000px;}
.y1d0{bottom:7.500000px;}
.y103{bottom:7.560000px;}
.y111{bottom:7.620000px;}
.y1d9{bottom:7.897244px;}
.y1ee{bottom:8.130171px;}
.y1f5{bottom:8.279152px;}
.y1e0{bottom:8.372915px;}
.y1e7{bottom:8.676697px;}
.y20a{bottom:9.189764px;}
.y1fc{bottom:9.895383px;}
.y203{bottom:10.252404px;}
.yb6{bottom:11.100000px;}
.yc0{bottom:11.280000px;}
.y199{bottom:11.761498px;}
.y167{bottom:12.325151px;}
.y18e{bottom:12.570181px;}
.yf9{bottom:12.840000px;}
.y180{bottom:12.869694px;}
.y15c{bottom:13.123141px;}
.y175{bottom:13.650979px;}
.y1b2{bottom:14.299082px;}
.y1a7{bottom:15.106601px;}
.yb9{bottom:16.740000px;}
.yf8{bottom:17.520000px;}
.y1d2{bottom:17.880000px;}
.y1c2{bottom:17.940000px;}
.y143{bottom:18.840000px;}
.yfb{bottom:19.680000px;}
.yba{bottom:20.340000px;}
.y1d8{bottom:20.369841px;}
.yed{bottom:20.400000px;}
.y107{bottom:20.520000px;}
.ye7{bottom:20.640000px;}
.yf7{bottom:21.120000px;}
.y1f4{bottom:21.136889px;}
.y113{bottom:21.180000px;}
.y1df{bottom:21.310533px;}
.y1ed{bottom:21.713769px;}
.y144{bottom:21.720000px;}
.y1e6{bottom:21.918222px;}
.y1fb{bottom:22.767746px;}
.y209{bottom:23.244372px;}
.y202{bottom:23.525733px;}
.y7e{bottom:25.500000px;}
.y198{bottom:29.571911px;}
.y166{bottom:29.900064px;}
.y17f{bottom:30.076681px;}
.y18d{bottom:30.380594px;}
.y15b{bottom:30.698055px;}
.y174{bottom:30.857966px;}
.y1b1{bottom:32.083851px;}
.y1a6{bottom:32.891370px;}
.y1b9{bottom:44.940000px;}
.y1c9{bottom:46.080000px;}
.y17e{bottom:47.069629px;}
.y197{bottom:47.160778px;}
.y165{bottom:47.256362px;}
.y173{bottom:47.850914px;}
.y18c{bottom:47.969462px;}
.y15a{bottom:48.054353px;}
.y1bf{bottom:48.960000px;}
.y1b0{bottom:49.647393px;}
.y1a5{bottom:50.454912px;}
.y1cf{bottom:52.140000px;}
.y53{bottom:57.360000px;}
.y17d{bottom:64.253829px;}
.y164{bottom:64.808001px;}
.y172{bottom:64.839793px;}
.y196{bottom:64.947604px;}
.y159{bottom:65.406494px;}
.y18b{bottom:65.554117px;}
.y1b8{bottom:65.820000px;}
.y1dd{bottom:66.328129px;}
.y1c8{bottom:66.960000px;}
.y1af{bottom:67.408608px;}
.y1a4{bottom:68.014248px;}
.y1f9{bottom:68.514317px;}
.y1e4{bottom:68.982301px;}
.y13b{bottom:69.300000px;}
.y1be{bottom:69.480000px;}
.y200{bottom:70.199066px;}
.y141{bottom:70.320000px;}
.y1eb{bottom:70.709812px;}
.y1f2{bottom:71.765808px;}
.y207{bottom:72.434508px;}
.y1ce{bottom:73.020000px;}
.y20e{bottom:75.031959px;}
.y17c{bottom:81.271192px;}
.y171{bottom:82.052477px;}
.y163{bottom:82.189235px;}
.y195{bottom:82.561743px;}
.y158{bottom:82.987226px;}
.y18a{bottom:83.370426px;}
.y1ae{bottom:84.997385px;}
.y1a3{bottom:85.804905px;}
.y1b7{bottom:86.340000px;}
.y1c7{bottom:87.480000px;}
.y13a{bottom:89.820000px;}
.y1bd{bottom:90.360000px;}
.y140{bottom:91.200000px;}
.y1cd{bottom:93.540000px;}
.y17b{bottom:98.459461px;}
.y170{bottom:99.240746px;}
.y162{bottom:99.745031px;}
.y194{bottom:100.352781px;}
.y157{bottom:100.543021px;}
.y189{bottom:101.161465px;}
.y1ad{bottom:102.762807px;}
.y1a2{bottom:103.570326px;}
.y1b6{bottom:107.220000px;}
.y1c6{bottom:108.360000px;}
.y1e{bottom:110.640000px;}
.y139{bottom:110.700000px;}
.y1bc{bottom:110.880000px;}
.y13f{bottom:111.720000px;}
.y90{bottom:112.500000px;}
.y245{bottom:114.000000px;}
.y1cc{bottom:114.420000px;}
.y17a{bottom:115.468686px;}
.y1d6{bottom:116.040000px;}
.y16f{bottom:116.249971px;}
.y1d{bottom:116.760000px;}
.y161{bottom:117.117953px;}
.y156{bottom:117.915944px;}
.y193{bottom:117.958496px;}
.y188{bottom:118.767179px;}
.yaf{bottom:120.000000px;}
.y1ac{bottom:120.343172px;}
.y1a1{bottom:121.150691px;}
.y3a{bottom:125.400000px;}
.yf2{bottom:128.640000px;}
.y135{bottom:130.440000px;}
.y138{bottom:131.220000px;}
.y13e{bottom:132.600000px;}
.y179{bottom:132.656955px;}
.y16e{bottom:133.438240px;}
.y8d{bottom:133.500000px;}
.y160{bottom:134.673748px;}
.y155{bottom:135.471739px;}
.y192{bottom:135.749534px;}
.y244{bottom:136.500000px;}
.y187{bottom:136.558218px;}
.y1ab{bottom:138.108594px;}
.y1a0{bottom:138.916113px;}
.y11e{bottom:142.320000px;}
.y210{bottom:145.920000px;}
.y51{bottom:146.280000px;}
.yf1{bottom:149.160000px;}
.y178{bottom:149.649903px;}
.y16d{bottom:150.431188px;}
.y76{bottom:150.600000px;}
.y15f{bottom:152.030045px;}
.y154{bottom:152.828036px;}
.y191{bottom:153.338401px;}
.y186{bottom:154.147085px;}
.y1aa{bottom:155.672136px;}
.y8a{bottom:156.000000px;}
.y19f{bottom:156.479655px;}
.y1d5{bottom:157.440000px;}
.y243{bottom:157.500000px;}
.yae{bottom:161.400000px;}
.y39{bottom:166.800000px;}
.y177{bottom:166.854449px;}
.y16c{bottom:167.635733px;}
.y15e{bottom:169.602465px;}
.yf0{bottom:170.040000px;}
.y153{bottom:170.400456px;}
.y190{bottom:171.146287px;}
.y134{bottom:171.840000px;}
.y185{bottom:171.954971px;}
.y1a9{bottom:173.454381px;}
.y19e{bottom:174.261900px;}
.y87{bottom:177.000000px;}
.y14e{bottom:178.320000px;}
.y242{bottom:180.000000px;}
.y11d{bottom:183.720000px;}
.y176{bottom:183.847396px;}
.y16b{bottom:184.628681px;}
.yec{bottom:186.000000px;}
.y55{bottom:186.600000px;}
.y15d{bottom:186.958763px;}
.y50{bottom:187.680000px;}
.y152{bottom:187.756754px;}
.y18f{bottom:188.735154px;}
.y184{bottom:189.543838px;}
.y1a8{bottom:191.017923px;}
.y75{bottom:191.640000px;}
.y19d{bottom:191.825442px;}
.y1d4{bottom:198.840000px;}
.y84{bottom:199.500000px;}
.y241{bottom:201.000000px;}
.yad{bottom:202.800000px;}
.y38{bottom:208.200000px;}
.y133{bottom:213.240000px;}
.yeb{bottom:219.000000px;}
.y14d{bottom:219.720000px;}
.y82{bottom:220.500000px;}
.y240{bottom:223.500000px;}
.y11c{bottom:224.760000px;}
.y54{bottom:228.720000px;}
.y4f{bottom:229.080000px;}
.y74{bottom:233.040000px;}
.yea{bottom:240.000000px;}
.y1d3{bottom:240.960000px;}
.y7f{bottom:243.000000px;}
.yac{bottom:244.200000px;}
.y23f{bottom:244.500000px;}
.y37{bottom:249.600000px;}
.y132{bottom:254.640000px;}
.y1d1{bottom:258.000000px;}
.y14c{bottom:261.120000px;}
.ye9{bottom:262.500000px;}
.y7c{bottom:265.500000px;}
.y11b{bottom:266.160000px;}
.y23e{bottom:267.000000px;}
.y4e{bottom:270.480000px;}
.y73{bottom:274.440000px;}
.ye8{bottom:283.500000px;}
.yab{bottom:285.600000px;}
.y23d{bottom:288.000000px;}
.y36{bottom:291.000000px;}
.y1cb{bottom:292.500000px;}
.y208{bottom:292.887600px;}
.y131{bottom:296.040000px;}
.y201{bottom:301.224150px;}
.y14b{bottom:302.520000px;}
.y79{bottom:306.000000px;}
.y11a{bottom:307.560000px;}
.y23c{bottom:310.500000px;}
.y4d{bottom:311.880000px;}
.y72{bottom:315.840000px;}
.yaa{bottom:327.000000px;}
.y23b{bottom:331.500000px;}
.y35{bottom:332.400000px;}
.y78{bottom:332.760000px;}
.y130{bottom:337.440000px;}
.ye6{bottom:339.000000px;}
.y1c{bottom:342.840000px;}
.y14a{bottom:343.920000px;}
.y119{bottom:348.960000px;}
.y4c{bottom:353.280000px;}
.y77{bottom:353.640000px;}
.y23a{bottom:354.000000px;}
.y71{bottom:357.240000px;}
.ye5{bottom:360.000000px;}
.ya9{bottom:368.400000px;}
.y118{bottom:370.200000px;}
.y34{bottom:373.800000px;}
.y239{bottom:375.000000px;}
.y12f{bottom:378.840000px;}
.ye4{bottom:382.500000px;}
.y1b{bottom:384.240000px;}
.y149{bottom:385.320000px;}
.y116{bottom:387.000000px;}
.y4b{bottom:394.680000px;}
.y237{bottom:397.500000px;}
.y70{bottom:398.640000px;}
.ye3{bottom:403.500000px;}
.y112{bottom:409.500000px;}
.ya8{bottom:409.800000px;}
.y33{bottom:415.200000px;}
.y236{bottom:418.500000px;}
.y12e{bottom:420.240000px;}
.y1a{bottom:425.640000px;}
.ye2{bottom:426.000000px;}
.y148{bottom:426.720000px;}
.y4a{bottom:436.080000px;}
.y6f{bottom:440.040000px;}
.y235{bottom:441.000000px;}
.y110{bottom:442.500000px;}
.y147{bottom:448.320000px;}
.ye1{bottom:448.500000px;}
.ya7{bottom:451.200000px;}
.y32{bottom:456.600000px;}
.y12d{bottom:461.640000px;}
.y234{bottom:462.000000px;}
.y10e{bottom:465.000000px;}
.y19{bottom:467.040000px;}
.ye0{bottom:469.500000px;}
.y146{bottom:469.920000px;}
.y1c5{bottom:471.000000px;}
.y1fa{bottom:472.080000px;}
.y1f3{bottom:473.872200px;}
.y49{bottom:477.480000px;}
.y6e{bottom:481.440000px;}
.y233{bottom:484.500000px;}
.y10c{bottom:486.000000px;}
.ydf{bottom:492.000000px;}
.ya6{bottom:492.600000px;}
.y31{bottom:498.000000px;}
.y12c{bottom:503.040000px;}
.y232{bottom:505.500000px;}
.y10a{bottom:508.500000px;}
.yde{bottom:513.000000px;}
.y48{bottom:518.880000px;}
.y13d{bottom:522.000000px;}
.y19a{bottom:522.480000px;}
.y6d{bottom:522.840000px;}
.y181{bottom:524.728650px;}
.y231{bottom:528.000000px;}
.y108{bottom:529.500000px;}
.ya5{bottom:534.000000px;}
.ydc{bottom:535.500000px;}
.y30{bottom:539.400000px;}
.y12b{bottom:544.440000px;}
.y230{bottom:549.000000px;}
.y18{bottom:550.920000px;}
.y106{bottom:552.000000px;}
.yda{bottom:556.500000px;}
.y47{bottom:560.280000px;}
.y6c{bottom:564.240000px;}
.y22f{bottom:571.500000px;}
.y17{bottom:572.880000px;}
.ya4{bottom:575.400000px;}
.yd8{bottom:579.000000px;}
.y2f{bottom:580.800000px;}
.y104{bottom:585.000000px;}
.y12a{bottom:585.840000px;}
.y22e{bottom:592.500000px;}
.y16{bottom:594.840000px;}
.yd6{bottom:600.000000px;}
.y46{bottom:601.680000px;}
.y20f{bottom:602.040000px;}
.y6b{bottom:605.640000px;}
.y102{bottom:606.000000px;}
.y22d{bottom:615.000000px;}
.y15{bottom:616.800000px;}
.y2e{bottom:622.200000px;}
.yd5{bottom:622.500000px;}
.y129{bottom:627.240000px;}
.yfe{bottom:628.500000px;}
.y22c{bottom:636.000000px;}
.y1c4{bottom:637.500000px;}
.y14{bottom:638.760000px;}
.y45{bottom:643.080000px;}
.yd4{bottom:643.500000px;}
.y6a{bottom:647.040000px;}
.yfc{bottom:649.500000px;}
.ya3{bottom:658.200000px;}
.y1c3{bottom:658.500000px;}
.y13{bottom:660.720000px;}
.y2d{bottom:663.600000px;}
.yd3{bottom:666.000000px;}
.y128{bottom:668.640000px;}
.yfa{bottom:672.000000px;}
.y1c1{bottom:679.500000px;}
.y12{bottom:682.320000px;}
.y44{bottom:684.480000px;}
.yd2{bottom:687.000000px;}
.y69{bottom:688.440000px;}
.ya2{bottom:699.600000px;}
.y22b{bottom:702.000000px;}
.y2c{bottom:705.000000px;}
.yd1{bottom:709.500000px;}
.y127{bottom:710.040000px;}
.y1bb{bottom:714.000000px;}
.y1ec{bottom:714.360000px;}
.y1e5{bottom:717.928950px;}
.y229{bottom:723.000000px;}
.y43{bottom:725.880000px;}
.yf6{bottom:726.000000px;}
.yd0{bottom:730.500000px;}
.y68{bottom:732.720000px;}
.y137{bottom:736.500000px;}
.y14f{bottom:737.867700px;}
.y168{bottom:739.818000px;}
.ya1{bottom:741.000000px;}
.y11{bottom:744.240000px;}
.y228{bottom:745.500000px;}
.y2b{bottom:746.400000px;}
.y126{bottom:751.440000px;}
.ycf{bottom:753.000000px;}
.yf5{bottom:760.500000px;}
.y10{bottom:765.120000px;}
.y226{bottom:766.500000px;}
.y42{bottom:767.280000px;}
.y67{bottom:774.480000px;}
.ycd{bottom:775.500000px;}
.ya0{bottom:782.400000px;}
.yf{bottom:785.640000px;}
.y2a{bottom:787.800000px;}
.yf4{bottom:788.160000px;}
.y225{bottom:789.000000px;}
.y125{bottom:792.840000px;}
.ycc{bottom:796.500000px;}
.ye{bottom:806.520000px;}
.y41{bottom:808.680000px;}
.yf3{bottom:809.040000px;}
.y224{bottom:810.000000px;}
.y66{bottom:814.800000px;}
.yca{bottom:819.000000px;}
.y63{bottom:819.840000px;}
.y62{bottom:820.560000px;}
.y9f{bottom:823.800000px;}
.y64{bottom:824.520000px;}
.y65{bottom:826.320000px;}
.yd{bottom:827.040000px;}
.y29{bottom:829.200000px;}
.y5e{bottom:829.920000px;}
.y60{bottom:830.280000px;}
.y5f{bottom:831.000000px;}
.y223{bottom:832.500000px;}
.y124{bottom:834.240000px;}
.yc9{bottom:840.000000px;}
.y61{bottom:845.040000px;}
.yc{bottom:847.920000px;}
.y40{bottom:850.080000px;}
.y222{bottom:853.500000px;}
.yc8{bottom:862.500000px;}
.y9e{bottom:865.200000px;}
.y28{bottom:870.600000px;}
.y123{bottom:875.640000px;}
.y221{bottom:876.000000px;}
.y5d{bottom:878.520000px;}
.yc6{bottom:883.500000px;}
.y1b5{bottom:886.500000px;}
.y1de{bottom:886.888950px;}
.y3f{bottom:891.480000px;}
.y1d7{bottom:892.959000px;}
.y21f{bottom:897.000000px;}
.yc4{bottom:906.000000px;}
.y9d{bottom:906.600000px;}
.y27{bottom:912.000000px;}
.yb{bottom:912.360000px;}
.y122{bottom:917.040000px;}
.y21d{bottom:919.500000px;}
.y5c{bottom:919.920000px;}
.y251{bottom:924.960000px;}
.yc2{bottom:927.000000px;}
.y3e{bottom:932.880000px;}
.ya{bottom:933.240000px;}
.y21c{bottom:940.500000px;}
.y9c{bottom:948.000000px;}
.y254{bottom:949.080000px;}
.yc1{bottom:949.500000px;}
.y26{bottom:953.400000px;}
.y9{bottom:953.760000px;}
.y121{bottom:958.800000px;}
.y21b{bottom:963.000000px;}
.y250{bottom:963.480000px;}
.y5b{bottom:964.200000px;}
.ybf{bottom:972.000000px;}
.y3d{bottom:974.280000px;}
.y8{bottom:974.640000px;}
.y24e{bottom:979.500000px;}
.y218{bottom:984.000000px;}
.y253{bottom:987.240000px;}
.y9b{bottom:989.400000px;}
.ybd{bottom:993.000000px;}
.y25{bottom:994.800000px;}
.y7{bottom:995.160000px;}
.y24d{bottom:1000.500000px;}
.y120{bottom:1000.560000px;}
.y217{bottom:1006.500000px;}
.y252{bottom:1007.400000px;}
.y5a{bottom:1008.480000px;}
.yb8{bottom:1015.500000px;}
.y3c{bottom:1015.680000px;}
.y6{bottom:1016.040000px;}
.y24b{bottom:1024.500000px;}
.y214{bottom:1027.500000px;}
.y9a{bottom:1030.800000px;}
.y24{bottom:1036.200000px;}
.y4{bottom:1036.560000px;}
.y11f{bottom:1041.960000px;}
.y5{bottom:1042.680000px;}
.y249{bottom:1047.000000px;}
.yb5{bottom:1048.500000px;}
.y212{bottom:1050.000000px;}
.y1b4{bottom:1051.500000px;}
.y58{bottom:1052.760000px;}
.y3b{bottom:1057.080000px;}
.y59{bottom:1059.240000px;}
.y247{bottom:1069.500000px;}
.yb3{bottom:1071.000000px;}
.y99{bottom:1072.200000px;}
.y1b3{bottom:1072.500000px;}
.y211{bottom:1077.960000px;}
.y97{bottom:1089.000000px;}
.y246{bottom:1090.500000px;}
.y57{bottom:1094.880000px;}
.y3{bottom:1098.480000px;}
.yb2{bottom:1098.840000px;}
.y94{bottom:1113.000000px;}
.yb1{bottom:1119.360000px;}
.y93{bottom:1134.000000px;}
.y56{bottom:1139.520000px;}
.y2{bottom:1139.880000px;}
.yb0{bottom:1140.240000px;}
.y23{bottom:1156.993500px;}
.y52{bottom:1172.640000px;}
.y22{bottom:1178.593500px;}
.y1{bottom:1193.160000px;}
.y21{bottom:1200.193500px;}
.y20{bottom:1221.793500px;}
.y1f{bottom:1243.393500px;}
.h20{height:17.688159px;}
.h1d{height:18.066374px;}
.h26{height:18.282097px;}
.h23{height:18.308458px;}
.h30{height:19.309303px;}
.h40{height:19.651894px;}
.h44{height:19.674248px;}
.h34{height:20.029219px;}
.h48{height:20.287088px;}
.h38{height:20.499711px;}
.h28{height:21.000000px;}
.h3c{height:21.029286px;}
.h31{height:21.151355px;}
.h4c{height:21.481203px;}
.h41{height:21.526706px;}
.h45{height:21.554280px;}
.h35{height:21.912274px;}
.h49{height:22.200155px;}
.h39{height:22.426870px;}
.h2f{height:22.470158px;}
.hf{height:22.500000px;}
.h3f{height:22.910401px;}
.h43{height:22.939746px;}
.h3d{height:23.006409px;}
.h33{height:23.278520px;}
.h4d{height:23.533905px;}
.h47{height:23.627138px;}
.h37{height:23.825202px;}
.hc{height:24.000000px;}
.h3b{height:24.440875px;}
.h4b{height:25.046618px;}
.h21{height:25.081570px;}
.h12{height:25.500000px;}
.h1e{height:25.617873px;}
.h27{height:25.923766px;}
.h24{height:25.961146px;}
.h15{height:34.500000px;}
.h1b{height:36.000000px;}
.hb{height:37.151719px;}
.h16{height:37.406250px;}
.h14{height:39.070080px;}
.h17{height:39.276563px;}
.h4{height:41.696016px;}
.he{height:42.000000px;}
.h9{height:44.838281px;}
.h13{height:44.893125px;}
.hd{height:45.281250px;}
.h2a{height:47.162880px;}
.h11{height:47.545313px;}
.h2{height:48.796875px;}
.h6{height:49.992188px;}
.h7{height:50.027344px;}
.h5{height:51.679688px;}
.h10{height:53.067656px;}
.h18{height:54.749531px;}
.h1{height:63.175781px;}
.h8{height:64.054688px;}
.ha{height:86.598281px;}
.h2e{height:157.950000px;}
.h3e{height:162.965250px;}
.h32{height:164.020050px;}
.h42{height:164.757450px;}
.h29{height:165.000000px;}
.h2c{height:166.500000px;}
.h36{height:167.980050px;}
.h46{height:169.775850px;}
.h3a{height:171.549000px;}
.h2b{height:172.500000px;}
.h4a{height:178.112400px;}
.h2d{height:178.500000px;}
.h1f{height:206.700000px;}
.h1c{height:210.132300px;}
.h19{height:211.500000px;}
.h22{height:212.311350px;}
.h25{height:214.560000px;}
.h1a{height:216.000000px;}
.h3{height:1245.000000px;}
.h0{height:1263.000000px;}
.w25{width:19.500000px;}
.w2b{width:21.000000px;}
.w23{width:22.500000px;}
.wf{width:25.500000px;}
.wd{width:27.000000px;}
.w5{width:30.000000px;}
.w1f{width:31.500000px;}
.w1a{width:34.500000px;}
.w1b{width:37.500000px;}
.w47{width:42.000000px;}
.w46{width:43.500000px;}
.w1e{width:46.500000px;}
.w21{width:48.000000px;}
.w1c{width:49.500000px;}
.w1d{width:51.000000px;}
.w30{width:52.500000px;}
.w8{width:55.500000px;}
.w2f{width:61.500000px;}
.w2a{width:66.000000px;}
.w29{width:67.500000px;}
.w4d{width:69.000000px;}
.w2c{width:70.500000px;}
.w31{width:75.000000px;}
.w2e{width:76.500000px;}
.w2d{width:78.000000px;}
.w48{width:81.000000px;}
.w4a{width:97.500000px;}
.w49{width:102.000000px;}
.w4e{width:103.500000px;}
.w14{width:105.000000px;}
.w12{width:111.000000px;}
.we{width:114.000000px;}
.w9{width:115.500000px;}
.w28{width:123.000000px;}
.w13{width:127.500000px;}
.w15{width:129.000000px;}
.w26{width:132.000000px;}
.w27{width:136.500000px;}
.w7{width:142.500000px;}
.wb{width:147.000000px;}
.wc{width:156.000000px;}
.w18{width:159.000000px;}
.w6{width:169.500000px;}
.w4c{width:171.000000px;}
.w22{width:172.500000px;}
.w3{width:180.000000px;}
.w45{width:181.500000px;}
.w20{width:190.500000px;}
.w4{width:196.500000px;}
.w10{width:213.000000px;}
.w17{width:232.500000px;}
.w16{width:237.000000px;}
.w36{width:245.303100px;}
.w38{width:253.385850px;}
.w24{width:256.500000px;}
.w19{width:262.500000px;}
.w3c{width:265.112550px;}
.w40{width:273.300000px;}
.w41{width:273.650100px;}
.wa{width:274.500000px;}
.w3d{width:274.650000px;}
.w33{width:276.000000px;}
.w3e{width:281.100000px;}
.w42{width:281.850000px;}
.w3f{width:288.364050px;}
.w3a{width:298.500000px;}
.w43{width:298.783050px;}
.w11{width:300.000000px;}
.w44{width:322.500000px;}
.w3b{width:328.500000px;}
.w37{width:355.425000px;}
.w35{width:359.366250px;}
.w32{width:387.000000px;}
.w4b{width:402.000000px;}
.w39{width:627.000000px;}
.w34{width:663.000000px;}
.w1{width:874.500000px;}
.w2{width:876.000000px;}
.w0{width:892.500000px;}
.xd3{left:-109.686496px;}
.xd4{left:-108.071600px;}
.xbc{left:-105.970819px;}
.xbd{left:-104.408400px;}
.xbb{left:-99.896886px;}
.xcf{left:-96.141292px;}
.xce{left:-94.324391px;}
.xb6{left:-92.865774px;}
.xb5{left:-91.107915px;}
.xb7{left:-88.178963px;}
.xd2{left:-78.983357px;}
.xba{left:-76.265396px;}
.xd1{left:-74.945800px;}
.xb9{left:-72.359042px;}
.xd0{left:-52.135286px;}
.xb8{left:-50.289768px;}
.x0{left:0.000000px;}
.xae{left:2.174335px;}
.xaf{left:4.802034px;}
.x50{left:8.280000px;}
.x46{left:9.480000px;}
.x59{left:11.400000px;}
.x4b{left:12.840000px;}
.x65{left:13.980000px;}
.x49{left:15.060000px;}
.x21{left:16.500000px;}
.x5{left:18.000000px;}
.x62{left:19.680000px;}
.x52{left:21.180000px;}
.x74{left:22.260000px;}
.x73{left:24.540000px;}
.xdd{left:25.595378px;}
.x8e{left:26.880000px;}
.x8b{left:28.440000px;}
.x93{left:30.240000px;}
.x8f{left:31.380000px;}
.x84{left:33.600000px;}
.x4e{left:34.860000px;}
.x6b{left:36.660000px;}
.x89{left:38.220000px;}
.x69{left:39.540000px;}
.x66{left:42.420000px;}
.xef{left:43.920000px;}
.x60{left:44.940000px;}
.x6a{left:47.760000px;}
.x4f{left:49.200000px;}
.x68{left:50.520000px;}
.x6c{left:52.140000px;}
.x8c{left:53.340000px;}
.x5b{left:54.660000px;}
.xe3{left:55.685559px;}
.xad{left:57.450551px;}
.xe6{left:60.877806px;}
.x4c{left:62.100000px;}
.x6d{left:64.560000px;}
.x47{left:65.700000px;}
.x8d{left:68.100000px;}
.x57{left:71.280000px;}
.x4d{left:76.500000px;}
.x53{left:81.240000px;}
.x6e{left:86.340000px;}
.x17{left:88.200000px;}
.x55{left:89.880000px;}
.xcd{left:91.025549px;}
.xeb{left:92.460000px;}
.xee{left:95.220000px;}
.x51{left:96.300000px;}
.xdf{left:100.308980px;}
.xb2{left:101.516854px;}
.xb0{left:103.274714px;}
.x45{left:105.000000px;}
.x16{left:106.200000px;}
.x54{left:108.540000px;}
.xca{left:110.018890px;}
.x18{left:112.320000px;}
.x7f{left:114.000000px;}
.xb4{left:115.970365px;}
.xa6{left:118.508646px;}
.xbf{left:120.097268px;}
.xcc{left:121.727805px;}
.x7d{left:123.240000px;}
.xe1{left:124.758925px;}
.xe4{left:126.994655px;}
.x2{left:128.520000px;}
.xd6{left:131.160000px;}
.xb1{left:134.720866px;}
.x19{left:138.477000px;}
.xa4{left:144.000000px;}
.xd8{left:145.140000px;}
.x9f{left:146.520000px;}
.xcb{left:153.422627px;}
.x1c{left:159.120000px;}
.x1b{left:160.200000px;}
.xd5{left:168.000000px;}
.xc9{left:171.608457px;}
.x32{left:173.520000px;}
.xe0{left:176.549550px;}
.x9c{left:180.000000px;}
.xb3{left:182.199346px;}
.xc4{left:184.201934px;}
.xc8{left:192.805631px;}
.xa5{left:193.987050px;}
.xbe{left:196.237050px;}
.x28{left:198.060000px;}
.xc0{left:200.982025px;}
.x9d{left:202.320000px;}
.x3a{left:207.360000px;}
.xa9{left:216.494192px;}
.xc2{left:219.194152px;}
.xac{left:221.481580px;}
.xab{left:222.878048px;}
.xc6{left:240.421978px;}
.xc7{left:244.061034px;}
.xaa{left:245.221546px;}
.xa8{left:246.418519px;}
.xf{left:248.400000px;}
.xa7{left:251.006916px;}
.xc5{left:257.404238px;}
.xa1{left:260.640000px;}
.x6f{left:262.500000px;}
.xa3{left:265.320000px;}
.xc3{left:273.779990px;}
.x7c{left:276.000000px;}
.x9{left:277.200000px;}
.xd9{left:282.000000px;}
.x13{left:284.040000px;}
.xe{left:285.480000px;}
.xdb{left:289.920000px;}
.x70{left:295.500000px;}
.xda{left:300.300000px;}
.xdc{left:307.500000px;}
.x8{left:313.200000px;}
.x5d{left:316.500000px;}
.x12{left:318.960000px;}
.x1d{left:324.000000px;}
.x71{left:331.500000px;}
.x3b{left:333.060000px;}
.xa{left:334.440000px;}
.x14{left:336.600000px;}
.x15{left:338.040000px;}
.xc1{left:340.108523px;}
.x85{left:342.000000px;}
.x10{left:343.080000px;}
.xc{left:347.040000px;}
.x94{left:349.500000px;}
.x44{left:351.360000px;}
.x77{left:363.000000px;}
.xb{left:366.840000px;}
.xa2{left:371.520000px;}
.xa0{left:374.040000px;}
.x20{left:375.120000px;}
.x11{left:377.280000px;}
.x72{left:379.500000px;}
.x3c{left:385.560000px;}
.xd{left:386.640000px;}
.x80{left:390.000000px;}
.x30{left:399.300000px;}
.x4{left:402.120000px;}
.x2c{left:404.700000px;}
.x81{left:408.000000px;}
.x95{left:409.500000px;}
.x78{left:411.000000px;}
.x9a{left:419.100000px;}
.x1a{left:420.840000px;}
.x3{left:422.280000px;}
.x29{left:424.080000px;}
.x61{left:426.000000px;}
.x2d{left:428.040000px;}
.x1f{left:446.040000px;}
.x37{left:451.800000px;}
.x9b{left:454.320000px;}
.x75{left:457.500000px;}
.x33{left:464.100000px;}
.x6{left:465.480000px;}
.xd7{left:466.500000px;}
.x90{left:468.000000px;}
.x86{left:472.500000px;}
.x48{left:478.500000px;}
.xe5{left:480.337050px;}
.xe2{left:485.774400px;}
.x7{left:489.600000px;}
.x34{left:491.400000px;}
.xde{left:492.637200px;}
.x2a{left:500.460000px;}
.x96{left:502.500000px;}
.x76{left:505.500000px;}
.x4a{left:507.000000px;}
.x87{left:519.000000px;}
.x3e{left:520.260000px;}
.x3d{left:523.800000px;}
.x35{left:536.460000px;}
.x82{left:538.500000px;}
.x91{left:540.000000px;}
.x41{left:547.620000px;}
.x7e{left:549.000000px;}
.x26{left:550.500000px;}
.x63{left:552.000000px;}
.x3f{left:555.120000px;}
.x2b{left:557.640000px;}
.x38{left:560.940000px;}
.x9e{left:567.000000px;}
.x36{left:569.160000px;}
.x64{left:577.500000px;}
.x79{left:583.500000px;}
.x31{left:586.440000px;}
.x27{left:592.200000px;}
.x2e{left:593.340000px;}
.x22{left:599.460000px;}
.x39{left:600.840000px;}
.xe7{left:606.000000px;}
.x40{left:607.740000px;}
.x92{left:609.000000px;}
.x5e{left:615.000000px;}
.x2f{left:620.640000px;}
.x23{left:626.760000px;}
.x7a{left:630.000000px;}
.x42{left:636.900000px;}
.x97{left:639.000000px;}
.x5f{left:640.500000px;}
.xe8{left:648.000000px;}
.x88{left:654.000000px;}
.x43{left:657.000000px;}
.x83{left:673.500000px;}
.x7b{left:676.500000px;}
.x58{left:678.000000px;}
.x67{left:681.000000px;}
.x98{left:684.000000px;}
.x5a{left:703.500000px;}
.xed{left:715.500000px;}
.xea{left:723.000000px;}
.x56{left:734.400000px;}
.x24{left:742.740000px;}
.x8a{left:750.000000px;}
.x25{left:765.360000px;}
.x1{left:776.880000px;}
.x99{left:778.500000px;}
.x1e{left:785.880000px;}
.x5c{left:816.000000px;}
.xec{left:817.500000px;}
.xe9{left:819.000000px;}
@media print{
.v3{vertical-align:-23.040000pt;}
.v6{vertical-align:-16.640000pt;}
.v1{vertical-align:-12.800000pt;}
.v7{vertical-align:-10.240000pt;}
.v5{vertical-align:-8.960000pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:2.807304pt;}
.v8{vertical-align:10.240000pt;}
.v2{vertical-align:12.800000pt;}
.v9{vertical-align:17.920000pt;}
.v4{vertical-align:37.120000pt;}
.ls11{letter-spacing:-5.568000pt;}
.ls14{letter-spacing:-5.376000pt;}
.ls46{letter-spacing:-4.864000pt;}
.ls65{letter-spacing:-3.392000pt;}
.lsb{letter-spacing:-3.264000pt;}
.ls4c{letter-spacing:-2.816000pt;}
.ls86{letter-spacing:-2.112000pt;}
.lsd{letter-spacing:-1.792000pt;}
.ls17{letter-spacing:-1.536000pt;}
.ls16{letter-spacing:-1.408000pt;}
.ls6{letter-spacing:-1.280000pt;}
.ls12{letter-spacing:-1.152000pt;}
.ls15{letter-spacing:-1.024000pt;}
.ls7{letter-spacing:-0.832000pt;}
.ls88{letter-spacing:-0.704000pt;}
.ls43{letter-spacing:-0.627456pt;}
.ls99{letter-spacing:-0.577024pt;}
.ls9{letter-spacing:-0.576000pt;}
.ls39{letter-spacing:-0.564224pt;}
.ls9d{letter-spacing:-0.524032pt;}
.ls8b{letter-spacing:-0.512256pt;}
.lsf{letter-spacing:-0.512000pt;}
.ls37{letter-spacing:-0.471808pt;}
.ls51{letter-spacing:-0.462080pt;}
.ls55{letter-spacing:-0.451584pt;}
.ls4{letter-spacing:-0.448000pt;}
.ls23{letter-spacing:-0.429824pt;}
.ls91{letter-spacing:-0.423936pt;}
.ls54{letter-spacing:-0.413952pt;}
.ls27{letter-spacing:-0.412160pt;}
.ls22{letter-spacing:-0.407680pt;}
.ls36{letter-spacing:-0.340480pt;}
.ls3f{letter-spacing:-0.325888pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls42{letter-spacing:-0.223744pt;}
.ls92{letter-spacing:-0.194304pt;}
.ls60{letter-spacing:-0.190184pt;}
.ls64{letter-spacing:-0.189911pt;}
.ls59{letter-spacing:-0.187670pt;}
.ls5f{letter-spacing:-0.187015pt;}
.ls63{letter-spacing:-0.186745pt;}
.ls58{letter-spacing:-0.184542pt;}
.ls5d{letter-spacing:-0.183741pt;}
.ls5c{letter-spacing:-0.180679pt;}
.ls8d{letter-spacing:-0.176640pt;}
.ls2f{letter-spacing:-0.165376pt;}
.ls90{letter-spacing:-0.147200pt;}
.ls40{letter-spacing:-0.131328pt;}
.lse{letter-spacing:-0.128000pt;}
.ls4d{letter-spacing:-0.092416pt;}
.ls9c{letter-spacing:-0.070656pt;}
.ls29{letter-spacing:-0.041216pt;}
.ls93{letter-spacing:-0.035328pt;}
.ls44{letter-spacing:-0.034048pt;}
.ls3{letter-spacing:0.000000pt;}
.ls7a{letter-spacing:0.007291pt;}
.ls7d{letter-spacing:0.007299pt;}
.ls80{letter-spacing:0.007527pt;}
.ls83{letter-spacing:0.007970pt;}
.ls9a{letter-spacing:0.017664pt;}
.ls3c{letter-spacing:0.029184pt;}
.ls3b{letter-spacing:0.063232pt;}
.ls10{letter-spacing:0.064000pt;}
.ls4f{letter-spacing:0.068096pt;}
.ls2d{letter-spacing:0.077824pt;}
.ls50{letter-spacing:0.097280pt;}
.ls89{letter-spacing:0.117760pt;}
.ls2{letter-spacing:0.128000pt;}
.ls26{letter-spacing:0.135424pt;}
.ls9b{letter-spacing:0.141312pt;}
.ls76{letter-spacing:0.154949pt;}
.ls7c{letter-spacing:0.159734pt;}
.ls7f{letter-spacing:0.159939pt;}
.ls77{letter-spacing:0.160523pt;}
.ls78{letter-spacing:0.164293pt;}
.ls82{letter-spacing:0.164732pt;}
.ls79{letter-spacing:0.168539pt;}
.ls7b{letter-spacing:0.170127pt;}
.ls7e{letter-spacing:0.170320pt;}
.ls85{letter-spacing:0.174628pt;}
.ls81{letter-spacing:0.175625pt;}
.ls35{letter-spacing:0.179968pt;}
.ls67{letter-spacing:0.181558pt;}
.ls84{letter-spacing:0.185963pt;}
.ls6f{letter-spacing:0.187165pt;}
.ls71{letter-spacing:0.187405pt;}
.ls69{letter-spacing:0.188090pt;}
.ls6b{letter-spacing:0.192507pt;}
.ls73{letter-spacing:0.193021pt;}
.ls6d{letter-spacing:0.197482pt;}
.ls75{letter-spacing:0.204617pt;}
.ls30{letter-spacing:0.209152pt;}
.ls5a{letter-spacing:0.215965pt;}
.ls56{letter-spacing:0.220582pt;}
.ls61{letter-spacing:0.223216pt;}
.ls5e{letter-spacing:0.223538pt;}
.ls41{letter-spacing:0.243200pt;}
.ls5b{letter-spacing:0.246200pt;}
.ls96{letter-spacing:0.247296pt;}
.ls31{letter-spacing:0.248064pt;}
.ls57{letter-spacing:0.251464pt;}
.ls62{letter-spacing:0.254467pt;}
.ls1{letter-spacing:0.256000pt;}
.ls2a{letter-spacing:0.264960pt;}
.ls13{letter-spacing:0.271360pt;}
.ls28{letter-spacing:0.276736pt;}
.ls4e{letter-spacing:0.277248pt;}
.ls24{letter-spacing:0.294400pt;}
.ls8c{letter-spacing:0.312064pt;}
.lsc{letter-spacing:0.320000pt;}
.ls33{letter-spacing:0.345344pt;}
.ls8f{letter-spacing:0.353280pt;}
.ls18{letter-spacing:0.362880pt;}
.ls98{letter-spacing:0.365056pt;}
.ls3d{letter-spacing:0.379392pt;}
.ls45{letter-spacing:0.418304pt;}
.ls25{letter-spacing:0.423936pt;}
.ls95{letter-spacing:0.435712pt;}
.lsa{letter-spacing:0.448000pt;}
.ls38{letter-spacing:0.452352pt;}
.ls2c{letter-spacing:0.476160pt;}
.ls1b{letter-spacing:0.512000pt;}
.ls2b{letter-spacing:0.527360pt;}
.ls2e{letter-spacing:0.559360pt;}
.ls8{letter-spacing:0.576000pt;}
.ls34{letter-spacing:0.578816pt;}
.ls3e{letter-spacing:0.583680pt;}
.ls97{letter-spacing:0.594688pt;}
.ls8a{letter-spacing:0.618240pt;}
.ls32{letter-spacing:0.632320pt;}
.ls0{letter-spacing:0.640000pt;}
.ls3a{letter-spacing:0.651776pt;}
.ls8e{letter-spacing:0.677120pt;}
.ls94{letter-spacing:0.706560pt;}
.ls47{letter-spacing:1.180160pt;}
.ls4a{letter-spacing:1.920000pt;}
.ls1f{letter-spacing:2.720000pt;}
.ls48{letter-spacing:3.029760pt;}
.ls21{letter-spacing:3.608320pt;}
.ls4b{letter-spacing:4.480000pt;}
.ls52{letter-spacing:5.760000pt;}
.ls20{letter-spacing:8.506880pt;}
.ls1e{letter-spacing:9.786880pt;}
.ls49{letter-spacing:10.880000pt;}
.ls19{letter-spacing:13.491200pt;}
.ls1c{letter-spacing:17.472000pt;}
.ls1a{letter-spacing:18.668800pt;}
.ls66{letter-spacing:66.100497pt;}
.ls70{letter-spacing:72.865470pt;}
.ls68{letter-spacing:73.131735pt;}
.ls1d{letter-spacing:73.792000pt;}
.ls72{letter-spacing:98.328288pt;}
.ls6c{letter-spacing:100.600807pt;}
.ls74{letter-spacing:104.235693pt;}
.ls6a{letter-spacing:126.046647pt;}
.ls6e{letter-spacing:130.073482pt;}
.ls53{letter-spacing:175.631360pt;}
.ls87{letter-spacing:752.000000pt;}
.wsd{word-spacing:-35.648000pt;}
.ws18{word-spacing:-16.640000pt;}
.ws4{word-spacing:-16.576000pt;}
.ws8{word-spacing:-16.448000pt;}
.ws6{word-spacing:-16.256000pt;}
.ws5{word-spacing:-16.128000pt;}
.ws9{word-spacing:-16.000000pt;}
.ws13{word-spacing:-15.872000pt;}
.ws1{word-spacing:-15.744000pt;}
.ws0{word-spacing:-15.552000pt;}
.ws7{word-spacing:-15.424000pt;}
.ws60{word-spacing:-15.296000pt;}
.ws3{word-spacing:-15.168000pt;}
.ws16{word-spacing:-14.976000pt;}
.ws14{word-spacing:-14.848000pt;}
.ws2{word-spacing:-14.720000pt;}
.wsc{word-spacing:-14.592000pt;}
.wsb{word-spacing:-14.464000pt;}
.ws69{word-spacing:-13.925120pt;}
.ws6b{word-spacing:-13.901568pt;}
.ws5f{word-spacing:-13.888000pt;}
.ws63{word-spacing:-13.660160pt;}
.ws6a{word-spacing:-13.618944pt;}
.ws29{word-spacing:-13.599744pt;}
.ws28{word-spacing:-13.571840pt;}
.ws25{word-spacing:-13.442304pt;}
.ws68{word-spacing:-13.424640pt;}
.ws2a{word-spacing:-13.356544pt;}
.ws6d{word-spacing:-13.324544pt;}
.ws64{word-spacing:-13.306880pt;}
.ws27{word-spacing:-13.265664pt;}
.ws6e{word-spacing:-13.236224pt;}
.ws3a{word-spacing:-13.184000pt;}
.ws66{word-spacing:-13.159680pt;}
.ws62{word-spacing:-13.130240pt;}
.ws67{word-spacing:-13.112576pt;}
.ws40{word-spacing:-13.026048pt;}
.ws41{word-spacing:-12.988416pt;}
.ws26{word-spacing:-12.894720pt;}
.ws61{word-spacing:-12.877056pt;}
.ws65{word-spacing:-12.794624pt;}
.ws6f{word-spacing:-12.782848pt;}
.wsa{word-spacing:-12.736000pt;}
.ws6c{word-spacing:-12.729856pt;}
.ws42{word-spacing:-12.608000pt;}
.ws34{word-spacing:-11.644416pt;}
.ws30{word-spacing:-11.624960pt;}
.ws33{word-spacing:-11.571456pt;}
.ws2f{word-spacing:-11.444992pt;}
.ws2c{word-spacing:-11.337984pt;}
.ws3c{word-spacing:-11.269888pt;}
.ws2b{word-spacing:-11.240704pt;}
.ws2d{word-spacing:-11.172608pt;}
.ws39{word-spacing:-11.136000pt;}
.ws3e{word-spacing:-11.089920pt;}
.ws3d{word-spacing:-11.060736pt;}
.ws32{word-spacing:-11.021824pt;}
.ws38{word-spacing:-10.992640pt;}
.ws37{word-spacing:-10.958592pt;}
.ws3b{word-spacing:-10.900224pt;}
.ws35{word-spacing:-10.768896pt;}
.ws2e{word-spacing:-10.652160pt;}
.ws15{word-spacing:-10.624000pt;}
.ws3f{word-spacing:-10.530560pt;}
.ws31{word-spacing:-10.428416pt;}
.ws36{word-spacing:-10.365184pt;}
.ws5e{word-spacing:-8.265744pt;}
.ws4e{word-spacing:-7.977503pt;}
.ws5a{word-spacing:-7.797295pt;}
.ws4b{word-spacing:-7.776547pt;}
.ws48{word-spacing:-7.598110pt;}
.ws56{word-spacing:-7.570446pt;}
.ws52{word-spacing:-7.560762pt;}
.ws45{word-spacing:-7.334260pt;}
.ws20{word-spacing:-0.512000pt;}
.ws1b{word-spacing:-0.407680pt;}
.ws17{word-spacing:-0.064000pt;}
.ws11{word-spacing:-0.058667pt;}
.ws23{word-spacing:-0.044800pt;}
.ws24{word-spacing:-0.037120pt;}
.ws10{word-spacing:-0.021333pt;}
.ws12{word-spacing:-0.016000pt;}
.wsf{word-spacing:-0.010667pt;}
.wse{word-spacing:0.000000pt;}
.ws1f{word-spacing:0.064000pt;}
.ws22{word-spacing:0.362880pt;}
.ws1e{word-spacing:13.568000pt;}
.ws21{word-spacing:17.280000pt;}
.ws1c{word-spacing:17.408000pt;}
.ws1a{word-spacing:18.560000pt;}
.ws1d{word-spacing:21.740160pt;}
.ws19{word-spacing:21.906560pt;}
.ws43{word-spacing:55.840388pt;}
.ws53{word-spacing:62.202510pt;}
.ws46{word-spacing:62.429811pt;}
.ws57{word-spacing:87.345812pt;}
.ws4c{word-spacing:89.364509pt;}
.ws5b{word-spacing:92.593408pt;}
.ws49{word-spacing:115.143005pt;}
.ws4f{word-spacing:119.496513pt;}
.ws44{word-spacing:134.203836pt;}
.ws47{word-spacing:139.207409pt;}
.ws4a{word-spacing:142.477428pt;}
.ws4d{word-spacing:146.158092pt;}
.ws50{word-spacing:293.484700pt;}
.ws54{word-spacing:293.818545pt;}
.ws51{word-spacing:297.519766pt;}
.ws55{word-spacing:297.858201pt;}
.ws58{word-spacing:302.970802pt;}
.ws59{word-spacing:307.136291pt;}
.ws5c{word-spacing:320.803924pt;}
.ws5d{word-spacing:325.214597pt;}
._70{margin-left:-548.698336pt;}
._74{margin-left:-508.501826pt;}
._25{margin-left:-475.547308pt;}
._5c{margin-left:-455.981740pt;}
._44{margin-left:-380.113486pt;}
._65{margin-left:-297.839178pt;}
._1e{margin-left:-287.517057pt;}
._77{margin-left:-278.180822pt;}
._24{margin-left:-271.911906pt;}
._7f{margin-left:-270.851926pt;}
._28{margin-left:-259.853380pt;}
._7a{margin-left:-258.649414pt;}
._63{margin-left:-253.990559pt;}
._76{margin-left:-240.704544pt;}
._1d{margin-left:-235.027003pt;}
._20{margin-left:-224.387127pt;}
._60{margin-left:-205.769058pt;}
._3d{margin-left:-198.855376pt;}
._4b{margin-left:-197.466425pt;}
._6a{margin-left:-190.673632pt;}
._7b{margin-left:-189.023317pt;}
._5f{margin-left:-185.370038pt;}
._43{margin-left:-181.493488pt;}
._61{margin-left:-178.513428pt;}
._30{margin-left:-174.025048pt;}
._4e{margin-left:-170.324006pt;}
._54{margin-left:-168.240580pt;}
._4c{margin-left:-165.520551pt;}
._42{margin-left:-160.601349pt;}
._21{margin-left:-154.746436pt;}
._72{margin-left:-145.237833pt;}
._3f{margin-left:-140.461559pt;}
._35{margin-left:-127.859809pt;}
._22{margin-left:-122.185209pt;}
._2b{margin-left:-113.732419pt;}
._69{margin-left:-111.602351pt;}
._6e{margin-left:-110.224594pt;}
._2f{margin-left:-102.324107pt;}
._23{margin-left:-93.042405pt;}
._32{margin-left:-89.556256pt;}
._49{margin-left:-87.044817pt;}
._82{margin-left:-82.729868pt;}
._6d{margin-left:-81.411499pt;}
._52{margin-left:-75.875336pt;}
._5b{margin-left:-70.927528pt;}
._7d{margin-left:-69.809561pt;}
._48{margin-left:-66.847154pt;}
._47{margin-left:-62.680301pt;}
._51{margin-left:-59.207923pt;}
._55{margin-left:-54.346594pt;}
._3c{margin-left:-45.318413pt;}
._27{margin-left:-42.740803pt;}
._6b{margin-left:-41.216931pt;}
._7e{margin-left:-38.226589pt;}
._4f{margin-left:-36.290231pt;}
._83{margin-left:-26.741872pt;}
._40{margin-left:-24.484147pt;}
._5e{margin-left:-21.748623pt;}
._33{margin-left:-17.306425pt;}
._73{margin-left:-13.185663pt;}
._3b{margin-left:-8.511210pt;}
._3{margin-left:-6.656000pt;}
._5{margin-left:-5.248000pt;}
._8{margin-left:-4.224000pt;}
._4{margin-left:-3.328000pt;}
._b{margin-left:-2.240000pt;}
._2{margin-left:-1.344000pt;}
._0{width:0.896000pt;}
._1{width:2.048000pt;}
._6{width:3.008000pt;}
._7{width:4.288000pt;}
._9{width:5.696000pt;}
._a{width:6.656000pt;}
._11{width:10.627840pt;}
._d{width:11.584000pt;}
._c{width:12.608000pt;}
._12{width:18.812160pt;}
._13{width:19.840000pt;}
._e{width:22.464000pt;}
._17{width:26.712576pt;}
._59{width:28.741549pt;}
._3a{width:35.240748pt;}
._6c{width:39.357708pt;}
._50{width:42.185503pt;}
._78{width:52.933352pt;}
._84{width:54.488104pt;}
._5a{width:57.322657pt;}
._2e{width:64.367281pt;}
._46{width:67.881097pt;}
._86{width:70.693180pt;}
._36{width:80.074667pt;}
._19{width:81.786854pt;}
._2d{width:82.868843pt;}
._56{width:84.226776pt;}
._68{width:87.513510pt;}
._57{width:88.479852pt;}
._39{width:89.520726pt;}
._1c{width:91.406154pt;}
._37{width:93.861353pt;}
._1a{width:95.839594pt;}
._38{width:97.473571pt;}
._1b{width:99.557788pt;}
._34{width:101.961509pt;}
._5d{width:107.591346pt;}
._31{width:111.241845pt;}
._62{width:112.732456pt;}
._67{width:116.326605pt;}
._66{width:117.764265pt;}
._53{width:129.689418pt;}
._79{width:138.350935pt;}
._85{width:139.458797pt;}
._7c{width:141.281931pt;}
._8a{width:143.765127pt;}
._87{width:144.658293pt;}
._64{width:147.236288pt;}
._8c{width:148.411948pt;}
._81{width:149.895469pt;}
._41{width:151.912635pt;}
._89{width:154.442326pt;}
._8b{width:157.302339pt;}
._88{width:158.279607pt;}
._29{width:161.603924pt;}
._3e{width:166.554494pt;}
._8d{width:171.048935pt;}
._71{width:173.582698pt;}
._14{width:176.000000pt;}
._18{width:178.560000pt;}
._80{width:182.196235pt;}
._4d{width:213.778829pt;}
._58{width:221.275760pt;}
._45{width:226.279389pt;}
._4a{width:231.893066pt;}
._2a{width:274.787069pt;}
._75{width:288.429868pt;}
._2c{width:310.621296pt;}
._1f{width:348.156414pt;}
._26{width:358.855400pt;}
._6f{width:680.375746pt;}
._16{width:752.000000pt;}
._15{width:753.280000pt;}
._10{width:1086.080000pt;}
._f{width:1102.720000pt;}
.fsa{font-size:21.596452pt;}
.fs8{font-size:22.058236pt;}
.fse{font-size:22.321624pt;}
.fsc{font-size:22.353810pt;}
.fs11{font-size:23.575797pt;}
.fs10{font-size:23.579017pt;}
.fs1d{font-size:24.303791pt;}
.fs1c{font-size:24.307199pt;}
.fs20{font-size:24.331437pt;}
.fs1f{font-size:24.338334pt;}
.fs13{font-size:24.427271pt;}
.fs14{font-size:24.454783pt;}
.fs16{font-size:25.000930pt;}
.fs17{font-size:25.029232pt;}
.fs22{font-size:25.067634pt;}
.fs23{font-size:25.089346pt;}
.fs19{font-size:25.646986pt;}
.fs1a{font-size:25.675820pt;}
.fs12{font-size:25.824860pt;}
.fs26{font-size:26.566126pt;}
.fs25{font-size:26.573657pt;}
.fs1e{font-size:26.622400pt;}
.fs21{font-size:26.656500pt;}
.fs15{font-size:26.753908pt;}
.fs18{font-size:27.382207pt;}
.fs24{font-size:27.455265pt;}
.fs1b{font-size:28.089798pt;}
.fs27{font-size:29.104733pt;}
.fsb{font-size:30.623477pt;}
.fs9{font-size:31.278279pt;}
.fsf{font-size:31.651761pt;}
.fsd{font-size:31.697400pt;}
.fs7{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs1{font-size:42.240000pt;}
.fs3{font-size:44.800000pt;}
.fs6{font-size:48.640000pt;}
.fs5{font-size:53.760000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y20d{bottom:-21.103744pt;}
.y1f1{bottom:-21.064603pt;}
.y1ea{bottom:-19.866346pt;}
.y1e3{bottom:-19.503405pt;}
.y1f8{bottom:-19.420377pt;}
.y1dc{bottom:-18.957696pt;}
.y206{bottom:-18.531955pt;}
.y1ff{bottom:-18.014190pt;}
.y1f0{bottom:-12.199452pt;}
.y20c{bottom:-11.931196pt;}
.y1e9{bottom:-11.224444pt;}
.y1e2{bottom:-11.059845pt;}
.y1f7{bottom:-11.028950pt;}
.y1db{bottom:-10.817625pt;}
.y205{bottom:-9.869297pt;}
.y1fe{bottom:-9.613218pt;}
.y182{bottom:-7.155917pt;}
.y150{bottom:-6.422035pt;}
.y169{bottom:-5.574199pt;}
.y19b{bottom:-4.874930pt;}
.y0{bottom:0.000000pt;}
.ybc{bottom:0.160000pt;}
.y96{bottom:0.213333pt;}
.y92{bottom:0.266667pt;}
.y8c{bottom:0.320000pt;}
.y86{bottom:0.373333pt;}
.y183{bottom:0.391796pt;}
.y81{bottom:0.426667pt;}
.y101{bottom:0.480000pt;}
.yef{bottom:0.533333pt;}
.y238{bottom:0.693333pt;}
.y7a{bottom:0.746667pt;}
.y24f{bottom:0.800000pt;}
.yd7{bottom:0.853333pt;}
.y83{bottom:0.906667pt;}
.ybe{bottom:0.960000pt;}
.yc7{bottom:1.013333pt;}
.y151{bottom:1.025878pt;}
.yc3{bottom:1.066667pt;}
.y1ef{bottom:1.097637pt;}
.y8f{bottom:1.120000pt;}
.y89{bottom:1.173333pt;}
.y115{bottom:1.226667pt;}
.y22a{bottom:1.280000pt;}
.y215{bottom:1.333333pt;}
.y1da{bottom:1.391896pt;}
.y1f6{bottom:1.557588pt;}
.y1e1{bottom:1.604889pt;}
.y16a{bottom:1.717794pt;}
.y1e8{bottom:1.737787pt;}
.y20b{bottom:1.826968pt;}
.y142{bottom:2.346667pt;}
.y1ca{bottom:2.560000pt;}
.y19c{bottom:2.661916pt;}
.y13c{bottom:2.720000pt;}
.y1c0{bottom:2.880000pt;}
.y1fd{bottom:2.987638pt;}
.y204{bottom:3.124066pt;}
.ybb{bottom:3.360000pt;}
.yc5{bottom:3.413333pt;}
.ydd{bottom:3.466667pt;}
.yd9{bottom:3.520000pt;}
.yce{bottom:3.573333pt;}
.ycb{bottom:3.626667pt;}
.y100{bottom:3.680000pt;}
.yee{bottom:3.733333pt;}
.y145{bottom:3.946667pt;}
.y248{bottom:4.000000pt;}
.y95{bottom:4.053333pt;}
.y91{bottom:4.106667pt;}
.y8b{bottom:4.160000pt;}
.y85{bottom:4.213333pt;}
.y80{bottom:4.266667pt;}
.ydb{bottom:4.320000pt;}
.y213{bottom:4.373333pt;}
.y114{bottom:4.426667pt;}
.y136{bottom:4.480000pt;}
.y21e{bottom:4.533333pt;}
.y7b{bottom:4.586667pt;}
.y24c{bottom:4.640000pt;}
.y7d{bottom:4.746667pt;}
.y24a{bottom:4.800000pt;}
.y117{bottom:4.906667pt;}
.y8e{bottom:4.960000pt;}
.y88{bottom:5.013333pt;}
.yb7{bottom:5.066667pt;}
.y21a{bottom:5.120000pt;}
.y216{bottom:5.173333pt;}
.y98{bottom:5.226667pt;}
.y220{bottom:5.653333pt;}
.y1ba{bottom:5.706667pt;}
.y219{bottom:5.760000pt;}
.y227{bottom:5.813333pt;}
.y105{bottom:5.866667pt;}
.yff{bottom:5.920000pt;}
.y10f{bottom:5.973333pt;}
.y10b{bottom:6.026667pt;}
.yb4{bottom:6.186667pt;}
.yfd{bottom:6.453333pt;}
.y10d{bottom:6.506667pt;}
.y109{bottom:6.560000pt;}
.y1d0{bottom:6.666667pt;}
.y103{bottom:6.720000pt;}
.y111{bottom:6.773333pt;}
.y1d9{bottom:7.019773pt;}
.y1ee{bottom:7.226819pt;}
.y1f5{bottom:7.359247pt;}
.y1e0{bottom:7.442591pt;}
.y1e7{bottom:7.712619pt;}
.y20a{bottom:8.168679pt;}
.y1fc{bottom:8.795896pt;}
.y203{bottom:9.113248pt;}
.yb6{bottom:9.866667pt;}
.yc0{bottom:10.026667pt;}
.y199{bottom:10.454665pt;}
.y167{bottom:10.955690pt;}
.y18e{bottom:11.173495pt;}
.yf9{bottom:11.413333pt;}
.y180{bottom:11.439728pt;}
.y15c{bottom:11.665015pt;}
.y175{bottom:12.134203pt;}
.y1b2{bottom:12.710295pt;}
.y1a7{bottom:13.428090pt;}
.yb9{bottom:14.880000pt;}
.yf8{bottom:15.573333pt;}
.y1d2{bottom:15.893333pt;}
.y1c2{bottom:15.946667pt;}
.y143{bottom:16.746667pt;}
.yfb{bottom:17.493333pt;}
.yba{bottom:18.080000pt;}
.y1d8{bottom:18.106526pt;}
.yed{bottom:18.133333pt;}
.y107{bottom:18.240000pt;}
.ye7{bottom:18.346667pt;}
.yf7{bottom:18.773333pt;}
.y1f4{bottom:18.788346pt;}
.y113{bottom:18.826667pt;}
.y1df{bottom:18.942696pt;}
.y1ed{bottom:19.301128pt;}
.y144{bottom:19.306667pt;}
.y1e6{bottom:19.482864pt;}
.y1fb{bottom:20.237996pt;}
.y209{bottom:20.661664pt;}
.y202{bottom:20.911763pt;}
.y7e{bottom:22.666667pt;}
.y198{bottom:26.286143pt;}
.y166{bottom:26.577835pt;}
.y17f{bottom:26.734828pt;}
.y18d{bottom:27.004973pt;}
.y15b{bottom:27.287160pt;}
.y174{bottom:27.429303pt;}
.y1b1{bottom:28.518978pt;}
.y1a6{bottom:29.236773pt;}
.y1b9{bottom:39.946667pt;}
.y1c9{bottom:40.960000pt;}
.y17e{bottom:41.839670pt;}
.y197{bottom:41.920692pt;}
.y165{bottom:42.005655pt;}
.y173{bottom:42.534146pt;}
.y18c{bottom:42.639521pt;}
.y15a{bottom:42.714980pt;}
.y1bf{bottom:43.520000pt;}
.y1b0{bottom:44.131016pt;}
.y1a5{bottom:44.848810pt;}
.y1cf{bottom:46.346667pt;}
.y53{bottom:50.986667pt;}
.y17d{bottom:57.114515pt;}
.y164{bottom:57.607112pt;}
.y172{bottom:57.635371pt;}
.y196{bottom:57.731204pt;}
.y159{bottom:58.139106pt;}
.y18b{bottom:58.270326pt;}
.y1b8{bottom:58.506667pt;}
.y1dd{bottom:58.958336pt;}
.y1c8{bottom:59.520000pt;}
.y1af{bottom:59.918763pt;}
.y1a4{bottom:60.457109pt;}
.y1f9{bottom:60.901615pt;}
.y1e4{bottom:61.317601pt;}
.y13b{bottom:61.600000pt;}
.y1be{bottom:61.760000pt;}
.y200{bottom:62.399170pt;}
.y141{bottom:62.506667pt;}
.y1eb{bottom:62.853167pt;}
.y1f2{bottom:63.791829pt;}
.y207{bottom:64.386229pt;}
.y1ce{bottom:64.906667pt;}
.y20e{bottom:66.695075pt;}
.y17c{bottom:72.241059pt;}
.y171{bottom:72.935535pt;}
.y163{bottom:73.057098pt;}
.y195{bottom:73.388216pt;}
.y158{bottom:73.766423pt;}
.y18a{bottom:74.107046pt;}
.y1ae{bottom:75.553231pt;}
.y1a3{bottom:76.271026pt;}
.y1b7{bottom:76.746667pt;}
.y1c7{bottom:77.760000pt;}
.y13a{bottom:79.840000pt;}
.y1bd{bottom:80.320000pt;}
.y140{bottom:81.066667pt;}
.y1cd{bottom:83.146667pt;}
.y17b{bottom:87.519521pt;}
.y170{bottom:88.213996pt;}
.y162{bottom:88.662249pt;}
.y194{bottom:89.202472pt;}
.y157{bottom:89.371574pt;}
.y189{bottom:89.921302pt;}
.y1ad{bottom:91.344717pt;}
.y1a2{bottom:92.062512pt;}
.y1b6{bottom:95.306667pt;}
.y1c6{bottom:96.320000pt;}
.y1e{bottom:98.346667pt;}
.y139{bottom:98.400000pt;}
.y1bc{bottom:98.560000pt;}
.y13f{bottom:99.306667pt;}
.y90{bottom:100.000000pt;}
.y245{bottom:101.333333pt;}
.y1cc{bottom:101.706667pt;}
.y17a{bottom:102.638832pt;}
.y1d6{bottom:103.146667pt;}
.y16f{bottom:103.333307pt;}
.y1d{bottom:103.786667pt;}
.y161{bottom:104.104847pt;}
.y156{bottom:104.814172pt;}
.y193{bottom:104.851996pt;}
.y188{bottom:105.570826pt;}
.yaf{bottom:106.666667pt;}
.y1ac{bottom:106.971709pt;}
.y1a1{bottom:107.689503pt;}
.y3a{bottom:111.466667pt;}
.yf2{bottom:114.346667pt;}
.y135{bottom:115.946667pt;}
.y138{bottom:116.640000pt;}
.y13e{bottom:117.866667pt;}
.y179{bottom:117.917293pt;}
.y16e{bottom:118.611769pt;}
.y8d{bottom:118.666667pt;}
.y160{bottom:119.709998pt;}
.y155{bottom:120.419323pt;}
.y192{bottom:120.666252pt;}
.y244{bottom:121.333333pt;}
.y187{bottom:121.385082pt;}
.y1ab{bottom:122.763195pt;}
.y1a0{bottom:123.480989pt;}
.y11e{bottom:126.506667pt;}
.y210{bottom:129.706667pt;}
.y51{bottom:130.026667pt;}
.yf1{bottom:132.586667pt;}
.y178{bottom:133.022136pt;}
.y16d{bottom:133.716611pt;}
.y76{bottom:133.866667pt;}
.y15f{bottom:135.137818pt;}
.y154{bottom:135.847143pt;}
.y191{bottom:136.300801pt;}
.y186{bottom:137.019631pt;}
.y1aa{bottom:138.375232pt;}
.y8a{bottom:138.666667pt;}
.y19f{bottom:139.093027pt;}
.y1d5{bottom:139.946667pt;}
.y243{bottom:140.000000pt;}
.yae{bottom:143.466667pt;}
.y39{bottom:148.266667pt;}
.y177{bottom:148.315065pt;}
.y16c{bottom:149.009541pt;}
.y15e{bottom:150.757747pt;}
.yf0{bottom:151.146667pt;}
.y153{bottom:151.467072pt;}
.y190{bottom:152.130033pt;}
.y134{bottom:152.746667pt;}
.y185{bottom:152.848863pt;}
.y1a9{bottom:154.181672pt;}
.y19e{bottom:154.899467pt;}
.y87{bottom:157.333333pt;}
.y14e{bottom:158.506667pt;}
.y242{bottom:160.000000pt;}
.y11d{bottom:163.306667pt;}
.y176{bottom:163.419908pt;}
.y16b{bottom:164.114383pt;}
.yec{bottom:165.333333pt;}
.y55{bottom:165.866667pt;}
.y15d{bottom:166.185567pt;}
.y50{bottom:166.826667pt;}
.y152{bottom:166.894892pt;}
.y18f{bottom:167.764582pt;}
.y184{bottom:168.483411pt;}
.y1a8{bottom:169.793709pt;}
.y75{bottom:170.346667pt;}
.y19d{bottom:170.511504pt;}
.y1d4{bottom:176.746667pt;}
.y84{bottom:177.333333pt;}
.y241{bottom:178.666667pt;}
.yad{bottom:180.266667pt;}
.y38{bottom:185.066667pt;}
.y133{bottom:189.546667pt;}
.yeb{bottom:194.666667pt;}
.y14d{bottom:195.306667pt;}
.y82{bottom:196.000000pt;}
.y240{bottom:198.666667pt;}
.y11c{bottom:199.786667pt;}
.y54{bottom:203.306667pt;}
.y4f{bottom:203.626667pt;}
.y74{bottom:207.146667pt;}
.yea{bottom:213.333333pt;}
.y1d3{bottom:214.186667pt;}
.y7f{bottom:216.000000pt;}
.yac{bottom:217.066667pt;}
.y23f{bottom:217.333333pt;}
.y37{bottom:221.866667pt;}
.y132{bottom:226.346667pt;}
.y1d1{bottom:229.333333pt;}
.y14c{bottom:232.106667pt;}
.ye9{bottom:233.333333pt;}
.y7c{bottom:236.000000pt;}
.y11b{bottom:236.586667pt;}
.y23e{bottom:237.333333pt;}
.y4e{bottom:240.426667pt;}
.y73{bottom:243.946667pt;}
.ye8{bottom:252.000000pt;}
.yab{bottom:253.866667pt;}
.y23d{bottom:256.000000pt;}
.y36{bottom:258.666667pt;}
.y1cb{bottom:260.000000pt;}
.y208{bottom:260.344533pt;}
.y131{bottom:263.146667pt;}
.y201{bottom:267.754800pt;}
.y14b{bottom:268.906667pt;}
.y79{bottom:272.000000pt;}
.y11a{bottom:273.386667pt;}
.y23c{bottom:276.000000pt;}
.y4d{bottom:277.226667pt;}
.y72{bottom:280.746667pt;}
.yaa{bottom:290.666667pt;}
.y23b{bottom:294.666667pt;}
.y35{bottom:295.466667pt;}
.y78{bottom:295.786667pt;}
.y130{bottom:299.946667pt;}
.ye6{bottom:301.333333pt;}
.y1c{bottom:304.746667pt;}
.y14a{bottom:305.706667pt;}
.y119{bottom:310.186667pt;}
.y4c{bottom:314.026667pt;}
.y77{bottom:314.346667pt;}
.y23a{bottom:314.666667pt;}
.y71{bottom:317.546667pt;}
.ye5{bottom:320.000000pt;}
.ya9{bottom:327.466667pt;}
.y118{bottom:329.066667pt;}
.y34{bottom:332.266667pt;}
.y239{bottom:333.333333pt;}
.y12f{bottom:336.746667pt;}
.ye4{bottom:340.000000pt;}
.y1b{bottom:341.546667pt;}
.y149{bottom:342.506667pt;}
.y116{bottom:344.000000pt;}
.y4b{bottom:350.826667pt;}
.y237{bottom:353.333333pt;}
.y70{bottom:354.346667pt;}
.ye3{bottom:358.666667pt;}
.y112{bottom:364.000000pt;}
.ya8{bottom:364.266667pt;}
.y33{bottom:369.066667pt;}
.y236{bottom:372.000000pt;}
.y12e{bottom:373.546667pt;}
.y1a{bottom:378.346667pt;}
.ye2{bottom:378.666667pt;}
.y148{bottom:379.306667pt;}
.y4a{bottom:387.626667pt;}
.y6f{bottom:391.146667pt;}
.y235{bottom:392.000000pt;}
.y110{bottom:393.333333pt;}
.y147{bottom:398.506667pt;}
.ye1{bottom:398.666667pt;}
.ya7{bottom:401.066667pt;}
.y32{bottom:405.866667pt;}
.y12d{bottom:410.346667pt;}
.y234{bottom:410.666667pt;}
.y10e{bottom:413.333333pt;}
.y19{bottom:415.146667pt;}
.ye0{bottom:417.333333pt;}
.y146{bottom:417.706667pt;}
.y1c5{bottom:418.666667pt;}
.y1fa{bottom:419.626667pt;}
.y1f3{bottom:421.219733pt;}
.y49{bottom:424.426667pt;}
.y6e{bottom:427.946667pt;}
.y233{bottom:430.666667pt;}
.y10c{bottom:432.000000pt;}
.ydf{bottom:437.333333pt;}
.ya6{bottom:437.866667pt;}
.y31{bottom:442.666667pt;}
.y12c{bottom:447.146667pt;}
.y232{bottom:449.333333pt;}
.y10a{bottom:452.000000pt;}
.yde{bottom:456.000000pt;}
.y48{bottom:461.226667pt;}
.y13d{bottom:464.000000pt;}
.y19a{bottom:464.426667pt;}
.y6d{bottom:464.746667pt;}
.y181{bottom:466.425467pt;}
.y231{bottom:469.333333pt;}
.y108{bottom:470.666667pt;}
.ya5{bottom:474.666667pt;}
.ydc{bottom:476.000000pt;}
.y30{bottom:479.466667pt;}
.y12b{bottom:483.946667pt;}
.y230{bottom:488.000000pt;}
.y18{bottom:489.706667pt;}
.y106{bottom:490.666667pt;}
.yda{bottom:494.666667pt;}
.y47{bottom:498.026667pt;}
.y6c{bottom:501.546667pt;}
.y22f{bottom:508.000000pt;}
.y17{bottom:509.226667pt;}
.ya4{bottom:511.466667pt;}
.yd8{bottom:514.666667pt;}
.y2f{bottom:516.266667pt;}
.y104{bottom:520.000000pt;}
.y12a{bottom:520.746667pt;}
.y22e{bottom:526.666667pt;}
.y16{bottom:528.746667pt;}
.yd6{bottom:533.333333pt;}
.y46{bottom:534.826667pt;}
.y20f{bottom:535.146667pt;}
.y6b{bottom:538.346667pt;}
.y102{bottom:538.666667pt;}
.y22d{bottom:546.666667pt;}
.y15{bottom:548.266667pt;}
.y2e{bottom:553.066667pt;}
.yd5{bottom:553.333333pt;}
.y129{bottom:557.546667pt;}
.yfe{bottom:558.666667pt;}
.y22c{bottom:565.333333pt;}
.y1c4{bottom:566.666667pt;}
.y14{bottom:567.786667pt;}
.y45{bottom:571.626667pt;}
.yd4{bottom:572.000000pt;}
.y6a{bottom:575.146667pt;}
.yfc{bottom:577.333333pt;}
.ya3{bottom:585.066667pt;}
.y1c3{bottom:585.333333pt;}
.y13{bottom:587.306667pt;}
.y2d{bottom:589.866667pt;}
.yd3{bottom:592.000000pt;}
.y128{bottom:594.346667pt;}
.yfa{bottom:597.333333pt;}
.y1c1{bottom:604.000000pt;}
.y12{bottom:606.506667pt;}
.y44{bottom:608.426667pt;}
.yd2{bottom:610.666667pt;}
.y69{bottom:611.946667pt;}
.ya2{bottom:621.866667pt;}
.y22b{bottom:624.000000pt;}
.y2c{bottom:626.666667pt;}
.yd1{bottom:630.666667pt;}
.y127{bottom:631.146667pt;}
.y1bb{bottom:634.666667pt;}
.y1ec{bottom:634.986667pt;}
.y1e5{bottom:638.159067pt;}
.y229{bottom:642.666667pt;}
.y43{bottom:645.226667pt;}
.yf6{bottom:645.333333pt;}
.yd0{bottom:649.333333pt;}
.y68{bottom:651.306667pt;}
.y137{bottom:654.666667pt;}
.y14f{bottom:655.882400pt;}
.y168{bottom:657.616000pt;}
.ya1{bottom:658.666667pt;}
.y11{bottom:661.546667pt;}
.y228{bottom:662.666667pt;}
.y2b{bottom:663.466667pt;}
.y126{bottom:667.946667pt;}
.ycf{bottom:669.333333pt;}
.yf5{bottom:676.000000pt;}
.y10{bottom:680.106667pt;}
.y226{bottom:681.333333pt;}
.y42{bottom:682.026667pt;}
.y67{bottom:688.426667pt;}
.ycd{bottom:689.333333pt;}
.ya0{bottom:695.466667pt;}
.yf{bottom:698.346667pt;}
.y2a{bottom:700.266667pt;}
.yf4{bottom:700.586667pt;}
.y225{bottom:701.333333pt;}
.y125{bottom:704.746667pt;}
.ycc{bottom:708.000000pt;}
.ye{bottom:716.906667pt;}
.y41{bottom:718.826667pt;}
.yf3{bottom:719.146667pt;}
.y224{bottom:720.000000pt;}
.y66{bottom:724.266667pt;}
.yca{bottom:728.000000pt;}
.y63{bottom:728.746667pt;}
.y62{bottom:729.386667pt;}
.y9f{bottom:732.266667pt;}
.y64{bottom:732.906667pt;}
.y65{bottom:734.506667pt;}
.yd{bottom:735.146667pt;}
.y29{bottom:737.066667pt;}
.y5e{bottom:737.706667pt;}
.y60{bottom:738.026667pt;}
.y5f{bottom:738.666667pt;}
.y223{bottom:740.000000pt;}
.y124{bottom:741.546667pt;}
.yc9{bottom:746.666667pt;}
.y61{bottom:751.146667pt;}
.yc{bottom:753.706667pt;}
.y40{bottom:755.626667pt;}
.y222{bottom:758.666667pt;}
.yc8{bottom:766.666667pt;}
.y9e{bottom:769.066667pt;}
.y28{bottom:773.866667pt;}
.y123{bottom:778.346667pt;}
.y221{bottom:778.666667pt;}
.y5d{bottom:780.906667pt;}
.yc6{bottom:785.333333pt;}
.y1b5{bottom:788.000000pt;}
.y1de{bottom:788.345733pt;}
.y3f{bottom:792.426667pt;}
.y1d7{bottom:793.741333pt;}
.y21f{bottom:797.333333pt;}
.yc4{bottom:805.333333pt;}
.y9d{bottom:805.866667pt;}
.y27{bottom:810.666667pt;}
.yb{bottom:810.986667pt;}
.y122{bottom:815.146667pt;}
.y21d{bottom:817.333333pt;}
.y5c{bottom:817.706667pt;}
.y251{bottom:822.186667pt;}
.yc2{bottom:824.000000pt;}
.y3e{bottom:829.226667pt;}
.ya{bottom:829.546667pt;}
.y21c{bottom:836.000000pt;}
.y9c{bottom:842.666667pt;}
.y254{bottom:843.626667pt;}
.yc1{bottom:844.000000pt;}
.y26{bottom:847.466667pt;}
.y9{bottom:847.786667pt;}
.y121{bottom:852.266667pt;}
.y21b{bottom:856.000000pt;}
.y250{bottom:856.426667pt;}
.y5b{bottom:857.066667pt;}
.ybf{bottom:864.000000pt;}
.y3d{bottom:866.026667pt;}
.y8{bottom:866.346667pt;}
.y24e{bottom:870.666667pt;}
.y218{bottom:874.666667pt;}
.y253{bottom:877.546667pt;}
.y9b{bottom:879.466667pt;}
.ybd{bottom:882.666667pt;}
.y25{bottom:884.266667pt;}
.y7{bottom:884.586667pt;}
.y24d{bottom:889.333333pt;}
.y120{bottom:889.386667pt;}
.y217{bottom:894.666667pt;}
.y252{bottom:895.466667pt;}
.y5a{bottom:896.426667pt;}
.yb8{bottom:902.666667pt;}
.y3c{bottom:902.826667pt;}
.y6{bottom:903.146667pt;}
.y24b{bottom:910.666667pt;}
.y214{bottom:913.333333pt;}
.y9a{bottom:916.266667pt;}
.y24{bottom:921.066667pt;}
.y4{bottom:921.386667pt;}
.y11f{bottom:926.186667pt;}
.y5{bottom:926.826667pt;}
.y249{bottom:930.666667pt;}
.yb5{bottom:932.000000pt;}
.y212{bottom:933.333333pt;}
.y1b4{bottom:934.666667pt;}
.y58{bottom:935.786667pt;}
.y3b{bottom:939.626667pt;}
.y59{bottom:941.546667pt;}
.y247{bottom:950.666667pt;}
.yb3{bottom:952.000000pt;}
.y99{bottom:953.066667pt;}
.y1b3{bottom:953.333333pt;}
.y211{bottom:958.186667pt;}
.y97{bottom:968.000000pt;}
.y246{bottom:969.333333pt;}
.y57{bottom:973.226667pt;}
.y3{bottom:976.426667pt;}
.yb2{bottom:976.746667pt;}
.y94{bottom:989.333333pt;}
.yb1{bottom:994.986667pt;}
.y93{bottom:1008.000000pt;}
.y56{bottom:1012.906667pt;}
.y2{bottom:1013.226667pt;}
.yb0{bottom:1013.546667pt;}
.y23{bottom:1028.438667pt;}
.y52{bottom:1042.346667pt;}
.y22{bottom:1047.638667pt;}
.y1{bottom:1060.586667pt;}
.y21{bottom:1066.838667pt;}
.y20{bottom:1086.038667pt;}
.y1f{bottom:1105.238667pt;}
.h20{height:15.722808pt;}
.h1d{height:16.058999pt;}
.h26{height:16.250753pt;}
.h23{height:16.274185pt;}
.h30{height:17.163825pt;}
.h40{height:17.468350pt;}
.h44{height:17.488220pt;}
.h34{height:17.803750pt;}
.h48{height:18.032967pt;}
.h38{height:18.221965pt;}
.h28{height:18.666667pt;}
.h3c{height:18.692699pt;}
.h31{height:18.801204pt;}
.h4c{height:19.094403pt;}
.h41{height:19.134850pt;}
.h45{height:19.159360pt;}
.h35{height:19.477577pt;}
.h49{height:19.733471pt;}
.h39{height:19.934996pt;}
.h2f{height:19.973473pt;}
.hf{height:20.000000pt;}
.h3f{height:20.364801pt;}
.h43{height:20.390886pt;}
.h3d{height:20.450141pt;}
.h33{height:20.692018pt;}
.h4d{height:20.919027pt;}
.h47{height:21.001900pt;}
.h37{height:21.177957pt;}
.hc{height:21.333333pt;}
.h3b{height:21.725222pt;}
.h4b{height:22.263661pt;}
.h21{height:22.294728pt;}
.h12{height:22.666667pt;}
.h1e{height:22.771443pt;}
.h27{height:23.043347pt;}
.h24{height:23.076574pt;}
.h15{height:30.666667pt;}
.h1b{height:32.000000pt;}
.hb{height:33.023750pt;}
.h16{height:33.250000pt;}
.h14{height:34.728960pt;}
.h17{height:34.912500pt;}
.h4{height:37.063125pt;}
.he{height:37.333333pt;}
.h9{height:39.856250pt;}
.h13{height:39.905000pt;}
.hd{height:40.250000pt;}
.h2a{height:41.922560pt;}
.h11{height:42.262500pt;}
.h2{height:43.375000pt;}
.h6{height:44.437500pt;}
.h7{height:44.468750pt;}
.h5{height:45.937500pt;}
.h10{height:47.171250pt;}
.h18{height:48.666250pt;}
.h1{height:56.156250pt;}
.h8{height:56.937500pt;}
.ha{height:76.976250pt;}
.h2e{height:140.400000pt;}
.h3e{height:144.858000pt;}
.h32{height:145.795600pt;}
.h42{height:146.451067pt;}
.h29{height:146.666667pt;}
.h2c{height:148.000000pt;}
.h36{height:149.315600pt;}
.h46{height:150.911867pt;}
.h3a{height:152.488000pt;}
.h2b{height:153.333333pt;}
.h4a{height:158.322133pt;}
.h2d{height:158.666667pt;}
.h1f{height:183.733333pt;}
.h1c{height:186.784267pt;}
.h19{height:188.000000pt;}
.h22{height:188.721200pt;}
.h25{height:190.720000pt;}
.h1a{height:192.000000pt;}
.h3{height:1106.666667pt;}
.h0{height:1122.666667pt;}
.w25{width:17.333333pt;}
.w2b{width:18.666667pt;}
.w23{width:20.000000pt;}
.wf{width:22.666667pt;}
.wd{width:24.000000pt;}
.w5{width:26.666667pt;}
.w1f{width:28.000000pt;}
.w1a{width:30.666667pt;}
.w1b{width:33.333333pt;}
.w47{width:37.333333pt;}
.w46{width:38.666667pt;}
.w1e{width:41.333333pt;}
.w21{width:42.666667pt;}
.w1c{width:44.000000pt;}
.w1d{width:45.333333pt;}
.w30{width:46.666667pt;}
.w8{width:49.333333pt;}
.w2f{width:54.666667pt;}
.w2a{width:58.666667pt;}
.w29{width:60.000000pt;}
.w4d{width:61.333333pt;}
.w2c{width:62.666667pt;}
.w31{width:66.666667pt;}
.w2e{width:68.000000pt;}
.w2d{width:69.333333pt;}
.w48{width:72.000000pt;}
.w4a{width:86.666667pt;}
.w49{width:90.666667pt;}
.w4e{width:92.000000pt;}
.w14{width:93.333333pt;}
.w12{width:98.666667pt;}
.we{width:101.333333pt;}
.w9{width:102.666667pt;}
.w28{width:109.333333pt;}
.w13{width:113.333333pt;}
.w15{width:114.666667pt;}
.w26{width:117.333333pt;}
.w27{width:121.333333pt;}
.w7{width:126.666667pt;}
.wb{width:130.666667pt;}
.wc{width:138.666667pt;}
.w18{width:141.333333pt;}
.w6{width:150.666667pt;}
.w4c{width:152.000000pt;}
.w22{width:153.333333pt;}
.w3{width:160.000000pt;}
.w45{width:161.333333pt;}
.w20{width:169.333333pt;}
.w4{width:174.666667pt;}
.w10{width:189.333333pt;}
.w17{width:206.666667pt;}
.w16{width:210.666667pt;}
.w36{width:218.047200pt;}
.w38{width:225.231867pt;}
.w24{width:228.000000pt;}
.w19{width:233.333333pt;}
.w3c{width:235.655600pt;}
.w40{width:242.933333pt;}
.w41{width:243.244533pt;}
.wa{width:244.000000pt;}
.w3d{width:244.133333pt;}
.w33{width:245.333333pt;}
.w3e{width:249.866667pt;}
.w42{width:250.533333pt;}
.w3f{width:256.323600pt;}
.w3a{width:265.333333pt;}
.w43{width:265.584933pt;}
.w11{width:266.666667pt;}
.w44{width:286.666667pt;}
.w3b{width:292.000000pt;}
.w37{width:315.933333pt;}
.w35{width:319.436667pt;}
.w32{width:344.000000pt;}
.w4b{width:357.333333pt;}
.w39{width:557.333333pt;}
.w34{width:589.333333pt;}
.w1{width:777.333333pt;}
.w2{width:778.666667pt;}
.w0{width:793.333333pt;}
.xd3{left:-97.499108pt;}
.xd4{left:-96.063644pt;}
.xbc{left:-94.196284pt;}
.xbd{left:-92.807466pt;}
.xbb{left:-88.797232pt;}
.xcf{left:-85.458926pt;}
.xce{left:-83.843903pt;}
.xb6{left:-82.547355pt;}
.xb5{left:-80.984813pt;}
.xb7{left:-78.381300pt;}
.xd2{left:-70.207428pt;}
.xba{left:-67.791463pt;}
.xd1{left:-66.618489pt;}
.xb9{left:-64.319148pt;}
.xd0{left:-46.342476pt;}
.xb8{left:-44.702016pt;}
.x0{left:0.000000pt;}
.xae{left:1.932742pt;}
.xaf{left:4.268475pt;}
.x50{left:7.360000pt;}
.x46{left:8.426667pt;}
.x59{left:10.133333pt;}
.x4b{left:11.413333pt;}
.x65{left:12.426667pt;}
.x49{left:13.386667pt;}
.x21{left:14.666667pt;}
.x5{left:16.000000pt;}
.x62{left:17.493333pt;}
.x52{left:18.826667pt;}
.x74{left:19.786667pt;}
.x73{left:21.813333pt;}
.xdd{left:22.751447pt;}
.x8e{left:23.893333pt;}
.x8b{left:25.280000pt;}
.x93{left:26.880000pt;}
.x8f{left:27.893333pt;}
.x84{left:29.866667pt;}
.x4e{left:30.986667pt;}
.x6b{left:32.586667pt;}
.x89{left:33.973333pt;}
.x69{left:35.146667pt;}
.x66{left:37.706667pt;}
.xef{left:39.040000pt;}
.x60{left:39.946667pt;}
.x6a{left:42.453333pt;}
.x4f{left:43.733333pt;}
.x68{left:44.906667pt;}
.x6c{left:46.346667pt;}
.x8c{left:47.413333pt;}
.x5b{left:48.586667pt;}
.xe3{left:49.498274pt;}
.xad{left:51.067157pt;}
.xe6{left:54.113605pt;}
.x4c{left:55.200000pt;}
.x6d{left:57.386667pt;}
.x47{left:58.400000pt;}
.x8d{left:60.533333pt;}
.x57{left:63.360000pt;}
.x4d{left:68.000000pt;}
.x53{left:72.213333pt;}
.x6e{left:76.746667pt;}
.x17{left:78.400000pt;}
.x55{left:79.893333pt;}
.xcd{left:80.911599pt;}
.xeb{left:82.186667pt;}
.xee{left:84.640000pt;}
.x51{left:85.600000pt;}
.xdf{left:89.163538pt;}
.xb2{left:90.237204pt;}
.xb0{left:91.799746pt;}
.x45{left:93.333333pt;}
.x16{left:94.400000pt;}
.x54{left:96.480000pt;}
.xca{left:97.794569pt;}
.x18{left:99.840000pt;}
.x7f{left:101.333333pt;}
.xb4{left:103.084769pt;}
.xa6{left:105.341019pt;}
.xbf{left:106.753127pt;}
.xcc{left:108.202494pt;}
.x7d{left:109.546667pt;}
.xe1{left:110.896823pt;}
.xe4{left:112.884137pt;}
.x2{left:114.240000pt;}
.xd6{left:116.586667pt;}
.xb1{left:119.751880pt;}
.x19{left:123.090667pt;}
.xa4{left:128.000000pt;}
.xd8{left:129.013333pt;}
.x9f{left:130.240000pt;}
.xcb{left:136.375669pt;}
.x1c{left:141.440000pt;}
.x1b{left:142.400000pt;}
.xd5{left:149.333333pt;}
.xc9{left:152.540851pt;}
.x32{left:154.240000pt;}
.xe0{left:156.932933pt;}
.x9c{left:160.000000pt;}
.xb3{left:161.954974pt;}
.xc4{left:163.735052pt;}
.xc8{left:171.382783pt;}
.xa5{left:172.432933pt;}
.xbe{left:174.432933pt;}
.x28{left:176.053333pt;}
.xc0{left:178.650689pt;}
.x9d{left:179.840000pt;}
.x3a{left:184.320000pt;}
.xa9{left:192.439282pt;}
.xc2{left:194.839246pt;}
.xac{left:196.872515pt;}
.xab{left:198.113821pt;}
.xc6{left:213.708425pt;}
.xc7{left:216.943141pt;}
.xaa{left:217.974707pt;}
.xa8{left:219.038683pt;}
.xf{left:220.800000pt;}
.xa7{left:223.117258pt;}
.xc5{left:228.803768pt;}
.xa1{left:231.680000pt;}
.x6f{left:233.333333pt;}
.xa3{left:235.840000pt;}
.xc3{left:243.359991pt;}
.x7c{left:245.333333pt;}
.x9{left:246.400000pt;}
.xd9{left:250.666667pt;}
.x13{left:252.480000pt;}
.xe{left:253.760000pt;}
.xdb{left:257.706667pt;}
.x70{left:262.666667pt;}
.xda{left:266.933333pt;}
.xdc{left:273.333333pt;}
.x8{left:278.400000pt;}
.x5d{left:281.333333pt;}
.x12{left:283.520000pt;}
.x1d{left:288.000000pt;}
.x71{left:294.666667pt;}
.x3b{left:296.053333pt;}
.xa{left:297.280000pt;}
.x14{left:299.200000pt;}
.x15{left:300.480000pt;}
.xc1{left:302.318687pt;}
.x85{left:304.000000pt;}
.x10{left:304.960000pt;}
.xc{left:308.480000pt;}
.x94{left:310.666667pt;}
.x44{left:312.320000pt;}
.x77{left:322.666667pt;}
.xb{left:326.080000pt;}
.xa2{left:330.240000pt;}
.xa0{left:332.480000pt;}
.x20{left:333.440000pt;}
.x11{left:335.360000pt;}
.x72{left:337.333333pt;}
.x3c{left:342.720000pt;}
.xd{left:343.680000pt;}
.x80{left:346.666667pt;}
.x30{left:354.933333pt;}
.x4{left:357.440000pt;}
.x2c{left:359.733333pt;}
.x81{left:362.666667pt;}
.x95{left:364.000000pt;}
.x78{left:365.333333pt;}
.x9a{left:372.533333pt;}
.x1a{left:374.080000pt;}
.x3{left:375.360000pt;}
.x29{left:376.960000pt;}
.x61{left:378.666667pt;}
.x2d{left:380.480000pt;}
.x1f{left:396.480000pt;}
.x37{left:401.600000pt;}
.x9b{left:403.840000pt;}
.x75{left:406.666667pt;}
.x33{left:412.533333pt;}
.x6{left:413.760000pt;}
.xd7{left:414.666667pt;}
.x90{left:416.000000pt;}
.x86{left:420.000000pt;}
.x48{left:425.333333pt;}
.xe5{left:426.966267pt;}
.xe2{left:431.799467pt;}
.x7{left:435.200000pt;}
.x34{left:436.800000pt;}
.xde{left:437.899733pt;}
.x2a{left:444.853333pt;}
.x96{left:446.666667pt;}
.x76{left:449.333333pt;}
.x4a{left:450.666667pt;}
.x87{left:461.333333pt;}
.x3e{left:462.453333pt;}
.x3d{left:465.600000pt;}
.x35{left:476.853333pt;}
.x82{left:478.666667pt;}
.x91{left:480.000000pt;}
.x41{left:486.773333pt;}
.x7e{left:488.000000pt;}
.x26{left:489.333333pt;}
.x63{left:490.666667pt;}
.x3f{left:493.440000pt;}
.x2b{left:495.680000pt;}
.x38{left:498.613333pt;}
.x9e{left:504.000000pt;}
.x36{left:505.920000pt;}
.x64{left:513.333333pt;}
.x79{left:518.666667pt;}
.x31{left:521.280000pt;}
.x27{left:526.400000pt;}
.x2e{left:527.413333pt;}
.x22{left:532.853333pt;}
.x39{left:534.080000pt;}
.xe7{left:538.666667pt;}
.x40{left:540.213333pt;}
.x92{left:541.333333pt;}
.x5e{left:546.666667pt;}
.x2f{left:551.680000pt;}
.x23{left:557.120000pt;}
.x7a{left:560.000000pt;}
.x42{left:566.133333pt;}
.x97{left:568.000000pt;}
.x5f{left:569.333333pt;}
.xe8{left:576.000000pt;}
.x88{left:581.333333pt;}
.x43{left:584.000000pt;}
.x83{left:598.666667pt;}
.x7b{left:601.333333pt;}
.x58{left:602.666667pt;}
.x67{left:605.333333pt;}
.x98{left:608.000000pt;}
.x5a{left:625.333333pt;}
.xed{left:636.000000pt;}
.xea{left:642.666667pt;}
.x56{left:652.800000pt;}
.x24{left:660.213333pt;}
.x8a{left:666.666667pt;}
.x25{left:680.320000pt;}
.x1{left:690.560000pt;}
.x99{left:692.000000pt;}
.x1e{left:698.560000pt;}
.x5c{left:725.333333pt;}
.xec{left:726.666667pt;}
.xe9{left:728.000000pt;}
}




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