
    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_8653a6f3ea2c62dec763b24f.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_ac337599ca0f1cd49d764bfb.woff')format("woff");}.ff2{font-family:ff2;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_2254f2c0a28d5760539c6374.woff')format("woff");}.ff3{font-family:ff3;line-height:1.016113;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_f4a2bc0d14674847463d137c.woff')format("woff");}.ff4{font-family:ff4;line-height:1.006348;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_34110647b362ed14e894fb06.woff')format("woff");}.ff5{font-family:ff5;line-height:1.006348;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_a9e002fe0e92d0b6004bc3e2.woff')format("woff");}.ff6{font-family:ff6;line-height:0.783203;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_defca4745d71b77212ec84c0.woff')format("woff");}.ff7{font-family:ff7;line-height:1.003906;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_5f2651ada55990729266b07e.woff')format("woff");}.ff8{font-family:ff8;line-height:1.283203;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_0d5877096246ed6899b51d2e.woff')format("woff");}.ff9{font-family:ff9;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_9f3e7d23d4857dbb96e1367b.woff')format("woff");}.ffa{font-family:ffa;line-height:1.005371;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_c119e061867b035beb070ef5.woff')format("woff");}.ffb{font-family:ffb;line-height:1.000000;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_db43aeb38562b96953de991f.woff')format("woff");}.ffc{font-family:ffc;line-height:1.005371;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_6a8179bc4b5c6919853fc051.woff')format("woff");}.ffe{font-family:ffe;line-height:0.942383;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_b431055b73e7f0d0b20c4e38.woff')format("woff");}.fff{font-family:fff;line-height:1.005371;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_54d3c013ebf333509dca59e6.woff')format("woff");}.ff10{font-family:ff10;line-height:1.005371;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.224638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224638,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.234695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234695,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.235295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235295,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.236110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236110,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.237070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237070,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.237180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237180,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.237245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237245,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);}
.m7{transform:matrix(0.258625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258625,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.259625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259625,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.260125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260125,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.260525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260525,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.261800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261800,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.261950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261950,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.271550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271550,0.000000,0.000000,0.250000,0,0);}
.m8{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;}
.ls3a{letter-spacing:-0.918000px;}
.ls29{letter-spacing:-0.750000px;}
.ls54{letter-spacing:-0.636000px;}
.ls32{letter-spacing:-0.630000px;}
.ls52{letter-spacing:-0.570000px;}
.ls25{letter-spacing:-0.512400px;}
.ls48{letter-spacing:-0.449400px;}
.ls33{letter-spacing:-0.440400px;}
.ls3e{letter-spacing:-0.422400px;}
.ls22{letter-spacing:-0.409200px;}
.ls4{letter-spacing:-0.388800px;}
.ls2b{letter-spacing:-0.366600px;}
.ls51{letter-spacing:-0.351600px;}
.ls9{letter-spacing:-0.342600px;}
.lsf{letter-spacing:-0.339600px;}
.ls41{letter-spacing:-0.305400px;}
.ls2f{letter-spacing:-0.304800px;}
.ls1f{letter-spacing:-0.285000px;}
.ls37{letter-spacing:-0.248400px;}
.ls31{letter-spacing:-0.238800px;}
.ls21{letter-spacing:-0.236400px;}
.ls4d{letter-spacing:-0.234000px;}
.ls2c{letter-spacing:-0.221400px;}
.ls4b{letter-spacing:-0.216000px;}
.ls24{letter-spacing:-0.198600px;}
.ls4c{letter-spacing:-0.198000px;}
.ls3b{letter-spacing:-0.180000px;}
.ls3{letter-spacing:-0.171000px;}
.lse{letter-spacing:-0.166800px;}
.ls14{letter-spacing:-0.144000px;}
.lsa{letter-spacing:-0.138000px;}
.ls8{letter-spacing:-0.109200px;}
.ls30{letter-spacing:-0.075600px;}
.ls28{letter-spacing:-0.072600px;}
.ls4a{letter-spacing:-0.054000px;}
.ls11{letter-spacing:-0.037440px;}
.ls46{letter-spacing:-0.036000px;}
.ls1{letter-spacing:0.000000px;}
.ls45{letter-spacing:0.000003px;}
.ls2a{letter-spacing:0.013020px;}
.ls1d{letter-spacing:0.014400px;}
.ls3c{letter-spacing:0.020880px;}
.ls20{letter-spacing:0.027000px;}
.ls7{letter-spacing:0.057600px;}
.ls0{letter-spacing:0.079200px;}
.ls44{letter-spacing:0.108000px;}
.ls18{letter-spacing:0.120000px;}
.ls42{letter-spacing:0.123600px;}
.ls39{letter-spacing:0.148800px;}
.ls38{letter-spacing:0.150000px;}
.lsb{letter-spacing:0.181200px;}
.ls12{letter-spacing:0.223800px;}
.ls26{letter-spacing:0.250200px;}
.ls16{letter-spacing:0.252000px;}
.ls2{letter-spacing:0.270600px;}
.ls3f{letter-spacing:0.297600px;}
.ls43{letter-spacing:0.301200px;}
.ls3d{letter-spacing:0.302400px;}
.ls23{letter-spacing:0.310800px;}
.ls40{letter-spacing:0.312000px;}
.ls19{letter-spacing:0.324000px;}
.ls49{letter-spacing:0.360000px;}
.ls2d{letter-spacing:0.377400px;}
.ls6{letter-spacing:0.380400px;}
.ls27{letter-spacing:0.396000px;}
.ls55{letter-spacing:0.426600px;}
.ls15{letter-spacing:0.451800px;}
.ls47{letter-spacing:0.540000px;}
.ls1a{letter-spacing:0.840000px;}
.ls2e{letter-spacing:0.858000px;}
.ls17{letter-spacing:1.061280px;}
.ls1e{letter-spacing:3.297600px;}
.lsc{letter-spacing:6.173280px;}
.ls5{letter-spacing:6.782400px;}
.ls35{letter-spacing:8.945280px;}
.ls34{letter-spacing:13.265280px;}
.ls1c{letter-spacing:14.457600px;}
.ls36{letter-spacing:18.305280px;}
.ls10{letter-spacing:20.940000px;}
.ls4f{letter-spacing:31.241280px;}
.lsd{letter-spacing:31.872000px;}
.ls1b{letter-spacing:34.121280px;}
.ls4e{letter-spacing:35.561280px;}
.ls50{letter-spacing:40.601280px;}
.ls13{letter-spacing:59.321280px;}
.ls53{letter-spacing:68.681280px;}
.sc_{text-shadow:none;}
.sc3{text-shadow:-0.015em 0 rgb(51,103,89),0 0.015em rgb(51,103,89),0.015em 0 rgb(51,103,89),0 -0.015em  rgb(51,103,89);}
.sc2{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(222,108,54),0 0.015em rgb(222,108,54),0.015em 0 rgb(222,108,54),0 -0.015em  rgb(222,108,54);}
.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;}
.sc3{-webkit-text-stroke:0.015em rgb(51,103,89);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(222,108,54);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws12{word-spacing:-66.240000px;}
.ws5{word-spacing:-31.262400px;}
.ws3{word-spacing:-31.091400px;}
.ws25{word-spacing:-28.938000px;}
.ws11{word-spacing:-28.531800px;}
.ws40{word-spacing:-28.506600px;}
.ws14{word-spacing:-28.404000px;}
.ws13{word-spacing:-28.332000px;}
.wsf{word-spacing:-28.303800px;}
.ws35{word-spacing:-28.188000px;}
.wsc{word-spacing:-28.080000px;}
.ws15{word-spacing:-22.742400px;}
.ws0{word-spacing:-21.902400px;}
.ws27{word-spacing:-21.826800px;}
.ws2a{word-spacing:-21.654000px;}
.ws26{word-spacing:-21.597600px;}
.ws2{word-spacing:-18.720000px;}
.ws10{word-spacing:-18.576000px;}
.ws1e{word-spacing:-17.618400px;}
.ws7{word-spacing:-17.602800px;}
.ws24{word-spacing:-17.599800px;}
.ws19{word-spacing:-17.533200px;}
.ws4{word-spacing:-17.493000px;}
.ws1d{word-spacing:-17.472600px;}
.wsb{word-spacing:-17.403600px;}
.ws2b{word-spacing:-17.372400px;}
.ws16{word-spacing:-17.249400px;}
.ws23{word-spacing:-17.236800px;}
.ws21{word-spacing:-17.235420px;}
.ws6{word-spacing:-17.222400px;}
.wse{word-spacing:-17.184960px;}
.ws1f{word-spacing:-17.149800px;}
.ws8{word-spacing:-17.113200px;}
.wsa{word-spacing:-17.084400px;}
.wsd{word-spacing:-17.055600px;}
.ws1b{word-spacing:-17.023800px;}
.ws17{word-spacing:-16.986000px;}
.ws28{word-spacing:-16.983600px;}
.ws1a{word-spacing:-16.937400px;}
.ws9{word-spacing:-16.879800px;}
.ws3e{word-spacing:-16.870800px;}
.ws22{word-spacing:-16.855800px;}
.ws18{word-spacing:-16.813200px;}
.ws39{word-spacing:-16.773000px;}
.ws1c{word-spacing:-16.710000px;}
.ws3f{word-spacing:-16.652400px;}
.ws29{word-spacing:-16.592400px;}
.ws20{word-spacing:-16.472400px;}
.ws2c{word-spacing:-16.304400px;}
.ws31{word-spacing:-15.849600px;}
.ws34{word-spacing:-15.838800px;}
.ws33{word-spacing:-15.661200px;}
.ws38{word-spacing:-15.537600px;}
.ws32{word-spacing:-15.232200px;}
.ws36{word-spacing:-14.040003px;}
.ws37{word-spacing:-14.004000px;}
.ws3a{word-spacing:-13.986000px;}
.ws3c{word-spacing:-13.842000px;}
.ws3b{word-spacing:-13.824000px;}
.ws3d{word-spacing:-13.806000px;}
.ws30{word-spacing:-12.840000px;}
.ws2f{word-spacing:-12.563280px;}
.ws2e{word-spacing:-12.120000px;}
.ws2d{word-spacing:-12.024000px;}
.ws1{word-spacing:0.000000px;}
._26{margin-left:-17.213040px;}
._16{margin-left:-15.499680px;}
._15{margin-left:-12.856383px;}
._18{margin-left:-10.816320px;}
._17{margin-left:-9.497760px;}
._8{margin-left:-8.334417px;}
._7{margin-left:-7.239174px;}
._0{margin-left:-5.400000px;}
._d{margin-left:-4.165200px;}
._1{margin-left:-3.135600px;}
._2{margin-left:-2.060640px;}
._6{margin-left:-1.024080px;}
._3{width:1.103040px;}
._4{width:2.159759px;}
._5{width:3.823192px;}
._19{width:4.866273px;}
._14{width:5.961600px;}
._13{width:7.481040px;}
._b{width:8.544960px;}
._1d{width:10.002240px;}
._1a{width:11.194560px;}
._1b{width:12.457440px;}
._1c{width:14.109120px;}
._20{width:15.632640px;}
._27{width:19.119600px;}
._21{width:21.018720px;}
._9{width:22.064880px;}
._24{width:23.905920px;}
._23{width:24.990000px;}
._22{width:26.635680px;}
._25{width:28.019520px;}
._1f{width:32.921280px;}
._1e{width:34.849440px;}
._a{width:36.034560px;}
._2b{width:37.416000px;}
._2a{width:59.814720px;}
._c{width:75.314880px;}
._10{width:98.962560px;}
._f{width:105.520320px;}
._e{width:109.825920px;}
._28{width:136.274880px;}
._11{width:148.672800px;}
._29{width:219.689280px;}
._12{width:222.301440px;}
.fc8{color:rgb(68,83,106);}
.fc7{color:rgb(0,0,255);}
.fc3{color:rgb(51,103,89);}
.fc4{color:rgb(222,109,54);}
.fc2{color:rgb(51,103,88);}
.fc5{color:transparent;}
.fc1{color:rgb(222,108,54);}
.fc6{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs1b{font-size:5.760000px;}
.fs16{font-size:30.240000px;}
.fs18{font-size:33.120000px;}
.fs19{font-size:38.880000px;}
.fs15{font-size:41.760000px;}
.fsa{font-size:43.200000px;}
.fs11{font-size:45.360000px;}
.fs1{font-size:48.240000px;}
.fs13{font-size:51.120000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs17{font-size:63.360000px;}
.fs2{font-size:66.240000px;}
.fs1a{font-size:69.120000px;}
.fsc{font-size:72.000000px;}
.fsb{font-size:77.760000px;}
.fs7{font-size:81.360000px;}
.fs3{font-size:84.240000px;}
.fs8{font-size:95.760000px;}
.fs9{font-size:99.360000px;}
.fs14{font-size:105.120000px;}
.fs12{font-size:108.000000px;}
.fsd{font-size:113.760000px;}
.fs6{font-size:120.240000px;}
.fse{font-size:164.880000px;}
.fs10{font-size:171.360000px;}
.fsf{font-size:234.000000px;}
.fs5{font-size:275.760000px;}
.y6d{bottom:-38.520000px;}
.y69{bottom:-37.125000px;}
.y5c{bottom:-17.820000px;}
.y6c{bottom:-16.020000px;}
.y73{bottom:-14.760000px;}
.y68{bottom:-14.580000px;}
.y32f{bottom:-0.180090px;}
.y0{bottom:0.000000px;}
.y59{bottom:0.180000px;}
.y2af{bottom:3.960000px;}
.y91{bottom:4.140000px;}
.y54{bottom:4.680000px;}
.y97{bottom:5.040000px;}
.y22{bottom:5.220000px;}
.y77{bottom:5.580000px;}
.y99{bottom:5.760000px;}
.y56{bottom:5.940000px;}
.y6b{bottom:6.300000px;}
.y20{bottom:7.200000px;}
.y4d{bottom:7.560000px;}
.y4f{bottom:7.740000px;}
.y67{bottom:7.920000px;}
.y80{bottom:8.460000px;}
.y82{bottom:8.640000px;}
.y5b{bottom:8.820000px;}
.y52{bottom:9.180000px;}
.y8e{bottom:9.900000px;}
.y79{bottom:10.440000px;}
.y7e{bottom:10.800000px;}
.y240{bottom:12.600000px;}
.y328{bottom:13.500000px;}
.y326{bottom:13.680000px;}
.y31b{bottom:14.040000px;}
.ya5{bottom:14.214000px;}
.y95{bottom:14.220000px;}
.y76{bottom:14.580000px;}
.y93{bottom:16.020000px;}
.y62{bottom:17.820000px;}
.y231{bottom:18.540000px;}
.y235{bottom:18.720000px;}
.y71{bottom:18.900000px;}
.y238{bottom:20.334000px;}
.y23a{bottom:21.780000px;}
.y2d7{bottom:22.320000px;}
.y2d4{bottom:22.500000px;}
.y2da{bottom:22.545000px;}
.y96{bottom:23.760000px;}
.ya6{bottom:23.934000px;}
.y324{bottom:24.840000px;}
.ya8{bottom:25.020000px;}
.y90{bottom:25.200000px;}
.ya3{bottom:25.380000px;}
.y6f{bottom:27.360000px;}
.y1f0{bottom:30.780000px;}
.y23f{bottom:33.660000px;}
.y92{bottom:34.740000px;}
.y230{bottom:39.645000px;}
.y234{bottom:39.780000px;}
.y61{bottom:40.320000px;}
.y237{bottom:41.394000px;}
.y9f{bottom:42.480000px;}
.y261{bottom:43.425000px;}
.ya2{bottom:45.180000px;}
.y22d{bottom:46.080000px;}
.y32d{bottom:46.125000px;}
.yae{bottom:46.260000px;}
.y16e{bottom:46.290000px;}
.y24{bottom:54.180000px;}
.y22f{bottom:60.705000px;}
.y233{bottom:60.840000px;}
.y260{bottom:61.785000px;}
.y65{bottom:62.820000px;}
.y9e{bottom:63.720000px;}
.ya1{bottom:65.160000px;}
.yad{bottom:67.140000px;}
.y21{bottom:67.176000px;}
.y32c{bottom:67.185000px;}
.y7b{bottom:78.156000px;}
.y25f{bottom:80.145000px;}
.ya0{bottom:85.140000px;}
.y9d{bottom:85.320000px;}
.y64{bottom:85.350000px;}
.yac{bottom:88.200000px;}
.y25e{bottom:98.505000px;}
.y1bd{bottom:102.996000px;}
.y2b7{bottom:104.976000px;}
.y331{bottom:105.516000px;}
.y1bc{bottom:107.496000px;}
.yab{bottom:109.260000px;}
.y11a{bottom:109.836000px;}
.y1fd{bottom:111.276000px;}
.y1e7{bottom:115.236000px;}
.y25d{bottom:116.865000px;}
.y1a3{bottom:117.396000px;}
.y1bb{bottom:119.376000px;}
.y225{bottom:120.276000px;}
.y181{bottom:123.156000px;}
.y1ba{bottom:123.876000px;}
.y2d1{bottom:126.036000px;}
.y330{bottom:126.576000px;}
.yaa{bottom:130.140000px;}
.y119{bottom:130.896000px;}
.y25c{bottom:135.225000px;}
.y2ad{bottom:135.936000px;}
.y1e6{bottom:136.116000px;}
.y1b9{bottom:137.016000px;}
.y1a2{bottom:138.456000px;}
.ya4{bottom:139.536000px;}
.y2b6{bottom:139.896000px;}
.y224{bottom:141.336000px;}
.y1fc{bottom:141.516000px;}
.y144{bottom:142.236000px;}
.y180{bottom:144.036000px;}
.y2f2{bottom:144.936000px;}
.y304{bottom:145.296000px;}
.y2d0{bottom:147.096000px;}
.y236{bottom:148.176000px;}
.y118{bottom:151.770000px;}
.y281{bottom:151.950000px;}
.y25b{bottom:153.585000px;}
.y1e5{bottom:157.170000px;}
.y1a1{bottom:159.510000px;}
.y2b5{bottom:161.130000px;}
.y223{bottom:162.390000px;}
.y143{bottom:163.110000px;}
.y17f{bottom:165.090000px;}
.y2f1{bottom:165.990000px;}
.y303{bottom:166.350000px;}
.y2cf{bottom:167.970000px;}
.y1fb{bottom:171.750000px;}
.y25a{bottom:172.125000px;}
.y117{bottom:172.830000px;}
.y2b4{bottom:177.870000px;}
.y1e4{bottom:178.230000px;}
.y222{bottom:183.270000px;}
.y142{bottom:184.170000px;}
.y2ac{bottom:184.890000px;}
.y17e{bottom:186.150000px;}
.y2f0{bottom:186.870000px;}
.y302{bottom:187.410000px;}
.y2ce{bottom:189.030000px;}
.y9c{bottom:189.750000px;}
.y259{bottom:190.485000px;}
.y116{bottom:193.890000px;}
.y1e3{bottom:199.110000px;}
.y1a0{bottom:200.370000px;}
.y1fa{bottom:202.170000px;}
.y1d{bottom:203.610000px;}
.y221{bottom:204.330000px;}
.y141{bottom:205.230000px;}
.y17d{bottom:207.030000px;}
.y2ab{bottom:207.390000px;}
.y2ef{bottom:207.930000px;}
.y301{bottom:208.290000px;}
.y258{bottom:208.845000px;}
.y2cd{bottom:210.090000px;}
.y1b8{bottom:210.990000px;}
.y115{bottom:214.770000px;}
.y280{bottom:214.950000px;}
.y232{bottom:215.670000px;}
.y2d8{bottom:216.750000px;}
.y1e2{bottom:220.170000px;}
.y140{bottom:226.110000px;}
.y257{bottom:227.205000px;}
.y17c{bottom:228.090000px;}
.y2aa{bottom:228.630000px;}
.y2ee{bottom:228.990000px;}
.y300{bottom:229.350000px;}
.y1c{bottom:230.250000px;}
.y1b7{bottom:230.970000px;}
.y1f9{bottom:232.410000px;}
.y2d6{bottom:234.390000px;}
.y114{bottom:235.830000px;}
.y216{bottom:240.330000px;}
.y1e1{bottom:241.230000px;}
.y256{bottom:245.565000px;}
.y13f{bottom:247.170000px;}
.y220{bottom:247.710000px;}
.y19f{bottom:248.970000px;}
.y17b{bottom:249.150000px;}
.y2ed{bottom:249.870000px;}
.y2ff{bottom:250.410000px;}
.y1b6{bottom:251.850000px;}
.y2cc{bottom:252.030000px;}
.y1b{bottom:252.210000px;}
.y113{bottom:256.890000px;}
.y253{bottom:259.950000px;}
.y279{bottom:260.310000px;}
.y1e0{bottom:262.110000px;}
.y215{bottom:262.290000px;}
.y1f8{bottom:262.650000px;}
.y2a9{bottom:263.370000px;}
.y255{bottom:263.925000px;}
.y4b{bottom:266.610000px;}
.y13e{bottom:268.230000px;}
.y17a{bottom:270.030000px;}
.y2ec{bottom:270.930000px;}
.y2fe{bottom:271.290000px;}
.y1b4{bottom:272.910000px;}
.y1a{bottom:273.090000px;}
.y112{bottom:277.770000px;}
.y27f{bottom:278.670000px;}
.y1b5{bottom:279.750000px;}
.y252{bottom:281.010000px;}
.y278{bottom:281.370000px;}
.y254{bottom:282.285000px;}
.y1df{bottom:283.170000px;}
.y214{bottom:283.890000px;}
.y19e{bottom:285.690000px;}
.y4a{bottom:287.490000px;}
.y70{bottom:288.030000px;}
.y13d{bottom:289.110000px;}
.y179{bottom:291.090000px;}
.y2eb{bottom:291.990000px;}
.y2fd{bottom:292.350000px;}
.y1f7{bottom:293.070000px;}
.y1b3{bottom:293.970000px;}
.y19{bottom:295.230000px;}
.y2b2{bottom:297.750000px;}
.y32b{bottom:298.650000px;}
.y111{bottom:298.830000px;}
.y74{bottom:299.910000px;}
.y9b{bottom:301.170000px;}
.y251{bottom:301.890000px;}
.y6a{bottom:302.250000px;}
.y277{bottom:302.430000px;}
.y22e{bottom:302.610000px;}
.y1de{bottom:304.230000px;}
.y49{bottom:304.770000px;}
.y13c{bottom:310.170000px;}
.y178{bottom:312.150000px;}
.y2ea{bottom:312.870000px;}
.y2fc{bottom:313.410000px;}
.y1b2{bottom:314.850000px;}
.y110{bottom:319.890000px;}
.y18{bottom:320.250000px;}
.y213{bottom:320.430000px;}
.y48{bottom:321.870000px;}
.y250{bottom:322.950000px;}
.y1f6{bottom:323.310000px;}
.y1dd{bottom:325.110000px;}
.y6e{bottom:329.115000px;}
.y27e{bottom:329.655000px;}
.y13b{bottom:331.275000px;}
.y177{bottom:333.075000px;}
.y2e9{bottom:333.975000px;}
.y2fb{bottom:334.335000px;}
.y9a{bottom:335.955000px;}
.y19d{bottom:336.675000px;}
.y2cb{bottom:336.855000px;}
.y47{bottom:339.195000px;}
.y10f{bottom:340.815000px;}
.y17{bottom:341.355000px;}
.y75{bottom:343.155000px;}
.y24f{bottom:344.055000px;}
.y276{bottom:344.415000px;}
.y162{bottom:347.115000px;}
.y66{bottom:348.015000px;}
.y27d{bottom:350.535000px;}
.y72{bottom:351.255000px;}
.y13a{bottom:352.155000px;}
.y1f5{bottom:353.595000px;}
.y176{bottom:354.135000px;}
.y2e8{bottom:355.035000px;}
.y2fa{bottom:355.395000px;}
.y46{bottom:356.475000px;}
.y1b1{bottom:357.015000px;}
.y19c{bottom:358.275000px;}
.y10e{bottom:361.875000px;}
.y16{bottom:362.235000px;}
.y24e{bottom:364.935000px;}
.y275{bottom:365.475000px;}
.y1dc{bottom:366.195000px;}
.y161{bottom:368.175000px;}
.y98{bottom:370.875000px;}
.y139{bottom:373.215000px;}
.y45{bottom:373.755000px;}
.y175{bottom:375.195000px;}
.y2e7{bottom:375.915000px;}
.y2f9{bottom:376.455000px;}
.y1b0{bottom:377.895000px;}
.y19b{bottom:379.155000px;}
.y10d{bottom:382.935000px;}
.y15{bottom:383.295000px;}
.y1f4{bottom:384.015000px;}
.y274{bottom:386.355000px;}
.y2ca{bottom:387.795000px;}
.y160{bottom:389.235000px;}
.y22c{bottom:389.415000px;}
.y44{bottom:391.035000px;}
.y32a{bottom:391.935000px;}
.y138{bottom:394.275000px;}
.y174{bottom:396.075000px;}
.y2e6{bottom:396.975000px;}
.y2f8{bottom:397.335000px;}
.y1af{bottom:398.955000px;}
.y19a{bottom:400.215000px;}
.y10c{bottom:403.815000px;}
.y14{bottom:404.355000px;}
.y94{bottom:405.435000px;}
.y273{bottom:407.415000px;}
.y24d{bottom:407.775000px;}
.y43{bottom:408.135000px;}
.y2c9{bottom:409.395000px;}
.y15f{bottom:410.115000px;}
.y1db{bottom:410.835000px;}
.y1f3{bottom:414.255000px;}
.y137{bottom:415.155000px;}
.y173{bottom:417.135000px;}
.y2e5{bottom:418.035000px;}
.y2f7{bottom:418.395000px;}
.y1ae{bottom:420.015000px;}
.y199{bottom:421.275000px;}
.y10b{bottom:424.875000px;}
.y42{bottom:425.415000px;}
.y306{bottom:427.035000px;}
.y272{bottom:428.475000px;}
.y13{bottom:429.915000px;}
.y2c8{bottom:430.455000px;}
.y15e{bottom:431.175000px;}
.y329{bottom:431.715000px;}
.y1da{bottom:431.895000px;}
.y136{bottom:436.215000px;}
.y172{bottom:438.195000px;}
.y2e4{bottom:438.915000px;}
.y2f6{bottom:439.455000px;}
.y1ad{bottom:440.895000px;}
.y198{bottom:442.155000px;}
.y41{bottom:442.695000px;}
.y1f2{bottom:444.495000px;}
.y305{bottom:448.095000px;}
.y271{bottom:449.355000px;}
.y2c7{bottom:451.515000px;}
.yd7{bottom:451.875000px;}
.y15d{bottom:452.235000px;}
.y1d9{bottom:452.775000px;}
.y8f{bottom:455.475000px;}
.y135{bottom:457.275000px;}
.y24c{bottom:458.715000px;}
.y171{bottom:459.075000px;}
.y40{bottom:459.975000px;}
.y2f5{bottom:460.335000px;}
.y22b{bottom:461.415000px;}
.y1ac{bottom:461.955000px;}
.y197{bottom:463.215000px;}
.y5e{bottom:465.555000px;}
.y53{bottom:465.915000px;}
.y10a{bottom:467.715000px;}
.yf2{bottom:469.155000px;}
.y270{bottom:470.415000px;}
.y327{bottom:471.675000px;}
.y2c6{bottom:472.395000px;}
.y15c{bottom:473.115000px;}
.y1d8{bottom:473.835000px;}
.yd6{bottom:474.375000px;}
.y1f1{bottom:474.915000px;}
.y3f{bottom:477.255000px;}
.y12{bottom:477.795000px;}
.y134{bottom:478.155000px;}
.y24b{bottom:479.775000px;}
.y2e3{bottom:481.035000px;}
.y2f4{bottom:481.395000px;}
.y1ab{bottom:483.015000px;}
.y196{bottom:484.275000px;}
.yf1{bottom:490.035000px;}
.y26f{bottom:491.475000px;}
.y2c5{bottom:493.455000px;}
.y15b{bottom:494.175000px;}
.y1d7{bottom:494.895000px;}
.y2b3{bottom:495.255000px;}
.y3e{bottom:496.155000px;}
.yd5{bottom:496.875000px;}
.y22a{bottom:497.955000px;}
.y133{bottom:499.215000px;}
.y170{bottom:500.115000px;}
.y24a{bottom:500.655000px;}
.y2e2{bottom:501.915000px;}
.y1aa{bottom:503.895000px;}
.y195{bottom:505.155000px;}
.yf0{bottom:511.095000px;}
.y325{bottom:511.275000px;}
.y2b1{bottom:512.175000px;}
.y26e{bottom:512.355000px;}
.y2c4{bottom:514.515000px;}
.y294{bottom:514.875000px;}
.y15a{bottom:515.235000px;}
.y1d6{bottom:515.775000px;}
.y8d{bottom:516.675000px;}
.y3d{bottom:518.475000px;}
.y109{bottom:518.655000px;}
.y229{bottom:519.015000px;}
.yd4{bottom:519.375000px;}
.y315{bottom:519.735000px;}
.y249{bottom:521.715000px;}
.y2f3{bottom:522.255000px;}
.y2e1{bottom:522.975000px;}
.y1a9{bottom:524.955000px;}
.y194{bottom:526.215000px;}
.y63{bottom:528.555000px;}
.yef{bottom:532.155000px;}
.y26d{bottom:533.415000px;}
.y1ef{bottom:535.395000px;}
.y293{bottom:535.935000px;}
.y159{bottom:536.115000px;}
.y108{bottom:539.715000px;}
.y228{bottom:540.075000px;}
.y314{bottom:540.615000px;}
.y3c{bottom:540.975000px;}
.yd3{bottom:541.875000px;}
.y132{bottom:542.055000px;}
.y248{bottom:542.775000px;}
.y2d5{bottom:544.215000px;}
.y16f{bottom:544.755000px;}
.y1a8{bottom:546.015000px;}
.y193{bottom:547.275000px;}
.y323{bottom:551.055000px;}
.y11{bottom:551.955000px;}
.yee{bottom:553.035000px;}
.y26c{bottom:554.475000px;}
.y21f{bottom:554.655000px;}
.y2c3{bottom:556.455000px;}
.y292{bottom:556.815000px;}
.y158{bottom:557.175000px;}
.y1d5{bottom:558.615000px;}
.y8c{bottom:559.695000px;}
.y107{bottom:560.595000px;}
.y227{bottom:561.135000px;}
.y313{bottom:561.675000px;}
.y2d3{bottom:561.855000px;}
.y3b{bottom:563.475000px;}
.y247{bottom:563.655000px;}
.y2e0{bottom:564.015000px;}
.yd2{bottom:564.375000px;}
.y16d{bottom:566.535000px;}
.y1a7{bottom:566.895000px;}
.y192{bottom:568.155000px;}
.yed{bottom:574.095000px;}
.y26b{bottom:575.355000px;}
.y21e{bottom:575.715000px;}
.y212{bottom:575.895000px;}
.y2c2{bottom:577.515000px;}
.y291{bottom:577.875000px;}
.y157{bottom:578.235000px;}
.y131{bottom:578.775000px;}
.y106{bottom:581.655000px;}
.y2a8{bottom:582.015000px;}
.y312{bottom:582.735000px;}
.y246{bottom:584.715000px;}
.y3a{bottom:585.975000px;}
.yd1{bottom:586.695000px;}
.y1a6{bottom:587.955000px;}
.y191{bottom:589.215000px;}
.y1ee{bottom:591.735000px;}
.yec{bottom:595.155000px;}
.y1d4{bottom:595.515000px;}
.y26a{bottom:596.445000px;}
.y211{bottom:596.805000px;}
.y2c1{bottom:598.425000px;}
.y290{bottom:598.965000px;}
.y156{bottom:599.145000px;}
.y322{bottom:602.385000px;}
.y105{bottom:602.745000px;}
.y8b{bottom:603.465000px;}
.y311{bottom:603.645000px;}
.y245{bottom:605.805000px;}
.y5f{bottom:607.605000px;}
.y39{bottom:608.505000px;}
.y1a5{bottom:609.045000px;}
.yd0{bottom:609.225000px;}
.y190{bottom:610.305000px;}
.y2df{bottom:612.465000px;}
.yeb{bottom:616.065000px;}
.y269{bottom:617.505000px;}
.y210{bottom:617.865000px;}
.y2c0{bottom:619.485000px;}
.y28f{bottom:619.845000px;}
.y155{bottom:620.205000px;}
.y104{bottom:623.625000px;}
.y321{bottom:623.805000px;}
.y2a7{bottom:624.345000px;}
.y310{bottom:624.705000px;}
.y10{bottom:625.965000px;}
.y1ed{bottom:626.865000px;}
.y244{bottom:627.585000px;}
.y130{bottom:629.745000px;}
.y1a4{bottom:629.925000px;}
.y38{bottom:631.005000px;}
.y18f{bottom:631.185000px;}
.ycf{bottom:631.725000px;}
.yea{bottom:637.125000px;}
.y268{bottom:638.385000px;}
.y21d{bottom:638.745000px;}
.y16c{bottom:638.925000px;}
.y2bf{bottom:640.545000px;}
.y28e{bottom:640.905000px;}
.y154{bottom:641.265000px;}
.y103{bottom:644.685000px;}
.y320{bottom:645.225000px;}
.y2a6{bottom:645.405000px;}
.y30f{bottom:645.765000px;}
.y1d3{bottom:646.485000px;}
.y1ec{bottom:647.745000px;}
.y2de{bottom:649.185000px;}
.y12f{bottom:650.985000px;}
.y18e{bottom:652.245000px;}
.y37{bottom:653.325000px;}
.yce{bottom:654.225000px;}
.y8a{bottom:657.645000px;}
.ye9{bottom:658.185000px;}
.y267{bottom:659.445000px;}
.y20f{bottom:659.805000px;}
.y2be{bottom:661.425000px;}
.y28d{bottom:661.965000px;}
.y153{bottom:662.145000px;}
.y102{bottom:665.745000px;}
.y2a5{bottom:666.465000px;}
.y1d2{bottom:667.365000px;}
.y31f{bottom:667.905000px;}
.y1eb{bottom:668.805000px;}
.y12e{bottom:672.045000px;}
.y18d{bottom:673.305000px;}
.y36{bottom:675.825000px;}
.ycd{bottom:676.725000px;}
.ye8{bottom:679.065000px;}
.y89{bottom:679.965000px;}
.y266{bottom:680.505000px;}
.y20e{bottom:680.865000px;}
.y2bd{bottom:682.485000px;}
.y28c{bottom:682.845000px;}
.y152{bottom:683.205000px;}
.y51{bottom:684.105000px;}
.y5d{bottom:686.625000px;}
.y2a4{bottom:687.345000px;}
.y1d1{bottom:688.425000px;}
.y30e{bottom:688.605000px;}
.y16b{bottom:690.225000px;}
.y1ea{bottom:690.585000px;}
.y12d{bottom:692.925000px;}
.y18c{bottom:694.185000px;}
.y35{bottom:698.325000px;}
.ycc{bottom:699.225000px;}
.yf{bottom:699.945000px;}
.ye7{bottom:700.125000px;}
.y21c{bottom:700.845000px;}
.y265{bottom:701.385000px;}
.y20d{bottom:701.925000px;}
.y2bc{bottom:703.545000px;}
.y28b{bottom:703.905000px;}
.y151{bottom:704.265000px;}
.y101{bottom:707.685000px;}
.y2a3{bottom:708.405000px;}
.yc0{bottom:709.305000px;}
.y1d0{bottom:709.485000px;}
.y12c{bottom:713.985000px;}
.y88{bottom:714.885000px;}
.y18b{bottom:715.245000px;}
.y34{bottom:720.825000px;}
.ye6{bottom:721.185000px;}
.ycb{bottom:721.545000px;}
.y264{bottom:722.445000px;}
.y20c{bottom:722.805000px;}
.y2bb{bottom:724.425000px;}
.y28a{bottom:724.965000px;}
.y150{bottom:725.145000px;}
.y27c{bottom:728.565000px;}
.y100{bottom:728.745000px;}
.y2a2{bottom:729.465000px;}
.y1cf{bottom:730.365000px;}
.y1e9{bottom:732.165000px;}
.ybf{bottom:733.785000px;}
.y12b{bottom:735.045000px;}
.y18a{bottom:736.305000px;}
.y30d{bottom:739.545000px;}
.y16a{bottom:741.525000px;}
.ye5{bottom:742.065000px;}
.y2dd{bottom:742.245000px;}
.y33{bottom:743.325000px;}
.y263{bottom:743.505000px;}
.y20b{bottom:743.865000px;}
.yca{bottom:744.045000px;}
.y21b{bottom:745.485000px;}
.y289{bottom:745.845000px;}
.y14f{bottom:746.205000px;}
.y87{bottom:749.625000px;}
.y2a1{bottom:750.345000px;}
.y27b{bottom:750.705000px;}
.y243{bottom:751.245000px;}
.y1ce{bottom:751.425000px;}
.y12a{bottom:755.925000px;}
.y5a{bottom:757.185000px;}
.y50{bottom:757.905000px;}
.y30c{bottom:761.145000px;}
.y31e{bottom:761.325000px;}
.ye{bottom:762.225000px;}
.ye4{bottom:763.125000px;}
.y20a{bottom:764.925000px;}
.y32{bottom:765.825000px;}
.y21a{bottom:766.365000px;}
.yc9{bottom:766.545000px;}
.y288{bottom:766.905000px;}
.y14e{bottom:767.265000px;}
.ybe{bottom:768.345000px;}
.yff{bottom:770.685000px;}
.y2a0{bottom:771.405000px;}
.y1cd{bottom:772.485000px;}
.y1e8{bottom:776.805000px;}
.y129{bottom:776.985000px;}
.y189{bottom:778.245000px;}
.y30b{bottom:782.205000px;}
.yd{bottom:784.005000px;}
.ye3{bottom:784.185000px;}
.y86{bottom:784.365000px;}
.y209{bottom:785.805000px;}
.y262{bottom:786.345000px;}
.y219{bottom:787.425000px;}
.y287{bottom:787.965000px;}
.y31{bottom:788.145000px;}
.yb4{bottom:788.325000px;}
.yc8{bottom:789.045000px;}
.yfe{bottom:791.745000px;}
.y29f{bottom:792.465000px;}
.y169{bottom:792.645000px;}
.y1cc{bottom:793.365000px;}
.y128{bottom:798.045000px;}
.y60{bottom:798.585000px;}
.y188{bottom:799.305000px;}
.y31d{bottom:801.645000px;}
.y242{bottom:802.545000px;}
.y30a{bottom:803.085000px;}
.ybd{bottom:803.625000px;}
.yc{bottom:804.885000px;}
.ye2{bottom:805.065000px;}
.y2dc{bottom:805.245000px;}
.y208{bottom:806.865000px;}
.y218{bottom:808.485000px;}
.y286{bottom:808.845000px;}
.y14d{bottom:809.205000px;}
.yb3{bottom:809.385000px;}
.y30{bottom:810.645000px;}
.yc7{bottom:811.545000px;}
.yfd{bottom:812.625000px;}
.y29e{bottom:813.345000px;}
.y1cb{bottom:814.425000px;}
.y127{bottom:818.925000px;}
.y85{bottom:819.105000px;}
.y187{bottom:820.185000px;}
.y309{bottom:824.145000px;}
.yb{bottom:825.945000px;}
.ye1{bottom:826.125000px;}
.y2db{bottom:826.845000px;}
.y207{bottom:827.925000px;}
.y168{bottom:829.185000px;}
.y2ba{bottom:829.545000px;}
.y285{bottom:829.905000px;}
.yb2{bottom:830.265000px;}
.y2b0{bottom:830.985000px;}
.y241{bottom:832.785000px;}
.y2f{bottom:833.145000px;}
.yfc{bottom:833.685000px;}
.y29d{bottom:834.405000px;}
.y1ca{bottom:835.485000px;}
.y58{bottom:837.645000px;}
.ybc{bottom:838.905000px;}
.y226{bottom:839.265000px;}
.y2d2{bottom:839.805000px;}
.y126{bottom:839.985000px;}
.y186{bottom:841.245000px;}
.y31c{bottom:841.785000px;}
.yc6{bottom:843.225000px;}
.y2d9{bottom:844.485000px;}
.ya{bottom:847.005000px;}
.ye0{bottom:847.185000px;}
.y2ae{bottom:847.725000px;}
.y206{bottom:848.805000px;}
.y167{bottom:850.065000px;}
.y2b9{bottom:850.425000px;}
.y284{bottom:850.965000px;}
.y14c{bottom:851.145000px;}
.yb1{bottom:851.325000px;}
.y84{bottom:853.845000px;}
.yfb{bottom:854.745000px;}
.y29c{bottom:855.465000px;}
.y2e{bottom:855.645000px;}
.y1c9{bottom:856.365000px;}
.y125{bottom:861.045000px;}
.y217{bottom:861.585000px;}
.y185{bottom:862.305000px;}
.y23e{bottom:863.250000px;}
.y308{bottom:867.030000px;}
.y9{bottom:867.930000px;}
.ydf{bottom:868.110000px;}
.y205{bottom:869.910000px;}
.y166{bottom:871.170000px;}
.y14b{bottom:872.250000px;}
.yb0{bottom:872.430000px;}
.ybb{bottom:874.230000px;}
.yfa{bottom:875.670000px;}
.y29b{bottom:876.390000px;}
.y1c8{bottom:877.470000px;}
.y2d{bottom:878.190000px;}
.y124{bottom:881.970000px;}
.y31a{bottom:882.150000px;}
.y184{bottom:883.230000px;}
.yc5{bottom:887.010000px;}
.y83{bottom:888.810000px;}
.y8{bottom:888.990000px;}
.yde{bottom:889.170000px;}
.y204{bottom:891.690000px;}
.y165{bottom:892.230000px;}
.y14a{bottom:893.310000px;}
.y283{bottom:893.850000px;}
.yaf{bottom:894.030000px;}
.yf9{bottom:896.730000px;}
.y29a{bottom:897.450000px;}
.y1c7{bottom:898.530000px;}
.y4e{bottom:900.510000px;}
.y2c{bottom:900.690000px;}
.y123{bottom:903.030000px;}
.y57{bottom:903.570000px;}
.y183{bottom:904.110000px;}
.yba{bottom:909.510000px;}
.y7{bottom:910.050000px;}
.ydd{bottom:910.230000px;}
.y164{bottom:913.110000px;}
.y149{bottom:914.190000px;}
.ya9{bottom:916.710000px;}
.yf8{bottom:917.790000px;}
.y307{bottom:917.970000px;}
.y299{bottom:918.510000px;}
.y1c6{bottom:919.410000px;}
.y203{bottom:922.110000px;}
.y319{bottom:922.470000px;}
.y2b{bottom:923.010000px;}
.y81{bottom:923.550000px;}
.y122{bottom:924.090000px;}
.y6{bottom:930.930000px;}
.ydc{bottom:931.110000px;}
.y148{bottom:935.250000px;}
.yf7{bottom:938.670000px;}
.y298{bottom:939.390000px;}
.y1c5{bottom:940.470000px;}
.yc4{bottom:942.090000px;}
.y182{bottom:942.450000px;}
.y2b8{bottom:944.250000px;}
.y282{bottom:944.790000px;}
.yb9{bottom:944.970000px;}
.y2a{bottom:945.510000px;}
.y5{bottom:951.990000px;}
.ydb{bottom:952.170000px;}
.y202{bottom:952.350000px;}
.y23d{bottom:953.430000px;}
.y163{bottom:954.150000px;}
.y147{bottom:956.310000px;}
.y7f{bottom:958.290000px;}
.yf6{bottom:959.730000px;}
.y297{bottom:960.450000px;}
.y1c4{bottom:961.530000px;}
.y121{bottom:966.030000px;}
.y29{bottom:968.010000px;}
.yc3{bottom:969.450000px;}
.y4c{bottom:969.630000px;}
.y55{bottom:971.430000px;}
.yda{bottom:973.230000px;}
.y318{bottom:974.130000px;}
.y146{bottom:977.190000px;}
.yb8{bottom:980.250000px;}
.y296{bottom:981.510000px;}
.y1c3{bottom:982.410000px;}
.y201{bottom:982.590000px;}
.y120{bottom:987.090000px;}
.y28{bottom:990.510000px;}
.yc2{bottom:991.950000px;}
.y7d{bottom:992.850000px;}
.yd9{bottom:994.110000px;}
.y317{bottom:995.370000px;}
.yf5{bottom:1002.570000px;}
.y1c2{bottom:1003.470000px;}
.y23c{bottom:1004.730000px;}
.y11f{bottom:1007.970000px;}
.y27{bottom:1013.010000px;}
.yc1{bottom:1014.450000px;}
.yd8{bottom:1015.170000px;}
.yb7{bottom:1016.970000px;}
.y145{bottom:1020.030000px;}
.y295{bottom:1024.170000px;}
.y1c1{bottom:1024.530000px;}
.y11e{bottom:1029.030000px;}
.y26{bottom:1035.510000px;}
.y7c{bottom:1036.230000px;}
.y316{bottom:1038.930000px;}
.y4{bottom:1042.890000px;}
.y200{bottom:1043.250000px;}
.y1c0{bottom:1045.410000px;}
.y11d{bottom:1050.090000px;}
.y23b{bottom:1056.030000px;}
.yf4{bottom:1058.190000px;}
.y3{bottom:1064.310000px;}
.yb6{bottom:1065.390000px;}
.y1bf{bottom:1066.470000px;}
.y11c{bottom:1070.970000px;}
.ya7{bottom:1073.130000px;}
.y1ff{bottom:1073.490000px;}
.y25{bottom:1079.790000px;}
.y2{bottom:1085.190000px;}
.y239{bottom:1086.270000px;}
.y78{bottom:1090.950000px;}
.y11b{bottom:1092.030000px;}
.y1fe{bottom:1103.910000px;}
.y1{bottom:1104.630000px;}
.y1be{bottom:1107.330000px;}
.yf3{bottom:1112.370000px;}
.yb5{bottom:1113.090000px;}
.y27a{bottom:1114.350000px;}
.y1f{bottom:1170.720000px;}
.y1e{bottom:1200.471870px;}
.y23{bottom:1207.980000px;}
.y7a{bottom:1209.960000px;}
.y32e{bottom:1262.880000px;}
.h6b{height:4.412813px;}
.h19{height:20.880000px;}
.h46{height:21.060000px;}
.h47{height:21.096000px;}
.h57{height:21.600000px;}
.h17{height:22.140000px;}
.h22{height:22.500000px;}
.h42{height:23.167266px;}
.h1d{height:23.940000px;}
.h14{height:25.200000px;}
.h15{height:25.380000px;}
.h26{height:25.560000px;}
.h27{height:25.596000px;}
.h1a{height:25.920000px;}
.h16{height:26.820000px;}
.h10{height:27.540000px;}
.he{height:29.520000px;}
.h5c{height:29.691563px;}
.h69{height:30.240000px;}
.h68{height:30.600000px;}
.h63{height:30.960000px;}
.h64{height:30.996000px;}
.h65{height:31.140000px;}
.h21{height:31.500000px;}
.h41{height:31.992891px;}
.h29{height:33.840000px;}
.h25{height:34.200000px;}
.h6c{height:34.543125px;}
.h48{height:34.640156px;}
.h36{height:34.750898px;}
.h20{height:35.820000px;}
.h4a{height:36.910195px;}
.h43{height:36.957305px;}
.h51{height:38.520000px;}
.h4b{height:39.038906px;}
.h3f{height:39.163711px;}
.h2b{height:40.680000px;}
.h2d{height:40.860000px;}
.h23{height:41.076000px;}
.h53{height:41.238281px;}
.h3a{height:41.317383px;}
.h61{height:41.370117px;}
.h67{height:41.760000px;}
.h3b{height:41.940000px;}
.hd{height:42.335156px;}
.h1e{height:44.100000px;}
.h4d{height:45.724570px;}
.h3e{height:45.782930px;}
.h45{height:47.700000px;}
.h49{height:48.540937px;}
.h52{height:50.580000px;}
.h59{height:50.585625px;}
.h1f{height:50.682656px;}
.h8{height:50.747344px;}
.h2e{height:51.660000px;}
.h2a{height:51.840000px;}
.h44{height:53.709961px;}
.h55{height:54.984375px;}
.h56{height:55.089844px;}
.h11{height:55.160156px;}
.h5{height:56.320312px;}
.h1b{height:57.960000px;}
.h50{height:58.140000px;}
.h18{height:59.079375px;}
.h2{height:61.423863px;}
.h13{height:62.327813px;}
.h9{height:62.330977px;}
.h4c{height:63.000000px;}
.h3c{height:63.036000px;}
.h3d{height:64.455117px;}
.hc{height:64.537383px;}
.h3{height:69.086250px;}
.h35{height:71.613281px;}
.h62{height:72.090000px;}
.h60{height:73.363008px;}
.ha{height:73.830586px;}
.h32{height:75.093750px;}
.h4e{height:77.436000px;}
.h4f{height:77.580000px;}
.h40{height:80.533828px;}
.hf{height:81.101250px;}
.h39{height:82.634766px;}
.h38{height:82.740234px;}
.h6a{height:83.916000px;}
.h66{height:84.060000px;}
.h4{height:87.859687px;}
.h24{height:88.263984px;}
.h12{height:92.000039px;}
.h7{height:92.117461px;}
.hb{height:98.826328px;}
.h34{height:99.874688px;}
.h2c{height:102.060000px;}
.h1c{height:102.996000px;}
.h37{height:112.640625px;}
.h31{height:125.406562px;}
.h2f{height:147.060000px;}
.h28{height:171.964687px;}
.h33{height:178.723125px;}
.h6{height:213.956367px;}
.h30{height:244.054688px;}
.h5d{height:273.810000px;}
.h58{height:282.135000px;}
.h5f{height:285.375000px;}
.h54{height:296.715000px;}
.h5e{height:304.950000px;}
.h5b{height:313.230000px;}
.h5a{height:314.670000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w4{width:29.736000px;}
.w18{width:41.220000px;}
.w19{width:68.040000px;}
.w24{width:84.420000px;}
.w23{width:105.516000px;}
.w1c{width:116.280000px;}
.we{width:118.800000px;}
.w10{width:118.836000px;}
.wb{width:118.980000px;}
.w1b{width:129.276000px;}
.w20{width:136.980000px;}
.wc{width:142.956000px;}
.w3{width:146.700000px;}
.w21{width:158.610000px;}
.w15{width:164.730000px;}
.w17{width:167.580000px;}
.w16{width:167.970000px;}
.wf{width:171.750000px;}
.w14{width:173.010000px;}
.w1e{width:187.770000px;}
.w8{width:190.830000px;}
.w7{width:191.010000px;}
.w11{width:191.055000px;}
.wd{width:201.090000px;}
.w22{width:201.450000px;}
.w9{width:209.550000px;}
.w2a{width:217.470000px;}
.w28{width:218.550000px;}
.w1a{width:268.635000px;}
.w1f{width:273.270000px;}
.w5{width:278.670000px;}
.w6{width:278.850000px;}
.w12{width:339.195000px;}
.w13{width:339.510000px;}
.wa{width:466.995000px;}
.w2b{width:477.465000px;}
.w29{width:479.985000px;}
.w27{width:672.045000px;}
.w26{width:676.545000px;}
.w25{width:680.505000px;}
.w1{width:893.250000px;}
.w1d{width:893.339973px;}
.w2{width:893.339987px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x7{left:1.440000px;}
.xa{left:4.500000px;}
.x1b{left:7.740000px;}
.xd{left:10.800000px;}
.x5f{left:13.140000px;}
.x27{left:15.840000px;}
.x25{left:30.420000px;}
.x61{left:34.560000px;}
.x56{left:48.954000px;}
.x22{left:50.400000px;}
.x1f{left:53.820000px;}
.x1d{left:60.654000px;}
.x20{left:96.840000px;}
.x51{left:101.736000px;}
.x2{left:108.035987px;}
.x41{left:112.355987px;}
.x13{left:114.156000px;}
.x14{left:115.596000px;}
.x18{left:117.585000px;}
.x3{left:122.975987px;}
.x1c{left:124.596000px;}
.x11{left:126.036000px;}
.x34{left:127.835987px;}
.x10{left:128.916000px;}
.x23{left:130.320000px;}
.x2d{left:133.596000px;}
.x29{left:134.855987px;}
.x5b{left:139.175987px;}
.x8{left:144.180000px;}
.x26{left:148.500000px;}
.x3a{left:157.169987px;}
.x28{left:162.029987px;}
.x5e{left:168.879000px;}
.x2e{left:175.530000px;}
.x5c{left:176.969987px;}
.x43{left:182.549987px;}
.x3b{left:188.669987px;}
.x3e{left:200.009987px;}
.x3c{left:210.089987px;}
.x37{left:218.369987px;}
.x35{left:225.569987px;}
.x62{left:227.559000px;}
.x3f{left:237.629973px;}
.x52{left:239.610000px;}
.x2f{left:244.290000px;}
.x5d{left:246.269987px;}
.x60{left:249.699000px;}
.x59{left:261.929987px;}
.x4c{left:265.709987px;}
.x38{left:271.694987px;}
.x4a{left:275.294987px;}
.x58{left:283.394987px;}
.x2a{left:285.374987px;}
.x5a{left:288.614987px;}
.x44{left:290.234987px;}
.x4f{left:296.894987px;}
.x1e{left:298.335000px;}
.x50{left:300.674987px;}
.x4{left:304.094987px;}
.x2c{left:308.234987px;}
.x19{left:309.494987px;}
.x4e{left:313.634987px;}
.x33{left:322.094987px;}
.x12{left:323.535000px;}
.xf{left:332.175000px;}
.xe{left:333.615000px;}
.xc{left:337.035000px;}
.x57{left:340.239000px;}
.x66{left:343.515000px;}
.x65{left:344.595000px;}
.x48{left:349.995000px;}
.x47{left:358.994987px;}
.x64{left:367.094987px;}
.x53{left:398.955000px;}
.x42{left:416.414987px;}
.x9{left:431.715000px;}
.x4d{left:446.654987px;}
.x1a{left:462.525000px;}
.x21{left:463.965000px;}
.x32{left:505.544987px;}
.x63{left:511.664987px;}
.x30{left:513.645000px;}
.x16{left:516.705000px;}
.x45{left:580.784987px;}
.x46{left:586.544987px;}
.x1{left:594.824987px;}
.x54{left:601.125000px;}
.x17{left:620.025000px;}
.x49{left:623.985000px;}
.xb{left:630.149987px;}
.x24{left:632.670000px;}
.x31{left:643.650000px;}
.x15{left:645.090000px;}
.x6{left:652.830000px;}
.x36{left:659.129987px;}
.x40{left:663.269973px;}
.x3d{left:669.389987px;}
.x5{left:675.702030px;}
.x4b{left:686.309987px;}
.x55{left:707.370000px;}
.x39{left:745.889987px;}
.x2b{left:775.949987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3a{letter-spacing:-0.816000pt;}
.ls29{letter-spacing:-0.666667pt;}
.ls54{letter-spacing:-0.565333pt;}
.ls32{letter-spacing:-0.560000pt;}
.ls52{letter-spacing:-0.506667pt;}
.ls25{letter-spacing:-0.455467pt;}
.ls48{letter-spacing:-0.399467pt;}
.ls33{letter-spacing:-0.391467pt;}
.ls3e{letter-spacing:-0.375467pt;}
.ls22{letter-spacing:-0.363733pt;}
.ls4{letter-spacing:-0.345600pt;}
.ls2b{letter-spacing:-0.325867pt;}
.ls51{letter-spacing:-0.312533pt;}
.ls9{letter-spacing:-0.304533pt;}
.lsf{letter-spacing:-0.301867pt;}
.ls41{letter-spacing:-0.271467pt;}
.ls2f{letter-spacing:-0.270933pt;}
.ls1f{letter-spacing:-0.253333pt;}
.ls37{letter-spacing:-0.220800pt;}
.ls31{letter-spacing:-0.212267pt;}
.ls21{letter-spacing:-0.210133pt;}
.ls4d{letter-spacing:-0.208000pt;}
.ls2c{letter-spacing:-0.196800pt;}
.ls4b{letter-spacing:-0.192000pt;}
.ls24{letter-spacing:-0.176533pt;}
.ls4c{letter-spacing:-0.176000pt;}
.ls3b{letter-spacing:-0.160000pt;}
.ls3{letter-spacing:-0.152000pt;}
.lse{letter-spacing:-0.148267pt;}
.ls14{letter-spacing:-0.128000pt;}
.lsa{letter-spacing:-0.122667pt;}
.ls8{letter-spacing:-0.097067pt;}
.ls30{letter-spacing:-0.067200pt;}
.ls28{letter-spacing:-0.064533pt;}
.ls4a{letter-spacing:-0.048000pt;}
.ls11{letter-spacing:-0.033280pt;}
.ls46{letter-spacing:-0.032000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls45{letter-spacing:0.000003pt;}
.ls2a{letter-spacing:0.011573pt;}
.ls1d{letter-spacing:0.012800pt;}
.ls3c{letter-spacing:0.018560pt;}
.ls20{letter-spacing:0.024000pt;}
.ls7{letter-spacing:0.051200pt;}
.ls0{letter-spacing:0.070400pt;}
.ls44{letter-spacing:0.096000pt;}
.ls18{letter-spacing:0.106667pt;}
.ls42{letter-spacing:0.109867pt;}
.ls39{letter-spacing:0.132267pt;}
.ls38{letter-spacing:0.133333pt;}
.lsb{letter-spacing:0.161067pt;}
.ls12{letter-spacing:0.198933pt;}
.ls26{letter-spacing:0.222400pt;}
.ls16{letter-spacing:0.224000pt;}
.ls2{letter-spacing:0.240533pt;}
.ls3f{letter-spacing:0.264533pt;}
.ls43{letter-spacing:0.267733pt;}
.ls3d{letter-spacing:0.268800pt;}
.ls23{letter-spacing:0.276267pt;}
.ls40{letter-spacing:0.277333pt;}
.ls19{letter-spacing:0.288000pt;}
.ls49{letter-spacing:0.320000pt;}
.ls2d{letter-spacing:0.335467pt;}
.ls6{letter-spacing:0.338133pt;}
.ls27{letter-spacing:0.352000pt;}
.ls55{letter-spacing:0.379200pt;}
.ls15{letter-spacing:0.401600pt;}
.ls47{letter-spacing:0.480000pt;}
.ls1a{letter-spacing:0.746667pt;}
.ls2e{letter-spacing:0.762667pt;}
.ls17{letter-spacing:0.943360pt;}
.ls1e{letter-spacing:2.931200pt;}
.lsc{letter-spacing:5.487360pt;}
.ls5{letter-spacing:6.028800pt;}
.ls35{letter-spacing:7.951360pt;}
.ls34{letter-spacing:11.791360pt;}
.ls1c{letter-spacing:12.851200pt;}
.ls36{letter-spacing:16.271360pt;}
.ls10{letter-spacing:18.613333pt;}
.ls4f{letter-spacing:27.770027pt;}
.lsd{letter-spacing:28.330667pt;}
.ls1b{letter-spacing:30.330027pt;}
.ls4e{letter-spacing:31.610027pt;}
.ls50{letter-spacing:36.090027pt;}
.ls13{letter-spacing:52.730027pt;}
.ls53{letter-spacing:61.050027pt;}
.ws12{word-spacing:-58.880000pt;}
.ws5{word-spacing:-27.788800pt;}
.ws3{word-spacing:-27.636800pt;}
.ws25{word-spacing:-25.722667pt;}
.ws11{word-spacing:-25.361600pt;}
.ws40{word-spacing:-25.339200pt;}
.ws14{word-spacing:-25.248000pt;}
.ws13{word-spacing:-25.184000pt;}
.wsf{word-spacing:-25.158933pt;}
.ws35{word-spacing:-25.056000pt;}
.wsc{word-spacing:-24.960000pt;}
.ws15{word-spacing:-20.215467pt;}
.ws0{word-spacing:-19.468800pt;}
.ws27{word-spacing:-19.401600pt;}
.ws2a{word-spacing:-19.248000pt;}
.ws26{word-spacing:-19.197867pt;}
.ws2{word-spacing:-16.640000pt;}
.ws10{word-spacing:-16.512000pt;}
.ws1e{word-spacing:-15.660800pt;}
.ws7{word-spacing:-15.646933pt;}
.ws24{word-spacing:-15.644267pt;}
.ws19{word-spacing:-15.585067pt;}
.ws4{word-spacing:-15.549333pt;}
.ws1d{word-spacing:-15.531200pt;}
.wsb{word-spacing:-15.469867pt;}
.ws2b{word-spacing:-15.442133pt;}
.ws16{word-spacing:-15.332800pt;}
.ws23{word-spacing:-15.321600pt;}
.ws21{word-spacing:-15.320373pt;}
.ws6{word-spacing:-15.308800pt;}
.wse{word-spacing:-15.275520pt;}
.ws1f{word-spacing:-15.244267pt;}
.ws8{word-spacing:-15.211733pt;}
.wsa{word-spacing:-15.186133pt;}
.wsd{word-spacing:-15.160533pt;}
.ws1b{word-spacing:-15.132267pt;}
.ws17{word-spacing:-15.098667pt;}
.ws28{word-spacing:-15.096533pt;}
.ws1a{word-spacing:-15.055467pt;}
.ws9{word-spacing:-15.004267pt;}
.ws3e{word-spacing:-14.996267pt;}
.ws22{word-spacing:-14.982933pt;}
.ws18{word-spacing:-14.945067pt;}
.ws39{word-spacing:-14.909333pt;}
.ws1c{word-spacing:-14.853333pt;}
.ws3f{word-spacing:-14.802133pt;}
.ws29{word-spacing:-14.748800pt;}
.ws20{word-spacing:-14.642133pt;}
.ws2c{word-spacing:-14.492800pt;}
.ws31{word-spacing:-14.088533pt;}
.ws34{word-spacing:-14.078933pt;}
.ws33{word-spacing:-13.921067pt;}
.ws38{word-spacing:-13.811200pt;}
.ws32{word-spacing:-13.539733pt;}
.ws36{word-spacing:-12.480003pt;}
.ws37{word-spacing:-12.448000pt;}
.ws3a{word-spacing:-12.432000pt;}
.ws3c{word-spacing:-12.304000pt;}
.ws3b{word-spacing:-12.288000pt;}
.ws3d{word-spacing:-12.272000pt;}
.ws30{word-spacing:-11.413333pt;}
.ws2f{word-spacing:-11.167360pt;}
.ws2e{word-spacing:-10.773333pt;}
.ws2d{word-spacing:-10.688000pt;}
.ws1{word-spacing:0.000000pt;}
._26{margin-left:-15.300480pt;}
._16{margin-left:-13.777493pt;}
._15{margin-left:-11.427896pt;}
._18{margin-left:-9.614507pt;}
._17{margin-left:-8.442453pt;}
._8{margin-left:-7.408371pt;}
._7{margin-left:-6.434821pt;}
._0{margin-left:-4.800000pt;}
._d{margin-left:-3.702400pt;}
._1{margin-left:-2.787200pt;}
._2{margin-left:-1.831680pt;}
._6{margin-left:-0.910293pt;}
._3{width:0.980480pt;}
._4{width:1.919785pt;}
._5{width:3.398393pt;}
._19{width:4.325576pt;}
._14{width:5.299200pt;}
._13{width:6.649813pt;}
._b{width:7.595520pt;}
._1d{width:8.890880pt;}
._1a{width:9.950720pt;}
._1b{width:11.073280pt;}
._1c{width:12.541440pt;}
._20{width:13.895680pt;}
._27{width:16.995200pt;}
._21{width:18.683307pt;}
._9{width:19.613227pt;}
._24{width:21.249707pt;}
._23{width:22.213333pt;}
._22{width:23.676160pt;}
._25{width:24.906240pt;}
._1f{width:29.263360pt;}
._1e{width:30.977280pt;}
._a{width:32.030720pt;}
._2b{width:33.258667pt;}
._2a{width:53.168640pt;}
._c{width:66.946560pt;}
._10{width:87.966720pt;}
._f{width:93.795840pt;}
._e{width:97.623040pt;}
._28{width:121.133227pt;}
._11{width:132.153600pt;}
._29{width:195.279360pt;}
._12{width:197.601280pt;}
.fs1b{font-size:5.120000pt;}
.fs16{font-size:26.880000pt;}
.fs18{font-size:29.440000pt;}
.fs19{font-size:34.560000pt;}
.fs15{font-size:37.120000pt;}
.fsa{font-size:38.400000pt;}
.fs11{font-size:40.320000pt;}
.fs1{font-size:42.880000pt;}
.fs13{font-size:45.440000pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs17{font-size:56.320000pt;}
.fs2{font-size:58.880000pt;}
.fs1a{font-size:61.440000pt;}
.fsc{font-size:64.000000pt;}
.fsb{font-size:69.120000pt;}
.fs7{font-size:72.320000pt;}
.fs3{font-size:74.880000pt;}
.fs8{font-size:85.120000pt;}
.fs9{font-size:88.320000pt;}
.fs14{font-size:93.440000pt;}
.fs12{font-size:96.000000pt;}
.fsd{font-size:101.120000pt;}
.fs6{font-size:106.880000pt;}
.fse{font-size:146.560000pt;}
.fs10{font-size:152.320000pt;}
.fsf{font-size:208.000000pt;}
.fs5{font-size:245.120000pt;}
.y6d{bottom:-34.240000pt;}
.y69{bottom:-33.000000pt;}
.y5c{bottom:-15.840000pt;}
.y6c{bottom:-14.240000pt;}
.y73{bottom:-13.120000pt;}
.y68{bottom:-12.960000pt;}
.y32f{bottom:-0.160080pt;}
.y0{bottom:0.000000pt;}
.y59{bottom:0.160000pt;}
.y2af{bottom:3.520000pt;}
.y91{bottom:3.680000pt;}
.y54{bottom:4.160000pt;}
.y97{bottom:4.480000pt;}
.y22{bottom:4.640000pt;}
.y77{bottom:4.960000pt;}
.y99{bottom:5.120000pt;}
.y56{bottom:5.280000pt;}
.y6b{bottom:5.600000pt;}
.y20{bottom:6.400000pt;}
.y4d{bottom:6.720000pt;}
.y4f{bottom:6.880000pt;}
.y67{bottom:7.040000pt;}
.y80{bottom:7.520000pt;}
.y82{bottom:7.680000pt;}
.y5b{bottom:7.840000pt;}
.y52{bottom:8.160000pt;}
.y8e{bottom:8.800000pt;}
.y79{bottom:9.280000pt;}
.y7e{bottom:9.600000pt;}
.y240{bottom:11.200000pt;}
.y328{bottom:12.000000pt;}
.y326{bottom:12.160000pt;}
.y31b{bottom:12.480000pt;}
.ya5{bottom:12.634667pt;}
.y95{bottom:12.640000pt;}
.y76{bottom:12.960000pt;}
.y93{bottom:14.240000pt;}
.y62{bottom:15.840000pt;}
.y231{bottom:16.480000pt;}
.y235{bottom:16.640000pt;}
.y71{bottom:16.800000pt;}
.y238{bottom:18.074667pt;}
.y23a{bottom:19.360000pt;}
.y2d7{bottom:19.840000pt;}
.y2d4{bottom:20.000000pt;}
.y2da{bottom:20.040000pt;}
.y96{bottom:21.120000pt;}
.ya6{bottom:21.274667pt;}
.y324{bottom:22.080000pt;}
.ya8{bottom:22.240000pt;}
.y90{bottom:22.400000pt;}
.ya3{bottom:22.560000pt;}
.y6f{bottom:24.320000pt;}
.y1f0{bottom:27.360000pt;}
.y23f{bottom:29.920000pt;}
.y92{bottom:30.880000pt;}
.y230{bottom:35.240000pt;}
.y234{bottom:35.360000pt;}
.y61{bottom:35.840000pt;}
.y237{bottom:36.794667pt;}
.y9f{bottom:37.760000pt;}
.y261{bottom:38.600000pt;}
.ya2{bottom:40.160000pt;}
.y22d{bottom:40.960000pt;}
.y32d{bottom:41.000000pt;}
.yae{bottom:41.120000pt;}
.y16e{bottom:41.146667pt;}
.y24{bottom:48.160000pt;}
.y22f{bottom:53.960000pt;}
.y233{bottom:54.080000pt;}
.y260{bottom:54.920000pt;}
.y65{bottom:55.840000pt;}
.y9e{bottom:56.640000pt;}
.ya1{bottom:57.920000pt;}
.yad{bottom:59.680000pt;}
.y21{bottom:59.712000pt;}
.y32c{bottom:59.720000pt;}
.y7b{bottom:69.472000pt;}
.y25f{bottom:71.240000pt;}
.ya0{bottom:75.680000pt;}
.y9d{bottom:75.840000pt;}
.y64{bottom:75.866667pt;}
.yac{bottom:78.400000pt;}
.y25e{bottom:87.560000pt;}
.y1bd{bottom:91.552000pt;}
.y2b7{bottom:93.312000pt;}
.y331{bottom:93.792000pt;}
.y1bc{bottom:95.552000pt;}
.yab{bottom:97.120000pt;}
.y11a{bottom:97.632000pt;}
.y1fd{bottom:98.912000pt;}
.y1e7{bottom:102.432000pt;}
.y25d{bottom:103.880000pt;}
.y1a3{bottom:104.352000pt;}
.y1bb{bottom:106.112000pt;}
.y225{bottom:106.912000pt;}
.y181{bottom:109.472000pt;}
.y1ba{bottom:110.112000pt;}
.y2d1{bottom:112.032000pt;}
.y330{bottom:112.512000pt;}
.yaa{bottom:115.680000pt;}
.y119{bottom:116.352000pt;}
.y25c{bottom:120.200000pt;}
.y2ad{bottom:120.832000pt;}
.y1e6{bottom:120.992000pt;}
.y1b9{bottom:121.792000pt;}
.y1a2{bottom:123.072000pt;}
.ya4{bottom:124.032000pt;}
.y2b6{bottom:124.352000pt;}
.y224{bottom:125.632000pt;}
.y1fc{bottom:125.792000pt;}
.y144{bottom:126.432000pt;}
.y180{bottom:128.032000pt;}
.y2f2{bottom:128.832000pt;}
.y304{bottom:129.152000pt;}
.y2d0{bottom:130.752000pt;}
.y236{bottom:131.712000pt;}
.y118{bottom:134.906667pt;}
.y281{bottom:135.066667pt;}
.y25b{bottom:136.520000pt;}
.y1e5{bottom:139.706667pt;}
.y1a1{bottom:141.786667pt;}
.y2b5{bottom:143.226667pt;}
.y223{bottom:144.346667pt;}
.y143{bottom:144.986667pt;}
.y17f{bottom:146.746667pt;}
.y2f1{bottom:147.546667pt;}
.y303{bottom:147.866667pt;}
.y2cf{bottom:149.306667pt;}
.y1fb{bottom:152.666667pt;}
.y25a{bottom:153.000000pt;}
.y117{bottom:153.626667pt;}
.y2b4{bottom:158.106667pt;}
.y1e4{bottom:158.426667pt;}
.y222{bottom:162.906667pt;}
.y142{bottom:163.706667pt;}
.y2ac{bottom:164.346667pt;}
.y17e{bottom:165.466667pt;}
.y2f0{bottom:166.106667pt;}
.y302{bottom:166.586667pt;}
.y2ce{bottom:168.026667pt;}
.y9c{bottom:168.666667pt;}
.y259{bottom:169.320000pt;}
.y116{bottom:172.346667pt;}
.y1e3{bottom:176.986667pt;}
.y1a0{bottom:178.106667pt;}
.y1fa{bottom:179.706667pt;}
.y1d{bottom:180.986667pt;}
.y221{bottom:181.626667pt;}
.y141{bottom:182.426667pt;}
.y17d{bottom:184.026667pt;}
.y2ab{bottom:184.346667pt;}
.y2ef{bottom:184.826667pt;}
.y301{bottom:185.146667pt;}
.y258{bottom:185.640000pt;}
.y2cd{bottom:186.746667pt;}
.y1b8{bottom:187.546667pt;}
.y115{bottom:190.906667pt;}
.y280{bottom:191.066667pt;}
.y232{bottom:191.706667pt;}
.y2d8{bottom:192.666667pt;}
.y1e2{bottom:195.706667pt;}
.y140{bottom:200.986667pt;}
.y257{bottom:201.960000pt;}
.y17c{bottom:202.746667pt;}
.y2aa{bottom:203.226667pt;}
.y2ee{bottom:203.546667pt;}
.y300{bottom:203.866667pt;}
.y1c{bottom:204.666667pt;}
.y1b7{bottom:205.306667pt;}
.y1f9{bottom:206.586667pt;}
.y2d6{bottom:208.346667pt;}
.y114{bottom:209.626667pt;}
.y216{bottom:213.626667pt;}
.y1e1{bottom:214.426667pt;}
.y256{bottom:218.280000pt;}
.y13f{bottom:219.706667pt;}
.y220{bottom:220.186667pt;}
.y19f{bottom:221.306667pt;}
.y17b{bottom:221.466667pt;}
.y2ed{bottom:222.106667pt;}
.y2ff{bottom:222.586667pt;}
.y1b6{bottom:223.866667pt;}
.y2cc{bottom:224.026667pt;}
.y1b{bottom:224.186667pt;}
.y113{bottom:228.346667pt;}
.y253{bottom:231.066667pt;}
.y279{bottom:231.386667pt;}
.y1e0{bottom:232.986667pt;}
.y215{bottom:233.146667pt;}
.y1f8{bottom:233.466667pt;}
.y2a9{bottom:234.106667pt;}
.y255{bottom:234.600000pt;}
.y4b{bottom:236.986667pt;}
.y13e{bottom:238.426667pt;}
.y17a{bottom:240.026667pt;}
.y2ec{bottom:240.826667pt;}
.y2fe{bottom:241.146667pt;}
.y1b4{bottom:242.586667pt;}
.y1a{bottom:242.746667pt;}
.y112{bottom:246.906667pt;}
.y27f{bottom:247.706667pt;}
.y1b5{bottom:248.666667pt;}
.y252{bottom:249.786667pt;}
.y278{bottom:250.106667pt;}
.y254{bottom:250.920000pt;}
.y1df{bottom:251.706667pt;}
.y214{bottom:252.346667pt;}
.y19e{bottom:253.946667pt;}
.y4a{bottom:255.546667pt;}
.y70{bottom:256.026667pt;}
.y13d{bottom:256.986667pt;}
.y179{bottom:258.746667pt;}
.y2eb{bottom:259.546667pt;}
.y2fd{bottom:259.866667pt;}
.y1f7{bottom:260.506667pt;}
.y1b3{bottom:261.306667pt;}
.y19{bottom:262.426667pt;}
.y2b2{bottom:264.666667pt;}
.y32b{bottom:265.466667pt;}
.y111{bottom:265.626667pt;}
.y74{bottom:266.586667pt;}
.y9b{bottom:267.706667pt;}
.y251{bottom:268.346667pt;}
.y6a{bottom:268.666667pt;}
.y277{bottom:268.826667pt;}
.y22e{bottom:268.986667pt;}
.y1de{bottom:270.426667pt;}
.y49{bottom:270.906667pt;}
.y13c{bottom:275.706667pt;}
.y178{bottom:277.466667pt;}
.y2ea{bottom:278.106667pt;}
.y2fc{bottom:278.586667pt;}
.y1b2{bottom:279.866667pt;}
.y110{bottom:284.346667pt;}
.y18{bottom:284.666667pt;}
.y213{bottom:284.826667pt;}
.y48{bottom:286.106667pt;}
.y250{bottom:287.066667pt;}
.y1f6{bottom:287.386667pt;}
.y1dd{bottom:288.986667pt;}
.y6e{bottom:292.546667pt;}
.y27e{bottom:293.026667pt;}
.y13b{bottom:294.466667pt;}
.y177{bottom:296.066667pt;}
.y2e9{bottom:296.866667pt;}
.y2fb{bottom:297.186667pt;}
.y9a{bottom:298.626667pt;}
.y19d{bottom:299.266667pt;}
.y2cb{bottom:299.426667pt;}
.y47{bottom:301.506667pt;}
.y10f{bottom:302.946667pt;}
.y17{bottom:303.426667pt;}
.y75{bottom:305.026667pt;}
.y24f{bottom:305.826667pt;}
.y276{bottom:306.146667pt;}
.y162{bottom:308.546667pt;}
.y66{bottom:309.346667pt;}
.y27d{bottom:311.586667pt;}
.y72{bottom:312.226667pt;}
.y13a{bottom:313.026667pt;}
.y1f5{bottom:314.306667pt;}
.y176{bottom:314.786667pt;}
.y2e8{bottom:315.586667pt;}
.y2fa{bottom:315.906667pt;}
.y46{bottom:316.866667pt;}
.y1b1{bottom:317.346667pt;}
.y19c{bottom:318.466667pt;}
.y10e{bottom:321.666667pt;}
.y16{bottom:321.986667pt;}
.y24e{bottom:324.386667pt;}
.y275{bottom:324.866667pt;}
.y1dc{bottom:325.506667pt;}
.y161{bottom:327.266667pt;}
.y98{bottom:329.666667pt;}
.y139{bottom:331.746667pt;}
.y45{bottom:332.226667pt;}
.y175{bottom:333.506667pt;}
.y2e7{bottom:334.146667pt;}
.y2f9{bottom:334.626667pt;}
.y1b0{bottom:335.906667pt;}
.y19b{bottom:337.026667pt;}
.y10d{bottom:340.386667pt;}
.y15{bottom:340.706667pt;}
.y1f4{bottom:341.346667pt;}
.y274{bottom:343.426667pt;}
.y2ca{bottom:344.706667pt;}
.y160{bottom:345.986667pt;}
.y22c{bottom:346.146667pt;}
.y44{bottom:347.586667pt;}
.y32a{bottom:348.386667pt;}
.y138{bottom:350.466667pt;}
.y174{bottom:352.066667pt;}
.y2e6{bottom:352.866667pt;}
.y2f8{bottom:353.186667pt;}
.y1af{bottom:354.626667pt;}
.y19a{bottom:355.746667pt;}
.y10c{bottom:358.946667pt;}
.y14{bottom:359.426667pt;}
.y94{bottom:360.386667pt;}
.y273{bottom:362.146667pt;}
.y24d{bottom:362.466667pt;}
.y43{bottom:362.786667pt;}
.y2c9{bottom:363.906667pt;}
.y15f{bottom:364.546667pt;}
.y1db{bottom:365.186667pt;}
.y1f3{bottom:368.226667pt;}
.y137{bottom:369.026667pt;}
.y173{bottom:370.786667pt;}
.y2e5{bottom:371.586667pt;}
.y2f7{bottom:371.906667pt;}
.y1ae{bottom:373.346667pt;}
.y199{bottom:374.466667pt;}
.y10b{bottom:377.666667pt;}
.y42{bottom:378.146667pt;}
.y306{bottom:379.586667pt;}
.y272{bottom:380.866667pt;}
.y13{bottom:382.146667pt;}
.y2c8{bottom:382.626667pt;}
.y15e{bottom:383.266667pt;}
.y329{bottom:383.746667pt;}
.y1da{bottom:383.906667pt;}
.y136{bottom:387.746667pt;}
.y172{bottom:389.506667pt;}
.y2e4{bottom:390.146667pt;}
.y2f6{bottom:390.626667pt;}
.y1ad{bottom:391.906667pt;}
.y198{bottom:393.026667pt;}
.y41{bottom:393.506667pt;}
.y1f2{bottom:395.106667pt;}
.y305{bottom:398.306667pt;}
.y271{bottom:399.426667pt;}
.y2c7{bottom:401.346667pt;}
.yd7{bottom:401.666667pt;}
.y15d{bottom:401.986667pt;}
.y1d9{bottom:402.466667pt;}
.y8f{bottom:404.866667pt;}
.y135{bottom:406.466667pt;}
.y24c{bottom:407.746667pt;}
.y171{bottom:408.066667pt;}
.y40{bottom:408.866667pt;}
.y2f5{bottom:409.186667pt;}
.y22b{bottom:410.146667pt;}
.y1ac{bottom:410.626667pt;}
.y197{bottom:411.746667pt;}
.y5e{bottom:413.826667pt;}
.y53{bottom:414.146667pt;}
.y10a{bottom:415.746667pt;}
.yf2{bottom:417.026667pt;}
.y270{bottom:418.146667pt;}
.y327{bottom:419.266667pt;}
.y2c6{bottom:419.906667pt;}
.y15c{bottom:420.546667pt;}
.y1d8{bottom:421.186667pt;}
.yd6{bottom:421.666667pt;}
.y1f1{bottom:422.146667pt;}
.y3f{bottom:424.226667pt;}
.y12{bottom:424.706667pt;}
.y134{bottom:425.026667pt;}
.y24b{bottom:426.466667pt;}
.y2e3{bottom:427.586667pt;}
.y2f4{bottom:427.906667pt;}
.y1ab{bottom:429.346667pt;}
.y196{bottom:430.466667pt;}
.yf1{bottom:435.586667pt;}
.y26f{bottom:436.866667pt;}
.y2c5{bottom:438.626667pt;}
.y15b{bottom:439.266667pt;}
.y1d7{bottom:439.906667pt;}
.y2b3{bottom:440.226667pt;}
.y3e{bottom:441.026667pt;}
.yd5{bottom:441.666667pt;}
.y22a{bottom:442.626667pt;}
.y133{bottom:443.746667pt;}
.y170{bottom:444.546667pt;}
.y24a{bottom:445.026667pt;}
.y2e2{bottom:446.146667pt;}
.y1aa{bottom:447.906667pt;}
.y195{bottom:449.026667pt;}
.yf0{bottom:454.306667pt;}
.y325{bottom:454.466667pt;}
.y2b1{bottom:455.266667pt;}
.y26e{bottom:455.426667pt;}
.y2c4{bottom:457.346667pt;}
.y294{bottom:457.666667pt;}
.y15a{bottom:457.986667pt;}
.y1d6{bottom:458.466667pt;}
.y8d{bottom:459.266667pt;}
.y3d{bottom:460.866667pt;}
.y109{bottom:461.026667pt;}
.y229{bottom:461.346667pt;}
.yd4{bottom:461.666667pt;}
.y315{bottom:461.986667pt;}
.y249{bottom:463.746667pt;}
.y2f3{bottom:464.226667pt;}
.y2e1{bottom:464.866667pt;}
.y1a9{bottom:466.626667pt;}
.y194{bottom:467.746667pt;}
.y63{bottom:469.826667pt;}
.yef{bottom:473.026667pt;}
.y26d{bottom:474.146667pt;}
.y1ef{bottom:475.906667pt;}
.y293{bottom:476.386667pt;}
.y159{bottom:476.546667pt;}
.y108{bottom:479.746667pt;}
.y228{bottom:480.066667pt;}
.y314{bottom:480.546667pt;}
.y3c{bottom:480.866667pt;}
.yd3{bottom:481.666667pt;}
.y132{bottom:481.826667pt;}
.y248{bottom:482.466667pt;}
.y2d5{bottom:483.746667pt;}
.y16f{bottom:484.226667pt;}
.y1a8{bottom:485.346667pt;}
.y193{bottom:486.466667pt;}
.y323{bottom:489.826667pt;}
.y11{bottom:490.626667pt;}
.yee{bottom:491.586667pt;}
.y26c{bottom:492.866667pt;}
.y21f{bottom:493.026667pt;}
.y2c3{bottom:494.626667pt;}
.y292{bottom:494.946667pt;}
.y158{bottom:495.266667pt;}
.y1d5{bottom:496.546667pt;}
.y8c{bottom:497.506667pt;}
.y107{bottom:498.306667pt;}
.y227{bottom:498.786667pt;}
.y313{bottom:499.266667pt;}
.y2d3{bottom:499.426667pt;}
.y3b{bottom:500.866667pt;}
.y247{bottom:501.026667pt;}
.y2e0{bottom:501.346667pt;}
.yd2{bottom:501.666667pt;}
.y16d{bottom:503.586667pt;}
.y1a7{bottom:503.906667pt;}
.y192{bottom:505.026667pt;}
.yed{bottom:510.306667pt;}
.y26b{bottom:511.426667pt;}
.y21e{bottom:511.746667pt;}
.y212{bottom:511.906667pt;}
.y2c2{bottom:513.346667pt;}
.y291{bottom:513.666667pt;}
.y157{bottom:513.986667pt;}
.y131{bottom:514.466667pt;}
.y106{bottom:517.026667pt;}
.y2a8{bottom:517.346667pt;}
.y312{bottom:517.986667pt;}
.y246{bottom:519.746667pt;}
.y3a{bottom:520.866667pt;}
.yd1{bottom:521.506667pt;}
.y1a6{bottom:522.626667pt;}
.y191{bottom:523.746667pt;}
.y1ee{bottom:525.986667pt;}
.yec{bottom:529.026667pt;}
.y1d4{bottom:529.346667pt;}
.y26a{bottom:530.173333pt;}
.y211{bottom:530.493333pt;}
.y2c1{bottom:531.933333pt;}
.y290{bottom:532.413333pt;}
.y156{bottom:532.573333pt;}
.y322{bottom:535.453333pt;}
.y105{bottom:535.773333pt;}
.y8b{bottom:536.413333pt;}
.y311{bottom:536.573333pt;}
.y245{bottom:538.493333pt;}
.y5f{bottom:540.093333pt;}
.y39{bottom:540.893333pt;}
.y1a5{bottom:541.373333pt;}
.yd0{bottom:541.533333pt;}
.y190{bottom:542.493333pt;}
.y2df{bottom:544.413333pt;}
.yeb{bottom:547.613333pt;}
.y269{bottom:548.893333pt;}
.y210{bottom:549.213333pt;}
.y2c0{bottom:550.653333pt;}
.y28f{bottom:550.973333pt;}
.y155{bottom:551.293333pt;}
.y104{bottom:554.333333pt;}
.y321{bottom:554.493333pt;}
.y2a7{bottom:554.973333pt;}
.y310{bottom:555.293333pt;}
.y10{bottom:556.413333pt;}
.y1ed{bottom:557.213333pt;}
.y244{bottom:557.853333pt;}
.y130{bottom:559.773333pt;}
.y1a4{bottom:559.933333pt;}
.y38{bottom:560.893333pt;}
.y18f{bottom:561.053333pt;}
.ycf{bottom:561.533333pt;}
.yea{bottom:566.333333pt;}
.y268{bottom:567.453333pt;}
.y21d{bottom:567.773333pt;}
.y16c{bottom:567.933333pt;}
.y2bf{bottom:569.373333pt;}
.y28e{bottom:569.693333pt;}
.y154{bottom:570.013333pt;}
.y103{bottom:573.053333pt;}
.y320{bottom:573.533333pt;}
.y2a6{bottom:573.693333pt;}
.y30f{bottom:574.013333pt;}
.y1d3{bottom:574.653333pt;}
.y1ec{bottom:575.773333pt;}
.y2de{bottom:577.053333pt;}
.y12f{bottom:578.653333pt;}
.y18e{bottom:579.773333pt;}
.y37{bottom:580.733333pt;}
.yce{bottom:581.533333pt;}
.y8a{bottom:584.573333pt;}
.ye9{bottom:585.053333pt;}
.y267{bottom:586.173333pt;}
.y20f{bottom:586.493333pt;}
.y2be{bottom:587.933333pt;}
.y28d{bottom:588.413333pt;}
.y153{bottom:588.573333pt;}
.y102{bottom:591.773333pt;}
.y2a5{bottom:592.413333pt;}
.y1d2{bottom:593.213333pt;}
.y31f{bottom:593.693333pt;}
.y1eb{bottom:594.493333pt;}
.y12e{bottom:597.373333pt;}
.y18d{bottom:598.493333pt;}
.y36{bottom:600.733333pt;}
.ycd{bottom:601.533333pt;}
.ye8{bottom:603.613333pt;}
.y89{bottom:604.413333pt;}
.y266{bottom:604.893333pt;}
.y20e{bottom:605.213333pt;}
.y2bd{bottom:606.653333pt;}
.y28c{bottom:606.973333pt;}
.y152{bottom:607.293333pt;}
.y51{bottom:608.093333pt;}
.y5d{bottom:610.333333pt;}
.y2a4{bottom:610.973333pt;}
.y1d1{bottom:611.933333pt;}
.y30e{bottom:612.093333pt;}
.y16b{bottom:613.533333pt;}
.y1ea{bottom:613.853333pt;}
.y12d{bottom:615.933333pt;}
.y18c{bottom:617.053333pt;}
.y35{bottom:620.733333pt;}
.ycc{bottom:621.533333pt;}
.yf{bottom:622.173333pt;}
.ye7{bottom:622.333333pt;}
.y21c{bottom:622.973333pt;}
.y265{bottom:623.453333pt;}
.y20d{bottom:623.933333pt;}
.y2bc{bottom:625.373333pt;}
.y28b{bottom:625.693333pt;}
.y151{bottom:626.013333pt;}
.y101{bottom:629.053333pt;}
.y2a3{bottom:629.693333pt;}
.yc0{bottom:630.493333pt;}
.y1d0{bottom:630.653333pt;}
.y12c{bottom:634.653333pt;}
.y88{bottom:635.453333pt;}
.y18b{bottom:635.773333pt;}
.y34{bottom:640.733333pt;}
.ye6{bottom:641.053333pt;}
.ycb{bottom:641.373333pt;}
.y264{bottom:642.173333pt;}
.y20c{bottom:642.493333pt;}
.y2bb{bottom:643.933333pt;}
.y28a{bottom:644.413333pt;}
.y150{bottom:644.573333pt;}
.y27c{bottom:647.613333pt;}
.y100{bottom:647.773333pt;}
.y2a2{bottom:648.413333pt;}
.y1cf{bottom:649.213333pt;}
.y1e9{bottom:650.813333pt;}
.ybf{bottom:652.253333pt;}
.y12b{bottom:653.373333pt;}
.y18a{bottom:654.493333pt;}
.y30d{bottom:657.373333pt;}
.y16a{bottom:659.133333pt;}
.ye5{bottom:659.613333pt;}
.y2dd{bottom:659.773333pt;}
.y33{bottom:660.733333pt;}
.y263{bottom:660.893333pt;}
.y20b{bottom:661.213333pt;}
.yca{bottom:661.373333pt;}
.y21b{bottom:662.653333pt;}
.y289{bottom:662.973333pt;}
.y14f{bottom:663.293333pt;}
.y87{bottom:666.333333pt;}
.y2a1{bottom:666.973333pt;}
.y27b{bottom:667.293333pt;}
.y243{bottom:667.773333pt;}
.y1ce{bottom:667.933333pt;}
.y12a{bottom:671.933333pt;}
.y5a{bottom:673.053333pt;}
.y50{bottom:673.693333pt;}
.y30c{bottom:676.573333pt;}
.y31e{bottom:676.733333pt;}
.ye{bottom:677.533333pt;}
.ye4{bottom:678.333333pt;}
.y20a{bottom:679.933333pt;}
.y32{bottom:680.733333pt;}
.y21a{bottom:681.213333pt;}
.yc9{bottom:681.373333pt;}
.y288{bottom:681.693333pt;}
.y14e{bottom:682.013333pt;}
.ybe{bottom:682.973333pt;}
.yff{bottom:685.053333pt;}
.y2a0{bottom:685.693333pt;}
.y1cd{bottom:686.653333pt;}
.y1e8{bottom:690.493333pt;}
.y129{bottom:690.653333pt;}
.y189{bottom:691.773333pt;}
.y30b{bottom:695.293333pt;}
.yd{bottom:696.893333pt;}
.ye3{bottom:697.053333pt;}
.y86{bottom:697.213333pt;}
.y209{bottom:698.493333pt;}
.y262{bottom:698.973333pt;}
.y219{bottom:699.933333pt;}
.y287{bottom:700.413333pt;}
.y31{bottom:700.573333pt;}
.yb4{bottom:700.733333pt;}
.yc8{bottom:701.373333pt;}
.yfe{bottom:703.773333pt;}
.y29f{bottom:704.413333pt;}
.y169{bottom:704.573333pt;}
.y1cc{bottom:705.213333pt;}
.y128{bottom:709.373333pt;}
.y60{bottom:709.853333pt;}
.y188{bottom:710.493333pt;}
.y31d{bottom:712.573333pt;}
.y242{bottom:713.373333pt;}
.y30a{bottom:713.853333pt;}
.ybd{bottom:714.333333pt;}
.yc{bottom:715.453333pt;}
.ye2{bottom:715.613333pt;}
.y2dc{bottom:715.773333pt;}
.y208{bottom:717.213333pt;}
.y218{bottom:718.653333pt;}
.y286{bottom:718.973333pt;}
.y14d{bottom:719.293333pt;}
.yb3{bottom:719.453333pt;}
.y30{bottom:720.573333pt;}
.yc7{bottom:721.373333pt;}
.yfd{bottom:722.333333pt;}
.y29e{bottom:722.973333pt;}
.y1cb{bottom:723.933333pt;}
.y127{bottom:727.933333pt;}
.y85{bottom:728.093333pt;}
.y187{bottom:729.053333pt;}
.y309{bottom:732.573333pt;}
.yb{bottom:734.173333pt;}
.ye1{bottom:734.333333pt;}
.y2db{bottom:734.973333pt;}
.y207{bottom:735.933333pt;}
.y168{bottom:737.053333pt;}
.y2ba{bottom:737.373333pt;}
.y285{bottom:737.693333pt;}
.yb2{bottom:738.013333pt;}
.y2b0{bottom:738.653333pt;}
.y241{bottom:740.253333pt;}
.y2f{bottom:740.573333pt;}
.yfc{bottom:741.053333pt;}
.y29d{bottom:741.693333pt;}
.y1ca{bottom:742.653333pt;}
.y58{bottom:744.573333pt;}
.ybc{bottom:745.693333pt;}
.y226{bottom:746.013333pt;}
.y2d2{bottom:746.493333pt;}
.y126{bottom:746.653333pt;}
.y186{bottom:747.773333pt;}
.y31c{bottom:748.253333pt;}
.yc6{bottom:749.533333pt;}
.y2d9{bottom:750.653333pt;}
.ya{bottom:752.893333pt;}
.ye0{bottom:753.053333pt;}
.y2ae{bottom:753.533333pt;}
.y206{bottom:754.493333pt;}
.y167{bottom:755.613333pt;}
.y2b9{bottom:755.933333pt;}
.y284{bottom:756.413333pt;}
.y14c{bottom:756.573333pt;}
.yb1{bottom:756.733333pt;}
.y84{bottom:758.973333pt;}
.yfb{bottom:759.773333pt;}
.y29c{bottom:760.413333pt;}
.y2e{bottom:760.573333pt;}
.y1c9{bottom:761.213333pt;}
.y125{bottom:765.373333pt;}
.y217{bottom:765.853333pt;}
.y185{bottom:766.493333pt;}
.y23e{bottom:767.333333pt;}
.y308{bottom:770.693333pt;}
.y9{bottom:771.493333pt;}
.ydf{bottom:771.653333pt;}
.y205{bottom:773.253333pt;}
.y166{bottom:774.373333pt;}
.y14b{bottom:775.333333pt;}
.yb0{bottom:775.493333pt;}
.ybb{bottom:777.093333pt;}
.yfa{bottom:778.373333pt;}
.y29b{bottom:779.013333pt;}
.y1c8{bottom:779.973333pt;}
.y2d{bottom:780.613333pt;}
.y124{bottom:783.973333pt;}
.y31a{bottom:784.133333pt;}
.y184{bottom:785.093333pt;}
.yc5{bottom:788.453333pt;}
.y83{bottom:790.053333pt;}
.y8{bottom:790.213333pt;}
.yde{bottom:790.373333pt;}
.y204{bottom:792.613333pt;}
.y165{bottom:793.093333pt;}
.y14a{bottom:794.053333pt;}
.y283{bottom:794.533333pt;}
.yaf{bottom:794.693333pt;}
.yf9{bottom:797.093333pt;}
.y29a{bottom:797.733333pt;}
.y1c7{bottom:798.693333pt;}
.y4e{bottom:800.453333pt;}
.y2c{bottom:800.613333pt;}
.y123{bottom:802.693333pt;}
.y57{bottom:803.173333pt;}
.y183{bottom:803.653333pt;}
.yba{bottom:808.453333pt;}
.y7{bottom:808.933333pt;}
.ydd{bottom:809.093333pt;}
.y164{bottom:811.653333pt;}
.y149{bottom:812.613333pt;}
.ya9{bottom:814.853333pt;}
.yf8{bottom:815.813333pt;}
.y307{bottom:815.973333pt;}
.y299{bottom:816.453333pt;}
.y1c6{bottom:817.253333pt;}
.y203{bottom:819.653333pt;}
.y319{bottom:819.973333pt;}
.y2b{bottom:820.453333pt;}
.y81{bottom:820.933333pt;}
.y122{bottom:821.413333pt;}
.y6{bottom:827.493333pt;}
.ydc{bottom:827.653333pt;}
.y148{bottom:831.333333pt;}
.yf7{bottom:834.373333pt;}
.y298{bottom:835.013333pt;}
.y1c5{bottom:835.973333pt;}
.yc4{bottom:837.413333pt;}
.y182{bottom:837.733333pt;}
.y2b8{bottom:839.333333pt;}
.y282{bottom:839.813333pt;}
.yb9{bottom:839.973333pt;}
.y2a{bottom:840.453333pt;}
.y5{bottom:846.213333pt;}
.ydb{bottom:846.373333pt;}
.y202{bottom:846.533333pt;}
.y23d{bottom:847.493333pt;}
.y163{bottom:848.133333pt;}
.y147{bottom:850.053333pt;}
.y7f{bottom:851.813333pt;}
.yf6{bottom:853.093333pt;}
.y297{bottom:853.733333pt;}
.y1c4{bottom:854.693333pt;}
.y121{bottom:858.693333pt;}
.y29{bottom:860.453333pt;}
.yc3{bottom:861.733333pt;}
.y4c{bottom:861.893333pt;}
.y55{bottom:863.493333pt;}
.yda{bottom:865.093333pt;}
.y318{bottom:865.893333pt;}
.y146{bottom:868.613333pt;}
.yb8{bottom:871.333333pt;}
.y296{bottom:872.453333pt;}
.y1c3{bottom:873.253333pt;}
.y201{bottom:873.413333pt;}
.y120{bottom:877.413333pt;}
.y28{bottom:880.453333pt;}
.yc2{bottom:881.733333pt;}
.y7d{bottom:882.533333pt;}
.yd9{bottom:883.653333pt;}
.y317{bottom:884.773333pt;}
.yf5{bottom:891.173333pt;}
.y1c2{bottom:891.973333pt;}
.y23c{bottom:893.093333pt;}
.y11f{bottom:895.973333pt;}
.y27{bottom:900.453333pt;}
.yc1{bottom:901.733333pt;}
.yd8{bottom:902.373333pt;}
.yb7{bottom:903.973333pt;}
.y145{bottom:906.693333pt;}
.y295{bottom:910.373333pt;}
.y1c1{bottom:910.693333pt;}
.y11e{bottom:914.693333pt;}
.y26{bottom:920.453333pt;}
.y7c{bottom:921.093333pt;}
.y316{bottom:923.493333pt;}
.y4{bottom:927.013333pt;}
.y200{bottom:927.333333pt;}
.y1c0{bottom:929.253333pt;}
.y11d{bottom:933.413333pt;}
.y23b{bottom:938.693333pt;}
.yf4{bottom:940.613333pt;}
.y3{bottom:946.053333pt;}
.yb6{bottom:947.013333pt;}
.y1bf{bottom:947.973333pt;}
.y11c{bottom:951.973333pt;}
.ya7{bottom:953.893333pt;}
.y1ff{bottom:954.213333pt;}
.y25{bottom:959.813333pt;}
.y2{bottom:964.613333pt;}
.y239{bottom:965.573333pt;}
.y78{bottom:969.733333pt;}
.y11b{bottom:970.693333pt;}
.y1fe{bottom:981.253333pt;}
.y1{bottom:981.893333pt;}
.y1be{bottom:984.293333pt;}
.yf3{bottom:988.773333pt;}
.yb5{bottom:989.413333pt;}
.y27a{bottom:990.533333pt;}
.y1f{bottom:1040.640000pt;}
.y1e{bottom:1067.086107pt;}
.y23{bottom:1073.760000pt;}
.y7a{bottom:1075.520000pt;}
.y32e{bottom:1122.560000pt;}
.h6b{height:3.922500pt;}
.h19{height:18.560000pt;}
.h46{height:18.720000pt;}
.h47{height:18.752000pt;}
.h57{height:19.200000pt;}
.h17{height:19.680000pt;}
.h22{height:20.000000pt;}
.h42{height:20.593125pt;}
.h1d{height:21.280000pt;}
.h14{height:22.400000pt;}
.h15{height:22.560000pt;}
.h26{height:22.720000pt;}
.h27{height:22.752000pt;}
.h1a{height:23.040000pt;}
.h16{height:23.840000pt;}
.h10{height:24.480000pt;}
.he{height:26.240000pt;}
.h5c{height:26.392500pt;}
.h69{height:26.880000pt;}
.h68{height:27.200000pt;}
.h63{height:27.520000pt;}
.h64{height:27.552000pt;}
.h65{height:27.680000pt;}
.h21{height:28.000000pt;}
.h41{height:28.438125pt;}
.h29{height:30.080000pt;}
.h25{height:30.400000pt;}
.h6c{height:30.705000pt;}
.h48{height:30.791250pt;}
.h36{height:30.889687pt;}
.h20{height:31.840000pt;}
.h4a{height:32.809062pt;}
.h43{height:32.850938pt;}
.h51{height:34.240000pt;}
.h4b{height:34.701250pt;}
.h3f{height:34.812188pt;}
.h2b{height:36.160000pt;}
.h2d{height:36.320000pt;}
.h23{height:36.512000pt;}
.h53{height:36.656250pt;}
.h3a{height:36.726562pt;}
.h61{height:36.773438pt;}
.h67{height:37.120000pt;}
.h3b{height:37.280000pt;}
.hd{height:37.631250pt;}
.h1e{height:39.200000pt;}
.h4d{height:40.644063pt;}
.h3e{height:40.695937pt;}
.h45{height:42.400000pt;}
.h49{height:43.147500pt;}
.h52{height:44.960000pt;}
.h59{height:44.965000pt;}
.h1f{height:45.051250pt;}
.h8{height:45.108750pt;}
.h2e{height:45.920000pt;}
.h2a{height:46.080000pt;}
.h44{height:47.742188pt;}
.h55{height:48.875000pt;}
.h56{height:48.968750pt;}
.h11{height:49.031250pt;}
.h5{height:50.062500pt;}
.h1b{height:51.520000pt;}
.h50{height:51.680000pt;}
.h18{height:52.515000pt;}
.h2{height:54.598989pt;}
.h13{height:55.402500pt;}
.h9{height:55.405312pt;}
.h4c{height:56.000000pt;}
.h3c{height:56.032000pt;}
.h3d{height:57.293437pt;}
.hc{height:57.366562pt;}
.h3{height:61.410000pt;}
.h35{height:63.656250pt;}
.h62{height:64.080000pt;}
.h60{height:65.211562pt;}
.ha{height:65.627188pt;}
.h32{height:66.750000pt;}
.h4e{height:68.832000pt;}
.h4f{height:68.960000pt;}
.h40{height:71.585625pt;}
.hf{height:72.090000pt;}
.h39{height:73.453125pt;}
.h38{height:73.546875pt;}
.h6a{height:74.592000pt;}
.h66{height:74.720000pt;}
.h4{height:78.097500pt;}
.h24{height:78.456875pt;}
.h12{height:81.777812pt;}
.h7{height:81.882188pt;}
.hb{height:87.845625pt;}
.h34{height:88.777500pt;}
.h2c{height:90.720000pt;}
.h1c{height:91.552000pt;}
.h37{height:100.125000pt;}
.h31{height:111.472500pt;}
.h2f{height:130.720000pt;}
.h28{height:152.857500pt;}
.h33{height:158.865000pt;}
.h6{height:190.183437pt;}
.h30{height:216.937500pt;}
.h5d{height:243.386667pt;}
.h58{height:250.786667pt;}
.h5f{height:253.666667pt;}
.h54{height:263.746667pt;}
.h5e{height:271.066667pt;}
.h5b{height:278.426667pt;}
.h5a{height:279.706667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w4{width:26.432000pt;}
.w18{width:36.640000pt;}
.w19{width:60.480000pt;}
.w24{width:75.040000pt;}
.w23{width:93.792000pt;}
.w1c{width:103.360000pt;}
.we{width:105.600000pt;}
.w10{width:105.632000pt;}
.wb{width:105.760000pt;}
.w1b{width:114.912000pt;}
.w20{width:121.760000pt;}
.wc{width:127.072000pt;}
.w3{width:130.400000pt;}
.w21{width:140.986667pt;}
.w15{width:146.426667pt;}
.w17{width:148.960000pt;}
.w16{width:149.306667pt;}
.wf{width:152.666667pt;}
.w14{width:153.786667pt;}
.w1e{width:166.906667pt;}
.w8{width:169.626667pt;}
.w7{width:169.786667pt;}
.w11{width:169.826667pt;}
.wd{width:178.746667pt;}
.w22{width:179.066667pt;}
.w9{width:186.266667pt;}
.w2a{width:193.306667pt;}
.w28{width:194.266667pt;}
.w1a{width:238.786667pt;}
.w1f{width:242.906667pt;}
.w5{width:247.706667pt;}
.w6{width:247.866667pt;}
.w12{width:301.506667pt;}
.w13{width:301.786667pt;}
.wa{width:415.106667pt;}
.w2b{width:424.413333pt;}
.w29{width:426.653333pt;}
.w27{width:597.373333pt;}
.w26{width:601.373333pt;}
.w25{width:604.893333pt;}
.w1{width:794.000000pt;}
.w1d{width:794.079976pt;}
.w2{width:794.079988pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x7{left:1.280000pt;}
.xa{left:4.000000pt;}
.x1b{left:6.880000pt;}
.xd{left:9.600000pt;}
.x5f{left:11.680000pt;}
.x27{left:14.080000pt;}
.x25{left:27.040000pt;}
.x61{left:30.720000pt;}
.x56{left:43.514667pt;}
.x22{left:44.800000pt;}
.x1f{left:47.840000pt;}
.x1d{left:53.914667pt;}
.x20{left:86.080000pt;}
.x51{left:90.432000pt;}
.x2{left:96.031988pt;}
.x41{left:99.871988pt;}
.x13{left:101.472000pt;}
.x14{left:102.752000pt;}
.x18{left:104.520000pt;}
.x3{left:109.311988pt;}
.x1c{left:110.752000pt;}
.x11{left:112.032000pt;}
.x34{left:113.631988pt;}
.x10{left:114.592000pt;}
.x23{left:115.840000pt;}
.x2d{left:118.752000pt;}
.x29{left:119.871988pt;}
.x5b{left:123.711988pt;}
.x8{left:128.160000pt;}
.x26{left:132.000000pt;}
.x3a{left:139.706655pt;}
.x28{left:144.026655pt;}
.x5e{left:150.114667pt;}
.x2e{left:156.026667pt;}
.x5c{left:157.306655pt;}
.x43{left:162.266655pt;}
.x3b{left:167.706655pt;}
.x3e{left:177.786655pt;}
.x3c{left:186.746655pt;}
.x37{left:194.106655pt;}
.x35{left:200.506655pt;}
.x62{left:202.274667pt;}
.x3f{left:211.226643pt;}
.x52{left:212.986667pt;}
.x2f{left:217.146667pt;}
.x5d{left:218.906655pt;}
.x60{left:221.954667pt;}
.x59{left:232.826655pt;}
.x4c{left:236.186655pt;}
.x38{left:241.506655pt;}
.x4a{left:244.706655pt;}
.x58{left:251.906655pt;}
.x2a{left:253.666655pt;}
.x5a{left:256.546655pt;}
.x44{left:257.986655pt;}
.x4f{left:263.906655pt;}
.x1e{left:265.186667pt;}
.x50{left:267.266655pt;}
.x4{left:270.306655pt;}
.x2c{left:273.986655pt;}
.x19{left:275.106655pt;}
.x4e{left:278.786655pt;}
.x33{left:286.306655pt;}
.x12{left:287.586667pt;}
.xf{left:295.266667pt;}
.xe{left:296.546667pt;}
.xc{left:299.586667pt;}
.x57{left:302.434667pt;}
.x66{left:305.346667pt;}
.x65{left:306.306667pt;}
.x48{left:311.106667pt;}
.x47{left:319.106655pt;}
.x64{left:326.306655pt;}
.x53{left:354.626667pt;}
.x42{left:370.146655pt;}
.x9{left:383.746667pt;}
.x4d{left:397.026655pt;}
.x1a{left:411.133333pt;}
.x21{left:412.413333pt;}
.x32{left:449.373321pt;}
.x63{left:454.813321pt;}
.x30{left:456.573333pt;}
.x16{left:459.293333pt;}
.x45{left:516.253321pt;}
.x46{left:521.373321pt;}
.x1{left:528.733322pt;}
.x54{left:534.333333pt;}
.x17{left:551.133333pt;}
.x49{left:554.653333pt;}
.xb{left:560.133322pt;}
.x24{left:562.373333pt;}
.x31{left:572.133333pt;}
.x15{left:573.413333pt;}
.x6{left:580.293333pt;}
.x36{left:585.893321pt;}
.x40{left:589.573310pt;}
.x3d{left:595.013321pt;}
.x5{left:600.624027pt;}
.x4b{left:610.053322pt;}
.x55{left:628.773333pt;}
.x39{left:663.013321pt;}
.x2b{left:689.733321pt;}
}




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