
    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_8695ef66c7a6bbaa7b5fadaa.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_19d714eaf6280e2ec310a808.woff')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_411286d71ccafddd8d871e82.woff')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_2dfba345bf69557df3b65085.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_cb831bfc45030f6d94299355.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_b0b15e2014e9299aee880581.woff')format("woff");}.ff6{font-family:ff6;line-height:0.690918;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_2708fd9fd160649447b04223.woff')format("woff");}.ff7{font-family:ff7;line-height:1.035156;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_0d04aa8ac4314136d7d7945e.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_a07afe1b1823860ac453566f.woff')format("woff");}.ff9{font-family:ff9;line-height:0.737793;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_be12527f3ed257916a44a393.woff')format("woff");}.ffa{font-family:ffa;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_796e0c685b12e50a885f5797.woff')format("woff");}.ffb{font-family:ffb;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_d4ed0f5ad4a2a553fed524b1.woff')format("woff");}.ffc{font-family:ffc;line-height:0.709473;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_0f31720e86d7001c818442b7.woff')format("woff");}.ffd{font-family:ffd;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_9b03f4b4327374dcb79e06db.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_53d76653af1e661553cefa85.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_995bdc830f39373fd8abf972.woff')format("woff");}.ff10{font-family:ff10;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_b9c4df2b91a32575651a9ae9.woff')format("woff");}.ff11{font-family:ff11;line-height:1.401855;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_b2ddb77861d48ea40dbfeadb.woff')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_30d5e80a5936e058f7ba7dd7.woff')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_30d5e80a5936e058f7ba7dd7.woff')format("woff");}.ff14{font-family:ff14;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.m3{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);}
.v3{vertical-align:-63.360000px;}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls14{letter-spacing:-1.440000px;}
.ls33{letter-spacing:-0.666000px;}
.ls30{letter-spacing:-0.460200px;}
.ls18{letter-spacing:-0.269400px;}
.ls32{letter-spacing:-0.259800px;}
.lsa{letter-spacing:-0.223800px;}
.ls2e{letter-spacing:-0.206400px;}
.ls19{letter-spacing:-0.181200px;}
.ls17{letter-spacing:-0.053280px;}
.ls9{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.106800px;}
.lsc{letter-spacing:0.108000px;}
.ls15{letter-spacing:0.126000px;}
.ls20{letter-spacing:0.129600px;}
.ls2{letter-spacing:0.144720px;}
.ls3{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.226200px;}
.ls22{letter-spacing:0.249600px;}
.ls23{letter-spacing:0.259800px;}
.ls1c{letter-spacing:0.259920px;}
.ls24{letter-spacing:0.269400px;}
.ls2f{letter-spacing:0.298800px;}
.ls16{letter-spacing:0.306720px;}
.ls5{letter-spacing:0.360000px;}
.lse{letter-spacing:0.493800px;}
.ls8{letter-spacing:0.493920px;}
.ls2d{letter-spacing:0.513600px;}
.lsb{letter-spacing:0.569400px;}
.ls31{letter-spacing:0.714000px;}
.ls7{letter-spacing:0.720000px;}
.ls10{letter-spacing:0.828000px;}
.ls1a{letter-spacing:0.894240px;}
.ls6{letter-spacing:0.900000px;}
.ls28{letter-spacing:2.340000px;}
.ls4{letter-spacing:3.780000px;}
.ls2a{letter-spacing:7.380000px;}
.ls26{letter-spacing:10.260000px;}
.ls13{letter-spacing:10.380000px;}
.ls1f{letter-spacing:10.980000px;}
.lsf{letter-spacing:12.240000px;}
.ls29{letter-spacing:12.420000px;}
.ls27{letter-spacing:14.580000px;}
.ls2b{letter-spacing:18.900000px;}
.ls1e{letter-spacing:28.224000px;}
.ls25{letter-spacing:31.140000px;}
.ls2c{letter-spacing:34.560000px;}
.ls11{letter-spacing:36.000000px;}
.ls12{letter-spacing:38.340000px;}
.ls1{letter-spacing:47.700000px;}
.ls0{letter-spacing:71.280000px;}
.ls21{letter-spacing:72.269280px;}
.ls1d{letter-spacing:174.396000px;}
.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;}
}
.ws15{word-spacing:-18.000000px;}
.wsc{word-spacing:-16.560000px;}
.ws1a{word-spacing:-15.453600px;}
.ws17{word-spacing:-15.300000px;}
.ws19{word-spacing:-15.238800px;}
.ws14{word-spacing:-15.199800px;}
.ws13{word-spacing:-15.046800px;}
.wse{word-spacing:-14.940000px;}
.ws10{word-spacing:-14.886720px;}
.ws18{word-spacing:-14.733600px;}
.ws1c{word-spacing:-14.680200px;}
.ws1d{word-spacing:-14.274000px;}
.wsd{word-spacing:-14.220000px;}
.wsb{word-spacing:-13.860000px;}
.wsf{word-spacing:-13.626000px;}
.ws5{word-spacing:-13.500000px;}
.ws4{word-spacing:-12.420000px;}
.ws16{word-spacing:-12.329400px;}
.ws2{word-spacing:-12.060000px;}
.ws12{word-spacing:-11.878800px;}
.ws11{word-spacing:-11.790600px;}
.ws3{word-spacing:-10.950480px;}
.ws9{word-spacing:-10.933800px;}
.ws7{word-spacing:-10.666200px;}
.ws8{word-spacing:-10.440000px;}
.ws1b{word-spacing:-10.434000px;}
.ws6{word-spacing:-9.000000px;}
.ws1{word-spacing:-7.560000px;}
.wsa{word-spacing:0.000000px;}
.ws0{word-spacing:60.840000px;}
._36{margin-left:-2368.996800px;}
._37{margin-left:-722.950080px;}
._5{margin-left:-59.580000px;}
._16{margin-left:-3.746880px;}
._11{margin-left:-2.509920px;}
._2{margin-left:-1.443840px;}
._0{width:1.044000px;}
._1{width:2.424480px;}
._14{width:3.460080px;}
._12{width:4.597920px;}
._7{width:5.708880px;}
._8{width:7.410240px;}
._17{width:9.167760px;}
._a{width:10.995840px;}
._9{width:12.967920px;}
._15{width:15.498000px;}
._e{width:16.852320px;}
._f{width:18.110640px;}
._d{width:19.726800px;}
._c{width:21.186720px;}
._26{width:22.435680px;}
._31{width:23.485680px;}
._25{width:24.501600px;}
._2f{width:25.876080px;}
._19{width:26.951760px;}
._20{width:27.967680px;}
._2d{width:29.194560px;}
._34{width:30.869040px;}
._2e{width:31.925280px;}
._29{width:33.497280px;}
._10{width:34.780320px;}
._1b{width:35.887680px;}
._1a{width:37.110960px;}
._1c{width:38.168160px;}
._1e{width:39.294000px;}
._1f{width:40.935600px;}
._2b{width:42.071040px;}
._2a{width:43.326000px;}
._13{width:44.939520px;}
._1d{width:46.704240px;}
._3e{width:47.909040px;}
._2c{width:49.361760px;}
._43{width:50.736240px;}
._42{width:51.991200px;}
._3a{width:53.007120px;}
._b{width:54.262080px;}
._44{width:55.995120px;}
._27{width:57.489120px;}
._28{width:58.803840px;}
._24{width:60.118560px;}
._23{width:63.934320px;}
._3{width:65.496000px;}
._47{width:67.050720px;}
._48{width:68.186160px;}
._4c{width:69.859440px;}
._45{width:70.994880px;}
._3b{width:73.008000px;}
._30{width:74.102400px;}
._41{width:76.492800px;}
._32{width:78.763680px;}
._22{width:80.568000px;}
._21{width:81.720000px;}
._3d{width:83.784000px;}
._3c{width:86.412960px;}
._46{width:88.982640px;}
._4a{width:91.134000px;}
._4d{width:93.584160px;}
._3f{width:97.739280px;}
._40{width:98.902800px;}
._4b{width:109.087920px;}
._39{width:116.264880px;}
._38{width:117.368640px;}
._4{width:199.620000px;}
._49{width:205.381200px;}
._18{width:289.470000px;}
._35{width:420.636000px;}
._6{width:755.976000px;}
._33{width:2546.676000px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:5.760000px;}
.fs13{font-size:6.000000px;}
.fs10{font-size:12.240000px;}
.fsd{font-size:18.000000px;}
.fsc{font-size:23.760000px;}
.fs7{font-size:30.240000px;}
.fse{font-size:36.000000px;}
.fsb{font-size:37.946952px;}
.fs12{font-size:38.880000px;}
.fs0{font-size:41.760000px;}
.fs6{font-size:45.360000px;}
.fs8{font-size:48.240000px;}
.fsa{font-size:54.000000px;}
.fsf{font-size:56.880000px;}
.fs1{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs9{font-size:72.000000px;}
.fs11{font-size:75.893905px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.y78{bottom:-251.490000px;}
.y77{bottom:-217.830000px;}
.y76{bottom:-183.990000px;}
.y75{bottom:-150.330000px;}
.y74{bottom:-116.460000px;}
.y82{bottom:-90.705000px;}
.y73{bottom:-82.800000px;}
.y81{bottom:-57.045000px;}
.y72{bottom:-49.140000px;}
.y198{bottom:-34.365000px;}
.y185{bottom:-29.190000px;}
.y6b{bottom:-28.650000px;}
.y3d{bottom:-27.180000px;}
.y80{bottom:-23.205000px;}
.y84{bottom:-17.922750px;}
.y71{bottom:-15.300000px;}
.y197{bottom:-13.305000px;}
.y68{bottom:-11.340000px;}
.y5f{bottom:-9.735000px;}
.y190{bottom:-0.540000px;}
.y0{bottom:0.000000px;}
.y19d{bottom:1.605000px;}
.y184{bottom:1.620000px;}
.y2c3{bottom:1.837500px;}
.y70{bottom:2.700000px;}
.y1bc{bottom:2.880000px;}
.y2{bottom:3.960000px;}
.y1af{bottom:4.680000px;}
.y11c{bottom:4.845000px;}
.y1b3{bottom:4.860000px;}
.y126{bottom:5.025000px;}
.y3c{bottom:5.040000px;}
.y6a{bottom:5.580000px;}
.y5e{bottom:5.745000px;}
.y196{bottom:5.775000px;}
.y189{bottom:6.135000px;}
.y18c{bottom:6.495000px;}
.y67{bottom:6.660000px;}
.y179{bottom:7.560000px;}
.y17c{bottom:8.085000px;}
.y181{bottom:8.280000px;}
.y17e{bottom:8.625000px;}
.y7f{bottom:10.455000px;}
.y7{bottom:12.420000px;}
.y1ef{bottom:12.600000px;}
.y11d{bottom:12.765000px;}
.y1c6{bottom:13.125000px;}
.y4{bottom:13.500000px;}
.y1c2{bottom:13.665000px;}
.y3{bottom:13.680000px;}
.y18f{bottom:15.300000px;}
.y6f{bottom:15.660000px;}
.y1bb{bottom:16.740000px;}
.y19c{bottom:17.445000px;}
.y1f1{bottom:17.655000px;}
.y1f3{bottom:17.835000px;}
.y66{bottom:18.720000px;}
.y1e7{bottom:19.620000px;}
.y123{bottom:20.685000px;}
.y1b4{bottom:20.700000px;}
.y11b{bottom:20.730000px;}
.y125{bottom:20.865000px;}
.y1b9{bottom:20.880000px;}
.y1bd{bottom:20.910000px;}
.y1b1{bottom:21.060000px;}
.y5d{bottom:21.225000px;}
.y195{bottom:21.615000px;}
.y188{bottom:22.335000px;}
.y18b{bottom:22.515000px;}
.y192{bottom:22.695000px;}
.y6{bottom:25.200000px;}
.y1ee{bottom:27.540000px;}
.y6e{bottom:28.800000px;}
.y183{bottom:29.160000px;}
.y1c1{bottom:29.505000px;}
.y7e{bottom:29.535000px;}
.y1bf{bottom:29.685000px;}
.y65{bottom:30.780000px;}
.y18e{bottom:31.140000px;}
.y19b{bottom:33.285000px;}
.y1e6{bottom:34.380000px;}
.y178{bottom:34.560000px;}
.y1de{bottom:34.725000px;}
.y17b{bottom:34.905000px;}
.y180{bottom:35.100000px;}
.y17d{bottom:35.625000px;}
.y11f{bottom:36.525000px;}
.y122{bottom:36.705000px;}
.y5c{bottom:36.885000px;}
.y194{bottom:37.455000px;}
.y5{bottom:38.160000px;}
.y187{bottom:38.175000px;}
.y6d{bottom:41.040000px;}
.y1ed{bottom:42.480000px;}
.y7d{bottom:42.495000px;}
.y64{bottom:42.840000px;}
.y1b7{bottom:43.410000px;}
.y19f{bottom:44.805000px;}
.y19a{bottom:49.125000px;}
.y1e5{bottom:49.320000px;}
.y1dd{bottom:49.845000px;}
.y5b{bottom:52.185000px;}
.y121{bottom:52.545000px;}
.y63{bottom:54.900000px;}
.y176{bottom:54.915000px;}
.y7c{bottom:55.455000px;}
.y1ec{bottom:57.240000px;}
.y174{bottom:59.235000px;}
.y88{bottom:59.760000px;}
.yf1{bottom:60.480000px;}
.y1{bottom:61.380000px;}
.y83{bottom:63.780000px;}
.y5a{bottom:64.605000px;}
.y1dc{bottom:64.785000px;}
.y1e4{bottom:65.160000px;}
.y62{bottom:66.960000px;}
.y120{bottom:68.385000px;}
.y7b{bottom:68.595000px;}
.y1eb{bottom:73.080000px;}
.y1f6{bottom:76.320000px;}
.y87{bottom:77.220000px;}
.y1e3{bottom:79.920000px;}
.y1db{bottom:80.445000px;}
.y7a{bottom:80.865000px;}
.y172{bottom:81.705000px;}
.y59{bottom:82.470000px;}
.y61{bottom:83.880000px;}
.y1a0{bottom:86.400000px;}
.y1ea{bottom:88.020000px;}
.y1e2{bottom:94.860000px;}
.y1da{bottom:96.285000px;}
.y1d8{bottom:97.920000px;}
.y58{bottom:100.290000px;}
.y12e{bottom:100.440000px;}
.y1ad{bottom:101.370000px;}
.y1e9{bottom:102.780000px;}
.y2c2{bottom:103.680000px;}
.y1f5{bottom:103.860000px;}
.y134{bottom:104.400000px;}
.y26d{bottom:104.580000px;}
.y279{bottom:105.480000px;}
.y1d0{bottom:107.820000px;}
.y1e1{bottom:109.800000px;}
.y86{bottom:110.520000px;}
.y26c{bottom:117.540000px;}
.y1d7{bottom:117.720000px;}
.y57{bottom:118.110000px;}
.y2c1{bottom:119.160000px;}
.y12d{bottom:120.240000px;}
.y27e{bottom:123.480000px;}
.y133{bottom:124.200000px;}
.y1e0{bottom:124.560000px;}
.y278{bottom:125.280000px;}
.y1cf{bottom:127.620000px;}
.y3a{bottom:128.340000px;}
.yb9{bottom:129.600000px;}
.y169{bottom:134.280000px;}
.y215{bottom:135.360000px;}
.y56{bottom:136.110000px;}
.y298{bottom:136.260000px;}
.y26b{bottom:137.340000px;}
.y170{bottom:137.700000px;}
.y23e{bottom:138.240000px;}
.y1d6{bottom:138.960000px;}
.y12c{bottom:140.040000px;}
.y27f{bottom:142.020000px;}
.y27d{bottom:143.280000px;}
.y132{bottom:144.000000px;}
.yf0{bottom:144.360000px;}
.y277{bottom:145.080000px;}
.yb8{bottom:145.980000px;}
.y1ce{bottom:147.600000px;}
.y39{bottom:148.140000px;}
.y23d{bottom:151.200000px;}
.y168{bottom:151.560000px;}
.y55{bottom:153.930000px;}
.y16f{bottom:154.980000px;}
.y214{bottom:155.160000px;}
.y297{bottom:156.060000px;}
.y26a{bottom:157.140000px;}
.y1d5{bottom:158.400000px;}
.y2c0{bottom:158.940000px;}
.y12b{bottom:159.840000px;}
.yef{bottom:161.640000px;}
.y27c{bottom:163.110000px;}
.y131{bottom:163.830000px;}
.yb7{bottom:165.990000px;}
.y1cd{bottom:167.430000px;}
.y38{bottom:167.970000px;}
.y167{bottom:168.870000px;}
.y23c{bottom:171.030000px;}
.y1d4{bottom:171.390000px;}
.y54{bottom:171.750000px;}
.y16e{bottom:172.290000px;}
.y213{bottom:174.990000px;}
.y269{bottom:176.970000px;}
.y2bf{bottom:178.770000px;}
.yee{bottom:178.950000px;}
.y12a{bottom:179.670000px;}
.y27b{bottom:183.090000px;}
.y130{bottom:183.810000px;}
.y166{bottom:186.150000px;}
.y1cc{bottom:187.230000px;}
.y37{bottom:187.950000px;}
.y53{bottom:189.570000px;}
.yb6{bottom:189.930000px;}
.y23b{bottom:191.010000px;}
.y1d3{bottom:191.190000px;}
.y212{bottom:194.970000px;}
.yed{bottom:196.050000px;}
.y268{bottom:196.950000px;}
.y2be{bottom:198.570000px;}
.y129{bottom:200.550000px;}
.y27a{bottom:202.890000px;}
.y165{bottom:203.430000px;}
.y12f{bottom:203.610000px;}
.y16d{bottom:206.850000px;}
.y1cb{bottom:207.030000px;}
.y52{bottom:207.390000px;}
.y36{bottom:207.750000px;}
.yb5{bottom:209.730000px;}
.y23a{bottom:210.810000px;}
.y1d2{bottom:210.990000px;}
.yec{bottom:213.330000px;}
.y211{bottom:214.770000px;}
.y267{bottom:216.750000px;}
.y2bd{bottom:218.370000px;}
.y128{bottom:218.550000px;}
.y164{bottom:220.530000px;}
.y51{bottom:220.710000px;}
.yb4{bottom:222.690000px;}
.y296{bottom:223.590000px;}
.y16c{bottom:224.130000px;}
.y276{bottom:226.650000px;}
.y127{bottom:227.370000px;}
.y35{bottom:227.550000px;}
.y1ca{bottom:227.730000px;}
.y50{bottom:229.530000px;}
.yeb{bottom:230.610000px;}
.y1d1{bottom:230.790000px;}
.y210{bottom:234.570000px;}
.y266{bottom:236.550000px;}
.y163{bottom:237.810000px;}
.y2bc{bottom:238.170000px;}
.y16b{bottom:241.230000px;}
.yb3{bottom:242.490000px;}
.y124{bottom:243.225000px;}
.y275{bottom:246.450000px;}
.y34{bottom:247.350000px;}
.y4f{bottom:247.530000px;}
.yea{bottom:247.890000px;}
.y239{bottom:250.410000px;}
.y1c9{bottom:250.770000px;}
.y20f{bottom:254.370000px;}
.y162{bottom:255.450000px;}
.y265{bottom:256.350000px;}
.y295{bottom:258.150000px;}
.y16a{bottom:258.510000px;}
.yb2{bottom:262.290000px;}
.ye9{bottom:265.170000px;}
.y4e{bottom:265.350000px;}
.y274{bottom:266.250000px;}
.y33{bottom:267.150000px;}
.y238{bottom:270.210000px;}
.y1c8{bottom:270.570000px;}
.y20e{bottom:274.170000px;}
.y264{bottom:276.150000px;}
.y2bb{bottom:277.950000px;}
.y161{bottom:278.130000px;}
.y294{bottom:278.670000px;}
.yb1{bottom:282.270000px;}
.ye8{bottom:282.450000px;}
.y4d{bottom:283.170000px;}
.y273{bottom:286.230000px;}
.y1c5{bottom:286.425000px;}
.y32{bottom:287.130000px;}
.y237{bottom:290.190000px;}
.y11e{bottom:291.645000px;}
.y20d{bottom:294.150000px;}
.y263{bottom:296.130000px;}
.y160{bottom:297.570000px;}
.y2ba{bottom:297.750000px;}
.ye7{bottom:299.550000px;}
.y4c{bottom:301.020000px;}
.yb0{bottom:302.070000px;}
.y1c7{bottom:303.165000px;}
.y272{bottom:306.030000px;}
.y31{bottom:307.830000px;}
.y236{bottom:309.990000px;}
.y19e{bottom:313.245000px;}
.y20c{bottom:313.950000px;}
.y15f{bottom:315.030000px;}
.y262{bottom:315.930000px;}
.ye6{bottom:316.830000px;}
.y2b9{bottom:317.550000px;}
.y4b{bottom:318.840000px;}
.y1be{bottom:319.725000px;}
.yaf{bottom:321.870000px;}
.y293{bottom:325.470000px;}
.y30{bottom:326.190000px;}
.y271{bottom:326.730000px;}
.y3e{bottom:327.645000px;}
.y199{bottom:327.825000px;}
.y235{bottom:331.050000px;}
.y4a{bottom:332.160000px;}
.y15e{bottom:332.850000px;}
.y20b{bottom:333.750000px;}
.ye5{bottom:334.110000px;}
.y2f{bottom:335.190000px;}
.y261{bottom:335.730000px;}
.y1c0{bottom:336.285000px;}
.y2b8{bottom:337.350000px;}
.y49{bottom:340.980000px;}
.yae{bottom:341.670000px;}
.y292{bottom:345.990000px;}
.y234{bottom:350.490000px;}
.y15d{bottom:350.670000px;}
.y2e{bottom:351.030000px;}
.ye4{bottom:351.390000px;}
.y1c4{bottom:353.025000px;}
.y20a{bottom:353.550000px;}
.y260{bottom:355.530000px;}
.y2b7{bottom:357.330000px;}
.y48{bottom:358.980000px;}
.yad{bottom:361.470000px;}
.y233{bottom:363.450000px;}
.y2d{bottom:366.870000px;}
.y15c{bottom:368.490000px;}
.ye3{bottom:368.670000px;}
.y1c3{bottom:369.585000px;}
.y270{bottom:370.290000px;}
.y11a{bottom:373.185000px;}
.y209{bottom:373.350000px;}
.y25f{bottom:375.330000px;}
.y47{bottom:376.800000px;}
.y2b6{bottom:377.130000px;}
.yac{bottom:381.450000px;}
.y2c{bottom:382.890000px;}
.y232{bottom:383.430000px;}
.ye2{bottom:385.770000px;}
.y1ac{bottom:386.145000px;}
.y15b{bottom:386.490000px;}
.y291{bottom:386.850000px;}
.y208{bottom:393.375000px;}
.y46{bottom:394.620000px;}
.y25e{bottom:395.355000px;}
.y2b5{bottom:396.975000px;}
.y2b{bottom:398.775000px;}
.yab{bottom:401.295000px;}
.ye1{bottom:403.095000px;}
.y231{bottom:403.275000px;}
.y15a{bottom:404.355000px;}
.y290{bottom:406.695000px;}
.y175{bottom:407.580000px;}
.y18d{bottom:409.035000px;}
.y45{bottom:412.440000px;}
.y207{bottom:413.175000px;}
.y119{bottom:413.355000px;}
.y25d{bottom:415.155000px;}
.y2b4{bottom:416.775000px;}
.y2a{bottom:416.955000px;}
.y1ba{bottom:418.755000px;}
.ye0{bottom:420.375000px;}
.yaa{bottom:421.095000px;}
.y159{bottom:422.175000px;}
.y230{bottom:423.075000px;}
.y28f{bottom:426.675000px;}
.y44{bottom:430.260000px;}
.y206{bottom:432.975000px;}
.y118{bottom:433.335000px;}
.y25c{bottom:434.955000px;}
.y2b3{bottom:436.575000px;}
.ydf{bottom:437.655000px;}
.y29{bottom:437.835000px;}
.y158{bottom:439.995000px;}
.ya9{bottom:440.895000px;}
.y22f{bottom:442.875000px;}
.y193{bottom:445.020000px;}
.y28e{bottom:446.475000px;}
.y1b8{bottom:447.015000px;}
.y43{bottom:448.260000px;}
.y205{bottom:452.775000px;}
.y105{bottom:453.135000px;}
.y25b{bottom:454.755000px;}
.yde{bottom:454.935000px;}
.y2b2{bottom:456.555000px;}
.y28{bottom:457.635000px;}
.y157{bottom:457.815000px;}
.ya8{bottom:460.695000px;}
.y42{bottom:461.400000px;}
.y22e{bottom:462.675000px;}
.y117{bottom:466.635000px;}
.y28d{bottom:467.175000px;}
.y41{bottom:470.400000px;}
.y27{bottom:471.315000px;}
.ydd{bottom:472.215000px;}
.y204{bottom:472.575000px;}
.y104{bottom:472.935000px;}
.y25a{bottom:474.555000px;}
.y156{bottom:475.635000px;}
.y2b1{bottom:476.355000px;}
.y1b5{bottom:479.595000px;}
.y26{bottom:480.135000px;}
.ya7{bottom:480.675000px;}
.y22d{bottom:482.655000px;}
.y116{bottom:486.615000px;}
.y40{bottom:488.220000px;}
.ydc{bottom:489.315000px;}
.y203{bottom:492.555000px;}
.y103{bottom:492.735000px;}
.y155{bottom:493.635000px;}
.y259{bottom:495.795000px;}
.y1b6{bottom:496.155000px;}
.ya6{bottom:500.475000px;}
.y18a{bottom:500.820000px;}
.y22c{bottom:502.455000px;}
.y25{bottom:503.355000px;}
.y3f{bottom:506.040000px;}
.y115{bottom:506.415000px;}
.ydb{bottom:506.595000px;}
.y28c{bottom:508.035000px;}
.y154{bottom:511.455000px;}
.y202{bottom:512.355000px;}
.y102{bottom:512.535000px;}
.y2b0{bottom:515.955000px;}
.y258{bottom:519.555000px;}
.ya5{bottom:520.275000px;}
.y173{bottom:520.620000px;}
.y22b{bottom:522.255000px;}
.yda{bottom:523.875000px;}
.y114{bottom:526.215000px;}
.y24{bottom:526.575000px;}
.y28b{bottom:527.835000px;}
.y1b0{bottom:528.735000px;}
.y153{bottom:529.275000px;}
.y201{bottom:532.155000px;}
.y101{bottom:532.515000px;}
.y2af{bottom:535.755000px;}
.y257{bottom:538.995000px;}
.ya4{bottom:540.075000px;}
.yd9{bottom:541.155000px;}
.y22a{bottom:542.055000px;}
.y79{bottom:544.740000px;}
.y113{bottom:546.015000px;}
.y152{bottom:547.095000px;}
.y28a{bottom:548.715000px;}
.y23{bottom:549.975000px;}
.y200{bottom:551.955000px;}
.y100{bottom:552.315000px;}
.y191{bottom:552.660000px;}
.y2ae{bottom:555.735000px;}
.yd8{bottom:558.435000px;}
.ya3{bottom:559.875000px;}
.y1b2{bottom:561.135000px;}
.y229{bottom:561.855000px;}
.y151{bottom:564.915000px;}
.y112{bottom:565.815000px;}
.y186{bottom:571.380000px;}
.y1ff{bottom:571.755000px;}
.yff{bottom:572.115000px;}
.y289{bottom:572.475000px;}
.y22{bottom:573.195000px;}
.y2ad{bottom:575.535000px;}
.yd7{bottom:575.715000px;}
.y1ae{bottom:579.315000px;}
.ya2{bottom:579.855000px;}
.y228{bottom:581.835000px;}
.y150{bottom:582.915000px;}
.y111{bottom:585.795000px;}
.y1fe{bottom:591.735000px;}
.yfe{bottom:591.915000px;}
.yd6{bottom:592.815000px;}
.y2ac{bottom:595.335000px;}
.y21{bottom:596.595000px;}
.ya1{bottom:599.655000px;}
.y14f{bottom:600.735000px;}
.y227{bottom:601.635000px;}
.y110{bottom:605.595000px;}
.yfd{bottom:609.735000px;}
.yd5{bottom:610.095000px;}
.y256{bottom:611.535000px;}
.y1fd{bottom:612.795000px;}
.y288{bottom:613.335000px;}
.y2ab{bottom:615.135000px;}
.y1ab{bottom:616.575000px;}
.y14e{bottom:618.555000px;}
.ya0{bottom:619.455000px;}
.y20{bottom:619.815000px;}
.y226{bottom:621.435000px;}
.y10f{bottom:625.425000px;}
.yd4{bottom:627.405000px;}
.y255{bottom:631.365000px;}
.y1fc{bottom:632.265000px;}
.y287{bottom:633.165000px;}
.y2aa{bottom:634.965000px;}
.y14d{bottom:636.405000px;}
.y9f{bottom:639.285000px;}
.y225{bottom:641.265000px;}
.yd3{bottom:644.685000px;}
.y171{bottom:644.700000px;}
.y10e{bottom:645.225000px;}
.y182{bottom:646.125000px;}
.y1aa{bottom:646.845000px;}
.yfc{bottom:650.445000px;}
.y254{bottom:651.165000px;}
.y286{bottom:652.965000px;}
.y14c{bottom:654.225000px;}
.y2a9{bottom:654.945000px;}
.y60{bottom:657.105000px;}
.y9e{bottom:659.085000px;}
.y224{bottom:661.065000px;}
.yd2{bottom:661.965000px;}
.y10d{bottom:665.025000px;}
.yfb{bottom:670.425000px;}
.y253{bottom:670.965000px;}
.y14b{bottom:672.045000px;}
.y285{bottom:673.845000px;}
.y1f{bottom:674.745000px;}
.y9d{bottom:679.065000px;}
.yd1{bottom:679.245000px;}
.y223{bottom:681.045000px;}
.y10c{bottom:685.005000px;}
.y1df{bottom:687.165000px;}
.y14a{bottom:690.045000px;}
.y1e{bottom:690.225000px;}
.y252{bottom:690.945000px;}
.y1e8{bottom:693.825000px;}
.y2a8{bottom:694.545000px;}
.y1d9{bottom:694.560000px;}
.yd0{bottom:696.345000px;}
.y9c{bottom:698.865000px;}
.y222{bottom:700.845000px;}
.y10b{bottom:704.805000px;}
.y1d{bottom:705.705000px;}
.y149{bottom:707.865000px;}
.yfa{bottom:710.025000px;}
.y251{bottom:710.745000px;}
.ycf{bottom:713.625000px;}
.y2a7{bottom:714.345000px;}
.y284{bottom:714.705000px;}
.y9b{bottom:718.665000px;}
.y221{bottom:720.645000px;}
.y1c{bottom:721.185000px;}
.y10a{bottom:724.605000px;}
.y148{bottom:725.685000px;}
.yf9{bottom:729.825000px;}
.y250{bottom:730.545000px;}
.yce{bottom:730.905000px;}
.y2a6{bottom:734.145000px;}
.y283{bottom:734.505000px;}
.y1b{bottom:736.845000px;}
.y9a{bottom:738.465000px;}
.y220{bottom:740.445000px;}
.y147{bottom:743.505000px;}
.y109{bottom:744.405000px;}
.y1a{bottom:747.825000px;}
.y177{bottom:748.005000px;}
.ycd{bottom:748.185000px;}
.y17a{bottom:748.200000px;}
.y17f{bottom:749.265000px;}
.yf8{bottom:749.625000px;}
.y24f{bottom:750.345000px;}
.y2a5{bottom:754.125000px;}
.y282{bottom:754.305000px;}
.y99{bottom:758.265000px;}
.y6c{bottom:759.705000px;}
.y21f{bottom:760.245000px;}
.y146{bottom:761.325000px;}
.y19{bottom:761.505000px;}
.y108{bottom:764.205000px;}
.ycc{bottom:765.465000px;}
.yf7{bottom:769.605000px;}
.y24e{bottom:770.145000px;}
.y2a4{bottom:773.925000px;}
.y18{bottom:774.105000px;}
.y98{bottom:778.245000px;}
.y145{bottom:779.325000px;}
.y21e{bottom:780.225000px;}
.ycb{bottom:782.565000px;}
.y1a9{bottom:784.185000px;}
.y107{bottom:785.085000px;}
.y17{bottom:786.525000px;}
.yf6{bottom:789.405000px;}
.y24d{bottom:790.125000px;}
.y2a3{bottom:793.725000px;}
.y281{bottom:794.085000px;}
.y144{bottom:797.145000px;}
.y97{bottom:798.045000px;}
.y16{bottom:799.485000px;}
.yca{bottom:799.845000px;}
.y21d{bottom:800.025000px;}
.y1a8{bottom:803.985000px;}
.y106{bottom:804.885000px;}
.yf5{bottom:809.205000px;}
.y24c{bottom:809.925000px;}
.y15{bottom:813.165000px;}
.y2a2{bottom:813.525000px;}
.y280{bottom:813.885000px;}
.y143{bottom:814.965000px;}
.yc9{bottom:817.125000px;}
.y96{bottom:817.845000px;}
.y21c{bottom:819.825000px;}
.y1a7{bottom:823.785000px;}
.y14{bottom:826.125000px;}
.yf4{bottom:829.005000px;}
.y24b{bottom:829.725000px;}
.y2a1{bottom:833.325000px;}
.y142{bottom:833.685000px;}
.yc8{bottom:834.405000px;}
.y95{bottom:837.645000px;}
.y21b{bottom:839.625000px;}
.y1a6{bottom:843.585000px;}
.y136{bottom:844.485000px;}
.yf3{bottom:848.805000px;}
.y24a{bottom:849.525000px;}
.yc7{bottom:851.685000px;}
.y13{bottom:852.990000px;}
.y2a0{bottom:853.350000px;}
.y141{bottom:853.530000px;}
.y94{bottom:857.490000px;}
.y21a{bottom:859.470000px;}
.y1a5{bottom:863.430000px;}
.y12{bottom:864.150000px;}
.y135{bottom:864.330000px;}
.yf2{bottom:868.830000px;}
.yc6{bottom:869.010000px;}
.y249{bottom:869.370000px;}
.y29f{bottom:873.150000px;}
.y140{bottom:873.330000px;}
.y93{bottom:877.470000px;}
.y219{bottom:879.450000px;}
.y1a4{bottom:883.410000px;}
.y11{bottom:885.570000px;}
.yc5{bottom:886.110000px;}
.y248{bottom:889.350000px;}
.y29e{bottom:892.950000px;}
.y13f{bottom:893.310000px;}
.y92{bottom:897.270000px;}
.y26f{bottom:899.250000px;}
.y218{bottom:900.510000px;}
.y10{bottom:901.410000px;}
.y1a3{bottom:903.210000px;}
.yc4{bottom:903.390000px;}
.y1f0{bottom:905.895000px;}
.y1f4{bottom:906.075000px;}
.y1f2{bottom:908.415000px;}
.y247{bottom:909.150000px;}
.y29d{bottom:912.750000px;}
.y13e{bottom:913.110000px;}
.y91{bottom:917.070000px;}
.y26e{bottom:919.950000px;}
.yc3{bottom:920.670000px;}
.yf{bottom:921.750000px;}
.y1a2{bottom:923.010000px;}
.y217{bottom:924.270000px;}
.y246{bottom:928.950000px;}
.y29c{bottom:932.550000px;}
.y13d{bottom:932.910000px;}
.y90{bottom:936.870000px;}
.ye{bottom:937.590000px;}
.yc2{bottom:937.950000px;}
.y1a1{bottom:939.750000px;}
.y1fb{bottom:942.810000px;}
.y216{bottom:943.710000px;}
.y245{bottom:948.750000px;}
.yd{bottom:949.290000px;}
.y13c{bottom:952.710000px;}
.y29b{bottom:953.430000px;}
.yc1{bottom:955.230000px;}
.y8f{bottom:956.670000px;}
.y1fa{bottom:962.610000px;}
.yc{bottom:966.930000px;}
.y244{bottom:968.550000px;}
.yc0{bottom:972.510000px;}
.y8e{bottom:976.650000px;}
.y1f9{bottom:982.590000px;}
.yb{bottom:987.990000px;}
.y243{bottom:988.530000px;}
.ybf{bottom:989.610000px;}
.y13b{bottom:992.490000px;}
.y29a{bottom:994.290000px;}
.y8d{bottom:996.450000px;}
.y1f8{bottom:1003.650000px;}
.ybe{bottom:1006.890000px;}
.y242{bottom:1008.330000px;}
.ya{bottom:1008.690000px;}
.y13a{bottom:1012.290000px;}
.y299{bottom:1014.990000px;}
.y8c{bottom:1016.250000px;}
.y1f7{bottom:1023.090000px;}
.ybd{bottom:1024.170000px;}
.y241{bottom:1028.130000px;}
.y139{bottom:1032.090000px;}
.y8b{bottom:1036.050000px;}
.y9{bottom:1036.230000px;}
.ybc{bottom:1041.450000px;}
.y240{bottom:1049.190000px;}
.y138{bottom:1051.890000px;}
.y8a{bottom:1055.850000px;}
.ybb{bottom:1058.730000px;}
.y8{bottom:1063.230000px;}
.y137{bottom:1072.590000px;}
.y23f{bottom:1072.950000px;}
.y89{bottom:1075.650000px;}
.yba{bottom:1075.830000px;}
.y69{bottom:1096.200000px;}
.y85{bottom:1123.200000px;}
.y3b{bottom:1137.240000px;}
.h6{height:5.653125px;}
.h5b{height:6.257812px;}
.h2e{height:12.012891px;}
.h2{height:13.500000px;}
.h45{height:15.825000px;}
.h4e{height:16.005000px;}
.h18{height:16.920000px;}
.h17{height:18.140625px;}
.h20{height:22.140000px;}
.h15{height:23.319141px;}
.h4a{height:27.525000px;}
.h59{height:29.664141px;}
.hc{height:29.678906px;}
.hf{height:30.963516px;}
.h56{height:31.320000px;}
.h55{height:31.500000px;}
.h47{height:31.665000px;}
.h49{height:31.845000px;}
.h2b{height:31.881000px;}
.h4d{height:32.565000px;}
.h3c{height:35.460000px;}
.h57{height:35.806641px;}
.h3e{height:36.000000px;}
.h1c{height:36.281250px;}
.h13{height:39.503370px;}
.h39{height:39.830273px;}
.h5{height:40.985156px;}
.h37{height:41.580000px;}
.h1d{height:42.086250px;}
.h3d{height:42.300000px;}
.h11{height:44.518359px;}
.hb{height:45.116367px;}
.h33{height:45.540000px;}
.h34{height:45.900000px;}
.h36{height:46.080000px;}
.h35{height:46.620000px;}
.h12{height:46.622932px;}
.hd{height:47.344922px;}
.h2d{height:47.685000px;}
.h4{height:47.699850px;}
.h51{height:47.980898px;}
.h46{height:48.225000px;}
.h3f{height:48.600000px;}
.h16{height:48.616875px;}
.h4c{height:49.125000px;}
.h50{height:49.583118px;}
.h3b{height:50.218594px;}
.h3a{height:51.165000px;}
.h2f{height:51.398851px;}
.h22{height:52.020000px;}
.h14{height:52.998047px;}
.h28{height:53.573906px;}
.h58{height:53.709961px;}
.h19{height:54.421875px;}
.h10{height:55.291992px;}
.h2a{height:55.824609px;}
.h38{height:56.214844px;}
.h1e{height:58.621992px;}
.h3{height:58.651172px;}
.h5a{height:59.038594px;}
.h43{height:59.439023px;}
.h25{height:60.226875px;}
.h41{height:60.300000px;}
.h40{height:61.189805px;}
.h54{height:61.423863px;}
.h26{height:65.010937px;}
.h4b{height:65.685000px;}
.h1f{height:65.884219px;}
.h9{height:66.757500px;}
.ha{height:68.084282px;}
.h29{height:70.628906px;}
.h27{height:70.664062px;}
.he{height:72.562500px;}
.h21{height:74.953125px;}
.h24{height:75.093750px;}
.h2c{height:79.365000px;}
.h7{height:87.695156px;}
.h42{height:89.842500px;}
.h23{height:91.845000px;}
.h1b{height:91.980000px;}
.h48{height:92.721000px;}
.h8{height:96.508125px;}
.h32{height:109.800000px;}
.h31{height:118.665000px;}
.h4f{height:127.080000px;}
.h53{height:129.420000px;}
.h52{height:136.260000px;}
.h30{height:163.440000px;}
.h44{height:208.995000px;}
.h1a{height:518.280000px;}
.h0{height:1190.700000px;}
.h1{height:1191.000000px;}
.wf{width:23.580000px;}
.w10{width:23.760000px;}
.we{width:58.860000px;}
.wb{width:61.551000px;}
.wd{width:66.990000px;}
.w3{width:82.071000px;}
.w14{width:104.580000px;}
.w11{width:104.602500px;}
.w13{width:104.760000px;}
.w12{width:104.805000px;}
.w1c{width:130.701000px;}
.w21{width:151.605000px;}
.w22{width:151.785000px;}
.w20{width:153.195000px;}
.w9{width:154.470000px;}
.w23{width:167.070000px;}
.w24{width:171.585000px;}
.w25{width:173.745000px;}
.w7{width:180.930000px;}
.wa{width:185.235000px;}
.w1e{width:200.730000px;}
.w16{width:243.585000px;}
.w17{width:245.385000px;}
.w18{width:248.445000px;}
.w1a{width:261.975000px;}
.w19{width:262.515000px;}
.w1b{width:271.155000px;}
.w1d{width:289.695000px;}
.w1f{width:490.425000px;}
.w6{width:532.920000px;}
.wc{width:533.970000px;}
.w15{width:629.055000px;}
.w4{width:639.855000px;}
.w2{width:721.935000px;}
.w8{width:743.175000px;}
.w5{width:747.135000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x56{left:4.252500px;}
.x2{left:8.091000px;}
.xf{left:10.791000px;}
.x24{left:12.771000px;}
.x21{left:14.025000px;}
.x23{left:15.120000px;}
.x1b{left:18.351000px;}
.x1c{left:19.431000px;}
.x15{left:21.255000px;}
.x22{left:27.705000px;}
.x2d{left:30.405000px;}
.x4d{left:31.500000px;}
.x31{left:32.580000px;}
.x30{left:34.380000px;}
.x2e{left:35.625000px;}
.x4f{left:37.785000px;}
.x34{left:42.315000px;}
.x2a{left:44.805000px;}
.x3e{left:49.350000px;}
.x3a{left:51.495000px;}
.x3b{left:57.975000px;}
.x41{left:60.510000px;}
.x43{left:64.830000px;}
.x4b{left:68.220000px;}
.x3{left:73.965000px;}
.x2b{left:77.925000px;}
.x44{left:80.310000px;}
.xe{left:81.765000px;}
.x4e{left:82.980000px;}
.x11{left:92.745000px;}
.x14{left:95.445000px;}
.xa{left:101.916000px;}
.xb{left:103.356000px;}
.x3c{left:105.855000px;}
.x1{left:108.045000px;}
.x3f{left:114.510000px;}
.x49{left:117.360000px;}
.x6{left:120.996000px;}
.x29{left:123.345000px;}
.x45{left:124.785000px;}
.x4c{left:126.210000px;}
.x42{left:130.890000px;}
.xc{left:132.696000px;}
.x1a{left:135.036000px;}
.x47{left:158.265000px;}
.x46{left:162.210000px;}
.x37{left:165.270000px;}
.x1d{left:169.605000px;}
.x25{left:174.810000px;}
.x2c{left:184.365000px;}
.x4{left:190.125000px;}
.x36{left:196.425000px;}
.x3d{left:198.585000px;}
.x40{left:202.005000px;}
.x17{left:211.890000px;}
.x1e{left:227.190000px;}
.x38{left:279.240000px;}
.x48{left:288.975000px;}
.x9{left:295.635000px;}
.x10{left:302.295000px;}
.x12{left:314.850000px;}
.x2f{left:316.695000px;}
.x13{left:371.580000px;}
.x53{left:380.775000px;}
.x26{left:385.995000px;}
.x50{left:395.175000px;}
.x7{left:402.375000px;}
.x27{left:403.995000px;}
.x8{left:443.085000px;}
.x5{left:446.505000px;}
.x32{left:451.560000px;}
.x28{left:468.645000px;}
.xd{left:490.785000px;}
.x55{left:517.785000px;}
.x4a{left:578.670000px;}
.x39{left:582.795000px;}
.x33{left:589.635000px;}
.x52{left:606.375000px;}
.x16{left:620.253000px;}
.x51{left:625.275000px;}
.x54{left:645.450000px;}
.x19{left:651.570000px;}
.x1f{left:703.590000px;}
.x35{left:723.735000px;}
.x20{left:770.580000px;}
.x18{left:799.200000px;}
@media print{
.v3{vertical-align:-56.320000pt;}
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls14{letter-spacing:-1.280000pt;}
.ls33{letter-spacing:-0.592000pt;}
.ls30{letter-spacing:-0.409067pt;}
.ls18{letter-spacing:-0.239467pt;}
.ls32{letter-spacing:-0.230933pt;}
.lsa{letter-spacing:-0.198933pt;}
.ls2e{letter-spacing:-0.183467pt;}
.ls19{letter-spacing:-0.161067pt;}
.ls17{letter-spacing:-0.047360pt;}
.ls9{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.094933pt;}
.lsc{letter-spacing:0.096000pt;}
.ls15{letter-spacing:0.112000pt;}
.ls20{letter-spacing:0.115200pt;}
.ls2{letter-spacing:0.128640pt;}
.ls3{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.201067pt;}
.ls22{letter-spacing:0.221867pt;}
.ls23{letter-spacing:0.230933pt;}
.ls1c{letter-spacing:0.231040pt;}
.ls24{letter-spacing:0.239467pt;}
.ls2f{letter-spacing:0.265600pt;}
.ls16{letter-spacing:0.272640pt;}
.ls5{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.438933pt;}
.ls8{letter-spacing:0.439040pt;}
.ls2d{letter-spacing:0.456533pt;}
.lsb{letter-spacing:0.506133pt;}
.ls31{letter-spacing:0.634667pt;}
.ls7{letter-spacing:0.640000pt;}
.ls10{letter-spacing:0.736000pt;}
.ls1a{letter-spacing:0.794880pt;}
.ls6{letter-spacing:0.800000pt;}
.ls28{letter-spacing:2.080000pt;}
.ls4{letter-spacing:3.360000pt;}
.ls2a{letter-spacing:6.560000pt;}
.ls26{letter-spacing:9.120000pt;}
.ls13{letter-spacing:9.226667pt;}
.ls1f{letter-spacing:9.760000pt;}
.lsf{letter-spacing:10.880000pt;}
.ls29{letter-spacing:11.040000pt;}
.ls27{letter-spacing:12.960000pt;}
.ls2b{letter-spacing:16.800000pt;}
.ls1e{letter-spacing:25.088000pt;}
.ls25{letter-spacing:27.680000pt;}
.ls2c{letter-spacing:30.720000pt;}
.ls11{letter-spacing:32.000000pt;}
.ls12{letter-spacing:34.080000pt;}
.ls1{letter-spacing:42.400000pt;}
.ls0{letter-spacing:63.360000pt;}
.ls21{letter-spacing:64.239360pt;}
.ls1d{letter-spacing:155.018667pt;}
.ws15{word-spacing:-16.000000pt;}
.wsc{word-spacing:-14.720000pt;}
.ws1a{word-spacing:-13.736533pt;}
.ws17{word-spacing:-13.600000pt;}
.ws19{word-spacing:-13.545600pt;}
.ws14{word-spacing:-13.510933pt;}
.ws13{word-spacing:-13.374933pt;}
.wse{word-spacing:-13.280000pt;}
.ws10{word-spacing:-13.232640pt;}
.ws18{word-spacing:-13.096533pt;}
.ws1c{word-spacing:-13.049067pt;}
.ws1d{word-spacing:-12.688000pt;}
.wsd{word-spacing:-12.640000pt;}
.wsb{word-spacing:-12.320000pt;}
.wsf{word-spacing:-12.112000pt;}
.ws5{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.040000pt;}
.ws16{word-spacing:-10.959467pt;}
.ws2{word-spacing:-10.720000pt;}
.ws12{word-spacing:-10.558933pt;}
.ws11{word-spacing:-10.480533pt;}
.ws3{word-spacing:-9.733760pt;}
.ws9{word-spacing:-9.718933pt;}
.ws7{word-spacing:-9.481067pt;}
.ws8{word-spacing:-9.280000pt;}
.ws1b{word-spacing:-9.274667pt;}
.ws6{word-spacing:-8.000000pt;}
.ws1{word-spacing:-6.720000pt;}
.wsa{word-spacing:0.000000pt;}
.ws0{word-spacing:54.080000pt;}
._36{margin-left:-2105.774933pt;}
._37{margin-left:-642.622293pt;}
._5{margin-left:-52.960000pt;}
._16{margin-left:-3.330560pt;}
._11{margin-left:-2.231040pt;}
._2{margin-left:-1.283413pt;}
._0{width:0.928000pt;}
._1{width:2.155093pt;}
._14{width:3.075627pt;}
._12{width:4.087040pt;}
._7{width:5.074560pt;}
._8{width:6.586880pt;}
._17{width:8.149120pt;}
._a{width:9.774080pt;}
._9{width:11.527040pt;}
._15{width:13.776000pt;}
._e{width:14.979840pt;}
._f{width:16.098347pt;}
._d{width:17.534933pt;}
._c{width:18.832640pt;}
._26{width:19.942827pt;}
._31{width:20.876160pt;}
._25{width:21.779200pt;}
._2f{width:23.000960pt;}
._19{width:23.957120pt;}
._20{width:24.860160pt;}
._2d{width:25.950720pt;}
._34{width:27.439147pt;}
._2e{width:28.378027pt;}
._29{width:29.775360pt;}
._10{width:30.915840pt;}
._1b{width:31.900160pt;}
._1a{width:32.987520pt;}
._1c{width:33.927253pt;}
._1e{width:34.928000pt;}
._1f{width:36.387200pt;}
._2b{width:37.396480pt;}
._2a{width:38.512000pt;}
._13{width:39.946240pt;}
._1d{width:41.514880pt;}
._3e{width:42.585813pt;}
._2c{width:43.877120pt;}
._43{width:45.098880pt;}
._42{width:46.214400pt;}
._3a{width:47.117440pt;}
._b{width:48.232960pt;}
._44{width:49.773440pt;}
._27{width:51.101440pt;}
._28{width:52.270080pt;}
._24{width:53.438720pt;}
._23{width:56.830507pt;}
._3{width:58.218667pt;}
._47{width:59.600640pt;}
._48{width:60.609920pt;}
._4c{width:62.097280pt;}
._45{width:63.106560pt;}
._3b{width:64.896000pt;}
._30{width:65.868800pt;}
._41{width:67.993600pt;}
._32{width:70.012160pt;}
._22{width:71.616000pt;}
._21{width:72.640000pt;}
._3d{width:74.474667pt;}
._3c{width:76.811520pt;}
._46{width:79.095680pt;}
._4a{width:81.008000pt;}
._4d{width:83.185920pt;}
._3f{width:86.879360pt;}
._40{width:87.913600pt;}
._4b{width:96.967040pt;}
._39{width:103.346560pt;}
._38{width:104.327680pt;}
._4{width:177.440000pt;}
._49{width:182.561067pt;}
._18{width:257.306667pt;}
._35{width:373.898667pt;}
._6{width:671.978667pt;}
._33{width:2263.712000pt;}
.fs2{font-size:5.120000pt;}
.fs13{font-size:5.333333pt;}
.fs10{font-size:10.880000pt;}
.fsd{font-size:16.000000pt;}
.fsc{font-size:21.120000pt;}
.fs7{font-size:26.880000pt;}
.fse{font-size:32.000000pt;}
.fsb{font-size:33.730624pt;}
.fs12{font-size:34.560000pt;}
.fs0{font-size:37.120000pt;}
.fs6{font-size:40.320000pt;}
.fs8{font-size:42.880000pt;}
.fsa{font-size:48.000000pt;}
.fsf{font-size:50.560000pt;}
.fs1{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs9{font-size:64.000000pt;}
.fs11{font-size:67.461249pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.y78{bottom:-223.546667pt;}
.y77{bottom:-193.626667pt;}
.y76{bottom:-163.546667pt;}
.y75{bottom:-133.626667pt;}
.y74{bottom:-103.520000pt;}
.y82{bottom:-80.626667pt;}
.y73{bottom:-73.600000pt;}
.y81{bottom:-50.706667pt;}
.y72{bottom:-43.680000pt;}
.y198{bottom:-30.546667pt;}
.y185{bottom:-25.946667pt;}
.y6b{bottom:-25.466667pt;}
.y3d{bottom:-24.160000pt;}
.y80{bottom:-20.626667pt;}
.y84{bottom:-15.931333pt;}
.y71{bottom:-13.600000pt;}
.y197{bottom:-11.826667pt;}
.y68{bottom:-10.080000pt;}
.y5f{bottom:-8.653333pt;}
.y190{bottom:-0.480000pt;}
.y0{bottom:0.000000pt;}
.y19d{bottom:1.426667pt;}
.y184{bottom:1.440000pt;}
.y2c3{bottom:1.633333pt;}
.y70{bottom:2.400000pt;}
.y1bc{bottom:2.560000pt;}
.y2{bottom:3.520000pt;}
.y1af{bottom:4.160000pt;}
.y11c{bottom:4.306667pt;}
.y1b3{bottom:4.320000pt;}
.y126{bottom:4.466667pt;}
.y3c{bottom:4.480000pt;}
.y6a{bottom:4.960000pt;}
.y5e{bottom:5.106667pt;}
.y196{bottom:5.133333pt;}
.y189{bottom:5.453333pt;}
.y18c{bottom:5.773333pt;}
.y67{bottom:5.920000pt;}
.y179{bottom:6.720000pt;}
.y17c{bottom:7.186667pt;}
.y181{bottom:7.360000pt;}
.y17e{bottom:7.666667pt;}
.y7f{bottom:9.293333pt;}
.y7{bottom:11.040000pt;}
.y1ef{bottom:11.200000pt;}
.y11d{bottom:11.346667pt;}
.y1c6{bottom:11.666667pt;}
.y4{bottom:12.000000pt;}
.y1c2{bottom:12.146667pt;}
.y3{bottom:12.160000pt;}
.y18f{bottom:13.600000pt;}
.y6f{bottom:13.920000pt;}
.y1bb{bottom:14.880000pt;}
.y19c{bottom:15.506667pt;}
.y1f1{bottom:15.693333pt;}
.y1f3{bottom:15.853333pt;}
.y66{bottom:16.640000pt;}
.y1e7{bottom:17.440000pt;}
.y123{bottom:18.386667pt;}
.y1b4{bottom:18.400000pt;}
.y11b{bottom:18.426667pt;}
.y125{bottom:18.546667pt;}
.y1b9{bottom:18.560000pt;}
.y1bd{bottom:18.586667pt;}
.y1b1{bottom:18.720000pt;}
.y5d{bottom:18.866667pt;}
.y195{bottom:19.213333pt;}
.y188{bottom:19.853333pt;}
.y18b{bottom:20.013333pt;}
.y192{bottom:20.173333pt;}
.y6{bottom:22.400000pt;}
.y1ee{bottom:24.480000pt;}
.y6e{bottom:25.600000pt;}
.y183{bottom:25.920000pt;}
.y1c1{bottom:26.226667pt;}
.y7e{bottom:26.253333pt;}
.y1bf{bottom:26.386667pt;}
.y65{bottom:27.360000pt;}
.y18e{bottom:27.680000pt;}
.y19b{bottom:29.586667pt;}
.y1e6{bottom:30.560000pt;}
.y178{bottom:30.720000pt;}
.y1de{bottom:30.866667pt;}
.y17b{bottom:31.026667pt;}
.y180{bottom:31.200000pt;}
.y17d{bottom:31.666667pt;}
.y11f{bottom:32.466667pt;}
.y122{bottom:32.626667pt;}
.y5c{bottom:32.786667pt;}
.y194{bottom:33.293333pt;}
.y5{bottom:33.920000pt;}
.y187{bottom:33.933333pt;}
.y6d{bottom:36.480000pt;}
.y1ed{bottom:37.760000pt;}
.y7d{bottom:37.773333pt;}
.y64{bottom:38.080000pt;}
.y1b7{bottom:38.586667pt;}
.y19f{bottom:39.826667pt;}
.y19a{bottom:43.666667pt;}
.y1e5{bottom:43.840000pt;}
.y1dd{bottom:44.306667pt;}
.y5b{bottom:46.386667pt;}
.y121{bottom:46.706667pt;}
.y63{bottom:48.800000pt;}
.y176{bottom:48.813333pt;}
.y7c{bottom:49.293333pt;}
.y1ec{bottom:50.880000pt;}
.y174{bottom:52.653333pt;}
.y88{bottom:53.120000pt;}
.yf1{bottom:53.760000pt;}
.y1{bottom:54.560000pt;}
.y83{bottom:56.693333pt;}
.y5a{bottom:57.426667pt;}
.y1dc{bottom:57.586667pt;}
.y1e4{bottom:57.920000pt;}
.y62{bottom:59.520000pt;}
.y120{bottom:60.786667pt;}
.y7b{bottom:60.973333pt;}
.y1eb{bottom:64.960000pt;}
.y1f6{bottom:67.840000pt;}
.y87{bottom:68.640000pt;}
.y1e3{bottom:71.040000pt;}
.y1db{bottom:71.506667pt;}
.y7a{bottom:71.880000pt;}
.y172{bottom:72.626667pt;}
.y59{bottom:73.306667pt;}
.y61{bottom:74.560000pt;}
.y1a0{bottom:76.800000pt;}
.y1ea{bottom:78.240000pt;}
.y1e2{bottom:84.320000pt;}
.y1da{bottom:85.586667pt;}
.y1d8{bottom:87.040000pt;}
.y58{bottom:89.146667pt;}
.y12e{bottom:89.280000pt;}
.y1ad{bottom:90.106667pt;}
.y1e9{bottom:91.360000pt;}
.y2c2{bottom:92.160000pt;}
.y1f5{bottom:92.320000pt;}
.y134{bottom:92.800000pt;}
.y26d{bottom:92.960000pt;}
.y279{bottom:93.760000pt;}
.y1d0{bottom:95.840000pt;}
.y1e1{bottom:97.600000pt;}
.y86{bottom:98.240000pt;}
.y26c{bottom:104.480000pt;}
.y1d7{bottom:104.640000pt;}
.y57{bottom:104.986667pt;}
.y2c1{bottom:105.920000pt;}
.y12d{bottom:106.880000pt;}
.y27e{bottom:109.760000pt;}
.y133{bottom:110.400000pt;}
.y1e0{bottom:110.720000pt;}
.y278{bottom:111.360000pt;}
.y1cf{bottom:113.440000pt;}
.y3a{bottom:114.080000pt;}
.yb9{bottom:115.200000pt;}
.y169{bottom:119.360000pt;}
.y215{bottom:120.320000pt;}
.y56{bottom:120.986667pt;}
.y298{bottom:121.120000pt;}
.y26b{bottom:122.080000pt;}
.y170{bottom:122.400000pt;}
.y23e{bottom:122.880000pt;}
.y1d6{bottom:123.520000pt;}
.y12c{bottom:124.480000pt;}
.y27f{bottom:126.240000pt;}
.y27d{bottom:127.360000pt;}
.y132{bottom:128.000000pt;}
.yf0{bottom:128.320000pt;}
.y277{bottom:128.960000pt;}
.yb8{bottom:129.760000pt;}
.y1ce{bottom:131.200000pt;}
.y39{bottom:131.680000pt;}
.y23d{bottom:134.400000pt;}
.y168{bottom:134.720000pt;}
.y55{bottom:136.826667pt;}
.y16f{bottom:137.760000pt;}
.y214{bottom:137.920000pt;}
.y297{bottom:138.720000pt;}
.y26a{bottom:139.680000pt;}
.y1d5{bottom:140.800000pt;}
.y2c0{bottom:141.280000pt;}
.y12b{bottom:142.080000pt;}
.yef{bottom:143.680000pt;}
.y27c{bottom:144.986667pt;}
.y131{bottom:145.626667pt;}
.yb7{bottom:147.546667pt;}
.y1cd{bottom:148.826667pt;}
.y38{bottom:149.306667pt;}
.y167{bottom:150.106667pt;}
.y23c{bottom:152.026667pt;}
.y1d4{bottom:152.346667pt;}
.y54{bottom:152.666667pt;}
.y16e{bottom:153.146667pt;}
.y213{bottom:155.546667pt;}
.y269{bottom:157.306667pt;}
.y2bf{bottom:158.906667pt;}
.yee{bottom:159.066667pt;}
.y12a{bottom:159.706667pt;}
.y27b{bottom:162.746667pt;}
.y130{bottom:163.386667pt;}
.y166{bottom:165.466667pt;}
.y1cc{bottom:166.426667pt;}
.y37{bottom:167.066667pt;}
.y53{bottom:168.506667pt;}
.yb6{bottom:168.826667pt;}
.y23b{bottom:169.786667pt;}
.y1d3{bottom:169.946667pt;}
.y212{bottom:173.306667pt;}
.yed{bottom:174.266667pt;}
.y268{bottom:175.066667pt;}
.y2be{bottom:176.506667pt;}
.y129{bottom:178.266667pt;}
.y27a{bottom:180.346667pt;}
.y165{bottom:180.826667pt;}
.y12f{bottom:180.986667pt;}
.y16d{bottom:183.866667pt;}
.y1cb{bottom:184.026667pt;}
.y52{bottom:184.346667pt;}
.y36{bottom:184.666667pt;}
.yb5{bottom:186.426667pt;}
.y23a{bottom:187.386667pt;}
.y1d2{bottom:187.546667pt;}
.yec{bottom:189.626667pt;}
.y211{bottom:190.906667pt;}
.y267{bottom:192.666667pt;}
.y2bd{bottom:194.106667pt;}
.y128{bottom:194.266667pt;}
.y164{bottom:196.026667pt;}
.y51{bottom:196.186667pt;}
.yb4{bottom:197.946667pt;}
.y296{bottom:198.746667pt;}
.y16c{bottom:199.226667pt;}
.y276{bottom:201.466667pt;}
.y127{bottom:202.106667pt;}
.y35{bottom:202.266667pt;}
.y1ca{bottom:202.426667pt;}
.y50{bottom:204.026667pt;}
.yeb{bottom:204.986667pt;}
.y1d1{bottom:205.146667pt;}
.y210{bottom:208.506667pt;}
.y266{bottom:210.266667pt;}
.y163{bottom:211.386667pt;}
.y2bc{bottom:211.706667pt;}
.y16b{bottom:214.426667pt;}
.yb3{bottom:215.546667pt;}
.y124{bottom:216.200000pt;}
.y275{bottom:219.066667pt;}
.y34{bottom:219.866667pt;}
.y4f{bottom:220.026667pt;}
.yea{bottom:220.346667pt;}
.y239{bottom:222.586667pt;}
.y1c9{bottom:222.906667pt;}
.y20f{bottom:226.106667pt;}
.y162{bottom:227.066667pt;}
.y265{bottom:227.866667pt;}
.y295{bottom:229.466667pt;}
.y16a{bottom:229.786667pt;}
.yb2{bottom:233.146667pt;}
.ye9{bottom:235.706667pt;}
.y4e{bottom:235.866667pt;}
.y274{bottom:236.666667pt;}
.y33{bottom:237.466667pt;}
.y238{bottom:240.186667pt;}
.y1c8{bottom:240.506667pt;}
.y20e{bottom:243.706667pt;}
.y264{bottom:245.466667pt;}
.y2bb{bottom:247.066667pt;}
.y161{bottom:247.226667pt;}
.y294{bottom:247.706667pt;}
.yb1{bottom:250.906667pt;}
.ye8{bottom:251.066667pt;}
.y4d{bottom:251.706667pt;}
.y273{bottom:254.426667pt;}
.y1c5{bottom:254.600000pt;}
.y32{bottom:255.226667pt;}
.y237{bottom:257.946667pt;}
.y11e{bottom:259.240000pt;}
.y20d{bottom:261.466667pt;}
.y263{bottom:263.226667pt;}
.y160{bottom:264.506667pt;}
.y2ba{bottom:264.666667pt;}
.ye7{bottom:266.266667pt;}
.y4c{bottom:267.573333pt;}
.yb0{bottom:268.506667pt;}
.y1c7{bottom:269.480000pt;}
.y272{bottom:272.026667pt;}
.y31{bottom:273.626667pt;}
.y236{bottom:275.546667pt;}
.y19e{bottom:278.440000pt;}
.y20c{bottom:279.066667pt;}
.y15f{bottom:280.026667pt;}
.y262{bottom:280.826667pt;}
.ye6{bottom:281.626667pt;}
.y2b9{bottom:282.266667pt;}
.y4b{bottom:283.413333pt;}
.y1be{bottom:284.200000pt;}
.yaf{bottom:286.106667pt;}
.y293{bottom:289.306667pt;}
.y30{bottom:289.946667pt;}
.y271{bottom:290.426667pt;}
.y3e{bottom:291.240000pt;}
.y199{bottom:291.400000pt;}
.y235{bottom:294.266667pt;}
.y4a{bottom:295.253333pt;}
.y15e{bottom:295.866667pt;}
.y20b{bottom:296.666667pt;}
.ye5{bottom:296.986667pt;}
.y2f{bottom:297.946667pt;}
.y261{bottom:298.426667pt;}
.y1c0{bottom:298.920000pt;}
.y2b8{bottom:299.866667pt;}
.y49{bottom:303.093333pt;}
.yae{bottom:303.706667pt;}
.y292{bottom:307.546667pt;}
.y234{bottom:311.546667pt;}
.y15d{bottom:311.706667pt;}
.y2e{bottom:312.026667pt;}
.ye4{bottom:312.346667pt;}
.y1c4{bottom:313.800000pt;}
.y20a{bottom:314.266667pt;}
.y260{bottom:316.026667pt;}
.y2b7{bottom:317.626667pt;}
.y48{bottom:319.093333pt;}
.yad{bottom:321.306667pt;}
.y233{bottom:323.066667pt;}
.y2d{bottom:326.106667pt;}
.y15c{bottom:327.546667pt;}
.ye3{bottom:327.706667pt;}
.y1c3{bottom:328.520000pt;}
.y270{bottom:329.146667pt;}
.y11a{bottom:331.720000pt;}
.y209{bottom:331.866667pt;}
.y25f{bottom:333.626667pt;}
.y47{bottom:334.933333pt;}
.y2b6{bottom:335.226667pt;}
.yac{bottom:339.066667pt;}
.y2c{bottom:340.346667pt;}
.y232{bottom:340.826667pt;}
.ye2{bottom:342.906667pt;}
.y1ac{bottom:343.240000pt;}
.y15b{bottom:343.546667pt;}
.y291{bottom:343.866667pt;}
.y208{bottom:349.666667pt;}
.y46{bottom:350.773333pt;}
.y25e{bottom:351.426667pt;}
.y2b5{bottom:352.866667pt;}
.y2b{bottom:354.466667pt;}
.yab{bottom:356.706667pt;}
.ye1{bottom:358.306667pt;}
.y231{bottom:358.466667pt;}
.y15a{bottom:359.426667pt;}
.y290{bottom:361.506667pt;}
.y175{bottom:362.293333pt;}
.y18d{bottom:363.586667pt;}
.y45{bottom:366.613333pt;}
.y207{bottom:367.266667pt;}
.y119{bottom:367.426667pt;}
.y25d{bottom:369.026667pt;}
.y2b4{bottom:370.466667pt;}
.y2a{bottom:370.626667pt;}
.y1ba{bottom:372.226667pt;}
.ye0{bottom:373.666667pt;}
.yaa{bottom:374.306667pt;}
.y159{bottom:375.266667pt;}
.y230{bottom:376.066667pt;}
.y28f{bottom:379.266667pt;}
.y44{bottom:382.453333pt;}
.y206{bottom:384.866667pt;}
.y118{bottom:385.186667pt;}
.y25c{bottom:386.626667pt;}
.y2b3{bottom:388.066667pt;}
.ydf{bottom:389.026667pt;}
.y29{bottom:389.186667pt;}
.y158{bottom:391.106667pt;}
.ya9{bottom:391.906667pt;}
.y22f{bottom:393.666667pt;}
.y193{bottom:395.573333pt;}
.y28e{bottom:396.866667pt;}
.y1b8{bottom:397.346667pt;}
.y43{bottom:398.453333pt;}
.y205{bottom:402.466667pt;}
.y105{bottom:402.786667pt;}
.y25b{bottom:404.226667pt;}
.yde{bottom:404.386667pt;}
.y2b2{bottom:405.826667pt;}
.y28{bottom:406.786667pt;}
.y157{bottom:406.946667pt;}
.ya8{bottom:409.506667pt;}
.y42{bottom:410.133333pt;}
.y22e{bottom:411.266667pt;}
.y117{bottom:414.786667pt;}
.y28d{bottom:415.266667pt;}
.y41{bottom:418.133333pt;}
.y27{bottom:418.946667pt;}
.ydd{bottom:419.746667pt;}
.y204{bottom:420.066667pt;}
.y104{bottom:420.386667pt;}
.y25a{bottom:421.826667pt;}
.y156{bottom:422.786667pt;}
.y2b1{bottom:423.426667pt;}
.y1b5{bottom:426.306667pt;}
.y26{bottom:426.786667pt;}
.ya7{bottom:427.266667pt;}
.y22d{bottom:429.026667pt;}
.y116{bottom:432.546667pt;}
.y40{bottom:433.973333pt;}
.ydc{bottom:434.946667pt;}
.y203{bottom:437.826667pt;}
.y103{bottom:437.986667pt;}
.y155{bottom:438.786667pt;}
.y259{bottom:440.706667pt;}
.y1b6{bottom:441.026667pt;}
.ya6{bottom:444.866667pt;}
.y18a{bottom:445.173333pt;}
.y22c{bottom:446.626667pt;}
.y25{bottom:447.426667pt;}
.y3f{bottom:449.813333pt;}
.y115{bottom:450.146667pt;}
.ydb{bottom:450.306667pt;}
.y28c{bottom:451.586667pt;}
.y154{bottom:454.626667pt;}
.y202{bottom:455.426667pt;}
.y102{bottom:455.586667pt;}
.y2b0{bottom:458.626667pt;}
.y258{bottom:461.826667pt;}
.ya5{bottom:462.466667pt;}
.y173{bottom:462.773333pt;}
.y22b{bottom:464.226667pt;}
.yda{bottom:465.666667pt;}
.y114{bottom:467.746667pt;}
.y24{bottom:468.066667pt;}
.y28b{bottom:469.186667pt;}
.y1b0{bottom:469.986667pt;}
.y153{bottom:470.466667pt;}
.y201{bottom:473.026667pt;}
.y101{bottom:473.346667pt;}
.y2af{bottom:476.226667pt;}
.y257{bottom:479.106667pt;}
.ya4{bottom:480.066667pt;}
.yd9{bottom:481.026667pt;}
.y22a{bottom:481.826667pt;}
.y79{bottom:484.213333pt;}
.y113{bottom:485.346667pt;}
.y152{bottom:486.306667pt;}
.y28a{bottom:487.746667pt;}
.y23{bottom:488.866667pt;}
.y200{bottom:490.626667pt;}
.y100{bottom:490.946667pt;}
.y191{bottom:491.253333pt;}
.y2ae{bottom:493.986667pt;}
.yd8{bottom:496.386667pt;}
.ya3{bottom:497.666667pt;}
.y1b2{bottom:498.786667pt;}
.y229{bottom:499.426667pt;}
.y151{bottom:502.146667pt;}
.y112{bottom:502.946667pt;}
.y186{bottom:507.893333pt;}
.y1ff{bottom:508.226667pt;}
.yff{bottom:508.546667pt;}
.y289{bottom:508.866667pt;}
.y22{bottom:509.506667pt;}
.y2ad{bottom:511.586667pt;}
.yd7{bottom:511.746667pt;}
.y1ae{bottom:514.946667pt;}
.ya2{bottom:515.426667pt;}
.y228{bottom:517.186667pt;}
.y150{bottom:518.146667pt;}
.y111{bottom:520.706667pt;}
.y1fe{bottom:525.986667pt;}
.yfe{bottom:526.146667pt;}
.yd6{bottom:526.946667pt;}
.y2ac{bottom:529.186667pt;}
.y21{bottom:530.306667pt;}
.ya1{bottom:533.026667pt;}
.y14f{bottom:533.986667pt;}
.y227{bottom:534.786667pt;}
.y110{bottom:538.306667pt;}
.yfd{bottom:541.986667pt;}
.yd5{bottom:542.306667pt;}
.y256{bottom:543.586667pt;}
.y1fd{bottom:544.706667pt;}
.y288{bottom:545.186667pt;}
.y2ab{bottom:546.786667pt;}
.y1ab{bottom:548.066667pt;}
.y14e{bottom:549.826667pt;}
.ya0{bottom:550.626667pt;}
.y20{bottom:550.946667pt;}
.y226{bottom:552.386667pt;}
.y10f{bottom:555.933333pt;}
.yd4{bottom:557.693333pt;}
.y255{bottom:561.213333pt;}
.y1fc{bottom:562.013333pt;}
.y287{bottom:562.813333pt;}
.y2aa{bottom:564.413333pt;}
.y14d{bottom:565.693333pt;}
.y9f{bottom:568.253333pt;}
.y225{bottom:570.013333pt;}
.yd3{bottom:573.053333pt;}
.y171{bottom:573.066667pt;}
.y10e{bottom:573.533333pt;}
.y182{bottom:574.333333pt;}
.y1aa{bottom:574.973333pt;}
.yfc{bottom:578.173333pt;}
.y254{bottom:578.813333pt;}
.y286{bottom:580.413333pt;}
.y14c{bottom:581.533333pt;}
.y2a9{bottom:582.173333pt;}
.y60{bottom:584.093333pt;}
.y9e{bottom:585.853333pt;}
.y224{bottom:587.613333pt;}
.yd2{bottom:588.413333pt;}
.y10d{bottom:591.133333pt;}
.yfb{bottom:595.933333pt;}
.y253{bottom:596.413333pt;}
.y14b{bottom:597.373333pt;}
.y285{bottom:598.973333pt;}
.y1f{bottom:599.773333pt;}
.y9d{bottom:603.613333pt;}
.yd1{bottom:603.773333pt;}
.y223{bottom:605.373333pt;}
.y10c{bottom:608.893333pt;}
.y1df{bottom:610.813333pt;}
.y14a{bottom:613.373333pt;}
.y1e{bottom:613.533333pt;}
.y252{bottom:614.173333pt;}
.y1e8{bottom:616.733333pt;}
.y2a8{bottom:617.373333pt;}
.y1d9{bottom:617.386667pt;}
.yd0{bottom:618.973333pt;}
.y9c{bottom:621.213333pt;}
.y222{bottom:622.973333pt;}
.y10b{bottom:626.493333pt;}
.y1d{bottom:627.293333pt;}
.y149{bottom:629.213333pt;}
.yfa{bottom:631.133333pt;}
.y251{bottom:631.773333pt;}
.ycf{bottom:634.333333pt;}
.y2a7{bottom:634.973333pt;}
.y284{bottom:635.293333pt;}
.y9b{bottom:638.813333pt;}
.y221{bottom:640.573333pt;}
.y1c{bottom:641.053333pt;}
.y10a{bottom:644.093333pt;}
.y148{bottom:645.053333pt;}
.yf9{bottom:648.733333pt;}
.y250{bottom:649.373333pt;}
.yce{bottom:649.693333pt;}
.y2a6{bottom:652.573333pt;}
.y283{bottom:652.893333pt;}
.y1b{bottom:654.973333pt;}
.y9a{bottom:656.413333pt;}
.y220{bottom:658.173333pt;}
.y147{bottom:660.893333pt;}
.y109{bottom:661.693333pt;}
.y1a{bottom:664.733333pt;}
.y177{bottom:664.893333pt;}
.ycd{bottom:665.053333pt;}
.y17a{bottom:665.066667pt;}
.y17f{bottom:666.013333pt;}
.yf8{bottom:666.333333pt;}
.y24f{bottom:666.973333pt;}
.y2a5{bottom:670.333333pt;}
.y282{bottom:670.493333pt;}
.y99{bottom:674.013333pt;}
.y6c{bottom:675.293333pt;}
.y21f{bottom:675.773333pt;}
.y146{bottom:676.733333pt;}
.y19{bottom:676.893333pt;}
.y108{bottom:679.293333pt;}
.ycc{bottom:680.413333pt;}
.yf7{bottom:684.093333pt;}
.y24e{bottom:684.573333pt;}
.y2a4{bottom:687.933333pt;}
.y18{bottom:688.093333pt;}
.y98{bottom:691.773333pt;}
.y145{bottom:692.733333pt;}
.y21e{bottom:693.533333pt;}
.ycb{bottom:695.613333pt;}
.y1a9{bottom:697.053333pt;}
.y107{bottom:697.853333pt;}
.y17{bottom:699.133333pt;}
.yf6{bottom:701.693333pt;}
.y24d{bottom:702.333333pt;}
.y2a3{bottom:705.533333pt;}
.y281{bottom:705.853333pt;}
.y144{bottom:708.573333pt;}
.y97{bottom:709.373333pt;}
.y16{bottom:710.653333pt;}
.yca{bottom:710.973333pt;}
.y21d{bottom:711.133333pt;}
.y1a8{bottom:714.653333pt;}
.y106{bottom:715.453333pt;}
.yf5{bottom:719.293333pt;}
.y24c{bottom:719.933333pt;}
.y15{bottom:722.813333pt;}
.y2a2{bottom:723.133333pt;}
.y280{bottom:723.453333pt;}
.y143{bottom:724.413333pt;}
.yc9{bottom:726.333333pt;}
.y96{bottom:726.973333pt;}
.y21c{bottom:728.733333pt;}
.y1a7{bottom:732.253333pt;}
.y14{bottom:734.333333pt;}
.yf4{bottom:736.893333pt;}
.y24b{bottom:737.533333pt;}
.y2a1{bottom:740.733333pt;}
.y142{bottom:741.053333pt;}
.yc8{bottom:741.693333pt;}
.y95{bottom:744.573333pt;}
.y21b{bottom:746.333333pt;}
.y1a6{bottom:749.853333pt;}
.y136{bottom:750.653333pt;}
.yf3{bottom:754.493333pt;}
.y24a{bottom:755.133333pt;}
.yc7{bottom:757.053333pt;}
.y13{bottom:758.213333pt;}
.y2a0{bottom:758.533333pt;}
.y141{bottom:758.693333pt;}
.y94{bottom:762.213333pt;}
.y21a{bottom:763.973333pt;}
.y1a5{bottom:767.493333pt;}
.y12{bottom:768.133333pt;}
.y135{bottom:768.293333pt;}
.yf2{bottom:772.293333pt;}
.yc6{bottom:772.453333pt;}
.y249{bottom:772.773333pt;}
.y29f{bottom:776.133333pt;}
.y140{bottom:776.293333pt;}
.y93{bottom:779.973333pt;}
.y219{bottom:781.733333pt;}
.y1a4{bottom:785.253333pt;}
.y11{bottom:787.173333pt;}
.yc5{bottom:787.653333pt;}
.y248{bottom:790.533333pt;}
.y29e{bottom:793.733333pt;}
.y13f{bottom:794.053333pt;}
.y92{bottom:797.573333pt;}
.y26f{bottom:799.333333pt;}
.y218{bottom:800.453333pt;}
.y10{bottom:801.253333pt;}
.y1a3{bottom:802.853333pt;}
.yc4{bottom:803.013333pt;}
.y1f0{bottom:805.240000pt;}
.y1f4{bottom:805.400000pt;}
.y1f2{bottom:807.480000pt;}
.y247{bottom:808.133333pt;}
.y29d{bottom:811.333333pt;}
.y13e{bottom:811.653333pt;}
.y91{bottom:815.173333pt;}
.y26e{bottom:817.733333pt;}
.yc3{bottom:818.373333pt;}
.yf{bottom:819.333333pt;}
.y1a2{bottom:820.453333pt;}
.y217{bottom:821.573333pt;}
.y246{bottom:825.733333pt;}
.y29c{bottom:828.933333pt;}
.y13d{bottom:829.253333pt;}
.y90{bottom:832.773333pt;}
.ye{bottom:833.413333pt;}
.yc2{bottom:833.733333pt;}
.y1a1{bottom:835.333333pt;}
.y1fb{bottom:838.053333pt;}
.y216{bottom:838.853333pt;}
.y245{bottom:843.333333pt;}
.yd{bottom:843.813333pt;}
.y13c{bottom:846.853333pt;}
.y29b{bottom:847.493333pt;}
.yc1{bottom:849.093333pt;}
.y8f{bottom:850.373333pt;}
.y1fa{bottom:855.653333pt;}
.yc{bottom:859.493333pt;}
.y244{bottom:860.933333pt;}
.yc0{bottom:864.453333pt;}
.y8e{bottom:868.133333pt;}
.y1f9{bottom:873.413333pt;}
.yb{bottom:878.213333pt;}
.y243{bottom:878.693333pt;}
.ybf{bottom:879.653333pt;}
.y13b{bottom:882.213333pt;}
.y29a{bottom:883.813333pt;}
.y8d{bottom:885.733333pt;}
.y1f8{bottom:892.133333pt;}
.ybe{bottom:895.013333pt;}
.y242{bottom:896.293333pt;}
.ya{bottom:896.613333pt;}
.y13a{bottom:899.813333pt;}
.y299{bottom:902.213333pt;}
.y8c{bottom:903.333333pt;}
.y1f7{bottom:909.413333pt;}
.ybd{bottom:910.373333pt;}
.y241{bottom:913.893333pt;}
.y139{bottom:917.413333pt;}
.y8b{bottom:920.933333pt;}
.y9{bottom:921.093333pt;}
.ybc{bottom:925.733333pt;}
.y240{bottom:932.613333pt;}
.y138{bottom:935.013333pt;}
.y8a{bottom:938.533333pt;}
.ybb{bottom:941.093333pt;}
.y8{bottom:945.093333pt;}
.y137{bottom:953.413333pt;}
.y23f{bottom:953.733333pt;}
.y89{bottom:956.133333pt;}
.yba{bottom:956.293333pt;}
.y69{bottom:974.400000pt;}
.y85{bottom:998.400000pt;}
.y3b{bottom:1010.880000pt;}
.h6{height:5.025000pt;}
.h5b{height:5.562500pt;}
.h2e{height:10.678125pt;}
.h2{height:12.000000pt;}
.h45{height:14.066667pt;}
.h4e{height:14.226667pt;}
.h18{height:15.040000pt;}
.h17{height:16.125000pt;}
.h20{height:19.680000pt;}
.h15{height:20.728125pt;}
.h4a{height:24.466667pt;}
.h59{height:26.368125pt;}
.hc{height:26.381250pt;}
.hf{height:27.523125pt;}
.h56{height:27.840000pt;}
.h55{height:28.000000pt;}
.h47{height:28.146667pt;}
.h49{height:28.306667pt;}
.h2b{height:28.338667pt;}
.h4d{height:28.946667pt;}
.h3c{height:31.520000pt;}
.h57{height:31.828125pt;}
.h3e{height:32.000000pt;}
.h1c{height:32.250000pt;}
.h13{height:35.114107pt;}
.h39{height:35.404688pt;}
.h5{height:36.431250pt;}
.h37{height:36.960000pt;}
.h1d{height:37.410000pt;}
.h3d{height:37.600000pt;}
.h11{height:39.571875pt;}
.hb{height:40.103437pt;}
.h33{height:40.480000pt;}
.h34{height:40.800000pt;}
.h36{height:40.960000pt;}
.h35{height:41.440000pt;}
.h12{height:41.442606pt;}
.hd{height:42.084375pt;}
.h2d{height:42.386667pt;}
.h4{height:42.399867pt;}
.h51{height:42.649687pt;}
.h46{height:42.866667pt;}
.h3f{height:43.200000pt;}
.h16{height:43.215000pt;}
.h4c{height:43.666667pt;}
.h50{height:44.073883pt;}
.h3b{height:44.638750pt;}
.h3a{height:45.480000pt;}
.h2f{height:45.687867pt;}
.h22{height:46.240000pt;}
.h14{height:47.109375pt;}
.h28{height:47.621250pt;}
.h58{height:47.742188pt;}
.h19{height:48.375000pt;}
.h10{height:49.148438pt;}
.h2a{height:49.621875pt;}
.h38{height:49.968750pt;}
.h1e{height:52.108438pt;}
.h3{height:52.134375pt;}
.h5a{height:52.478750pt;}
.h43{height:52.834688pt;}
.h25{height:53.535000pt;}
.h41{height:53.600000pt;}
.h40{height:54.390938pt;}
.h54{height:54.598989pt;}
.h26{height:57.787500pt;}
.h4b{height:58.386667pt;}
.h1f{height:58.563750pt;}
.h9{height:59.340000pt;}
.ha{height:60.519362pt;}
.h29{height:62.781250pt;}
.h27{height:62.812500pt;}
.he{height:64.500000pt;}
.h21{height:66.625000pt;}
.h24{height:66.750000pt;}
.h2c{height:70.546667pt;}
.h7{height:77.951250pt;}
.h42{height:79.860000pt;}
.h23{height:81.640000pt;}
.h1b{height:81.760000pt;}
.h48{height:82.418667pt;}
.h8{height:85.785000pt;}
.h32{height:97.600000pt;}
.h31{height:105.480000pt;}
.h4f{height:112.960000pt;}
.h53{height:115.040000pt;}
.h52{height:121.120000pt;}
.h30{height:145.280000pt;}
.h44{height:185.773333pt;}
.h1a{height:460.693333pt;}
.h0{height:1058.400000pt;}
.h1{height:1058.666667pt;}
.wf{width:20.960000pt;}
.w10{width:21.120000pt;}
.we{width:52.320000pt;}
.wb{width:54.712000pt;}
.wd{width:59.546667pt;}
.w3{width:72.952000pt;}
.w14{width:92.960000pt;}
.w11{width:92.980000pt;}
.w13{width:93.120000pt;}
.w12{width:93.160000pt;}
.w1c{width:116.178667pt;}
.w21{width:134.760000pt;}
.w22{width:134.920000pt;}
.w20{width:136.173333pt;}
.w9{width:137.306667pt;}
.w23{width:148.506667pt;}
.w24{width:152.520000pt;}
.w25{width:154.440000pt;}
.w7{width:160.826667pt;}
.wa{width:164.653333pt;}
.w1e{width:178.426667pt;}
.w16{width:216.520000pt;}
.w17{width:218.120000pt;}
.w18{width:220.840000pt;}
.w1a{width:232.866667pt;}
.w19{width:233.346667pt;}
.w1b{width:241.026667pt;}
.w1d{width:257.506667pt;}
.w1f{width:435.933333pt;}
.w6{width:473.706667pt;}
.wc{width:474.640000pt;}
.w15{width:559.160000pt;}
.w4{width:568.760000pt;}
.w2{width:641.720000pt;}
.w8{width:660.600000pt;}
.w5{width:664.120000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x56{left:3.780000pt;}
.x2{left:7.192000pt;}
.xf{left:9.592000pt;}
.x24{left:11.352000pt;}
.x21{left:12.466667pt;}
.x23{left:13.440000pt;}
.x1b{left:16.312000pt;}
.x1c{left:17.272000pt;}
.x15{left:18.893333pt;}
.x22{left:24.626667pt;}
.x2d{left:27.026667pt;}
.x4d{left:28.000000pt;}
.x31{left:28.960000pt;}
.x30{left:30.560000pt;}
.x2e{left:31.666667pt;}
.x4f{left:33.586667pt;}
.x34{left:37.613333pt;}
.x2a{left:39.826667pt;}
.x3e{left:43.866667pt;}
.x3a{left:45.773333pt;}
.x3b{left:51.533333pt;}
.x41{left:53.786667pt;}
.x43{left:57.626667pt;}
.x4b{left:60.640000pt;}
.x3{left:65.746667pt;}
.x2b{left:69.266667pt;}
.x44{left:71.386667pt;}
.xe{left:72.680000pt;}
.x4e{left:73.760000pt;}
.x11{left:82.440000pt;}
.x14{left:84.840000pt;}
.xa{left:90.592000pt;}
.xb{left:91.872000pt;}
.x3c{left:94.093333pt;}
.x1{left:96.040000pt;}
.x3f{left:101.786667pt;}
.x49{left:104.320000pt;}
.x6{left:107.552000pt;}
.x29{left:109.640000pt;}
.x45{left:110.920000pt;}
.x4c{left:112.186667pt;}
.x42{left:116.346667pt;}
.xc{left:117.952000pt;}
.x1a{left:120.032000pt;}
.x47{left:140.680000pt;}
.x46{left:144.186667pt;}
.x37{left:146.906667pt;}
.x1d{left:150.760000pt;}
.x25{left:155.386667pt;}
.x2c{left:163.880000pt;}
.x4{left:169.000000pt;}
.x36{left:174.600000pt;}
.x3d{left:176.520000pt;}
.x40{left:179.560000pt;}
.x17{left:188.346667pt;}
.x1e{left:201.946667pt;}
.x38{left:248.213333pt;}
.x48{left:256.866667pt;}
.x9{left:262.786667pt;}
.x10{left:268.706667pt;}
.x12{left:279.866667pt;}
.x2f{left:281.506667pt;}
.x13{left:330.293333pt;}
.x53{left:338.466667pt;}
.x26{left:343.106667pt;}
.x50{left:351.266667pt;}
.x7{left:357.666667pt;}
.x27{left:359.106667pt;}
.x8{left:393.853333pt;}
.x5{left:396.893333pt;}
.x32{left:401.386667pt;}
.x28{left:416.573333pt;}
.xd{left:436.253333pt;}
.x55{left:460.253333pt;}
.x4a{left:514.373333pt;}
.x39{left:518.040000pt;}
.x33{left:524.120000pt;}
.x52{left:539.000000pt;}
.x16{left:551.336000pt;}
.x51{left:555.800000pt;}
.x54{left:573.733333pt;}
.x19{left:579.173333pt;}
.x1f{left:625.413333pt;}
.x35{left:643.320000pt;}
.x20{left:684.960000pt;}
.x18{left:710.400000pt;}
}




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