
    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_408ab69803cb9d6ae3185749.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.692871;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_049db483636c6e15965e5988.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.435059;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_b7fbb2dd4f032e6c55800571.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f236abc315040de8be739d18.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_d79b60d6303a1f3e323130c0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.916016;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_1d7a887c48bfbdd7f958b60c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.932000;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_177d151db46b7fe8a5079b32.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.965820;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_4633a7bdf7c263ac35c23ad8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.966309;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_c13fd5483f6afa82e87d203c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.971191;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_2831da8d1b988239d77a0952.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.677246;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_12a838867720948df16635b4.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_d2b8b97a53c42d493895ed90.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_b2e5e74eda7a408919e2bc91.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.899414;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_1ce694f639b910aae605a504.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_d0a8c54b302f7c232fc4f9f9.woff2')format("woff");}.fff{font-family:fff;line-height:0.674316;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_7c8374e5924f2087e52e4bf4.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.893066;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_d7aec4c18ece3b99824dd793.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_39afebbba02dd43cd44b8a8a.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_bafb80c1a8ed3a4dad218360.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_366e57659f2dfdfa94f6b9bd.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.674316;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_a9f6041472c390bfdb3f4ac6.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_ddbaf8aff456a4aa3334f693.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_cf35123563535db78e9470f8.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_a3f9e37961a56093fff43a9f.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.692871;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_673c8745bb4dc12a1b04a78a.woff2')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_880a6ff7f14d69caa2c73b47.woff2')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_9c0ee892cbaae52e01ae5dff.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.891113;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:ff1c;src:url('chunks/assets/font_321683490500c47bae11713e.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.674316;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:ff1d;src:url('chunks/assets/font_387df4252ecaae10505bec9e.woff2')format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url('chunks/assets/font_9b46094fc17d25fca928e101.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.674316;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:ff1f;src:url('chunks/assets/font_884e3d6d6b2e8f1e5aceeae9.woff2')format("woff");}.ff1f{font-family:ff1f;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:ff20;src:url('chunks/assets/font_ccbbb8372872c1caa51f390f.woff2')format("woff");}.ff20{font-family:ff20;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;}
.m3{transform:matrix(0.146874,0.202307,-0.202307,0.146874,0,0);-ms-transform:matrix(0.146874,0.202307,-0.202307,0.146874,0,0);-webkit-transform:matrix(0.146874,0.202307,-0.202307,0.146874,0,0);}
.m4{transform:matrix(0.146877,0.202304,-0.202304,0.146877,0,0);-ms-transform:matrix(0.146877,0.202304,-0.202304,0.146877,0,0);-webkit-transform:matrix(0.146877,0.202304,-0.202304,0.146877,0,0);}
.m2{transform:matrix(0.155792,0.195522,-0.195522,0.155792,0,0);-ms-transform:matrix(0.155792,0.195522,-0.195522,0.155792,0,0);-webkit-transform:matrix(0.155792,0.195522,-0.195522,0.155792,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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:16.477844px;}
.v2{vertical-align:18.180000px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.004532px;}
.ls3{letter-spacing:0.009018px;}
.ls7{letter-spacing:0.009109px;}
.ls9{letter-spacing:0.013596px;}
.ls6{letter-spacing:0.018173px;}
.ls2{letter-spacing:0.022614px;}
.ls4{letter-spacing:0.054382px;}
.ls5{letter-spacing:0.163147px;}
.ls1{letter-spacing:0.543823px;}
.lsa{letter-spacing:4.676880px;}
.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;}
}
.wsa{word-spacing:-60.000000px;}
.ws8{word-spacing:-27.191160px;}
.ws9{word-spacing:-26.640000px;}
.ws2{word-spacing:-22.572000px;}
.ws5{word-spacing:-18.109313px;}
.ws0{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.952000px;}
.wsc{word-spacing:-15.000000px;}
.ws6{word-spacing:-13.595580px;}
.wsb{word-spacing:-9.750000px;}
.ws4{word-spacing:-9.217804px;}
.ws7{word-spacing:-9.063720px;}
.ws1{word-spacing:0.000000px;}
.wse{word-spacing:35.220000px;}
.wsd{word-spacing:35.280000px;}
._8{margin-left:-9.410280px;}
._2{margin-left:-7.209000px;}
._1{margin-left:-4.325400px;}
._10{margin-left:-3.317322px;}
._0{margin-left:-2.306880px;}
._7{margin-left:-1.104000px;}
._3{width:1.370280px;}
._d{width:2.567464px;}
._a{width:4.350586px;}
._c{width:5.546997px;}
._e{width:7.015320px;}
._12{width:8.266113px;}
._b{width:9.516906px;}
._6{width:10.632000px;}
._9{width:12.344787px;}
._5{width:15.576000px;}
._4{width:16.680000px;}
._f{width:18.653136px;}
._14{width:20.447753px;}
._11{width:21.481017px;}
._13{width:23.058105px;}
._15{width:24.635192px;}
._16{width:25.994750px;}
._1a{width:28.496337px;}
._19{width:31.052306px;}
._1e{width:32.127694px;}
._1c{width:41.384947px;}
._18{width:55.306822px;}
._17{width:60.309995px;}
._1d{width:67.325315px;}
._1b{width:90.655331px;}
.fc9{color:rgb(0,0,255);}
.fc7{color:rgb(255,0,0);}
.fc8{color:rgb(0,112,192);}
.fc6{color:rgb(0,176,240);}
.fc5{color:transparent;}
.fc2{color:rgb(214,241,254);}
.fc1{color:rgb(70,120,134);}
.fc4{color:rgb(102,102,102);}
.fc3{color:rgb(43,43,43);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:36.254880px;}
.fsd{font-size:39.000000px;}
.fsa{font-size:40.786742px;}
.fs8{font-size:45.318602px;}
.fs5{font-size:51.000000px;}
.fsc{font-size:54.000000px;}
.fs9{font-size:54.382320px;}
.fs6{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:83.880000px;}
.fs0{font-size:96.120000px;}
.fs7{font-size:287.997337px;}
.fse{font-size:288.000721px;}
.fs3{font-size:288.000809px;}
.y0{bottom:0.000000px;}
.ya8{bottom:3.905344px;}
.y146{bottom:3.905350px;}
.y252{bottom:4.420497px;}
.yf9{bottom:4.437811px;}
.yaf{bottom:4.437827px;}
.yf5{bottom:4.437832px;}
.y14b{bottom:4.437838px;}
.yab{bottom:4.437841px;}
.y151{bottom:4.437847px;}
.y14e{bottom:4.437848px;}
.ya4{bottom:4.437853px;}
.y21c{bottom:4.466994px;}
.y267{bottom:4.744492px;}
.y270{bottom:4.744493px;}
.y274{bottom:4.744496px;}
.y269{bottom:4.744498px;}
.y25d{bottom:4.744500px;}
.y257{bottom:4.744501px;}
.y254{bottom:4.744502px;}
.y25a{bottom:4.744503px;}
.y262{bottom:4.744505px;}
.y265{bottom:4.744507px;}
.y26e{bottom:4.744508px;}
.y10{bottom:4.965000px;}
.y25b{bottom:5.593563px;}
.y263{bottom:5.593565px;}
.y266{bottom:5.593567px;}
.y26f{bottom:5.593568px;}
.y275{bottom:5.593571px;}
.y26a{bottom:5.593573px;}
.y25e{bottom:5.593575px;}
.y258{bottom:5.593576px;}
.y260{bottom:5.593577px;}
.y218{bottom:6.748492px;}
.y227{bottom:7.330493px;}
.y22c{bottom:7.330495px;}
.y216{bottom:7.330497px;}
.y213{bottom:7.330498px;}
.y210{bottom:7.330499px;}
.y20d{bottom:7.330500px;}
.y20a{bottom:7.330502px;}
.y234{bottom:7.330503px;}
.y231{bottom:7.330504px;}
.y22e{bottom:7.330505px;}
.y22a{bottom:7.330507px;}
.y2c3{bottom:7.646993px;}
.y240{bottom:8.026496px;}
.y2c1{bottom:8.214002px;}
.y208{bottom:8.289002px;}
.y29e{bottom:8.401494px;}
.y291{bottom:8.401495px;}
.y27d{bottom:8.401497px;}
.y28e{bottom:8.401498px;}
.y27f{bottom:8.401499px;}
.y281{bottom:8.401502px;}
.y29c{bottom:8.401503px;}
.y283{bottom:8.401504px;}
.y2a7{bottom:8.401506px;}
.y2a5{bottom:8.439002px;}
.y24f{bottom:8.889000px;}
.y293{bottom:8.926494px;}
.y285{bottom:8.926495px;}
.y28b{bottom:8.926498px;}
.y2ac{bottom:8.926500px;}
.y299{bottom:8.926503px;}
.y27b{bottom:8.926505px;}
.y24d{bottom:9.114007px;}
.y297{bottom:9.488994px;}
.y279{bottom:9.489002px;}
.y2b9{bottom:9.489003px;}
.y289{bottom:9.489004px;}
.y2bd{bottom:9.788998px;}
.y12{bottom:10.327499px;}
.y14{bottom:10.327500px;}
.y16{bottom:10.327502px;}
.y2ce{bottom:10.918497px;}
.y2c9{bottom:10.918506px;}
.y238{bottom:11.064004px;}
.y1b{bottom:11.543995px;}
.y295{bottom:12.339003px;}
.y2ae{bottom:13.013993px;}
.y2b7{bottom:13.614002px;}
.ya7{bottom:15.630400px;}
.y145{bottom:16.162899px;}
.yf8{bottom:16.884565px;}
.yae{bottom:16.884581px;}
.yf4{bottom:16.884586px;}
.y14a{bottom:16.884591px;}
.yaa{bottom:16.884595px;}
.y150{bottom:16.884601px;}
.y14d{bottom:16.884602px;}
.y2a2{bottom:17.101494px;}
.y277{bottom:17.101502px;}
.y287{bottom:17.101504px;}
.y18{bottom:18.075000px;}
.y251{bottom:19.943997px;}
.y21b{bottom:20.959494px;}
.yf{bottom:25.018500px;}
.y19{bottom:25.822500px;}
.ya6{bottom:27.887948px;}
.yf7{bottom:29.331319px;}
.yad{bottom:29.331335px;}
.yf3{bottom:29.331340px;}
.y149{bottom:29.331345px;}
.y2cb{bottom:30.268501px;}
.y20{bottom:34.729891px;}
.y21a{bottom:36.482994px;}
.y206{bottom:38.493003px;}
.y1c{bottom:48.000000px;}
.y205{bottom:53.174997px;}
.y31e{bottom:118.740030px;}
.y73{bottom:118.889985px;}
.y2b5{bottom:136.055967px;}
.y31d{bottom:136.740030px;}
.y72{bottom:136.889985px;}
.y31c{bottom:154.740030px;}
.y71{bottom:154.889985px;}
.y2b4{bottom:159.081004px;}
.y31b{bottom:172.740030px;}
.y70{bottom:172.889985px;}
.y2b3{bottom:181.056040px;}
.y31a{bottom:190.740030px;}
.y6f{bottom:190.889985px;}
.y1f{bottom:194.685698px;}
.y2b2{bottom:203.030985px;}
.y319{bottom:208.740030px;}
.y6e{bottom:208.889985px;}
.y2b1{bottom:225.006022px;}
.y318{bottom:226.740030px;}
.y6d{bottom:226.889985px;}
.y250{bottom:233.476533px;}
.y317{bottom:244.740030px;}
.y6c{bottom:244.889985px;}
.yf6{bottom:246.790732px;}
.y2b0{bottom:246.980985px;}
.y15f{bottom:250.489209px;}
.ya2{bottom:250.489243px;}
.y15c{bottom:254.565651px;}
.ydd{bottom:257.286999px;}
.y133{bottom:261.363407px;}
.y8a{bottom:261.363429px;}
.y169{bottom:261.363441px;}
.y1ac{bottom:262.718854px;}
.y316{bottom:262.740030px;}
.y6b{bottom:262.889985px;}
.y12c{bottom:265.439815px;}
.y24e{bottom:267.898515px;}
.y13e{bottom:272.237605px;}
.y2af{bottom:272.256040px;}
.yc9{bottom:274.959009px;}
.y1ba{bottom:278.125087px;}
.y1ef{bottom:278.580501px;}
.y1d6{bottom:278.580509px;}
.y11c{bottom:279.035440px;}
.y315{bottom:280.740030px;}
.y6a{bottom:280.889985px;}
.ya1{bottom:281.756799px;}
.y15b{bottom:285.833230px;}
.ydc{bottom:288.554589px;}
.y24c{bottom:290.848478px;}
.y132{bottom:292.630975px;}
.y89{bottom:292.630986px;}
.ye7{bottom:292.631009px;}
.y168{bottom:292.631020px;}
.y1ab{bottom:293.986422px;}
.y1c5{bottom:293.986506px;}
.y1ff{bottom:293.986582px;}
.y36{bottom:294.441453px;}
.y12b{bottom:296.707383px;}
.y2ad{bottom:298.656022px;}
.y314{bottom:298.740030px;}
.y69{bottom:298.889985px;}
.y13d{bottom:303.505173px;}
.y179{bottom:305.316217px;}
.yc8{bottom:306.226566px;}
.y1b9{bottom:309.392655px;}
.y204{bottom:309.847920px;}
.y1ee{bottom:309.848069px;}
.y1d5{bottom:309.848077px;}
.y11b{bottom:310.303008px;}
.ya0{bottom:313.024356px;}
.yf1{bottom:313.024390px;}
.y24b{bottom:314.248512px;}
.y313{bottom:316.740030px;}
.y68{bottom:316.889985px;}
.y15a{bottom:317.100798px;}
.ydb{bottom:319.822146px;}
.y88{bottom:323.898543px;}
.ye6{bottom:323.898566px;}
.yba{bottom:323.898577px;}
.y167{bottom:323.898588px;}
.y1e3{bottom:324.644487px;}
.y18a{bottom:325.254074px;}
.y1fe{bottom:325.254150px;}
.y35{bottom:325.709021px;}
.y12a{bottom:327.974951px;}
.y2ab{bottom:332.105985px;}
.y312{bottom:334.740030px;}
.y13c{bottom:334.772741px;}
.y67{bottom:334.889985px;}
.y24a{bottom:336.332954px;}
.y178{bottom:336.583785px;}
.y143{bottom:337.494123px;}
.y113{bottom:338.849172px;}
.y203{bottom:341.115488px;}
.y1aa{bottom:341.115557px;}
.y19c{bottom:341.115569px;}
.y1ed{bottom:341.115637px;}
.y1d4{bottom:341.115645px;}
.y11a{bottom:341.570576px;}
.y9f{bottom:344.291913px;}
.yf0{bottom:344.291947px;}
.yda{bottom:351.089703px;}
.y311{bottom:352.740030px;}
.y66{bottom:352.889985px;}
.y2aa{bottom:355.131022px;}
.y131{bottom:355.166111px;}
.y16e{bottom:355.166122px;}
.y87{bottom:355.166145px;}
.y166{bottom:355.166156px;}
.y1e2{bottom:355.912067px;}
.y1b8{bottom:356.521527px;}
.y189{bottom:356.521642px;}
.y249{bottom:358.417487px;}
.y129{bottom:359.242519px;}
.y142{bottom:368.761702px;}
.y34{bottom:370.572203px;}
.y310{bottom:370.740030px;}
.y65{bottom:370.889985px;}
.y202{bottom:372.383068px;}
.y1fd{bottom:372.383106px;}
.y1a9{bottom:372.383113px;}
.y19b{bottom:372.383137px;}
.y1ec{bottom:372.383205px;}
.y13b{bottom:372.838122px;}
.y119{bottom:372.838144px;}
.yc7{bottom:375.559492px;}
.y9e{bottom:375.559515px;}
.y2a9{bottom:377.106013px;}
.y248{bottom:381.626975px;}
.yd9{bottom:382.357271px;}
.y106{bottom:382.357282px;}
.y177{bottom:383.712779px;}
.y16d{bottom:386.433679px;}
.y86{bottom:386.433702px;}
.ye5{bottom:386.433713px;}
.y165{bottom:386.433724px;}
.y1e1{bottom:387.179623px;}
.y1b7{bottom:387.789095px;}
.y188{bottom:387.789210px;}
.y1d3{bottom:388.244639px;}
.y30f{bottom:388.740030px;}
.y64{bottom:388.889985px;}
.y112{bottom:390.510098px;}
.y130{bottom:393.231469px;}
.y2a8{bottom:399.081004px;}
.y141{bottom:400.029259px;}
.y247{bottom:401.461509px;}
.y33{bottom:401.839760px;}
.y201{bottom:403.650624px;}
.y1fc{bottom:403.650674px;}
.y19a{bottom:403.650705px;}
.y118{bottom:404.105712px;}
.y30e{bottom:406.740030px;}
.yc6{bottom:406.827049px;}
.y9d{bottom:406.827072px;}
.yef{bottom:406.827083px;}
.y63{bottom:406.889985px;}
.y105{bottom:413.624839px;}
.yd8{bottom:413.624862px;}
.y176{bottom:414.980347px;}
.y85{bottom:417.701258px;}
.yb9{bottom:417.701270px;}
.y164{bottom:417.701292px;}
.y1b6{bottom:419.056663px;}
.y1a8{bottom:419.512169px;}
.y1d2{bottom:419.512207px;}
.y1eb{bottom:419.512215px;}
.y2a6{bottom:421.055994px;}
.y246{bottom:421.295997px;}
.y111{bottom:421.777655px;}
.y12f{bottom:424.499060px;}
.y13a{bottom:424.499082px;}
.y30d{bottom:424.740030px;}
.y62{bottom:424.889985px;}
.y140{bottom:431.296838px;}
.y32{bottom:433.107339px;}
.y1e0{bottom:434.308679px;}
.y187{bottom:434.918219px;}
.y1fb{bottom:434.918242px;}
.y9c{bottom:438.094628px;}
.yee{bottom:438.094640px;}
.y117{bottom:442.171070px;}
.y30c{bottom:442.740030px;}
.y61{bottom:442.889985px;}
.y2a4{bottom:443.031013px;}
.y245{bottom:443.380485px;}
.yd7{bottom:444.892418px;}
.y175{bottom:446.247915px;}
.y159{bottom:448.968815px;}
.y16c{bottom:448.968826px;}
.y84{bottom:448.968838px;}
.ye4{bottom:448.968849px;}
.y199{bottom:450.779706px;}
.y1ea{bottom:450.779714px;}
.y1a7{bottom:450.779737px;}
.y1d1{bottom:450.779775px;}
.y110{bottom:453.045235px;}
.y163{bottom:455.766605px;}
.y12e{bottom:455.766628px;}
.y128{bottom:459.843047px;}
.y30b{bottom:460.740030px;}
.y60{bottom:460.889985px;}
.y13f{bottom:462.564406px;}
.y139{bottom:462.564429px;}
.y31{bottom:464.374907px;}
.y244{bottom:465.465019px;}
.y1df{bottom:465.576247px;}
.y1b5{bottom:466.185741px;}
.y186{bottom:466.185787px;}
.y1fa{bottom:466.185810px;}
.y2a3{bottom:467.330976px;}
.yc5{bottom:469.362196px;}
.y9b{bottom:469.362208px;}
.yed{bottom:469.362219px;}
.y2e1{bottom:472.849515px;}
.yd6{bottom:476.159975px;}
.y104{bottom:476.159986px;}
.y30a{bottom:478.740030px;}
.y5f{bottom:478.889985px;}
.y83{bottom:480.236395px;}
.yb8{bottom:480.236406px;}
.ye3{bottom:480.236417px;}
.y198{bottom:482.047274px;}
.y1e9{bottom:482.047282px;}
.y1a6{bottom:482.047305px;}
.y10f{bottom:484.312791px;}
.y12d{bottom:487.034185px;}
.y162{bottom:487.034196px;}
.y243{bottom:487.549506px;}
.y174{bottom:493.376917px;}
.y2a1{bottom:493.730976px;}
.y116{bottom:493.831975px;}
.y309{bottom:496.740030px;}
.y1de{bottom:496.843815px;}
.y5e{bottom:496.889985px;}
.y1b4{bottom:497.453309px;}
.y185{bottom:497.453355px;}
.y127{bottom:497.908405px;}
.y1d0{bottom:497.908746px;}
.y9a{bottom:500.629765px;}
.yec{bottom:500.629787px;}
.y2e0{bottom:503.896530px;}
.y30{bottom:504.706195px;}
.y242{bottom:507.383994px;}
.yd5{bottom:507.427555px;}
.y158{bottom:511.503951px;}
.y16b{bottom:511.503963px;}
.y82{bottom:511.503974px;}
.y1f9{bottom:513.314605px;}
.y197{bottom:513.314842px;}
.y1e8{bottom:513.314850px;}
.y308{bottom:514.740030px;}
.y5d{bottom:514.889985px;}
.y10e{bottom:515.580371px;}
.yfe{bottom:518.301741px;}
.ye2{bottom:518.301764px;}
.y173{bottom:524.644485px;}
.y115{bottom:525.099543px;}
.y241{bottom:527.218482px;}
.y1b3{bottom:528.720877px;}
.y126{bottom:529.175962px;}
.y1a5{bottom:529.176276px;}
.y1cf{bottom:529.176314px;}
.y138{bottom:531.897321px;}
.yc4{bottom:531.897333px;}
.y99{bottom:531.897344px;}
.yeb{bottom:531.897355px;}
.y307{bottom:532.740030px;}
.y5c{bottom:532.889985px;}
.y2df{bottom:534.943530px;}
.y2a0{bottom:535.356010px;}
.y2f{bottom:535.973763px;}
.yd4{bottom:538.695111px;}
.y103{bottom:538.695123px;}
.y157{bottom:542.771531px;}
.y81{bottom:542.771542px;}
.y1dd{bottom:543.972774px;}
.y1f8{bottom:544.582173px;}
.y184{bottom:544.582307px;}
.y1c4{bottom:544.582311px;}
.y196{bottom:544.582410px;}
.y10d{bottom:546.847939px;}
.y23f{bottom:549.303019px;}
.y161{bottom:549.569321px;}
.ye1{bottom:549.569332px;}
.y306{bottom:550.740030px;}
.y5b{bottom:550.889985px;}
.y29f{bottom:555.190501px;}
.y114{bottom:556.367111px;}
.y1b2{bottom:559.988445px;}
.y125{bottom:560.443530px;}
.y1e7{bottom:560.443806px;}
.y1a4{bottom:560.443844px;}
.y1ce{bottom:560.443882px;}
.yc3{bottom:563.164901px;}
.y98{bottom:563.164912px;}
.yea{bottom:563.164923px;}
.y2de{bottom:565.990530px;}
.y2e{bottom:567.241331px;}
.y305{bottom:568.740030px;}
.y5a{bottom:568.889985px;}
.yd3{bottom:569.962691px;}
.y172{bottom:571.773180px;}
.y23e{bottom:572.778007px;}
.y156{bottom:574.039099px;}
.y80{bottom:574.039110px;}
.yb7{bottom:574.039121px;}
.y1dc{bottom:575.240354px;}
.y183{bottom:575.849875px;}
.y1c3{bottom:575.849879px;}
.y29d{bottom:577.165491px;}
.y10c{bottom:578.115507px;}
.ye0{bottom:580.836900px;}
.y16a{bottom:580.836911px;}
.y304{bottom:586.740030px;}
.y59{bottom:586.889985px;}
.y124{bottom:591.711098px;}
.y1f7{bottom:591.711229px;}
.y195{bottom:591.711266px;}
.y1e6{bottom:591.711374px;}
.y1a3{bottom:591.711412px;}
.y1cd{bottom:591.711450px;}
.y137{bottom:594.432469px;}
.y97{bottom:594.432480px;}
.ye9{bottom:594.432491px;}
.y23d{bottom:595.987495px;}
.y29b{bottom:599.140482px;}
.yc2{bottom:601.230259px;}
.y15e{bottom:601.230281px;}
.y171{bottom:603.040748px;}
.y303{bottom:604.740030px;}
.y58{bottom:604.889985px;}
.y155{bottom:605.306667px;}
.y7f{bottom:605.306678px;}
.yb6{bottom:605.306689px;}
.y1db{bottom:606.507922px;}
.y1b1{bottom:607.117412px;}
.y182{bottom:607.117443px;}
.y1c2{bottom:607.117447px;}
.y2d{bottom:607.572619px;}
.y102{bottom:608.028071px;}
.y2dd{bottom:609.037530px;}
.y10b{bottom:609.383075px;}
.yfd{bottom:612.104457px;}
.ydf{bottom:612.104468px;}
.y23c{bottom:615.821983px;}
.y29a{bottom:621.115519px;}
.y302{bottom:622.740030px;}
.y57{bottom:622.889985px;}
.y123{bottom:622.978655px;}
.y1f6{bottom:622.978797px;}
.y194{bottom:622.978823px;}
.y1e5{bottom:622.978942px;}
.y1a2{bottom:622.978980px;}
.y136{bottom:625.700037px;}
.y96{bottom:625.700048px;}
.yd2{bottom:632.497827px;}
.y15d{bottom:632.497838px;}
.yc1{bottom:632.497849px;}
.y170{bottom:634.308316px;}
.y23b{bottom:635.656516px;}
.y154{bottom:636.574235px;}
.y7e{bottom:636.574246px;}
.y1b0{bottom:638.384980px;}
.y1c1{bottom:638.385015px;}
.y2c{bottom:638.840188px;}
.y1cc{bottom:638.840406px;}
.y101{bottom:639.295628px;}
.y10a{bottom:640.650643px;}
.y301{bottom:640.740030px;}
.y56{bottom:640.889985px;}
.y298{bottom:643.090482px;}
.yfc{bottom:643.372025px;}
.yb5{bottom:643.372036px;}
.y2dc{bottom:652.084515px;}
.y1da{bottom:653.637000px;}
.y122{bottom:654.246234px;}
.y193{bottom:654.246402px;}
.y181{bottom:654.246510px;}
.y135{bottom:656.967605px;}
.y95{bottom:656.967616px;}
.y23a{bottom:657.741004px;}
.y300{bottom:658.740030px;}
.y55{bottom:658.889985px;}
.yd1{bottom:663.765395px;}
.yc0{bottom:663.765406px;}
.ye8{bottom:663.765418px;}
.y153{bottom:667.841803px;}
.y296{bottom:668.365491px;}
.y1af{bottom:669.652548px;}
.y2b{bottom:670.107756px;}
.y1f5{bottom:670.107886px;}
.y1a1{bottom:670.107951px;}
.y1cb{bottom:670.107974px;}
.y100{bottom:670.563185px;}
.yb4{bottom:674.639593px;}
.y7d{bottom:674.639604px;}
.y2ff{bottom:676.740030px;}
.y54{bottom:676.889985px;}
.y109{bottom:678.716024px;}
.y239{bottom:679.825492px;}
.y16f{bottom:681.437383px;}
.y2db{bottom:683.131515px;}
.y1d9{bottom:684.904522px;}
.y121{bottom:685.513802px;}
.y1c0{bottom:685.513948px;}
.y192{bottom:685.513970px;}
.y134{bottom:688.235173px;}
.y2fe{bottom:694.740030px;}
.y294{bottom:694.765482px;}
.y53{bottom:694.889985px;}
.ybf{bottom:695.032963px;}
.y94{bottom:695.032974px;}
.y1a{bottom:700.825505px;}
.y2a{bottom:701.375324px;}
.y1f4{bottom:701.375454px;}
.y1e4{bottom:701.375496px;}
.y1a0{bottom:701.375519px;}
.y1ca{bottom:701.375542px;}
.y180{bottom:701.375565px;}
.yff{bottom:701.830753px;}
.y237{bottom:701.910011px;}
.y7c{bottom:705.907161px;}
.yb3{bottom:705.907172px;}
.y152{bottom:705.907184px;}
.y2fd{bottom:712.740030px;}
.y52{bottom:712.889985px;}
.y1d8{bottom:716.172090px;}
.y120{bottom:716.781370px;}
.y1bf{bottom:716.781516px;}
.y1ae{bottom:716.781615px;}
.y2da{bottom:726.178515px;}
.y93{bottom:726.300531px;}
.ybe{bottom:726.300542px;}
.y292{bottom:726.865491px;}
.yf2{bottom:728.226829px;}
.y236{bottom:729.209998px;}
.y108{bottom:730.376950px;}
.y2fc{bottom:730.740030px;}
.y51{bottom:730.889985px;}
.y1f3{bottom:732.643022px;}
.y191{bottom:732.643026px;}
.y17f{bottom:732.643064px;}
.y19f{bottom:732.643087px;}
.y1c9{bottom:732.643110px;}
.yd0{bottom:733.098344px;}
.y17{bottom:734.949000px;}
.yb2{bottom:737.174729px;}
.y7b{bottom:737.174740px;}
.y2c4{bottom:739.347015px;}
.y29{bottom:741.706600px;}
.y2c7{bottom:742.255500px;}
.y11f{bottom:748.048939px;}
.y1be{bottom:748.049084px;}
.y2fb{bottom:748.740030px;}
.y50{bottom:748.889985px;}
.y235{bottom:749.044486px;}
.y290{bottom:749.890505px;}
.ybd{bottom:757.568099px;}
.y92{bottom:757.568110px;}
.y2c5{bottom:761.697000px;}
.yac{bottom:761.899630px;}
.y1d7{bottom:763.685134px;}
.y190{bottom:763.910594px;}
.y17e{bottom:763.910632px;}
.y19e{bottom:763.910655px;}
.ycf{bottom:764.365900px;}
.y2fa{bottom:766.740030px;}
.y4f{bottom:766.889985px;}
.yc{bottom:767.310000px;}
.y7a{bottom:768.442297px;}
.yb1{bottom:768.442309px;}
.y2d9{bottom:769.225530px;}
.y233{bottom:771.128997px;}
.y28f{bottom:771.865496px;}
.y28{bottom:772.974169px;}
.y2c6{bottom:773.302500px;}
.yde{bottom:775.240099px;}
.y11e{bottom:779.316507px;}
.y15{bottom:779.363998px;}
.y1c8{bottom:779.771959px;}
.y1f2{bottom:779.772089px;}
.y14f{bottom:780.743084px;}
.y107{bottom:782.037889px;}
.y2f9{bottom:784.740030px;}
.y4e{bottom:784.889985px;}
.y91{bottom:788.835667px;}
.ybc{bottom:788.835679px;}
.yb{bottom:789.720000px;}
.y232{bottom:793.213508px;}
.y28d{bottom:793.840487px;}
.y18f{bottom:795.178162px;}
.y17d{bottom:795.178200px;}
.yce{bottom:795.633457px;}
.y79{bottom:799.709877px;}
.y2d8{bottom:800.272530px;}
.y2f8{bottom:802.740030px;}
.y4d{bottom:802.889985px;}
.y2c8{bottom:804.077994px;}
.ya9{bottom:805.293290px;}
.y2cd{bottom:805.728003px;}
.y160{bottom:806.507667px;}
.y13{bottom:808.284000px;}
.y1c7{bottom:811.039527px;}
.y19d{bottom:811.039626px;}
.y1f1{bottom:811.039657px;}
.y14c{bottom:811.690019px;}
.ya{bottom:812.040000px;}
.y27{bottom:813.305457px;}
.y28c{bottom:815.815501px;}
.y230{bottom:816.422996px;}
.y11d{bottom:817.381865px;}
.y90{bottom:820.103247px;}
.y219{bottom:820.304991px;}
.y2f7{bottom:820.740030px;}
.y4c{bottom:820.889985px;}
.y18e{bottom:826.445730px;}
.ycd{bottom:826.901037px;}
.yfb{bottom:830.977433px;}
.y78{bottom:830.977445px;}
.ya5{bottom:836.240214px;}
.y22f{bottom:836.257507px;}
.y11{bottom:837.204001px;}
.y28a{bottom:837.790487px;}
.y2f6{bottom:838.740030px;}
.y4b{bottom:838.889985px;}
.y1c6{bottom:842.307095px;}
.y200{bottom:842.307171px;}
.y17c{bottom:842.307194px;}
.y1f0{bottom:842.307225px;}
.y148{bottom:842.636927px;}
.y2d7{bottom:843.319530px;}
.y26{bottom:844.573025px;}
.y273{bottom:845.774989px;}
.y9{bottom:846.330000px;}
.y8f{bottom:851.370815px;}
.y22d{bottom:856.091995px;}
.y2f5{bottom:856.740030px;}
.y4a{bottom:856.889985px;}
.ycc{bottom:858.168593px;}
.y77{bottom:862.245013px;}
.y288{bottom:863.065496px;}
.y272{bottom:865.500002px;}
.y217{bottom:867.890993px;}
.yfa{bottom:869.042803px;}
.y1ad{bottom:873.574663px;}
.y1bd{bottom:873.574739px;}
.y17b{bottom:873.574762px;}
.y18d{bottom:873.574785px;}
.y2d6{bottom:874.366530px;}
.y2f4{bottom:874.740030px;}
.y49{bottom:874.889985px;}
.y25{bottom:875.840593px;}
.y22b{bottom:878.176505px;}
.ya3{bottom:878.190470px;}
.y8{bottom:880.710000px;}
.y8e{bottom:882.638383px;}
.y271{bottom:885.224993px;}
.y147{bottom:886.030579px;}
.ye{bottom:887.685000px;}
.y215{bottom:887.992503px;}
.ycb{bottom:889.436173px;}
.y286{bottom:889.465496px;}
.y2f3{bottom:892.740030px;}
.y48{bottom:892.889985px;}
.y76{bottom:893.512581px;}
.y229{bottom:900.260993px;}
.y144{bottom:904.530760px;}
.y18c{bottom:904.842231px;}
.y1bc{bottom:904.842307px;}
.y17a{bottom:904.842330px;}
.y26d{bottom:904.950007px;}
.y24{bottom:907.108161px;}
.y214{bottom:907.827003px;}
.y2f2{bottom:910.740030px;}
.y47{bottom:910.889985px;}
.y8d{bottom:913.905951px;}
.y7{bottom:915.000000px;}
.y2d5{bottom:917.413530px;}
.yca{bottom:920.703741px;}
.y228{bottom:922.345504px;}
.y75{bottom:924.780149px;}
.y26c{bottom:926.924998px;}
.y212{bottom:927.661502px;}
.y2f1{bottom:928.740030px;}
.y46{bottom:928.889985px;}
.y284{bottom:931.090505px;}
.yb0{bottom:931.577939px;}
.y2c2{bottom:932.325007px;}
.y18b{bottom:936.109799px;}
.y1bb{bottom:936.109875px;}
.y23{bottom:938.375729px;}
.y226{bottom:942.179992px;}
.yd{bottom:943.680915px;}
.y8c{bottom:945.173519px;}
.y2f0{bottom:946.740030px;}
.y45{bottom:946.889985px;}
.y211{bottom:947.496001px;}
.y2d4{bottom:948.460530px;}
.y26b{bottom:948.900000px;}
.y6{bottom:949.380000px;}
.ybb{bottom:951.971309px;}
.y282{bottom:954.115496px;}
.y2c0{bottom:956.549998px;}
.y225{bottom:962.014503px;}
.y74{bottom:962.845507px;}
.y2ef{bottom:964.740030px;}
.y44{bottom:964.889985px;}
.y20f{bottom:967.330501px;}
.y268{bottom:968.625002px;}
.y280{bottom:976.090498px;}
.y22{bottom:976.441087px;}
.y2bf{bottom:978.150000px;}
.y2ee{bottom:982.740030px;}
.y43{bottom:982.889985px;}
.y8b{bottom:983.238877px;}
.y5{bottom:983.670000px;}
.y224{bottom:984.099002px;}
.y20e{bottom:987.165000px;}
.y264{bottom:989.474993px;}
.y2d3{bottom:991.507530px;}
.y2cf{bottom:994.101840px;}
.y1e{bottom:994.182030px;}
.y27e{bottom:998.065501px;}
.y2be{bottom:1000.125002px;}
.y2ed{bottom:1000.740030px;}
.y42{bottom:1000.889985px;}
.y223{bottom:1006.183501px;}
.y20c{bottom:1006.999500px;}
.y261{bottom:1009.199995px;}
.y21{bottom:1014.506445px;}
.y2ec{bottom:1018.740030px;}
.y41{bottom:1018.889985px;}
.y4{bottom:1018.950000px;}
.y27c{bottom:1020.040503px;}
.y2bc{bottom:1022.100002px;}
.y2d2{bottom:1022.554530px;}
.y20b{bottom:1026.833999px;}
.y222{bottom:1029.393001px;}
.y25f{bottom:1030.049998px;}
.y2eb{bottom:1036.740030px;}
.y40{bottom:1036.889985px;}
.y2cc{bottom:1039.503014px;}
.y2ca{bottom:1040.253014px;}
.y27a{bottom:1042.015495px;}
.y2bb{bottom:1046.849999px;}
.y209{bottom:1048.918498px;}
.y221{bottom:1049.227500px;}
.y25c{bottom:1049.775000px;}
.y2ea{bottom:1054.740030px;}
.y3f{bottom:1054.889985px;}
.y3{bottom:1057.020000px;}
.y278{bottom:1067.290498px;}
.y2ba{bottom:1068.824997px;}
.y220{bottom:1069.062000px;}
.y259{bottom:1070.624997px;}
.y207{bottom:1071.002998px;}
.y2e9{bottom:1072.740030px;}
.y3e{bottom:1072.889985px;}
.y256{bottom:1090.349999px;}
.y2e8{bottom:1090.740030px;}
.y3d{bottom:1090.889985px;}
.y21f{bottom:1091.146499px;}
.y276{bottom:1093.690498px;}
.y2b8{bottom:1094.099997px;}
.y2{bottom:1095.120000px;}
.y2d1{bottom:1108.648530px;}
.y2e7{bottom:1108.740030px;}
.y3c{bottom:1108.889985px;}
.y255{bottom:1112.324998px;}
.y21e{bottom:1113.230998px;}
.y2b6{bottom:1120.499998px;}
.y2e6{bottom:1126.740030px;}
.y3b{bottom:1126.889985px;}
.y1{bottom:1134.090000px;}
.y21d{bottom:1135.315498px;}
.y253{bottom:1135.424998px;}
.y2d0{bottom:1139.695530px;}
.y2e5{bottom:1144.740030px;}
.y3a{bottom:1144.889985px;}
.y1d{bottom:1159.889985px;}
.y2e4{bottom:1162.740030px;}
.y39{bottom:1162.889985px;}
.y2e3{bottom:1180.740030px;}
.y38{bottom:1180.889985px;}
.y2e2{bottom:1234.740030px;}
.y37{bottom:1234.889985px;}
.h17{height:17.140614px;}
.h35{height:20.409070px;}
.h29{height:20.851500px;}
.h33{height:22.725000px;}
.h28{height:22.834500px;}
.h2f{height:24.225000px;}
.h43{height:24.600000px;}
.h25{height:24.750000px;}
.h3a{height:24.975000px;}
.h27{height:25.084500px;}
.h45{height:25.200000px;}
.h31{height:25.950000px;}
.h3c{height:26.025000px;}
.h30{height:26.400000px;}
.h41{height:27.150000px;}
.h3e{height:27.300000px;}
.h42{height:27.750000px;}
.h1c{height:27.881562px;}
.h39{height:28.275000px;}
.h22{height:28.865659px;}
.h38{height:29.400000px;}
.h1b{height:29.587357px;}
.h18{height:30.191748px;}
.h2e{height:30.300000px;}
.hb{height:30.795000px;}
.h32{height:34.047000px;}
.h3d{height:35.100000px;}
.h40{height:35.400000px;}
.h1a{height:35.787976px;}
.hf{height:35.998500px;}
.h3f{height:36.450000px;}
.h1e{height:36.830214px;}
.h15{height:36.856768px;}
.h2a{height:37.520508px;}
.h1f{height:37.759599px;}
.hc{height:38.748047px;}
.hd{height:38.997070px;}
.h14{height:39.764418px;}
.h46{height:39.990234px;}
.h36{height:40.458984px;}
.h19{height:40.590705px;}
.h34{height:40.634766px;}
.h26{height:40.664062px;}
.h3b{height:41.660156px;}
.h24{height:41.689453px;}
.h1d{height:42.034101px;}
.h37{height:42.375000px;}
.h9{height:43.107000px;}
.h11{height:43.260000px;}
.h47{height:44.550000px;}
.h2c{height:45.259102px;}
.h2d{height:45.278145px;}
.he{height:46.290000px;}
.h16{height:47.717299px;}
.h21{height:48.289331px;}
.h20{height:48.289376px;}
.h10{height:48.761719px;}
.h4a{height:48.796875px;}
.h44{height:49.992188px;}
.h4b{height:50.027344px;}
.ha{height:50.466797px;}
.h2b{height:50.586000px;}
.h13{height:52.105019px;}
.h23{height:61.497000px;}
.h6{height:64.546875px;}
.h5{height:74.004654px;}
.h4{height:86.215422px;}
.h3{height:87.320391px;}
.h2{height:100.062422px;}
.h12{height:207.646080px;}
.h49{height:207.648520px;}
.h8{height:207.648583px;}
.h7{height:1188.000000px;}
.h48{height:1262.850037px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3d{width:30.943500px;}
.w1c{width:41.775000px;}
.w1d{width:42.000000px;}
.w16{width:43.350000px;}
.w32{width:45.225000px;}
.w28{width:45.525000px;}
.w46{width:47.250000px;}
.we{width:47.775000px;}
.w25{width:48.600000px;}
.w45{width:49.500000px;}
.w1b{width:50.850000px;}
.w15{width:54.750000px;}
.w30{width:55.725000px;}
.w31{width:55.800000px;}
.w27{width:56.100000px;}
.w19{width:56.550000px;}
.wd{width:58.725000px;}
.w12{width:62.025000px;}
.wf{width:62.250000px;}
.w11{width:65.175000px;}
.w14{width:66.375000px;}
.w10{width:66.750000px;}
.w26{width:66.825000px;}
.w13{width:68.850000px;}
.w1a{width:70.950000px;}
.w2f{width:73.650000px;}
.w40{width:85.575000px;}
.w33{width:86.175000px;}
.w42{width:90.975000px;}
.w2e{width:91.050000px;}
.w39{width:91.425000px;}
.w29{width:93.450000px;}
.w44{width:94.350000px;}
.w24{width:95.625000px;}
.w41{width:95.775000px;}
.w18{width:96.825000px;}
.w21{width:98.700000px;}
.w1e{width:99.150000px;}
.w3b{width:102.300000px;}
.w3a{width:102.675000px;}
.w3c{width:106.575000px;}
.w2c{width:109.275000px;}
.w35{width:109.350000px;}
.w20{width:119.925000px;}
.w2b{width:120.000000px;}
.w38{width:123.750000px;}
.w22{width:125.325000px;}
.w34{width:126.300000px;}
.w1f{width:127.875000px;}
.w2a{width:130.575000px;}
.w36{width:135.975000px;}
.w5{width:209.775015px;}
.w2d{width:258.150015px;}
.wa{width:260.445787px;}
.w23{width:268.800000px;}
.w3f{width:281.925000px;}
.w6{width:486.974985px;}
.w3e{width:545.250000px;}
.w43{width:548.625000px;}
.w4{width:565.500000px;}
.w17{width:603.750000px;}
.w37{width:614.400015px;}
.wc{width:628.050015px;}
.w9{width:674.510120px;}
.w7{width:694.875000px;}
.w47{width:892.949982px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.wb{width:893.024959px;}
.w8{width:893.024963px;}
.w1{width:893.250000px;}
.w3{width:918.000000px;}
.x0{left:0.000000px;}
.x19{left:4.531885px;}
.xb{left:7.087506px;}
.x48{left:9.637505px;}
.x70{left:10.800000px;}
.x14{left:12.000000px;}
.x63{left:13.772996px;}
.x37{left:15.150006px;}
.x6d{left:16.552501px;}
.x64{left:17.997002px;}
.x47{left:20.287500px;}
.x38{left:22.349995px;}
.x3e{left:24.144005px;}
.x54{left:26.212499px;}
.x49{left:29.849992px;}
.x6c{left:31.537500px;}
.x39{left:32.700005px;}
.x3c{left:34.756500px;}
.x36{left:35.920505px;}
.x40{left:37.456507px;}
.x60{left:40.162499px;}
.x56{left:42.781501px;}
.x6{left:46.144500px;}
.x5c{left:47.400005px;}
.x23{left:72.569996px;}
.x13{left:80.327160px;}
.xd{left:91.741500px;}
.x58{left:94.303496px;}
.x3{left:106.379987px;}
.x8{left:111.562500px;}
.xc{left:113.281500px;}
.x22{left:126.075005px;}
.x6e{left:127.575000px;}
.xe{left:134.722500px;}
.x57{left:139.312504px;}
.x9{left:150.628500px;}
.x61{left:155.200504px;}
.x5f{left:156.885005px;}
.x62{left:160.195504px;}
.x4{left:161.304630px;}
.x11{left:164.110215px;}
.x67{left:172.200005px;}
.x5{left:176.250000px;}
.x68{left:180.145496px;}
.x24{left:181.800007px;}
.x65{left:187.779006px;}
.x66{left:191.089507px;}
.x25{left:226.575005px;}
.x7{left:231.472500px;}
.x1{left:233.579987px;}
.x6f{left:241.875000px;}
.x4c{left:249.375000px;}
.x2e{left:250.950005px;}
.x41{left:253.650009px;}
.x59{left:260.062504px;}
.x1f{left:261.387430px;}
.x1c{left:262.505666px;}
.x1e{left:263.651105px;}
.x1d{left:265.914769px;}
.x20{left:277.608101px;}
.x26{left:285.825004px;}
.xa{left:319.462509px;}
.x15{left:323.879970px;}
.xf{left:336.367500px;}
.x4d{left:337.424996px;}
.x2f{left:344.775009px;}
.x42{left:346.275009px;}
.x5a{left:348.487500px;}
.x27{left:349.575004px;}
.x16{left:353.332470px;}
.x10{left:365.819985px;}
.x3a{left:372.865496px;}
.x4a{left:381.225014px;}
.x4e{left:383.025009px;}
.x3b{left:391.875000px;}
.x30{left:398.325004px;}
.x28{left:411.750000px;}
.x71{left:431.324982px;}
.x2{left:446.549987px;}
.x5b{left:448.162495px;}
.x69{left:451.125000px;}
.x4f{left:453.674995px;}
.x43{left:455.700004px;}
.x31{left:466.275009px;}
.x29{left:470.775009px;}
.x55{left:487.575004px;}
.x4b{left:498.225014px;}
.x50{left:506.400009px;}
.x3d{left:508.799995px;}
.x32{left:514.125023px;}
.x2a{left:529.799995px;}
.x6a{left:533.700004px;}
.x5d{left:547.462513px;}
.x44{left:551.325004px;}
.x33{left:552.899986px;}
.x51{left:559.200004px;}
.x72{left:568.574982px;}
.x1a{left:582.853385px;}
.x12{left:588.518210px;}
.x34{left:591.674995px;}
.x45{left:593.850014px;}
.x2b{left:595.649986px;}
.x52{left:601.424995px;}
.x3f{left:604.500023px;}
.x6b{left:626.475014px;}
.x18{left:629.440873px;}
.x35{left:630.674995px;}
.x46{left:636.375023px;}
.x53{left:643.649986px;}
.x5e{left:647.137486px;}
.x2c{left:659.024986px;}
.x2d{left:710.774986px;}
.x21{left:757.949995px;}
.x1b{left:796.979970px;}
.x17{left:804.674970px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:14.646972pt;}
.v2{vertical-align:16.160000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.004028pt;}
.ls3{letter-spacing:0.008016pt;}
.ls7{letter-spacing:0.008097pt;}
.ls9{letter-spacing:0.012085pt;}
.ls6{letter-spacing:0.016154pt;}
.ls2{letter-spacing:0.020101pt;}
.ls4{letter-spacing:0.048340pt;}
.ls5{letter-spacing:0.145020pt;}
.ls1{letter-spacing:0.483398pt;}
.lsa{letter-spacing:4.157226pt;}
.wsa{word-spacing:-53.333333pt;}
.ws8{word-spacing:-24.169920pt;}
.ws9{word-spacing:-23.680000pt;}
.ws2{word-spacing:-20.064000pt;}
.ws5{word-spacing:-16.097167pt;}
.ws0{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.957333pt;}
.wsc{word-spacing:-13.333333pt;}
.ws6{word-spacing:-12.084960pt;}
.wsb{word-spacing:-8.666667pt;}
.ws4{word-spacing:-8.193603pt;}
.ws7{word-spacing:-8.056640pt;}
.ws1{word-spacing:0.000000pt;}
.wse{word-spacing:31.306667pt;}
.wsd{word-spacing:31.360000pt;}
._8{margin-left:-8.364693pt;}
._2{margin-left:-6.408000pt;}
._1{margin-left:-3.844800pt;}
._10{margin-left:-2.948730pt;}
._0{margin-left:-2.050560pt;}
._7{margin-left:-0.981333pt;}
._3{width:1.218027pt;}
._d{width:2.282190pt;}
._a{width:3.867187pt;}
._c{width:4.930664pt;}
._e{width:6.235840pt;}
._12{width:7.347656pt;}
._b{width:8.459472pt;}
._6{width:9.450667pt;}
._9{width:10.973144pt;}
._5{width:13.845333pt;}
._4{width:14.826667pt;}
._f{width:16.580566pt;}
._14{width:18.175781pt;}
._11{width:19.094238pt;}
._13{width:20.496093pt;}
._15{width:21.897948pt;}
._16{width:23.106444pt;}
._1a{width:25.330077pt;}
._19{width:27.602050pt;}
._1e{width:28.557950pt;}
._1c{width:36.786620pt;}
._18{width:49.161619pt;}
._17{width:53.608885pt;}
._1d{width:59.844724pt;}
._1b{width:80.582516pt;}
.fsb{font-size:32.226560pt;}
.fsd{font-size:34.666667pt;}
.fsa{font-size:36.254881pt;}
.fs8{font-size:40.283202pt;}
.fs5{font-size:45.333333pt;}
.fsc{font-size:48.000000pt;}
.fs9{font-size:48.339840pt;}
.fs6{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.560000pt;}
.fs0{font-size:85.440000pt;}
.fs7{font-size:255.997633pt;}
.fse{font-size:256.000641pt;}
.fs3{font-size:256.000719pt;}
.y0{bottom:0.000000pt;}
.ya8{bottom:3.471417pt;}
.y146{bottom:3.471423pt;}
.y252{bottom:3.929331pt;}
.yf9{bottom:3.944721pt;}
.yaf{bottom:3.944735pt;}
.yf5{bottom:3.944739pt;}
.y14b{bottom:3.944744pt;}
.yab{bottom:3.944748pt;}
.y151{bottom:3.944753pt;}
.y14e{bottom:3.944754pt;}
.ya4{bottom:3.944758pt;}
.y21c{bottom:3.970661pt;}
.y267{bottom:4.217326pt;}
.y270{bottom:4.217327pt;}
.y274{bottom:4.217330pt;}
.y269{bottom:4.217331pt;}
.y25d{bottom:4.217333pt;}
.y257{bottom:4.217334pt;}
.y254{bottom:4.217335pt;}
.y25a{bottom:4.217336pt;}
.y262{bottom:4.217337pt;}
.y265{bottom:4.217339pt;}
.y26e{bottom:4.217341pt;}
.y10{bottom:4.413333pt;}
.y25b{bottom:4.972056pt;}
.y263{bottom:4.972057pt;}
.y266{bottom:4.972059pt;}
.y26f{bottom:4.972061pt;}
.y275{bottom:4.972063pt;}
.y26a{bottom:4.972065pt;}
.y25e{bottom:4.972067pt;}
.y258{bottom:4.972068pt;}
.y260{bottom:4.972069pt;}
.y218{bottom:5.998660pt;}
.y227{bottom:6.515994pt;}
.y22c{bottom:6.515995pt;}
.y216{bottom:6.515997pt;}
.y213{bottom:6.515998pt;}
.y210{bottom:6.515999pt;}
.y20d{bottom:6.516000pt;}
.y20a{bottom:6.516001pt;}
.y234{bottom:6.516003pt;}
.y231{bottom:6.516004pt;}
.y22e{bottom:6.516005pt;}
.y22a{bottom:6.516006pt;}
.y2c3{bottom:6.797327pt;}
.y240{bottom:7.134663pt;}
.y2c1{bottom:7.301335pt;}
.y208{bottom:7.368001pt;}
.y29e{bottom:7.467994pt;}
.y291{bottom:7.467995pt;}
.y27d{bottom:7.467997pt;}
.y28e{bottom:7.467998pt;}
.y27f{bottom:7.467999pt;}
.y281{bottom:7.468001pt;}
.y29c{bottom:7.468002pt;}
.y283{bottom:7.468003pt;}
.y2a7{bottom:7.468005pt;}
.y2a5{bottom:7.501335pt;}
.y24f{bottom:7.901334pt;}
.y293{bottom:7.934661pt;}
.y285{bottom:7.934662pt;}
.y28b{bottom:7.934665pt;}
.y2ac{bottom:7.934666pt;}
.y299{bottom:7.934669pt;}
.y27b{bottom:7.934671pt;}
.y24d{bottom:8.101340pt;}
.y297{bottom:8.434661pt;}
.y279{bottom:8.434668pt;}
.y2b9{bottom:8.434669pt;}
.y289{bottom:8.434670pt;}
.y2bd{bottom:8.701331pt;}
.y12{bottom:9.179999pt;}
.y14{bottom:9.180000pt;}
.y16{bottom:9.180001pt;}
.y2ce{bottom:9.705331pt;}
.y2c9{bottom:9.705339pt;}
.y238{bottom:9.834671pt;}
.y1b{bottom:10.261329pt;}
.y295{bottom:10.968002pt;}
.y2ae{bottom:11.567994pt;}
.y2b7{bottom:12.101335pt;}
.ya7{bottom:13.893689pt;}
.y145{bottom:14.367021pt;}
.yf8{bottom:15.008502pt;}
.yae{bottom:15.008516pt;}
.yf4{bottom:15.008521pt;}
.y14a{bottom:15.008526pt;}
.yaa{bottom:15.008529pt;}
.y150{bottom:15.008534pt;}
.y14d{bottom:15.008535pt;}
.y2a2{bottom:15.201328pt;}
.y277{bottom:15.201335pt;}
.y287{bottom:15.201337pt;}
.y18{bottom:16.066666pt;}
.y251{bottom:17.727997pt;}
.y21b{bottom:18.630661pt;}
.yf{bottom:22.238667pt;}
.y19{bottom:22.953333pt;}
.ya6{bottom:24.789287pt;}
.yf7{bottom:26.072283pt;}
.yad{bottom:26.072298pt;}
.yf3{bottom:26.072302pt;}
.y149{bottom:26.072307pt;}
.y2cb{bottom:26.905334pt;}
.y20{bottom:30.871014pt;}
.y21a{bottom:32.429328pt;}
.y206{bottom:34.216003pt;}
.y1c{bottom:42.666667pt;}
.y205{bottom:47.266664pt;}
.y31e{bottom:105.546693pt;}
.y73{bottom:105.679987pt;}
.y2b5{bottom:120.938637pt;}
.y31d{bottom:121.546693pt;}
.y72{bottom:121.679987pt;}
.y31c{bottom:137.546693pt;}
.y71{bottom:137.679987pt;}
.y2b4{bottom:141.405337pt;}
.y31b{bottom:153.546693pt;}
.y70{bottom:153.679987pt;}
.y2b3{bottom:160.938702pt;}
.y31a{bottom:169.546693pt;}
.y6f{bottom:169.679987pt;}
.y1f{bottom:173.053954pt;}
.y2b2{bottom:180.471987pt;}
.y319{bottom:185.546693pt;}
.y6e{bottom:185.679987pt;}
.y2b1{bottom:200.005353pt;}
.y318{bottom:201.546693pt;}
.y6d{bottom:201.679987pt;}
.y250{bottom:207.534696pt;}
.y317{bottom:217.546693pt;}
.y6c{bottom:217.679987pt;}
.yf6{bottom:219.369539pt;}
.y2b0{bottom:219.538654pt;}
.y15f{bottom:222.657074pt;}
.ya2{bottom:222.657105pt;}
.y15c{bottom:226.280578pt;}
.ydd{bottom:228.699554pt;}
.y133{bottom:232.323028pt;}
.y8a{bottom:232.323048pt;}
.y169{bottom:232.323058pt;}
.y1ac{bottom:233.527870pt;}
.y316{bottom:233.546693pt;}
.y6b{bottom:233.679987pt;}
.y12c{bottom:235.946502pt;}
.y24e{bottom:238.132013pt;}
.y13e{bottom:241.988982pt;}
.y2af{bottom:242.005369pt;}
.yc9{bottom:244.408008pt;}
.y1ba{bottom:247.222299pt;}
.y1ef{bottom:247.627112pt;}
.y1d6{bottom:247.627119pt;}
.y11c{bottom:248.031502pt;}
.y315{bottom:249.546693pt;}
.y6a{bottom:249.679987pt;}
.ya1{bottom:250.450488pt;}
.y15b{bottom:254.073982pt;}
.ydc{bottom:256.492968pt;}
.y24c{bottom:258.531980pt;}
.y132{bottom:260.116422pt;}
.y89{bottom:260.116432pt;}
.ye7{bottom:260.116452pt;}
.y168{bottom:260.116462pt;}
.y1ab{bottom:261.321264pt;}
.y1c5{bottom:261.321338pt;}
.y1ff{bottom:261.321406pt;}
.y36{bottom:261.725736pt;}
.y12b{bottom:263.739896pt;}
.y2ad{bottom:265.472019pt;}
.y314{bottom:265.546693pt;}
.y69{bottom:265.679987pt;}
.y13d{bottom:269.782376pt;}
.y179{bottom:271.392193pt;}
.yc8{bottom:272.201392pt;}
.y1b9{bottom:275.015693pt;}
.y204{bottom:275.420374pt;}
.y1ee{bottom:275.420506pt;}
.y1d5{bottom:275.420513pt;}
.y11b{bottom:275.824896pt;}
.ya0{bottom:278.243872pt;}
.yf1{bottom:278.243902pt;}
.y24b{bottom:279.332010pt;}
.y313{bottom:281.546693pt;}
.y68{bottom:281.679987pt;}
.y15a{bottom:281.867376pt;}
.ydb{bottom:284.286352pt;}
.y88{bottom:287.909816pt;}
.ye6{bottom:287.909836pt;}
.yba{bottom:287.909846pt;}
.y167{bottom:287.909856pt;}
.y1e3{bottom:288.572878pt;}
.y18a{bottom:289.114732pt;}
.y1fe{bottom:289.114800pt;}
.y35{bottom:289.519130pt;}
.y12a{bottom:291.533290pt;}
.y2ab{bottom:295.205320pt;}
.y312{bottom:297.546693pt;}
.y13c{bottom:297.575770pt;}
.y67{bottom:297.679987pt;}
.y24a{bottom:298.962626pt;}
.y178{bottom:299.185587pt;}
.y143{bottom:299.994776pt;}
.y113{bottom:301.199264pt;}
.y203{bottom:303.213767pt;}
.y1aa{bottom:303.213828pt;}
.y19c{bottom:303.213839pt;}
.y1ed{bottom:303.213899pt;}
.y1d4{bottom:303.213907pt;}
.y11a{bottom:303.618290pt;}
.y9f{bottom:306.037256pt;}
.yf0{bottom:306.037286pt;}
.yda{bottom:312.079736pt;}
.y311{bottom:313.546693pt;}
.y66{bottom:313.679987pt;}
.y2aa{bottom:315.672019pt;}
.y131{bottom:315.703210pt;}
.y16e{bottom:315.703220pt;}
.y87{bottom:315.703240pt;}
.y166{bottom:315.703250pt;}
.y1e2{bottom:316.366282pt;}
.y1b8{bottom:316.908024pt;}
.y189{bottom:316.908126pt;}
.y249{bottom:318.593322pt;}
.y129{bottom:319.326684pt;}
.y142{bottom:327.788180pt;}
.y34{bottom:329.397514pt;}
.y310{bottom:329.546693pt;}
.y65{bottom:329.679987pt;}
.y202{bottom:331.007171pt;}
.y1fd{bottom:331.007205pt;}
.y1a9{bottom:331.007212pt;}
.y19b{bottom:331.007233pt;}
.y1ec{bottom:331.007293pt;}
.y13b{bottom:331.411664pt;}
.y119{bottom:331.411684pt;}
.yc7{bottom:333.830660pt;}
.y9e{bottom:333.830680pt;}
.y2a9{bottom:335.205345pt;}
.y248{bottom:339.223978pt;}
.yd9{bottom:339.873130pt;}
.y106{bottom:339.873140pt;}
.y177{bottom:341.078026pt;}
.y16d{bottom:343.496604pt;}
.y86{bottom:343.496624pt;}
.ye5{bottom:343.496634pt;}
.y165{bottom:343.496644pt;}
.y1e1{bottom:344.159665pt;}
.y1b7{bottom:344.701417pt;}
.y188{bottom:344.701520pt;}
.y1d3{bottom:345.106346pt;}
.y30f{bottom:345.546693pt;}
.y64{bottom:345.679987pt;}
.y112{bottom:347.120087pt;}
.y130{bottom:349.539084pt;}
.y2a8{bottom:354.738670pt;}
.y141{bottom:355.581564pt;}
.y247{bottom:356.854675pt;}
.y33{bottom:357.190898pt;}
.y201{bottom:358.800555pt;}
.y1fc{bottom:358.800599pt;}
.y19a{bottom:358.800627pt;}
.y118{bottom:359.205078pt;}
.y30e{bottom:361.546693pt;}
.yc6{bottom:361.624044pt;}
.y9d{bottom:361.624064pt;}
.yef{bottom:361.624074pt;}
.y63{bottom:361.679987pt;}
.y105{bottom:367.666524pt;}
.yd8{bottom:367.666544pt;}
.y176{bottom:368.871419pt;}
.y85{bottom:371.290007pt;}
.yb9{bottom:371.290018pt;}
.y164{bottom:371.290038pt;}
.y1b6{bottom:372.494811pt;}
.y1a8{bottom:372.899706pt;}
.y1d2{bottom:372.899739pt;}
.y1eb{bottom:372.899747pt;}
.y2a6{bottom:374.271995pt;}
.y246{bottom:374.485331pt;}
.y111{bottom:374.913471pt;}
.y12f{bottom:377.332498pt;}
.y13a{bottom:377.332518pt;}
.y30d{bottom:377.546693pt;}
.y62{bottom:377.679987pt;}
.y140{bottom:383.374967pt;}
.y32{bottom:384.984301pt;}
.y1e0{bottom:386.052159pt;}
.y187{bottom:386.593972pt;}
.y1fb{bottom:386.593993pt;}
.y9c{bottom:389.417447pt;}
.yee{bottom:389.417458pt;}
.y117{bottom:393.040952pt;}
.y30c{bottom:393.546693pt;}
.y61{bottom:393.679987pt;}
.y2a4{bottom:393.805345pt;}
.y245{bottom:394.115987pt;}
.yd7{bottom:395.459927pt;}
.y175{bottom:396.664813pt;}
.y159{bottom:399.083391pt;}
.y16c{bottom:399.083401pt;}
.y84{bottom:399.083411pt;}
.ye4{bottom:399.083421pt;}
.y199{bottom:400.693072pt;}
.y1ea{bottom:400.693079pt;}
.y1a7{bottom:400.693099pt;}
.y1d1{bottom:400.693133pt;}
.y110{bottom:402.706875pt;}
.y163{bottom:405.125871pt;}
.y12e{bottom:405.125891pt;}
.y128{bottom:408.749375pt;}
.y30b{bottom:409.546693pt;}
.y60{bottom:409.679987pt;}
.y13f{bottom:411.168361pt;}
.y139{bottom:411.168381pt;}
.y31{bottom:412.777695pt;}
.y244{bottom:413.746683pt;}
.y1df{bottom:413.845553pt;}
.y1b5{bottom:414.387325pt;}
.y186{bottom:414.387366pt;}
.y1fa{bottom:414.387387pt;}
.y2a3{bottom:415.405312pt;}
.yc5{bottom:417.210841pt;}
.y9b{bottom:417.210851pt;}
.yed{bottom:417.210861pt;}
.y2e1{bottom:420.310680pt;}
.yd6{bottom:423.253311pt;}
.y104{bottom:423.253321pt;}
.y30a{bottom:425.546693pt;}
.y5f{bottom:425.679987pt;}
.y83{bottom:426.876795pt;}
.yb8{bottom:426.876805pt;}
.ye3{bottom:426.876815pt;}
.y198{bottom:428.486466pt;}
.y1e9{bottom:428.486473pt;}
.y1a6{bottom:428.486493pt;}
.y10f{bottom:430.500259pt;}
.y12d{bottom:432.919275pt;}
.y162{bottom:432.919285pt;}
.y243{bottom:433.377339pt;}
.y174{bottom:438.557259pt;}
.y2a1{bottom:438.871979pt;}
.y116{bottom:438.961755pt;}
.y309{bottom:441.546693pt;}
.y1de{bottom:441.638947pt;}
.y5e{bottom:441.679987pt;}
.y1b4{bottom:442.180719pt;}
.y185{bottom:442.180760pt;}
.y127{bottom:442.585249pt;}
.y1d0{bottom:442.585552pt;}
.y9a{bottom:445.004235pt;}
.yec{bottom:445.004255pt;}
.y2e0{bottom:447.908027pt;}
.y30{bottom:448.627729pt;}
.y242{bottom:451.007995pt;}
.yd5{bottom:451.046715pt;}
.y158{bottom:454.670179pt;}
.y16b{bottom:454.670189pt;}
.y82{bottom:454.670199pt;}
.y1f9{bottom:456.279649pt;}
.y197{bottom:456.279859pt;}
.y1e8{bottom:456.279867pt;}
.y308{bottom:457.546693pt;}
.y5d{bottom:457.679987pt;}
.y10e{bottom:458.293663pt;}
.yfe{bottom:460.712659pt;}
.ye2{bottom:460.712679pt;}
.y173{bottom:466.350653pt;}
.y115{bottom:466.755149pt;}
.y241{bottom:468.638651pt;}
.y1b3{bottom:469.974113pt;}
.y126{bottom:470.378633pt;}
.y1a5{bottom:470.378912pt;}
.y1cf{bottom:470.378946pt;}
.y138{bottom:472.797619pt;}
.yc4{bottom:472.797629pt;}
.y99{bottom:472.797639pt;}
.yeb{bottom:472.797649pt;}
.y307{bottom:473.546693pt;}
.y5c{bottom:473.679987pt;}
.y2df{bottom:475.505360pt;}
.y2a0{bottom:475.872009pt;}
.y2f{bottom:476.421123pt;}
.yd4{bottom:478.840099pt;}
.y103{bottom:478.840109pt;}
.y157{bottom:482.463583pt;}
.y81{bottom:482.463593pt;}
.y1dd{bottom:483.531355pt;}
.y1f8{bottom:484.073043pt;}
.y184{bottom:484.073162pt;}
.y1c4{bottom:484.073165pt;}
.y196{bottom:484.073253pt;}
.y10d{bottom:486.087057pt;}
.y23f{bottom:488.269350pt;}
.y161{bottom:488.506063pt;}
.ye1{bottom:488.506073pt;}
.y306{bottom:489.546693pt;}
.y5b{bottom:489.679987pt;}
.y29f{bottom:493.502667pt;}
.y114{bottom:494.548543pt;}
.y1b2{bottom:497.767507pt;}
.y125{bottom:498.172027pt;}
.y1e7{bottom:498.172272pt;}
.y1a4{bottom:498.172306pt;}
.y1ce{bottom:498.172339pt;}
.yc3{bottom:500.591023pt;}
.y98{bottom:500.591033pt;}
.yea{bottom:500.591043pt;}
.y2de{bottom:503.102693pt;}
.y2e{bottom:504.214517pt;}
.y305{bottom:505.546693pt;}
.y5a{bottom:505.679987pt;}
.yd3{bottom:506.633503pt;}
.y172{bottom:508.242827pt;}
.y23e{bottom:509.136006pt;}
.y156{bottom:510.256977pt;}
.y80{bottom:510.256987pt;}
.yb7{bottom:510.256997pt;}
.y1dc{bottom:511.324759pt;}
.y183{bottom:511.866556pt;}
.y1c3{bottom:511.866559pt;}
.y29d{bottom:513.035992pt;}
.y10c{bottom:513.880451pt;}
.ye0{bottom:516.299467pt;}
.y16a{bottom:516.299477pt;}
.y304{bottom:521.546693pt;}
.y59{bottom:521.679987pt;}
.y124{bottom:525.965421pt;}
.y1f7{bottom:525.965536pt;}
.y195{bottom:525.965570pt;}
.y1e6{bottom:525.965666pt;}
.y1a3{bottom:525.965699pt;}
.y1cd{bottom:525.965733pt;}
.y137{bottom:528.384417pt;}
.y97{bottom:528.384427pt;}
.ye9{bottom:528.384437pt;}
.y23d{bottom:529.766662pt;}
.y29b{bottom:532.569318pt;}
.yc2{bottom:534.426897pt;}
.y15e{bottom:534.426917pt;}
.y171{bottom:536.036221pt;}
.y303{bottom:537.546693pt;}
.y58{bottom:537.679987pt;}
.y155{bottom:538.050371pt;}
.y7f{bottom:538.050381pt;}
.yb6{bottom:538.050391pt;}
.y1db{bottom:539.118153pt;}
.y1b1{bottom:539.659922pt;}
.y182{bottom:539.659950pt;}
.y1c2{bottom:539.659953pt;}
.y2d{bottom:540.064551pt;}
.y102{bottom:540.469397pt;}
.y2dd{bottom:541.366693pt;}
.y10b{bottom:541.673844pt;}
.yfd{bottom:544.092851pt;}
.ydf{bottom:544.092861pt;}
.y23c{bottom:547.397318pt;}
.y29a{bottom:552.102683pt;}
.y302{bottom:553.546693pt;}
.y57{bottom:553.679987pt;}
.y123{bottom:553.758804pt;}
.y1f6{bottom:553.758930pt;}
.y194{bottom:553.758954pt;}
.y1e5{bottom:553.759059pt;}
.y1a2{bottom:553.759093pt;}
.y136{bottom:556.177811pt;}
.y96{bottom:556.177821pt;}
.yd2{bottom:562.220291pt;}
.y15d{bottom:562.220301pt;}
.yc1{bottom:562.220311pt;}
.y170{bottom:563.829614pt;}
.y23b{bottom:565.028015pt;}
.y154{bottom:565.843764pt;}
.y7e{bottom:565.843774pt;}
.y1b0{bottom:567.453316pt;}
.y1c1{bottom:567.453347pt;}
.y2c{bottom:567.857944pt;}
.y1cc{bottom:567.858138pt;}
.y101{bottom:568.262781pt;}
.y10a{bottom:569.467238pt;}
.y301{bottom:569.546693pt;}
.y56{bottom:569.679987pt;}
.y298{bottom:571.635984pt;}
.yfc{bottom:571.886244pt;}
.yb5{bottom:571.886254pt;}
.y2dc{bottom:579.630680pt;}
.y1da{bottom:581.010667pt;}
.y122{bottom:581.552208pt;}
.y193{bottom:581.552358pt;}
.y181{bottom:581.552453pt;}
.y135{bottom:583.971204pt;}
.y95{bottom:583.971214pt;}
.y23a{bottom:584.658671pt;}
.y300{bottom:585.546693pt;}
.y55{bottom:585.679987pt;}
.yd1{bottom:590.013684pt;}
.yc0{bottom:590.013694pt;}
.ye8{bottom:590.013704pt;}
.y153{bottom:593.637158pt;}
.y296{bottom:594.102659pt;}
.y1af{bottom:595.246710pt;}
.y2b{bottom:595.651338pt;}
.y1f5{bottom:595.651454pt;}
.y1a1{bottom:595.651512pt;}
.y1cb{bottom:595.651532pt;}
.y100{bottom:596.056164pt;}
.yb4{bottom:599.679638pt;}
.y7d{bottom:599.679648pt;}
.y2ff{bottom:601.546693pt;}
.y54{bottom:601.679987pt;}
.y109{bottom:603.303132pt;}
.y239{bottom:604.289326pt;}
.y16f{bottom:605.722118pt;}
.y2db{bottom:607.228013pt;}
.y1d9{bottom:608.804019pt;}
.y121{bottom:609.345602pt;}
.y1c0{bottom:609.345731pt;}
.y192{bottom:609.345751pt;}
.y134{bottom:611.764598pt;}
.y2fe{bottom:617.546693pt;}
.y294{bottom:617.569318pt;}
.y53{bottom:617.679987pt;}
.ybf{bottom:617.807078pt;}
.y94{bottom:617.807088pt;}
.y1a{bottom:622.956005pt;}
.y2a{bottom:623.444732pt;}
.y1f4{bottom:623.444848pt;}
.y1e4{bottom:623.444885pt;}
.y1a0{bottom:623.444906pt;}
.y1ca{bottom:623.444926pt;}
.y180{bottom:623.444947pt;}
.yff{bottom:623.849558pt;}
.y237{bottom:623.920009pt;}
.y7c{bottom:627.473032pt;}
.yb3{bottom:627.473042pt;}
.y152{bottom:627.473052pt;}
.y2fd{bottom:633.546693pt;}
.y52{bottom:633.679987pt;}
.y1d8{bottom:636.597413pt;}
.y120{bottom:637.138996pt;}
.y1bf{bottom:637.139125pt;}
.y1ae{bottom:637.139213pt;}
.y2da{bottom:645.492013pt;}
.y93{bottom:645.600472pt;}
.ybe{bottom:645.600482pt;}
.y292{bottom:646.102659pt;}
.yf2{bottom:647.312737pt;}
.y236{bottom:648.186665pt;}
.y108{bottom:649.223956pt;}
.y2fc{bottom:649.546693pt;}
.y51{bottom:649.679987pt;}
.y1f3{bottom:651.238242pt;}
.y191{bottom:651.238245pt;}
.y17f{bottom:651.238279pt;}
.y19f{bottom:651.238299pt;}
.y1c9{bottom:651.238320pt;}
.yd0{bottom:651.642972pt;}
.y17{bottom:653.288000pt;}
.yb2{bottom:655.266426pt;}
.y7b{bottom:655.266436pt;}
.y2c4{bottom:657.197347pt;}
.y29{bottom:659.294756pt;}
.y2c7{bottom:659.782667pt;}
.y11f{bottom:664.932390pt;}
.y1be{bottom:664.932519pt;}
.y2fb{bottom:665.546693pt;}
.y50{bottom:665.679987pt;}
.y235{bottom:665.817321pt;}
.y290{bottom:666.569338pt;}
.ybd{bottom:673.393866pt;}
.y92{bottom:673.393876pt;}
.y2c5{bottom:677.064000pt;}
.yac{bottom:677.244115pt;}
.y1d7{bottom:678.831230pt;}
.y190{bottom:679.031639pt;}
.y17e{bottom:679.031673pt;}
.y19e{bottom:679.031693pt;}
.ycf{bottom:679.436356pt;}
.y2fa{bottom:681.546693pt;}
.y4f{bottom:681.679987pt;}
.yc{bottom:682.053333pt;}
.y7a{bottom:683.059820pt;}
.yb1{bottom:683.059830pt;}
.y2d9{bottom:683.756027pt;}
.y233{bottom:685.447997pt;}
.y28f{bottom:686.102663pt;}
.y28{bottom:687.088150pt;}
.y2c6{bottom:687.380000pt;}
.yde{bottom:689.102310pt;}
.y11e{bottom:692.725784pt;}
.y15{bottom:692.767999pt;}
.y1c8{bottom:693.130630pt;}
.y1f2{bottom:693.130746pt;}
.y14f{bottom:693.993853pt;}
.y107{bottom:695.144790pt;}
.y2f9{bottom:697.546693pt;}
.y4e{bottom:697.679987pt;}
.y91{bottom:701.187260pt;}
.ybc{bottom:701.187270pt;}
.yb{bottom:701.973333pt;}
.y232{bottom:705.078674pt;}
.y28d{bottom:705.635988pt;}
.y18f{bottom:706.825033pt;}
.y17d{bottom:706.825067pt;}
.yce{bottom:707.229740pt;}
.y79{bottom:710.853224pt;}
.y2d8{bottom:711.353360pt;}
.y2f8{bottom:713.546693pt;}
.y4d{bottom:713.679987pt;}
.y2c8{bottom:714.735995pt;}
.ya9{bottom:715.816258pt;}
.y2cd{bottom:716.202669pt;}
.y160{bottom:716.895704pt;}
.y13{bottom:718.474666pt;}
.y1c7{bottom:720.924024pt;}
.y19d{bottom:720.924112pt;}
.y1f1{bottom:720.924139pt;}
.y14c{bottom:721.502239pt;}
.ya{bottom:721.813333pt;}
.y27{bottom:722.938184pt;}
.y28c{bottom:725.169334pt;}
.y230{bottom:725.709330pt;}
.y11d{bottom:726.561657pt;}
.y90{bottom:728.980664pt;}
.y219{bottom:729.159992pt;}
.y2f7{bottom:729.546693pt;}
.y4c{bottom:729.679987pt;}
.y18e{bottom:734.618427pt;}
.ycd{bottom:735.023144pt;}
.yfb{bottom:738.646607pt;}
.y78{bottom:738.646617pt;}
.ya5{bottom:743.324635pt;}
.y22f{bottom:743.340006pt;}
.y11{bottom:744.181334pt;}
.y28a{bottom:744.702655pt;}
.y2f6{bottom:745.546693pt;}
.y4b{bottom:745.679987pt;}
.y1c6{bottom:748.717417pt;}
.y200{bottom:748.717485pt;}
.y17c{bottom:748.717506pt;}
.y1f0{bottom:748.717533pt;}
.y148{bottom:749.010602pt;}
.y2d7{bottom:749.617360pt;}
.y26{bottom:750.731577pt;}
.y273{bottom:751.799990pt;}
.y9{bottom:752.293333pt;}
.y8f{bottom:756.774057pt;}
.y22d{bottom:760.970662pt;}
.y2f5{bottom:761.546693pt;}
.y4a{bottom:761.679987pt;}
.ycc{bottom:762.816527pt;}
.y77{bottom:766.440011pt;}
.y288{bottom:767.169330pt;}
.y272{bottom:769.333335pt;}
.y217{bottom:771.458660pt;}
.yfa{bottom:772.482491pt;}
.y1ad{bottom:776.510811pt;}
.y1bd{bottom:776.510879pt;}
.y17b{bottom:776.510899pt;}
.y18d{bottom:776.510920pt;}
.y2d6{bottom:777.214693pt;}
.y2f4{bottom:777.546693pt;}
.y49{bottom:777.679987pt;}
.y25{bottom:778.524971pt;}
.y22b{bottom:780.601338pt;}
.ya3{bottom:780.613751pt;}
.y8{bottom:782.853333pt;}
.y8e{bottom:784.567451pt;}
.y271{bottom:786.866661pt;}
.y147{bottom:787.582737pt;}
.ye{bottom:789.053333pt;}
.y215{bottom:789.326670pt;}
.ycb{bottom:790.609931pt;}
.y286{bottom:790.635997pt;}
.y2f3{bottom:793.546693pt;}
.y48{bottom:793.679987pt;}
.y76{bottom:794.233405pt;}
.y229{bottom:800.231994pt;}
.y144{bottom:804.027343pt;}
.y18c{bottom:804.304205pt;}
.y1bc{bottom:804.304273pt;}
.y17a{bottom:804.304293pt;}
.y26d{bottom:804.400006pt;}
.y24{bottom:806.318365pt;}
.y214{bottom:806.957336pt;}
.y2f2{bottom:809.546693pt;}
.y47{bottom:809.679987pt;}
.y8d{bottom:812.360845pt;}
.y7{bottom:813.333333pt;}
.y2d5{bottom:815.478693pt;}
.yca{bottom:818.403325pt;}
.y228{bottom:819.862670pt;}
.y75{bottom:822.026799pt;}
.y26c{bottom:823.933331pt;}
.y212{bottom:824.588002pt;}
.y2f1{bottom:825.546693pt;}
.y46{bottom:825.679987pt;}
.y284{bottom:827.636005pt;}
.yb0{bottom:828.069279pt;}
.y2c2{bottom:828.733339pt;}
.y18b{bottom:832.097599pt;}
.y1bb{bottom:832.097667pt;}
.y23{bottom:834.111759pt;}
.y226{bottom:837.493326pt;}
.yd{bottom:838.827480pt;}
.y8c{bottom:840.154239pt;}
.y2f0{bottom:841.546693pt;}
.y45{bottom:841.679987pt;}
.y211{bottom:842.218668pt;}
.y2d4{bottom:843.076027pt;}
.y26b{bottom:843.466667pt;}
.y6{bottom:843.893333pt;}
.ybb{bottom:846.196719pt;}
.y282{bottom:848.102663pt;}
.y2c0{bottom:850.266665pt;}
.y225{bottom:855.124003pt;}
.y74{bottom:855.862673pt;}
.y2ef{bottom:857.546693pt;}
.y44{bottom:857.679987pt;}
.y20f{bottom:859.849334pt;}
.y268{bottom:861.000002pt;}
.y280{bottom:867.635999pt;}
.y22{bottom:867.947633pt;}
.y2bf{bottom:869.466667pt;}
.y2ee{bottom:873.546693pt;}
.y43{bottom:873.679987pt;}
.y8b{bottom:873.990113pt;}
.y5{bottom:874.373333pt;}
.y224{bottom:874.754669pt;}
.y20e{bottom:877.480000pt;}
.y264{bottom:879.533327pt;}
.y2d3{bottom:881.340027pt;}
.y2cf{bottom:883.646080pt;}
.y1e{bottom:883.717360pt;}
.y27e{bottom:887.169334pt;}
.y2be{bottom:889.000002pt;}
.y2ed{bottom:889.546693pt;}
.y42{bottom:889.679987pt;}
.y223{bottom:894.385335pt;}
.y20c{bottom:895.110666pt;}
.y261{bottom:897.066663pt;}
.y21{bottom:901.783507pt;}
.y2ec{bottom:905.546693pt;}
.y41{bottom:905.679987pt;}
.y4{bottom:905.733333pt;}
.y27c{bottom:906.702669pt;}
.y2bc{bottom:908.533335pt;}
.y2d2{bottom:908.937360pt;}
.y20b{bottom:912.741332pt;}
.y222{bottom:915.016001pt;}
.y25f{bottom:915.599998pt;}
.y2eb{bottom:921.546693pt;}
.y40{bottom:921.679987pt;}
.y2cc{bottom:924.002679pt;}
.y2ca{bottom:924.669346pt;}
.y27a{bottom:926.235995pt;}
.y2bb{bottom:930.533332pt;}
.y209{bottom:932.371999pt;}
.y221{bottom:932.646667pt;}
.y25c{bottom:933.133333pt;}
.y2ea{bottom:937.546693pt;}
.y3f{bottom:937.679987pt;}
.y3{bottom:939.573333pt;}
.y278{bottom:948.702665pt;}
.y2ba{bottom:950.066664pt;}
.y220{bottom:950.277333pt;}
.y259{bottom:951.666664pt;}
.y207{bottom:952.002665pt;}
.y2e9{bottom:953.546693pt;}
.y3e{bottom:953.679987pt;}
.y256{bottom:969.199999pt;}
.y2e8{bottom:969.546693pt;}
.y3d{bottom:969.679987pt;}
.y21f{bottom:969.907999pt;}
.y276{bottom:972.169332pt;}
.y2b8{bottom:972.533331pt;}
.y2{bottom:973.440000pt;}
.y2d1{bottom:985.465360pt;}
.y2e7{bottom:985.546693pt;}
.y3c{bottom:985.679987pt;}
.y255{bottom:988.733332pt;}
.y21e{bottom:989.538665pt;}
.y2b6{bottom:995.999998pt;}
.y2e6{bottom:1001.546693pt;}
.y3b{bottom:1001.679987pt;}
.y1{bottom:1008.080000pt;}
.y21d{bottom:1009.169331pt;}
.y253{bottom:1009.266665pt;}
.y2d0{bottom:1013.062693pt;}
.y2e5{bottom:1017.546693pt;}
.y3a{bottom:1017.679987pt;}
.y1d{bottom:1031.013320pt;}
.y2e4{bottom:1033.546693pt;}
.y39{bottom:1033.679987pt;}
.y2e3{bottom:1049.546693pt;}
.y38{bottom:1049.679987pt;}
.y2e2{bottom:1097.546693pt;}
.y37{bottom:1097.679987pt;}
.h17{height:15.236101pt;}
.h35{height:18.141395pt;}
.h29{height:18.534667pt;}
.h33{height:20.200000pt;}
.h28{height:20.297333pt;}
.h2f{height:21.533333pt;}
.h43{height:21.866667pt;}
.h25{height:22.000000pt;}
.h3a{height:22.200000pt;}
.h27{height:22.297333pt;}
.h45{height:22.400000pt;}
.h31{height:23.066667pt;}
.h3c{height:23.133333pt;}
.h30{height:23.466667pt;}
.h41{height:24.133333pt;}
.h3e{height:24.266667pt;}
.h42{height:24.666667pt;}
.h1c{height:24.783610pt;}
.h39{height:25.133333pt;}
.h22{height:25.658364pt;}
.h38{height:26.133333pt;}
.h1b{height:26.299873pt;}
.h18{height:26.837109pt;}
.h2e{height:26.933333pt;}
.hb{height:27.373333pt;}
.h32{height:30.264000pt;}
.h3d{height:31.200000pt;}
.h40{height:31.466667pt;}
.h1a{height:31.811534pt;}
.hf{height:31.998667pt;}
.h3f{height:32.400000pt;}
.h1e{height:32.737968pt;}
.h15{height:32.761571pt;}
.h2a{height:33.351562pt;}
.h1f{height:33.564088pt;}
.hc{height:34.442708pt;}
.hd{height:34.664062pt;}
.h14{height:35.346149pt;}
.h46{height:35.546875pt;}
.h36{height:35.963542pt;}
.h19{height:36.080626pt;}
.h34{height:36.119792pt;}
.h26{height:36.145833pt;}
.h3b{height:37.031250pt;}
.h24{height:37.057292pt;}
.h1d{height:37.363645pt;}
.h37{height:37.666667pt;}
.h9{height:38.317333pt;}
.h11{height:38.453333pt;}
.h47{height:39.600000pt;}
.h2c{height:40.230313pt;}
.h2d{height:40.247240pt;}
.he{height:41.146667pt;}
.h16{height:42.415377pt;}
.h21{height:42.923850pt;}
.h20{height:42.923890pt;}
.h10{height:43.343750pt;}
.h4a{height:43.375000pt;}
.h44{height:44.437500pt;}
.h4b{height:44.468750pt;}
.ha{height:44.859375pt;}
.h2b{height:44.965333pt;}
.h13{height:46.315572pt;}
.h23{height:54.664000pt;}
.h6{height:57.375000pt;}
.h5{height:65.781915pt;}
.h4{height:76.635931pt;}
.h3{height:77.618125pt;}
.h2{height:88.944375pt;}
.h12{height:184.574293pt;}
.h49{height:184.576462pt;}
.h8{height:184.576518pt;}
.h7{height:1056.000000pt;}
.h48{height:1122.533366pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3d{width:27.505333pt;}
.w1c{width:37.133333pt;}
.w1d{width:37.333333pt;}
.w16{width:38.533333pt;}
.w32{width:40.200000pt;}
.w28{width:40.466667pt;}
.w46{width:42.000000pt;}
.we{width:42.466667pt;}
.w25{width:43.200000pt;}
.w45{width:44.000000pt;}
.w1b{width:45.200000pt;}
.w15{width:48.666667pt;}
.w30{width:49.533333pt;}
.w31{width:49.600000pt;}
.w27{width:49.866667pt;}
.w19{width:50.266667pt;}
.wd{width:52.200000pt;}
.w12{width:55.133333pt;}
.wf{width:55.333333pt;}
.w11{width:57.933333pt;}
.w14{width:59.000000pt;}
.w10{width:59.333333pt;}
.w26{width:59.400000pt;}
.w13{width:61.200000pt;}
.w1a{width:63.066667pt;}
.w2f{width:65.466667pt;}
.w40{width:76.066667pt;}
.w33{width:76.600000pt;}
.w42{width:80.866667pt;}
.w2e{width:80.933333pt;}
.w39{width:81.266667pt;}
.w29{width:83.066667pt;}
.w44{width:83.866667pt;}
.w24{width:85.000000pt;}
.w41{width:85.133333pt;}
.w18{width:86.066667pt;}
.w21{width:87.733333pt;}
.w1e{width:88.133333pt;}
.w3b{width:90.933333pt;}
.w3a{width:91.266667pt;}
.w3c{width:94.733333pt;}
.w2c{width:97.133333pt;}
.w35{width:97.200000pt;}
.w20{width:106.600000pt;}
.w2b{width:106.666667pt;}
.w38{width:110.000000pt;}
.w22{width:111.400000pt;}
.w34{width:112.266667pt;}
.w1f{width:113.666667pt;}
.w2a{width:116.066667pt;}
.w36{width:120.866667pt;}
.w5{width:186.466680pt;}
.w2d{width:229.466680pt;}
.wa{width:231.507366pt;}
.w23{width:238.933333pt;}
.w3f{width:250.600000pt;}
.w6{width:432.866653pt;}
.w3e{width:484.666667pt;}
.w43{width:487.666667pt;}
.w4{width:502.666667pt;}
.w17{width:536.666667pt;}
.w37{width:546.133347pt;}
.wc{width:558.266680pt;}
.w9{width:599.564551pt;}
.w7{width:617.666667pt;}
.w47{width:793.733317pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.wb{width:793.799963pt;}
.w8{width:793.799967pt;}
.w1{width:794.000000pt;}
.w3{width:816.000000pt;}
.x0{left:0.000000pt;}
.x19{left:4.028343pt;}
.xb{left:6.300005pt;}
.x48{left:8.566671pt;}
.x70{left:9.600000pt;}
.x14{left:10.666667pt;}
.x63{left:12.242663pt;}
.x37{left:13.466672pt;}
.x6d{left:14.713335pt;}
.x64{left:15.997335pt;}
.x47{left:18.033333pt;}
.x38{left:19.866663pt;}
.x3e{left:21.461337pt;}
.x54{left:23.299999pt;}
.x49{left:26.533326pt;}
.x6c{left:28.033333pt;}
.x39{left:29.066671pt;}
.x3c{left:30.894667pt;}
.x36{left:31.929337pt;}
.x40{left:33.294673pt;}
.x60{left:35.699999pt;}
.x56{left:38.028001pt;}
.x6{left:41.017333pt;}
.x5c{left:42.133338pt;}
.x23{left:64.506663pt;}
.x13{left:71.401920pt;}
.xd{left:81.548000pt;}
.x58{left:83.825329pt;}
.x3{left:94.559988pt;}
.x8{left:99.166667pt;}
.xc{left:100.694667pt;}
.x22{left:112.066671pt;}
.x6e{left:113.400000pt;}
.xe{left:119.753333pt;}
.x57{left:123.833337pt;}
.x9{left:133.892000pt;}
.x61{left:137.956004pt;}
.x5f{left:139.453337pt;}
.x62{left:142.396004pt;}
.x4{left:143.381893pt;}
.x11{left:145.875747pt;}
.x67{left:153.066671pt;}
.x5{left:156.666667pt;}
.x68{left:160.129329pt;}
.x24{left:161.600006pt;}
.x65{left:166.914672pt;}
.x66{left:169.857339pt;}
.x25{left:201.400004pt;}
.x7{left:205.753333pt;}
.x1{left:207.626655pt;}
.x6f{left:215.000000pt;}
.x4c{left:221.666667pt;}
.x2e{left:223.066671pt;}
.x41{left:225.466675pt;}
.x59{left:231.166671pt;}
.x1f{left:232.344382pt;}
.x1c{left:233.338370pt;}
.x1e{left:234.356538pt;}
.x1d{left:236.368684pt;}
.x20{left:246.762756pt;}
.x26{left:254.066671pt;}
.xa{left:283.966675pt;}
.x15{left:287.893307pt;}
.xf{left:298.993333pt;}
.x4d{left:299.933329pt;}
.x2f{left:306.466675pt;}
.x42{left:307.800008pt;}
.x5a{left:309.766666pt;}
.x27{left:310.733337pt;}
.x16{left:314.073307pt;}
.x10{left:325.173320pt;}
.x3a{left:331.435996pt;}
.x4a{left:338.866679pt;}
.x4e{left:340.466675pt;}
.x3b{left:348.333333pt;}
.x30{left:354.066671pt;}
.x28{left:366.000000pt;}
.x71{left:383.399984pt;}
.x2{left:396.933322pt;}
.x5b{left:398.366662pt;}
.x69{left:401.000000pt;}
.x4f{left:403.266663pt;}
.x43{left:405.066671pt;}
.x31{left:414.466675pt;}
.x29{left:418.466675pt;}
.x55{left:433.400004pt;}
.x4b{left:442.866679pt;}
.x50{left:450.133341pt;}
.x3d{left:452.266663pt;}
.x32{left:457.000020pt;}
.x2a{left:470.933329pt;}
.x6a{left:474.400004pt;}
.x5d{left:486.633345pt;}
.x44{left:490.066671pt;}
.x33{left:491.466654pt;}
.x51{left:497.066671pt;}
.x72{left:505.399984pt;}
.x1a{left:518.091898pt;}
.x12{left:523.127298pt;}
.x34{left:525.933329pt;}
.x45{left:527.866679pt;}
.x2b{left:529.466654pt;}
.x52{left:534.599996pt;}
.x3f{left:537.333354pt;}
.x6b{left:556.866679pt;}
.x18{left:559.502999pt;}
.x35{left:560.599996pt;}
.x46{left:565.666687pt;}
.x53{left:572.133321pt;}
.x5e{left:575.233321pt;}
.x2c{left:585.799988pt;}
.x2d{left:631.799988pt;}
.x21{left:673.733329pt;}
.x1b{left:708.426640pt;}
.x17{left:715.266640pt;}
}




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