
    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_ffb9e99816445a1981048636.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_b55d583a092faa299983acca.woff')format("woff");}.ff2{font-family:ff2;line-height:1.150879;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_ab7c3cd2a29ad66b8fd06e33.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_d603db4b6eec032c5488d52d.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_ec033cb686effdb59bfaf891.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_2708fd9fd160649447b04223.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_b0b15e2014e9299aee880581.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6fd3e4173fd0f4e79a0ddf8a.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_160f69b3321fe2fc2e2ef1b1.woff')format("woff");}.ff9{font-family:ff9;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_144fee0c27cf45e1cdb6f154.woff')format("woff");}.ffa{font-family:ffa;line-height:0.894043;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_a07afe1b1823860ac453566f.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_863fa374908edd152982e486.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_9b03f4b4327374dcb79e06db.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_c36c6077748f0e11aa957f91.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_8cf4f0e66b32a2ca4588080c.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_399de29bd37660dd2927554f.woff')format("woff");}.ff10{font-family:ff10;line-height:1.064941;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_38f654b2e6facd87eb97664d.woff')format("woff");}.ff11{font-family:ff11;line-height:1.064941;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_0a8a1ba602860f4ad3fc5cff.woff')format("woff");}.ff12{font-family:ff12;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:15.120000px;}
.v3{vertical-align:18.000000px;}
.v1{vertical-align:23.760000px;}
.v6{vertical-align:40.320000px;}
.v5{vertical-align:46.080000px;}
.ls10{letter-spacing:-1.440000px;}
.ls1e{letter-spacing:-1.392000px;}
.lsc{letter-spacing:-0.810000px;}
.ls22{letter-spacing:-0.666000px;}
.ls1c{letter-spacing:-0.540000px;}
.ls1d{letter-spacing:-0.538800px;}
.ls8{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.349800px;}
.ls19{letter-spacing:-0.269400px;}
.lsa{letter-spacing:-0.223800px;}
.ls20{letter-spacing:-0.206400px;}
.ls18{letter-spacing:-0.181200px;}
.lsb{letter-spacing:-0.126000px;}
.lsf{letter-spacing:-0.053280px;}
.ls17{letter-spacing:-0.052560px;}
.ls6{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.012960px;}
.ls1f{letter-spacing:0.036000px;}
.lse{letter-spacing:0.089400px;}
.ls25{letter-spacing:0.106800px;}
.ls12{letter-spacing:0.108000px;}
.ls3{letter-spacing:0.144720px;}
.ls23{letter-spacing:0.153600px;}
.ls1{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.181200px;}
.ls1a{letter-spacing:0.223800px;}
.ls16{letter-spacing:0.259800px;}
.ls21{letter-spacing:0.259920px;}
.ls24{letter-spacing:0.298800px;}
.ls1b{letter-spacing:0.310320px;}
.ls4{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.493920px;}
.ls11{letter-spacing:0.900000px;}
.lsd{letter-spacing:1.080000px;}
.ls13{letter-spacing:13.491360px;}
.ls15{letter-spacing:13.679280px;}
.ls2{letter-spacing:47.700000px;}
.ls0{letter-spacing:72.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1e{word-spacing:-18.000000px;}
.ws10{word-spacing:-16.560000px;}
.ws27{word-spacing:-15.300000px;}
.ws2b{word-spacing:-15.238800px;}
.ws28{word-spacing:-15.199800px;}
.ws29{word-spacing:-15.093600px;}
.ws26{word-spacing:-14.940000px;}
.ws1d{word-spacing:-14.886720px;}
.ws24{word-spacing:-14.733600px;}
.ws2c{word-spacing:-14.580000px;}
.ws25{word-spacing:-14.274000px;}
.ws2a{word-spacing:-14.220000px;}
.wsf{word-spacing:-13.860000px;}
.ws9{word-spacing:-13.500000px;}
.wsa{word-spacing:-13.374000px;}
.ws19{word-spacing:-13.160160px;}
.ws18{word-spacing:-13.147200px;}
.ws12{word-spacing:-13.094640px;}
.ws1f{word-spacing:-12.420000px;}
.ws1c{word-spacing:-12.283800px;}
.ws6{word-spacing:-12.241200px;}
.ws1{word-spacing:-12.240000px;}
.ws7{word-spacing:-12.060000px;}
.ws1a{word-spacing:-11.878800px;}
.ws20{word-spacing:-11.836200px;}
.ws1b{word-spacing:-11.790600px;}
.ws2{word-spacing:-11.700000px;}
.ws21{word-spacing:-11.521200px;}
.ws5{word-spacing:-11.340000px;}
.ws3{word-spacing:-10.990200px;}
.ws4{word-spacing:-10.980000px;}
.ws8{word-spacing:-10.950480px;}
.ws22{word-spacing:-10.902240px;}
.ws23{word-spacing:-10.668000px;}
.wsd{word-spacing:-10.529400px;}
.wsc{word-spacing:-10.440000px;}
.wsb{word-spacing:-9.000000px;}
.ws0{word-spacing:-7.560000px;}
.ws11{word-spacing:-3.078000px;}
.wse{word-spacing:0.000000px;}
.ws15{word-spacing:0.344160px;}
.ws14{word-spacing:0.519840px;}
.ws13{word-spacing:0.699840px;}
.ws17{word-spacing:4.119840px;}
.ws16{word-spacing:168.999840px;}
._7{margin-left:-59.580000px;}
._24{margin-left:-3.925200px;}
._1a{margin-left:-2.827680px;}
._4{margin-left:-1.169760px;}
._2{width:1.044000px;}
._3{width:2.424480px;}
._11{width:4.183200px;}
._16{width:5.184000px;}
._17{width:6.372000px;}
._29{width:7.432560px;}
._18{width:8.586000px;}
._19{width:10.242000px;}
._25{width:11.473920px;}
._20{width:12.728880px;}
._10{width:13.804560px;}
._b{width:16.141440px;}
._27{width:17.270640px;}
._1e{width:18.457920px;}
._21{width:20.378160px;}
._22{width:21.844080px;}
._f{width:23.366160px;}
._1b{width:24.531840px;}
._e{width:25.767840px;}
._12{width:27.060000px;}
._28{width:28.923840px;}
._26{width:29.939760px;}
._13{width:31.553280px;}
._2d{width:32.868000px;}
._d{width:34.871760px;}
._36{width:36.214560px;}
._3c{width:37.277280px;}
._2b{width:38.306160px;}
._9{width:39.740400px;}
._35{width:40.756320px;}
._2e{width:41.832000px;}
._30{width:43.600320px;}
._c{width:44.640720px;}
._2c{width:46.433520px;}
._32{width:47.588160px;}
._31{width:48.817440px;}
._4f{width:49.834800px;}
._3f{width:50.975280px;}
._33{width:52.894800px;}
._2f{width:54.680400px;}
._a{width:55.935360px;}
._23{width:57.548880px;}
._38{width:58.863600px;}
._3b{width:60.716160px;}
._2a{width:62.508960px;}
._37{width:64.003680px;}
._5{width:65.496000px;}
._46{width:66.545520px;}
._3a{width:69.142320px;}
._43{width:71.118000px;}
._47{width:72.415920px;}
._4c{width:74.102400px;}
._4d{width:75.181680px;}
._15{width:78.823440px;}
._1d{width:80.639760px;}
._1c{width:81.785280px;}
._41{width:83.070720px;}
._39{width:84.142080px;}
._3d{width:96.213600px;}
._42{width:97.320960px;}
._14{width:100.251120px;}
._34{width:104.406960px;}
._44{width:112.946400px;}
._40{width:120.057840px;}
._49{width:137.926080px;}
._4a{width:139.300560px;}
._48{width:154.001520px;}
._4e{width:177.965280px;}
._6{width:199.620000px;}
._1f{width:278.610000px;}
._0{width:282.396000px;}
._3e{width:360.711360px;}
._4b{width:595.599840px;}
._45{width:631.814400px;}
._8{width:755.976000px;}
._1{width:1082.640000px;}
.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);}
.fsd{font-size:5.760000px;}
.fs12{font-size:6.000000px;}
.fsa{font-size:23.760000px;}
.fse{font-size:27.360000px;}
.fs6{font-size:30.240000px;}
.fsb{font-size:36.000000px;}
.fs9{font-size:37.946952px;}
.fs1{font-size:41.760000px;}
.fs5{font-size:45.360000px;}
.fs7{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs11{font-size:56.880000px;}
.fs0{font-size:59.760000px;}
.fsf{font-size:62.991941px;}
.fs2{font-size:66.240000px;}
.fs10{font-size:69.822393px;}
.fs4{font-size:72.000000px;}
.fsc{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y48{bottom:-260.670000px;}
.y47{bottom:-227.010000px;}
.y46{bottom:-193.170000px;}
.y45{bottom:-159.510000px;}
.y83{bottom:-156.270000px;}
.y44{bottom:-125.670000px;}
.y82{bottom:-122.610000px;}
.y43{bottom:-91.980000px;}
.y81{bottom:-88.725000px;}
.y42{bottom:-58.140000px;}
.y80{bottom:-55.065000px;}
.y4b{bottom:-27.180000px;}
.y41{bottom:-24.480000px;}
.y7f{bottom:-21.225000px;}
.y85{bottom:-17.922750px;}
.y40{bottom:-6.120000px;}
.y0{bottom:0.000000px;}
.y5{bottom:0.180000px;}
.y37c{bottom:1.837500px;}
.y6b{bottom:2.865000px;}
.y3{bottom:3.960000px;}
.y18b{bottom:4.680000px;}
.y1b2{bottom:4.845000px;}
.y194{bottom:4.860000px;}
.y21d{bottom:4.890000px;}
.y19e{bottom:4.905000px;}
.y1b9{bottom:5.025000px;}
.y4a{bottom:5.040000px;}
.y20b{bottom:5.205000px;}
.y223{bottom:5.220000px;}
.y1e6{bottom:5.400000px;}
.y74{bottom:5.760000px;}
.y3f{bottom:6.840000px;}
.y232{bottom:8.445000px;}
.yf2{bottom:8.820000px;}
.ye7{bottom:9.345000px;}
.ye9{bottom:9.885000px;}
.yed{bottom:9.930000px;}
.yea{bottom:10.065000px;}
.yee{bottom:10.110000px;}
.ye0{bottom:11.505000px;}
.y7e{bottom:12.435000px;}
.y18c{bottom:12.600000px;}
.y1b7{bottom:12.765000px;}
.y7{bottom:12.780000px;}
.y1d2{bottom:12.945000px;}
.y1bc{bottom:12.960000px;}
.y20e{bottom:13.125000px;}
.y24c{bottom:13.140000px;}
.y1e3{bottom:13.320000px;}
.y23f{bottom:13.680000px;}
.yf0{bottom:16.560000px;}
.y72{bottom:17.640000px;}
.y6a{bottom:18.165000px;}
.y18a{bottom:20.520000px;}
.y1b1{bottom:20.685000px;}
.y3e{bottom:20.700000px;}
.y1d0{bottom:20.730000px;}
.y19c{bottom:20.745000px;}
.y1b6{bottom:20.865000px;}
.y1a5{bottom:20.880000px;}
.y1e9{bottom:20.925000px;}
.y20a{bottom:21.045000px;}
.y222{bottom:21.060000px;}
.y1e1{bottom:21.240000px;}
.y252{bottom:21.420000px;}
.y238{bottom:21.585000px;}
.y22a{bottom:21.600000px;}
.y213{bottom:21.765000px;}
.y1e5{bottom:21.780000px;}
.y218{bottom:21.960000px;}
.ye6{bottom:23.385000px;}
.yf1{bottom:24.660000px;}
.y6{bottom:24.840000px;}
.y230{bottom:25.020000px;}
.y8{bottom:26.100000px;}
.y1d6{bottom:28.605000px;}
.y191{bottom:28.620000px;}
.y1d3{bottom:28.650000px;}
.y198{bottom:28.665000px;}
.y1b4{bottom:28.785000px;}
.y1aa{bottom:28.800000px;}
.y24b{bottom:28.980000px;}
.y20d{bottom:29.145000px;}
.y1e2{bottom:29.160000px;}
.y1d1{bottom:29.190000px;}
.y23e{bottom:29.520000px;}
.y204{bottom:30.045000px;}
.y69{bottom:30.585000px;}
.y71{bottom:31.320000px;}
.y3d{bottom:34.740000px;}
.y1b0{bottom:36.525000px;}
.y18f{bottom:36.540000px;}
.y1c0{bottom:36.570000px;}
.y19b{bottom:36.585000px;}
.y1b5{bottom:36.705000px;}
.y1ab{bottom:36.720000px;}
.y1a6{bottom:36.750000px;}
.y1ea{bottom:36.765000px;}
.ye2{bottom:36.885000px;}
.ye5{bottom:37.065000px;}
.y212{bottom:37.605000px;}
.y1e4{bottom:37.620000px;}
.y217{bottom:37.800000px;}
.y250{bottom:38.340000px;}
.y22f{bottom:40.860000px;}
.y4{bottom:41.580000px;}
.y7d{bottom:43.395000px;}
.y70{bottom:44.280000px;}
.y1d5{bottom:44.445000px;}
.y190{bottom:44.460000px;}
.y196{bottom:44.505000px;}
.y1ad{bottom:44.625000px;}
.y1a3{bottom:44.640000px;}
.y203{bottom:45.885000px;}
.y86{bottom:46.980000px;}
.y3c{bottom:47.520000px;}
.y68{bottom:48.585000px;}
.y1f2{bottom:49.860000px;}
.ye4{bottom:50.925000px;}
.y1d7{bottom:52.365000px;}
.y192{bottom:52.380000px;}
.y1df{bottom:52.410000px;}
.y19a{bottom:52.425000px;}
.y1af{bottom:52.545000px;}
.y1a1{bottom:52.560000px;}
.y1be{bottom:52.590000px;}
.y211{bottom:53.445000px;}
.y24f{bottom:54.180000px;}
.y7c{bottom:56.355000px;}
.y6f{bottom:57.420000px;}
.y1d8{bottom:60.285000px;}
.y1c9{bottom:60.300000px;}
.y197{bottom:60.345000px;}
.y1cd{bottom:60.480000px;}
.y1bb{bottom:60.510000px;}
.y244{bottom:62.820000px;}
.y236{bottom:63.360000px;}
.y1f9{bottom:63.540000px;}
.y84{bottom:63.780000px;}
.ye3{bottom:64.605000px;}
.y67{bottom:66.405000px;}
.y1c7{bottom:68.220000px;}
.y199{bottom:68.265000px;}
.y1ae{bottom:68.385000px;}
.y193{bottom:68.400000px;}
.y1bd{bottom:68.430000px;}
.y7b{bottom:69.495000px;}
.y6e{bottom:70.380000px;}
.y2{bottom:75.960000px;}
.y1c8{bottom:76.140000px;}
.y1db{bottom:76.350000px;}
.y243{bottom:78.660000px;}
.y235{bottom:79.200000px;}
.y1f8{bottom:79.380000px;}
.y228{bottom:82.305000px;}
.y7a{bottom:82.455000px;}
.y1c6{bottom:84.060000px;}
.y1ec{bottom:84.240000px;}
.y66{bottom:84.270000px;}
.y19d{bottom:84.285000px;}
.y6d{bottom:87.300000px;}
.y1dd{bottom:92.190000px;}
.y1f7{bottom:95.220000px;}
.y79{bottom:95.595000px;}
.y227{bottom:98.145000px;}
.y2dc{bottom:98.460000px;}
.y376{bottom:99.360000px;}
.y65{bottom:99.570000px;}
.y1da{bottom:100.080000px;}
.y1cb{bottom:100.110000px;}
.y1dc{bottom:100.290000px;}
.yf3{bottom:100.620000px;}
.y2b0{bottom:102.420000px;}
.y1f1{bottom:104.940000px;}
.y170{bottom:106.020000px;}
.y78{bottom:108.555000px;}
.y274{bottom:109.800000px;}
.yb8{bottom:110.340000px;}
.y282{bottom:111.420000px;}
.y64{bottom:111.990000px;}
.y1ba{bottom:113.220000px;}
.y321{bottom:113.940000px;}
.y2f3{bottom:114.120000px;}
.y375{bottom:116.640000px;}
.yef{bottom:117.000000px;}
.y2db{bottom:118.260000px;}
.y3a{bottom:121.320000px;}
.y77{bottom:121.515000px;}
.y21b{bottom:121.680000px;}
.y2af{bottom:122.220000px;}
.y125{bottom:125.100000px;}
.y16f{bottom:125.820000px;}
.y2fb{bottom:126.000000px;}
.y187{bottom:127.620000px;}
.y273{bottom:129.600000px;}
.y63{bottom:129.810000px;}
.yb7{bottom:130.140000px;}
.y265{bottom:130.680000px;}
.y263{bottom:130.860000px;}
.y281{bottom:131.400000px;}
.y320{bottom:133.560000px;}
.y374{bottom:133.920000px;}
.y76{bottom:133.935000px;}
.y2f2{bottom:134.100000px;}
.y156{bottom:136.980000px;}
.y21a{bottom:138.240000px;}
.y39{bottom:141.120000px;}
.y2ae{bottom:142.200000px;}
.y124{bottom:144.900000px;}
.y16e{bottom:145.800000px;}
.y186{bottom:147.780000px;}
.y62{bottom:147.810000px;}
.y272{bottom:149.400000px;}
.yb6{bottom:150.120000px;}
.y262{bottom:150.480000px;}
.y373{bottom:151.020000px;}
.y280{bottom:151.200000px;}
.y2f1{bottom:153.900000px;}
.y31f{bottom:154.260000px;}
.y219{bottom:154.800000px;}
.y155{bottom:156.780000px;}
.yec{bottom:157.500000px;}
.y2da{bottom:158.040000px;}
.y38{bottom:160.920000px;}
.y2ad{bottom:162.000000px;}
.y123{bottom:164.730000px;}
.y61{bottom:165.630000px;}
.y185{bottom:167.610000px;}
.y372{bottom:168.330000px;}
.y271{bottom:169.230000px;}
.yb5{bottom:169.950000px;}
.y261{bottom:170.310000px;}
.y27f{bottom:171.030000px;}
.y210{bottom:171.585000px;}
.y2f0{bottom:173.730000px;}
.y154{bottom:176.610000px;}
.y2d9{bottom:177.870000px;}
.y344{bottom:179.310000px;}
.y37{bottom:180.750000px;}
.y2ac{bottom:181.830000px;}
.y60{bottom:183.450000px;}
.y122{bottom:184.530000px;}
.yeb{bottom:184.545000px;}
.y16d{bottom:185.430000px;}
.y371{bottom:185.610000px;}
.y184{bottom:187.410000px;}
.y270{bottom:189.210000px;}
.yb4{bottom:189.750000px;}
.y260{bottom:190.110000px;}
.y27e{bottom:190.830000px;}
.y1b8{bottom:193.365000px;}
.y2ef{bottom:193.530000px;}
.y31e{bottom:195.330000px;}
.y153{bottom:196.590000px;}
.y2d8{bottom:197.670000px;}
.y36{bottom:200.550000px;}
.y5f{bottom:201.270000px;}
.y2ab{bottom:201.630000px;}
.y370{bottom:202.890000px;}
.y216{bottom:203.985000px;}
.y121{bottom:204.510000px;}
.y16c{bottom:205.230000px;}
.y2fa{bottom:206.310000px;}
.y183{bottom:207.210000px;}
.y26f{bottom:209.010000px;}
.yb3{bottom:209.550000px;}
.y25f{bottom:210.090000px;}
.y27d{bottom:210.630000px;}
.ye8{bottom:211.545000px;}
.y1d9{bottom:212.085000px;}
.y2ee{bottom:213.330000px;}
.y343{bottom:213.870000px;}
.y31d{bottom:215.130000px;}
.y152{bottom:216.390000px;}
.y2d7{bottom:217.470000px;}
.y5e{bottom:219.090000px;}
.y36f{bottom:220.170000px;}
.y35{bottom:220.530000px;}
.y215{bottom:220.545000px;}
.y2aa{bottom:221.430000px;}
.y120{bottom:224.310000px;}
.y16b{bottom:225.030000px;}
.y182{bottom:227.190000px;}
.y26e{bottom:228.810000px;}
.yb2{bottom:229.350000px;}
.y25e{bottom:229.890000px;}
.y27c{bottom:230.610000px;}
.y342{bottom:231.150000px;}
.y2ed{bottom:233.310000px;}
.y31c{bottom:235.830000px;}
.y151{bottom:236.190000px;}
.y1f5{bottom:236.370000px;}
.y5d{bottom:236.910000px;}
.y214{bottom:237.285000px;}
.y36e{bottom:237.450000px;}
.y2d6{bottom:238.350000px;}
.ye1{bottom:238.545000px;}
.y34{bottom:240.330000px;}
.y2a9{bottom:241.410000px;}
.y11f{bottom:244.110000px;}
.y16a{bottom:245.010000px;}
.y181{bottom:246.990000px;}
.y2f9{bottom:247.170000px;}
.y341{bottom:248.250000px;}
.y26d{bottom:248.610000px;}
.y1f3{bottom:248.790000px;}
.yb1{bottom:249.330000px;}
.y25d{bottom:249.690000px;}
.y27b{bottom:250.410000px;}
.y1f4{bottom:252.210000px;}
.y2ec{bottom:253.110000px;}
.y20c{bottom:253.845000px;}
.y36d{bottom:254.550000px;}
.y5c{bottom:254.910000px;}
.y150{bottom:255.990000px;}
.y1b3{bottom:257.625000px;}
.y2d5{bottom:258.150000px;}
.y31b{bottom:259.590000px;}
.y33{bottom:260.130000px;}
.y2a8{bottom:261.210000px;}
.y11e{bottom:263.910000px;}
.y169{bottom:264.810000px;}
.y340{bottom:265.530000px;}
.y180{bottom:266.790000px;}
.y2f8{bottom:266.970000px;}
.y26c{bottom:268.410000px;}
.yb0{bottom:269.130000px;}
.y25c{bottom:269.490000px;}
.y27a{bottom:270.210000px;}
.y20f{bottom:270.405000px;}
.y2d4{bottom:271.110000px;}
.y36c{bottom:271.830000px;}
.y5b{bottom:272.730000px;}
.y2eb{bottom:272.910000px;}
.y14f{bottom:275.790000px;}
.y32{bottom:279.930000px;}
.y2a7{bottom:281.010000px;}
.y33f{bottom:282.810000px;}
.y11d{bottom:283.710000px;}
.y168{bottom:284.610000px;}
.y5a{bottom:286.050000px;}
.y17f{bottom:286.590000px;}
.y2f7{bottom:286.770000px;}
.y26b{bottom:288.390000px;}
.yaf{bottom:288.930000px;}
.y36b{bottom:289.110000px;}
.y25b{bottom:289.290000px;}
.y279{bottom:290.010000px;}
.y2d3{bottom:290.910000px;}
.y1d4{bottom:292.185000px;}
.y2ea{bottom:292.710000px;}
.y59{bottom:294.870000px;}
.y14e{bottom:295.770000px;}
.y33e{bottom:300.090000px;}
.y31{bottom:300.630000px;}
.y2a6{bottom:300.810000px;}
.y209{bottom:302.985000px;}
.y11c{bottom:303.690000px;}
.y167{bottom:304.410000px;}
.y17e{bottom:306.390000px;}
.y2f6{bottom:306.570000px;}
.y26a{bottom:308.190000px;}
.yae{bottom:308.730000px;}
.y25a{bottom:309.270000px;}
.y278{bottom:309.810000px;}
.y37b{bottom:310.530000px;}
.y2d2{bottom:310.710000px;}
.y2e9{bottom:312.510000px;}
.y58{bottom:312.720000px;}
.y14d{bottom:315.570000px;}
.y33d{bottom:317.370000px;}
.y30{bottom:317.910000px;}
.ydf{bottom:319.545000px;}
.y31a{bottom:320.430000px;}
.y2a5{bottom:320.610000px;}
.y1ac{bottom:321.885000px;}
.y11b{bottom:323.490000px;}
.y36a{bottom:323.670000px;}
.y166{bottom:324.210000px;}
.y4c{bottom:325.125000px;}
.y17d{bottom:326.370000px;}
.y2f5{bottom:326.550000px;}
.y2f{bottom:327.810000px;}
.y269{bottom:327.990000px;}
.yad{bottom:328.530000px;}
.y259{bottom:329.070000px;}
.y277{bottom:329.790000px;}
.y37a{bottom:330.330000px;}
.y2d1{bottom:330.510000px;}
.y57{bottom:330.540000px;}
.y2e8{bottom:332.490000px;}
.y33c{bottom:334.650000px;}
.y14c{bottom:335.370000px;}
.y202{bottom:336.285000px;}
.y319{bottom:340.230000px;}
.y2a4{bottom:340.590000px;}
.y369{bottom:340.950000px;}
.y11a{bottom:343.290000px;}
.y165{bottom:345.450000px;}
.y268{bottom:345.810000px;}
.y17c{bottom:346.170000px;}
.y2f4{bottom:347.250000px;}
.yac{bottom:348.510000px;}
.y56{bottom:348.540000px;}
.y276{bottom:349.590000px;}
.y264{bottom:349.770000px;}
.y258{bottom:350.130000px;}
.y2d0{bottom:350.490000px;}
.y2e{bottom:350.850000px;}
.y33b{bottom:351.750000px;}
.y208{bottom:352.845000px;}
.y2e7{bottom:353.190000px;}
.y14b{bottom:355.170000px;}
.yde{bottom:356.790000px;}
.y368{bottom:358.050000px;}
.y318{bottom:360.030000px;}
.y2a3{bottom:360.390000px;}
.y119{bottom:363.090000px;}
.y2d{bottom:363.270000px;}
.y17b{bottom:365.970000px;}
.y55{bottom:366.360000px;}
.y267{bottom:366.510000px;}
.yab{bottom:368.310000px;}
.y33a{bottom:369.030000px;}
.y164{bottom:369.210000px;}
.y275{bottom:369.390000px;}
.y207{bottom:369.405000px;}
.y379{bottom:369.930000px;}
.y2cf{bottom:370.290000px;}
.y1cf{bottom:372.285000px;}
.y257{bottom:373.890000px;}
.ydd{bottom:374.610000px;}
.y14a{bottom:374.970000px;}
.y367{bottom:375.330000px;}
.y317{bottom:379.830000px;}
.y2c{bottom:380.010000px;}
.y2a2{bottom:380.190000px;}
.y118{bottom:382.890000px;}
.y54{bottom:384.180000px;}
.y17a{bottom:385.770000px;}
.y206{bottom:385.965000px;}
.y339{bottom:386.310000px;}
.yaa{bottom:388.110000px;}
.y163{bottom:388.650000px;}
.y378{bottom:389.910000px;}
.y2ce{bottom:390.090000px;}
.ydc{bottom:392.475000px;}
.y24e{bottom:392.655000px;}
.y2e6{bottom:394.095000px;}
.y149{bottom:394.995000px;}
.y2a1{bottom:400.035000px;}
.y316{bottom:400.755000px;}
.y162{bottom:401.655000px;}
.y53{bottom:402.000000px;}
.y205{bottom:402.735000px;}
.y117{bottom:402.915000px;}
.y266{bottom:403.635000px;}
.y2b{bottom:403.815000px;}
.y179{bottom:405.615000px;}
.ydb{bottom:407.415000px;}
.ya9{bottom:407.955000px;}
.y256{bottom:409.215000px;}
.y377{bottom:409.755000px;}
.y2cd{bottom:409.935000px;}
.y2e5{bottom:413.895000px;}
.y148{bottom:414.795000px;}
.y1a9{bottom:417.855000px;}
.y1f6{bottom:419.295000px;}
.y52{bottom:419.820000px;}
.y2a0{bottom:419.835000px;}
.y1ce{bottom:420.555000px;}
.y338{bottom:420.915000px;}
.y161{bottom:421.455000px;}
.y116{bottom:422.715000px;}
.y2a{bottom:424.695000px;}
.y178{bottom:425.415000px;}
.y255{bottom:425.775000px;}
.y366{bottom:427.215000px;}
.ya8{bottom:427.755000px;}
.y2cc{bottom:429.735000px;}
.y51{bottom:433.140000px;}
.y2e4{bottom:433.695000px;}
.y147{bottom:434.595000px;}
.y201{bottom:435.855000px;}
.y337{bottom:438.195000px;}
.y115{bottom:439.455000px;}
.y29f{bottom:439.815000px;}
.y160{bottom:441.435000px;}
.y315{bottom:441.615000px;}
.y50{bottom:441.960000px;}
.y251{bottom:442.515000px;}
.y365{bottom:444.315000px;}
.y29{bottom:444.675000px;}
.y177{bottom:445.395000px;}
.ya7{bottom:447.735000px;}
.y2cb{bottom:449.715000px;}
.y114{bottom:452.415000px;}
.y200{bottom:452.595000px;}
.y2e3{bottom:453.675000px;}
.y146{bottom:454.395000px;}
.y336{bottom:455.295000px;}
.y28{bottom:458.355000px;}
.y254{bottom:459.075000px;}
.y29e{bottom:459.615000px;}
.y4f{bottom:459.960000px;}
.y15f{bottom:461.235000px;}
.y314{bottom:461.415000px;}
.y364{bottom:461.595000px;}
.y176{bottom:465.195000px;}
.y1a8{bottom:466.275000px;}
.y27{bottom:466.995000px;}
.ya6{bottom:467.535000px;}
.y1ff{bottom:469.155000px;}
.y2ca{bottom:469.515000px;}
.y113{bottom:472.215000px;}
.y335{bottom:472.575000px;}
.y2e2{bottom:473.475000px;}
.y145{bottom:474.195000px;}
.y253{bottom:475.635000px;}
.y4e{bottom:477.780000px;}
.y363{bottom:478.875000px;}
.y29d{bottom:479.415000px;}
.y15e{bottom:481.035000px;}
.y313{bottom:481.215000px;}
.y75{bottom:481.740000px;}
.y175{bottom:484.995000px;}
.y1fe{bottom:485.715000px;}
.ya5{bottom:487.335000px;}
.y2c9{bottom:489.315000px;}
.y334{bottom:489.855000px;}
.y26{bottom:490.395000px;}
.y112{bottom:492.195000px;}
.y242{bottom:492.375000px;}
.y2e1{bottom:493.275000px;}
.y144{bottom:494.175000px;}
.y4d{bottom:495.600000px;}
.y362{bottom:496.155000px;}
.y29c{bottom:499.215000px;}
.y1cc{bottom:500.655000px;}
.y15d{bottom:500.835000px;}
.y312{bottom:501.015000px;}
.y1fd{bottom:502.455000px;}
.y174{bottom:504.795000px;}
.ya4{bottom:507.135000px;}
.y2c8{bottom:509.115000px;}
.y111{bottom:511.995000px;}
.y2e0{bottom:513.075000px;}
.y361{bottom:513.435000px;}
.y25{bottom:513.615000px;}
.y143{bottom:513.975000px;}
.y1fc{bottom:519.015000px;}
.y15c{bottom:520.635000px;}
.y311{bottom:520.995000px;}
.y333{bottom:524.415000px;}
.y173{bottom:524.595000px;}
.y24d{bottom:524.775000px;}
.ya3{bottom:526.935000px;}
.yda{bottom:528.555000px;}
.y2c7{bottom:528.915000px;}
.y1a7{bottom:530.535000px;}
.y360{bottom:530.715000px;}
.y110{bottom:531.795000px;}
.y2df{bottom:532.875000px;}
.y142{bottom:533.775000px;}
.y24{bottom:536.835000px;}
.y29b{bottom:539.895000px;}
.y15b{bottom:540.615000px;}
.y310{bottom:540.795000px;}
.y24a{bottom:541.335000px;}
.y332{bottom:541.695000px;}
.y172{bottom:544.575000px;}
.ya2{bottom:546.915000px;}
.y35f{bottom:547.815000px;}
.yca{bottom:548.715000px;}
.y2c6{bottom:548.895000px;}
.y1fb{bottom:551.595000px;}
.y10f{bottom:552.855000px;}
.y141{bottom:553.575000px;}
.y248{bottom:558.075000px;}
.y331{bottom:558.795000px;}
.y29a{bottom:559.695000px;}
.y23{bottom:560.235000px;}
.y30f{bottom:560.595000px;}
.y15a{bottom:561.675000px;}
.yd9{bottom:563.295000px;}
.y171{bottom:564.375000px;}
.y35e{bottom:565.095000px;}
.ya1{bottom:566.715000px;}
.y1fa{bottom:568.155000px;}
.yc9{bottom:568.695000px;}
.y299{bottom:572.655000px;}
.y140{bottom:573.375000px;}
.y249{bottom:574.635000px;}
.y330{bottom:576.075000px;}
.y10e{bottom:576.615000px;}
.y30e{bottom:580.395000px;}
.y1ca{bottom:580.755000px;}
.y35d{bottom:582.375000px;}
.yd8{bottom:583.095000px;}
.y22{bottom:583.455000px;}
.y159{bottom:583.635000px;}
.y1f0{bottom:584.715000px;}
.ya0{bottom:586.515000px;}
.yc8{bottom:588.495000px;}
.y245{bottom:591.195000px;}
.y298{bottom:592.455000px;}
.y13f{bottom:593.355000px;}
.y1a4{bottom:594.615000px;}
.y10d{bottom:596.055000px;}
.y35c{bottom:599.655000px;}
.y30d{bottom:600.195000px;}
.y158{bottom:601.455000px;}
.yd7{bottom:602.895000px;}
.y9f{bottom:606.315000px;}
.y21{bottom:606.675000px;}
.y247{bottom:607.935000px;}
.yc7{bottom:608.295000px;}
.y10c{bottom:609.195000px;}
.y32f{bottom:610.635000px;}
.y297{bottom:612.255000px;}
.y13e{bottom:613.155000px;}
.y157{bottom:616.935000px;}
.y30c{bottom:620.175000px;}
.yd6{bottom:623.985000px;}
.y246{bottom:624.525000px;}
.y9e{bottom:626.145000px;}
.y32e{bottom:627.945000px;}
.yc6{bottom:628.125000px;}
.y10b{bottom:629.025000px;}
.y296{bottom:632.085000px;}
.y13d{bottom:632.985000px;}
.y35b{bottom:634.245000px;}
.y6c{bottom:636.045000px;}
.y30b{bottom:640.005000px;}
.y1ef{bottom:640.185000px;}
.y234{bottom:641.085000px;}
.y1a2{bottom:643.065000px;}
.yd5{bottom:643.425000px;}
.y32d{bottom:645.045000px;}
.y9d{bottom:646.125000px;}
.yc5{bottom:647.925000px;}
.y2c5{bottom:648.105000px;}
.y10a{bottom:648.825000px;}
.y35a{bottom:651.345000px;}
.y295{bottom:652.065000px;}
.y13c{bottom:652.785000px;}
.yd4{bottom:656.565000px;}
.y241{bottom:657.825000px;}
.y1ee{bottom:659.445000px;}
.y30a{bottom:659.805000px;}
.y20{bottom:661.605000px;}
.y32c{bottom:662.325000px;}
.y9c{bottom:665.925000px;}
.yc4{bottom:667.905000px;}
.y109{bottom:668.625000px;}
.y294{bottom:671.865000px;}
.y13b{bottom:672.585000px;}
.y240{bottom:674.385000px;}
.yd3{bottom:676.365000px;}
.y1ed{bottom:676.545000px;}
.y1f{bottom:677.085000px;}
.y309{bottom:679.605000px;}
.y9b{bottom:685.725000px;}
.y359{bottom:685.905000px;}
.yc3{bottom:687.705000px;}
.y108{bottom:688.425000px;}
.y2c4{bottom:688.605000px;}
.y23b{bottom:690.945000px;}
.y293{bottom:691.665000px;}
.y13a{bottom:692.565000px;}
.y1e{bottom:692.745000px;}
.yd2{bottom:696.165000px;}
.y32b{bottom:697.065000px;}
.y308{bottom:699.405000px;}
.y358{bottom:703.185000px;}
.y9a{bottom:705.525000px;}
.yc2{bottom:707.505000px;}
.y23d{bottom:707.685000px;}
.y1d{bottom:708.225000px;}
.y107{bottom:708.405000px;}
.y292{bottom:711.465000px;}
.y139{bottom:712.365000px;}
.yd1{bottom:716.865000px;}
.y307{bottom:719.385000px;}
.y357{bottom:720.465000px;}
.y2c3{bottom:721.365000px;}
.y1a0{bottom:723.165000px;}
.y1c{bottom:723.705000px;}
.y23c{bottom:724.245000px;}
.y99{bottom:725.325000px;}
.yc1{bottom:727.305000px;}
.y106{bottom:728.205000px;}
.y291{bottom:731.265000px;}
.y138{bottom:732.165000px;}
.y1b{bottom:734.865000px;}
.y356{bottom:737.565000px;}
.y32a{bottom:738.105000px;}
.y306{bottom:739.185000px;}
.yd0{bottom:740.805000px;}
.y237{bottom:740.820000px;}
.y2c2{bottom:741.345000px;}
.y3b{bottom:743.505000px;}
.y98{bottom:745.305000px;}
.yc0{bottom:747.105000px;}
.y105{bottom:748.005000px;}
.y1a{bottom:748.545000px;}
.y290{bottom:751.245000px;}
.y137{bottom:751.965000px;}
.y355{bottom:754.845000px;}
.y329{bottom:755.745000px;}
.y1eb{bottom:756.645000px;}
.y23a{bottom:757.545000px;}
.y305{bottom:758.985000px;}
.ycf{bottom:760.425000px;}
.y2c1{bottom:761.145000px;}
.y19{bottom:761.325000px;}
.y97{bottom:765.105000px;}
.ybf{bottom:767.085000px;}
.y104{bottom:767.805000px;}
.yce{bottom:770.505000px;}
.y28f{bottom:771.045000px;}
.y136{bottom:771.765000px;}
.y354{bottom:772.125000px;}
.y239{bottom:774.120000px;}
.y18{bottom:774.285000px;}
.y304{bottom:778.785000px;}
.y2c0{bottom:780.945000px;}
.y96{bottom:784.905000px;}
.ybe{bottom:786.885000px;}
.y17{bottom:787.245000px;}
.y19f{bottom:787.425000px;}
.y103{bottom:787.605000px;}
.y1c5{bottom:788.685000px;}
.y353{bottom:789.405000px;}
.y226{bottom:790.665000px;}
.y28e{bottom:790.845000px;}
.y135{bottom:791.745000px;}
.y328{bottom:796.605000px;}
.y303{bottom:798.585000px;}
.y2bf{bottom:800.745000px;}
.y16{bottom:801.105000px;}
.ycd{bottom:801.285000px;}
.y95{bottom:804.705000px;}
.ybd{bottom:806.685000px;}
.y233{bottom:807.405000px;}
.y102{bottom:807.585000px;}
.y28d{bottom:810.645000px;}
.y134{bottom:811.545000px;}
.y15{bottom:813.885000px;}
.y327{bottom:816.405000px;}
.y302{bottom:818.565000px;}
.y2be{bottom:820.545000px;}
.y352{bottom:823.965000px;}
.ycc{bottom:824.145000px;}
.y94{bottom:824.505000px;}
.ybc{bottom:826.485000px;}
.y101{bottom:827.385000px;}
.y28c{bottom:830.445000px;}
.y133{bottom:831.345000px;}
.y2de{bottom:831.525000px;}
.ycb{bottom:834.225000px;}
.y326{bottom:836.205000px;}
.y301{bottom:838.365000px;}
.y231{bottom:839.820000px;}
.y2bd{bottom:840.525000px;}
.y14{bottom:840.705000px;}
.y351{bottom:841.065000px;}
.y93{bottom:844.485000px;}
.ybb{bottom:846.285000px;}
.y100{bottom:847.185000px;}
.y28b{bottom:850.425000px;}
.y132{bottom:851.145000px;}
.y2dd{bottom:851.325000px;}
.y195{bottom:851.685000px;}
.y13{bottom:851.865000px;}
.y1e8{bottom:852.585000px;}
.y1c4{bottom:852.810000px;}
.y325{bottom:856.950000px;}
.y300{bottom:858.210000px;}
.y350{bottom:858.390000px;}
.y2bc{bottom:860.370000px;}
.y22e{bottom:863.430000px;}
.y92{bottom:864.330000px;}
.yba{bottom:866.310000px;}
.yff{bottom:867.030000px;}
.y28a{bottom:870.270000px;}
.y131{bottom:870.990000px;}
.y12{bottom:874.770000px;}
.y34f{bottom:875.670000px;}
.y2ff{bottom:878.010000px;}
.y2bb{bottom:880.170000px;}
.y91{bottom:884.130000px;}
.yfe{bottom:886.830000px;}
.y289{bottom:890.070000px;}
.y130{bottom:890.970000px;}
.y34e{bottom:892.950000px;}
.y22d{bottom:896.010000px;}
.y2fe{bottom:897.810000px;}
.y11{bottom:898.890000px;}
.y2ba{bottom:899.970000px;}
.y1e7{bottom:901.050000px;}
.y90{bottom:903.930000px;}
.yfd{bottom:906.810000px;}
.y288{bottom:909.870000px;}
.y34d{bottom:910.230000px;}
.y12f{bottom:910.770000px;}
.y10{bottom:913.650000px;}
.y1c3{bottom:917.070000px;}
.y2fd{bottom:917.790000px;}
.y2b9{bottom:919.770000px;}
.yb9{bottom:922.830000px;}
.y8f{bottom:923.730000px;}
.yf{bottom:925.170000px;}
.yfc{bottom:926.610000px;}
.y34c{bottom:927.510000px;}
.y229{bottom:928.410000px;}
.y287{bottom:929.670000px;}
.y12e{bottom:930.570000px;}
.y1c2{bottom:933.810000px;}
.y324{bottom:937.590000px;}
.y2fc{bottom:938.490000px;}
.y2b8{bottom:939.750000px;}
.ye{bottom:942.810000px;}
.y8e{bottom:943.710000px;}
.y34b{bottom:944.610000px;}
.y22c{bottom:945.150000px;}
.yfb{bottom:946.410000px;}
.y18e{bottom:947.670000px;}
.y286{bottom:949.650000px;}
.y12d{bottom:950.370000px;}
.y323{bottom:957.390000px;}
.y2b7{bottom:959.550000px;}
.y22b{bottom:961.710000px;}
.y34a{bottom:961.890000px;}
.y8d{bottom:963.510000px;}
.yd{bottom:964.410000px;}
.yfa{bottom:966.210000px;}
.y285{bottom:969.450000px;}
.y12c{bottom:970.170000px;}
.y322{bottom:977.190000px;}
.y220{bottom:978.270000px;}
.y349{bottom:979.170000px;}
.y2b6{bottom:979.350000px;}
.y1e0{bottom:981.150000px;}
.y8c{bottom:983.310000px;}
.yf9{bottom:986.010000px;}
.yc{bottom:986.190000px;}
.y284{bottom:989.250000px;}
.y12b{bottom:990.150000px;}
.y225{bottom:995.010000px;}
.y348{bottom:996.450000px;}
.y1c1{bottom:997.890000px;}
.y2b5{bottom:999.150000px;}
.y8b{bottom:1003.110000px;}
.yf8{bottom:1005.990000px;}
.y12a{bottom:1009.950000px;}
.y221{bottom:1011.570000px;}
.yb{bottom:1013.730000px;}
.y2b4{bottom:1018.950000px;}
.y8a{bottom:1022.910000px;}
.yf7{bottom:1025.790000px;}
.y18d{bottom:1027.770000px;}
.y224{bottom:1028.130000px;}
.y283{bottom:1029.570000px;}
.y129{bottom:1029.750000px;}
.y1de{bottom:1030.470000px;}
.y347{bottom:1031.010000px;}
.y2b3{bottom:1038.930000px;}
.ya{bottom:1041.450000px;}
.y89{bottom:1042.890000px;}
.y189{bottom:1044.330000px;}
.y21f{bottom:1044.870000px;}
.yf6{bottom:1045.590000px;}
.y1bf{bottom:1046.310000px;}
.y346{bottom:1048.110000px;}
.y128{bottom:1049.550000px;}
.y2b2{bottom:1058.730000px;}
.y21e{bottom:1061.430000px;}
.y88{bottom:1062.690000px;}
.yf5{bottom:1065.390000px;}
.y9{bottom:1067.550000px;}
.y127{bottom:1069.350000px;}
.y21c{bottom:1077.990000px;}
.y2b1{bottom:1079.430000px;}
.y87{bottom:1082.490000px;}
.y345{bottom:1082.670000px;}
.y188{bottom:1083.960000px;}
.yf4{bottom:1086.480000px;}
.y126{bottom:1089.180000px;}
.y73{bottom:1097.280000px;}
.y1{bottom:1123.200000px;}
.y49{bottom:1141.020000px;}
.h1a{height:5.805000px;}
.h73{height:6.257812px;}
.h3{height:13.500000px;}
.h3e{height:15.825000px;}
.h61{height:15.840000px;}
.h62{height:15.870000px;}
.h60{height:15.876000px;}
.h57{height:16.005000px;}
.h6b{height:16.020000px;}
.h59{height:16.041000px;}
.h1d{height:16.920000px;}
.h24{height:22.320000px;}
.h69{height:22.881000px;}
.h16{height:23.319141px;}
.h38{height:26.085000px;}
.h39{height:26.136000px;}
.h32{height:29.325000px;}
.h72{height:29.664141px;}
.hd{height:29.678906px;}
.hf{height:30.963516px;}
.h3d{height:31.665000px;}
.h6a{height:31.680000px;}
.h5d{height:31.845000px;}
.h5a{height:32.385000px;}
.h65{height:32.565000px;}
.h64{height:34.036523px;}
.h4{height:34.380000px;}
.h18{height:36.281250px;}
.h14{height:39.503370px;}
.h3a{height:39.600000px;}
.h5{height:40.985156px;}
.h23{height:41.972344px;}
.h17{height:42.086250px;}
.h5c{height:43.246406px;}
.h29{height:43.983631px;}
.h11{height:44.518359px;}
.hc{height:45.116367px;}
.h1c{height:45.714375px;}
.h12{height:46.622932px;}
.h13{height:47.344922px;}
.h4d{height:47.541000px;}
.h4a{height:47.550000px;}
.h46{height:47.685000px;}
.h52{height:47.722500px;}
.h44{height:47.730000px;}
.h4e{height:47.980898px;}
.h70{height:48.225000px;}
.h5b{height:48.405000px;}
.h51{height:48.585000px;}
.h1e{height:48.616875px;}
.h3b{height:48.752940px;}
.h67{height:49.125000px;}
.h6d{height:49.140000px;}
.h6f{height:49.170000px;}
.h36{height:49.583118px;}
.h15{height:52.998047px;}
.h2a{height:53.573906px;}
.h1f{height:54.421875px;}
.h10{height:55.291992px;}
.h21{height:55.503491px;}
.h1b{height:57.780000px;}
.h28{height:58.621992px;}
.h2{height:58.651172px;}
.h30{height:60.226875px;}
.h55{height:60.226994px;}
.h3c{height:61.423863px;}
.h45{height:63.345000px;}
.h41{height:63.360000px;}
.h50{height:63.390000px;}
.h48{height:63.525000px;}
.h42{height:63.540000px;}
.hb{height:65.010937px;}
.h5f{height:65.736000px;}
.h63{height:65.865000px;}
.h6{height:65.884219px;}
.he{height:67.824844px;}
.h7{height:68.956875px;}
.h2b{height:70.628906px;}
.h33{height:70.664062px;}
.h31{height:71.766417px;}
.h68{height:72.022500px;}
.ha{height:72.562500px;}
.h2f{height:72.686202px;}
.h25{height:74.953125px;}
.h27{height:75.093750px;}
.h3f{height:79.365000px;}
.h43{height:79.380000px;}
.h49{height:79.416000px;}
.h34{height:80.085000px;}
.h35{height:80.091000px;}
.h37{height:80.100000px;}
.h5e{height:81.525000px;}
.h58{height:82.281000px;}
.h19{height:84.898125px;}
.h4b{height:95.040000px;}
.h53{height:95.220000px;}
.h47{height:95.241000px;}
.h40{height:95.242500px;}
.h22{height:95.400000px;}
.h8{height:96.508125px;}
.h2c{height:96.677578px;}
.h2e{height:98.971172px;}
.h71{height:98.985000px;}
.h9{height:99.687656px;}
.h2d{height:105.298594px;}
.h4c{height:111.090000px;}
.h4f{height:111.276000px;}
.h26{height:144.945000px;}
.h6e{height:147.990000px;}
.h6c{height:148.860000px;}
.h56{height:164.685000px;}
.h66{height:186.855000px;}
.h54{height:479.055000px;}
.h20{height:507.855000px;}
.h0{height:1190.700000px;}
.h1{height:1191.000000px;}
.w10{width:47.340000px;}
.we{width:60.291000px;}
.w3{width:82.071000px;}
.w16{width:83.901000px;}
.wf{width:88.221000px;}
.w15{width:91.251000px;}
.w1a{width:91.260000px;}
.w13{width:99.930000px;}
.w17{width:128.196000px;}
.w5{width:154.470000px;}
.w18{width:161.985000px;}
.w11{width:165.630000px;}
.wa{width:180.390000px;}
.w8{width:182.550000px;}
.wb{width:208.821000px;}
.w19{width:254.040000px;}
.w12{width:259.215000px;}
.wc{width:511.845000px;}
.wd{width:511.860000px;}
.w7{width:532.740000px;}
.w4{width:639.855000px;}
.w14{width:720.675000px;}
.w2{width:721.935000px;}
.w9{width:743.175000px;}
.w6{width:747.135000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6c{left:4.252500px;}
.x2{left:8.091000px;}
.x36{left:9.345000px;}
.x11{left:10.791000px;}
.x2d{left:12.411000px;}
.x3b{left:13.485000px;}
.x3a{left:15.330000px;}
.x40{left:16.770000px;}
.x2e{left:18.351000px;}
.x39{left:20.010000px;}
.x17{left:21.255000px;}
.x68{left:22.320000px;}
.x43{left:23.430000px;}
.x37{left:25.185000px;}
.x3f{left:26.265000px;}
.x30{left:27.705000px;}
.x4a{left:28.785000px;}
.x35{left:29.910000px;}
.x41{left:31.320000px;}
.x3e{left:32.940000px;}
.x38{left:34.200000px;}
.x48{left:35.460000px;}
.x5a{left:37.080000px;}
.x4d{left:38.880000px;}
.x33{left:39.945000px;}
.x67{left:41.025000px;}
.x56{left:42.120000px;}
.x3c{left:43.560000px;}
.x5b{left:44.850000px;}
.x65{left:46.065000px;}
.x61{left:47.340000px;}
.x47{left:48.405000px;}
.x64{left:50.745000px;}
.x4f{left:52.005000px;}
.x31{left:53.460000px;}
.x69{left:54.930000px;}
.x63{left:56.865000px;}
.x49{left:58.305000px;}
.x46{left:60.105000px;}
.x42{left:61.560000px;}
.x44{left:63.000000px;}
.x45{left:64.620000px;}
.x62{left:65.865000px;}
.x4e{left:67.305000px;}
.x53{left:70.365000px;}
.x3{left:73.965000px;}
.x4b{left:75.765000px;}
.x14{left:80.505000px;}
.x12{left:81.765000px;}
.x51{left:86.565000px;}
.x66{left:90.930000px;}
.x59{left:92.010000px;}
.x10{left:93.105000px;}
.x16{left:94.905000px;}
.x5c{left:96.870000px;}
.x52{left:98.625000px;}
.x60{left:99.930000px;}
.x5e{left:103.890000px;}
.x5f{left:106.950000px;}
.x1{left:108.036000px;}
.x50{left:110.550000px;}
.x3d{left:111.630000px;}
.x7{left:116.316000px;}
.x5d{left:119.910000px;}
.x6{left:124.776000px;}
.x1c{left:128.376000px;}
.xe{left:132.696000px;}
.x1d{left:146.916000px;}
.x19{left:150.690000px;}
.x26{left:152.490000px;}
.x27{left:156.630000px;}
.x2f{left:168.345000px;}
.x29{left:176.610000px;}
.x2c{left:178.950000px;}
.x4{left:190.125000px;}
.x54{left:199.305000px;}
.xc{left:211.890000px;}
.xa{left:218.730000px;}
.x1e{left:229.350000px;}
.x1a{left:233.130000px;}
.x1b{left:236.910000px;}
.x2b{left:256.575000px;}
.xd{left:261.795000px;}
.x55{left:283.215000px;}
.x4c{left:301.350000px;}
.x13{left:303.555000px;}
.x15{left:310.350000px;}
.x25{left:316.875000px;}
.x6a{left:339.195000px;}
.x8{left:340.635000px;}
.x28{left:383.835000px;}
.x57{left:411.420000px;}
.x9{left:443.085000px;}
.x5{left:446.505000px;}
.xb{left:459.105000px;}
.x32{left:469.560000px;}
.xf{left:490.785000px;}
.x1f{left:524.085000px;}
.x58{left:573.420000px;}
.x20{left:575.025000px;}
.x21{left:610.530000px;}
.x18{left:620.253000px;}
.x2a{left:685.230000px;}
.x22{left:688.830000px;}
.x34{left:728.790000px;}
.x6b{left:804.420000px;}
.x23{left:813.240000px;}
.x24{left:829.080000px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:13.440000pt;}
.v3{vertical-align:16.000000pt;}
.v1{vertical-align:21.120000pt;}
.v6{vertical-align:35.840000pt;}
.v5{vertical-align:40.960000pt;}
.ls10{letter-spacing:-1.280000pt;}
.ls1e{letter-spacing:-1.237333pt;}
.lsc{letter-spacing:-0.720000pt;}
.ls22{letter-spacing:-0.592000pt;}
.ls1c{letter-spacing:-0.480000pt;}
.ls1d{letter-spacing:-0.478933pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.310933pt;}
.ls19{letter-spacing:-0.239467pt;}
.lsa{letter-spacing:-0.198933pt;}
.ls20{letter-spacing:-0.183467pt;}
.ls18{letter-spacing:-0.161067pt;}
.lsb{letter-spacing:-0.112000pt;}
.lsf{letter-spacing:-0.047360pt;}
.ls17{letter-spacing:-0.046720pt;}
.ls6{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.011520pt;}
.ls1f{letter-spacing:0.032000pt;}
.lse{letter-spacing:0.079467pt;}
.ls25{letter-spacing:0.094933pt;}
.ls12{letter-spacing:0.096000pt;}
.ls3{letter-spacing:0.128640pt;}
.ls23{letter-spacing:0.136533pt;}
.ls1{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.161067pt;}
.ls1a{letter-spacing:0.198933pt;}
.ls16{letter-spacing:0.230933pt;}
.ls21{letter-spacing:0.231040pt;}
.ls24{letter-spacing:0.265600pt;}
.ls1b{letter-spacing:0.275840pt;}
.ls4{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.439040pt;}
.ls11{letter-spacing:0.800000pt;}
.lsd{letter-spacing:0.960000pt;}
.ls13{letter-spacing:11.992320pt;}
.ls15{letter-spacing:12.159360pt;}
.ls2{letter-spacing:42.400000pt;}
.ls0{letter-spacing:64.000000pt;}
.ws1e{word-spacing:-16.000000pt;}
.ws10{word-spacing:-14.720000pt;}
.ws27{word-spacing:-13.600000pt;}
.ws2b{word-spacing:-13.545600pt;}
.ws28{word-spacing:-13.510933pt;}
.ws29{word-spacing:-13.416533pt;}
.ws26{word-spacing:-13.280000pt;}
.ws1d{word-spacing:-13.232640pt;}
.ws24{word-spacing:-13.096533pt;}
.ws2c{word-spacing:-12.960000pt;}
.ws25{word-spacing:-12.688000pt;}
.ws2a{word-spacing:-12.640000pt;}
.wsf{word-spacing:-12.320000pt;}
.ws9{word-spacing:-12.000000pt;}
.wsa{word-spacing:-11.888000pt;}
.ws19{word-spacing:-11.697920pt;}
.ws18{word-spacing:-11.686400pt;}
.ws12{word-spacing:-11.639680pt;}
.ws1f{word-spacing:-11.040000pt;}
.ws1c{word-spacing:-10.918933pt;}
.ws6{word-spacing:-10.881067pt;}
.ws1{word-spacing:-10.880000pt;}
.ws7{word-spacing:-10.720000pt;}
.ws1a{word-spacing:-10.558933pt;}
.ws20{word-spacing:-10.521067pt;}
.ws1b{word-spacing:-10.480533pt;}
.ws2{word-spacing:-10.400000pt;}
.ws21{word-spacing:-10.241067pt;}
.ws5{word-spacing:-10.080000pt;}
.ws3{word-spacing:-9.769067pt;}
.ws4{word-spacing:-9.760000pt;}
.ws8{word-spacing:-9.733760pt;}
.ws22{word-spacing:-9.690880pt;}
.ws23{word-spacing:-9.482667pt;}
.wsd{word-spacing:-9.359467pt;}
.wsc{word-spacing:-9.280000pt;}
.wsb{word-spacing:-8.000000pt;}
.ws0{word-spacing:-6.720000pt;}
.ws11{word-spacing:-2.736000pt;}
.wse{word-spacing:0.000000pt;}
.ws15{word-spacing:0.305920pt;}
.ws14{word-spacing:0.462080pt;}
.ws13{word-spacing:0.622080pt;}
.ws17{word-spacing:3.662080pt;}
.ws16{word-spacing:150.222080pt;}
._7{margin-left:-52.960000pt;}
._24{margin-left:-3.489067pt;}
._1a{margin-left:-2.513493pt;}
._4{margin-left:-1.039787pt;}
._2{width:0.928000pt;}
._3{width:2.155093pt;}
._11{width:3.718400pt;}
._16{width:4.608000pt;}
._17{width:5.664000pt;}
._29{width:6.606720pt;}
._18{width:7.632000pt;}
._19{width:9.104000pt;}
._25{width:10.199040pt;}
._20{width:11.314560pt;}
._10{width:12.270720pt;}
._b{width:14.347947pt;}
._27{width:15.351680pt;}
._1e{width:16.407040pt;}
._21{width:18.113920pt;}
._22{width:19.416960pt;}
._f{width:20.769920pt;}
._1b{width:21.806080pt;}
._e{width:22.904747pt;}
._12{width:24.053333pt;}
._28{width:25.710080pt;}
._26{width:26.613120pt;}
._13{width:28.047360pt;}
._2d{width:29.216000pt;}
._d{width:30.997120pt;}
._36{width:32.190720pt;}
._3c{width:33.135360pt;}
._2b{width:34.049920pt;}
._9{width:35.324800pt;}
._35{width:36.227840pt;}
._2e{width:37.184000pt;}
._30{width:38.755840pt;}
._c{width:39.680640pt;}
._2c{width:41.274240pt;}
._32{width:42.300587pt;}
._31{width:43.393280pt;}
._4f{width:44.297600pt;}
._3f{width:45.311360pt;}
._33{width:47.017600pt;}
._2f{width:48.604800pt;}
._a{width:49.720320pt;}
._23{width:51.154560pt;}
._38{width:52.323200pt;}
._3b{width:53.969920pt;}
._2a{width:55.563520pt;}
._37{width:56.892160pt;}
._5{width:58.218667pt;}
._46{width:59.151573pt;}
._3a{width:61.459840pt;}
._43{width:63.216000pt;}
._47{width:64.369707pt;}
._4c{width:65.868800pt;}
._4d{width:66.828160pt;}
._15{width:70.065280pt;}
._1d{width:71.679787pt;}
._1c{width:72.698027pt;}
._41{width:73.840640pt;}
._39{width:74.792960pt;}
._3d{width:85.523200pt;}
._42{width:86.507520pt;}
._14{width:89.112107pt;}
._34{width:92.806187pt;}
._44{width:100.396800pt;}
._40{width:106.718080pt;}
._49{width:122.600960pt;}
._4a{width:123.822720pt;}
._48{width:136.890240pt;}
._4e{width:158.191360pt;}
._6{width:177.440000pt;}
._1f{width:247.653333pt;}
._0{width:251.018667pt;}
._3e{width:320.632320pt;}
._4b{width:529.422080pt;}
._45{width:561.612800pt;}
._8{width:671.978667pt;}
._1{width:962.346667pt;}
.fsd{font-size:5.120000pt;}
.fs12{font-size:5.333333pt;}
.fsa{font-size:21.120000pt;}
.fse{font-size:24.320000pt;}
.fs6{font-size:26.880000pt;}
.fsb{font-size:32.000000pt;}
.fs9{font-size:33.730624pt;}
.fs1{font-size:37.120000pt;}
.fs5{font-size:40.320000pt;}
.fs7{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs11{font-size:50.560000pt;}
.fs0{font-size:53.120000pt;}
.fsf{font-size:55.992837pt;}
.fs2{font-size:58.880000pt;}
.fs10{font-size:62.064349pt;}
.fs4{font-size:64.000000pt;}
.fsc{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y48{bottom:-231.706667pt;}
.y47{bottom:-201.786667pt;}
.y46{bottom:-171.706667pt;}
.y45{bottom:-141.786667pt;}
.y83{bottom:-138.906667pt;}
.y44{bottom:-111.706667pt;}
.y82{bottom:-108.986667pt;}
.y43{bottom:-81.760000pt;}
.y81{bottom:-78.866667pt;}
.y42{bottom:-51.680000pt;}
.y80{bottom:-48.946667pt;}
.y4b{bottom:-24.160000pt;}
.y41{bottom:-21.760000pt;}
.y7f{bottom:-18.866667pt;}
.y85{bottom:-15.931333pt;}
.y40{bottom:-5.440000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:0.160000pt;}
.y37c{bottom:1.633333pt;}
.y6b{bottom:2.546667pt;}
.y3{bottom:3.520000pt;}
.y18b{bottom:4.160000pt;}
.y1b2{bottom:4.306667pt;}
.y194{bottom:4.320000pt;}
.y21d{bottom:4.346667pt;}
.y19e{bottom:4.360000pt;}
.y1b9{bottom:4.466667pt;}
.y4a{bottom:4.480000pt;}
.y20b{bottom:4.626667pt;}
.y223{bottom:4.640000pt;}
.y1e6{bottom:4.800000pt;}
.y74{bottom:5.120000pt;}
.y3f{bottom:6.080000pt;}
.y232{bottom:7.506667pt;}
.yf2{bottom:7.840000pt;}
.ye7{bottom:8.306667pt;}
.ye9{bottom:8.786667pt;}
.yed{bottom:8.826667pt;}
.yea{bottom:8.946667pt;}
.yee{bottom:8.986667pt;}
.ye0{bottom:10.226667pt;}
.y7e{bottom:11.053333pt;}
.y18c{bottom:11.200000pt;}
.y1b7{bottom:11.346667pt;}
.y7{bottom:11.360000pt;}
.y1d2{bottom:11.506667pt;}
.y1bc{bottom:11.520000pt;}
.y20e{bottom:11.666667pt;}
.y24c{bottom:11.680000pt;}
.y1e3{bottom:11.840000pt;}
.y23f{bottom:12.160000pt;}
.yf0{bottom:14.720000pt;}
.y72{bottom:15.680000pt;}
.y6a{bottom:16.146667pt;}
.y18a{bottom:18.240000pt;}
.y1b1{bottom:18.386667pt;}
.y3e{bottom:18.400000pt;}
.y1d0{bottom:18.426667pt;}
.y19c{bottom:18.440000pt;}
.y1b6{bottom:18.546667pt;}
.y1a5{bottom:18.560000pt;}
.y1e9{bottom:18.600000pt;}
.y20a{bottom:18.706667pt;}
.y222{bottom:18.720000pt;}
.y1e1{bottom:18.880000pt;}
.y252{bottom:19.040000pt;}
.y238{bottom:19.186667pt;}
.y22a{bottom:19.200000pt;}
.y213{bottom:19.346667pt;}
.y1e5{bottom:19.360000pt;}
.y218{bottom:19.520000pt;}
.ye6{bottom:20.786667pt;}
.yf1{bottom:21.920000pt;}
.y6{bottom:22.080000pt;}
.y230{bottom:22.240000pt;}
.y8{bottom:23.200000pt;}
.y1d6{bottom:25.426667pt;}
.y191{bottom:25.440000pt;}
.y1d3{bottom:25.466667pt;}
.y198{bottom:25.480000pt;}
.y1b4{bottom:25.586667pt;}
.y1aa{bottom:25.600000pt;}
.y24b{bottom:25.760000pt;}
.y20d{bottom:25.906667pt;}
.y1e2{bottom:25.920000pt;}
.y1d1{bottom:25.946667pt;}
.y23e{bottom:26.240000pt;}
.y204{bottom:26.706667pt;}
.y69{bottom:27.186667pt;}
.y71{bottom:27.840000pt;}
.y3d{bottom:30.880000pt;}
.y1b0{bottom:32.466667pt;}
.y18f{bottom:32.480000pt;}
.y1c0{bottom:32.506667pt;}
.y19b{bottom:32.520000pt;}
.y1b5{bottom:32.626667pt;}
.y1ab{bottom:32.640000pt;}
.y1a6{bottom:32.666667pt;}
.y1ea{bottom:32.680000pt;}
.ye2{bottom:32.786667pt;}
.ye5{bottom:32.946667pt;}
.y212{bottom:33.426667pt;}
.y1e4{bottom:33.440000pt;}
.y217{bottom:33.600000pt;}
.y250{bottom:34.080000pt;}
.y22f{bottom:36.320000pt;}
.y4{bottom:36.960000pt;}
.y7d{bottom:38.573333pt;}
.y70{bottom:39.360000pt;}
.y1d5{bottom:39.506667pt;}
.y190{bottom:39.520000pt;}
.y196{bottom:39.560000pt;}
.y1ad{bottom:39.666667pt;}
.y1a3{bottom:39.680000pt;}
.y203{bottom:40.786667pt;}
.y86{bottom:41.760000pt;}
.y3c{bottom:42.240000pt;}
.y68{bottom:43.186667pt;}
.y1f2{bottom:44.320000pt;}
.ye4{bottom:45.266667pt;}
.y1d7{bottom:46.546667pt;}
.y192{bottom:46.560000pt;}
.y1df{bottom:46.586667pt;}
.y19a{bottom:46.600000pt;}
.y1af{bottom:46.706667pt;}
.y1a1{bottom:46.720000pt;}
.y1be{bottom:46.746667pt;}
.y211{bottom:47.506667pt;}
.y24f{bottom:48.160000pt;}
.y7c{bottom:50.093333pt;}
.y6f{bottom:51.040000pt;}
.y1d8{bottom:53.586667pt;}
.y1c9{bottom:53.600000pt;}
.y197{bottom:53.640000pt;}
.y1cd{bottom:53.760000pt;}
.y1bb{bottom:53.786667pt;}
.y244{bottom:55.840000pt;}
.y236{bottom:56.320000pt;}
.y1f9{bottom:56.480000pt;}
.y84{bottom:56.693333pt;}
.ye3{bottom:57.426667pt;}
.y67{bottom:59.026667pt;}
.y1c7{bottom:60.640000pt;}
.y199{bottom:60.680000pt;}
.y1ae{bottom:60.786667pt;}
.y193{bottom:60.800000pt;}
.y1bd{bottom:60.826667pt;}
.y7b{bottom:61.773333pt;}
.y6e{bottom:62.560000pt;}
.y2{bottom:67.520000pt;}
.y1c8{bottom:67.680000pt;}
.y1db{bottom:67.866667pt;}
.y243{bottom:69.920000pt;}
.y235{bottom:70.400000pt;}
.y1f8{bottom:70.560000pt;}
.y228{bottom:73.160000pt;}
.y7a{bottom:73.293333pt;}
.y1c6{bottom:74.720000pt;}
.y1ec{bottom:74.880000pt;}
.y66{bottom:74.906667pt;}
.y19d{bottom:74.920000pt;}
.y6d{bottom:77.600000pt;}
.y1dd{bottom:81.946667pt;}
.y1f7{bottom:84.640000pt;}
.y79{bottom:84.973333pt;}
.y227{bottom:87.240000pt;}
.y2dc{bottom:87.520000pt;}
.y376{bottom:88.320000pt;}
.y65{bottom:88.506667pt;}
.y1da{bottom:88.960000pt;}
.y1cb{bottom:88.986667pt;}
.y1dc{bottom:89.146667pt;}
.yf3{bottom:89.440000pt;}
.y2b0{bottom:91.040000pt;}
.y1f1{bottom:93.280000pt;}
.y170{bottom:94.240000pt;}
.y78{bottom:96.493333pt;}
.y274{bottom:97.600000pt;}
.yb8{bottom:98.080000pt;}
.y282{bottom:99.040000pt;}
.y64{bottom:99.546667pt;}
.y1ba{bottom:100.640000pt;}
.y321{bottom:101.280000pt;}
.y2f3{bottom:101.440000pt;}
.y375{bottom:103.680000pt;}
.yef{bottom:104.000000pt;}
.y2db{bottom:105.120000pt;}
.y3a{bottom:107.840000pt;}
.y77{bottom:108.013333pt;}
.y21b{bottom:108.160000pt;}
.y2af{bottom:108.640000pt;}
.y125{bottom:111.200000pt;}
.y16f{bottom:111.840000pt;}
.y2fb{bottom:112.000000pt;}
.y187{bottom:113.440000pt;}
.y273{bottom:115.200000pt;}
.y63{bottom:115.386667pt;}
.yb7{bottom:115.680000pt;}
.y265{bottom:116.160000pt;}
.y263{bottom:116.320000pt;}
.y281{bottom:116.800000pt;}
.y320{bottom:118.720000pt;}
.y374{bottom:119.040000pt;}
.y76{bottom:119.053333pt;}
.y2f2{bottom:119.200000pt;}
.y156{bottom:121.760000pt;}
.y21a{bottom:122.880000pt;}
.y39{bottom:125.440000pt;}
.y2ae{bottom:126.400000pt;}
.y124{bottom:128.800000pt;}
.y16e{bottom:129.600000pt;}
.y186{bottom:131.360000pt;}
.y62{bottom:131.386667pt;}
.y272{bottom:132.800000pt;}
.yb6{bottom:133.440000pt;}
.y262{bottom:133.760000pt;}
.y373{bottom:134.240000pt;}
.y280{bottom:134.400000pt;}
.y2f1{bottom:136.800000pt;}
.y31f{bottom:137.120000pt;}
.y219{bottom:137.600000pt;}
.y155{bottom:139.360000pt;}
.yec{bottom:140.000000pt;}
.y2da{bottom:140.480000pt;}
.y38{bottom:143.040000pt;}
.y2ad{bottom:144.000000pt;}
.y123{bottom:146.426667pt;}
.y61{bottom:147.226667pt;}
.y185{bottom:148.986667pt;}
.y372{bottom:149.626667pt;}
.y271{bottom:150.426667pt;}
.yb5{bottom:151.066667pt;}
.y261{bottom:151.386667pt;}
.y27f{bottom:152.026667pt;}
.y210{bottom:152.520000pt;}
.y2f0{bottom:154.426667pt;}
.y154{bottom:156.986667pt;}
.y2d9{bottom:158.106667pt;}
.y344{bottom:159.386667pt;}
.y37{bottom:160.666667pt;}
.y2ac{bottom:161.626667pt;}
.y60{bottom:163.066667pt;}
.y122{bottom:164.026667pt;}
.yeb{bottom:164.040000pt;}
.y16d{bottom:164.826667pt;}
.y371{bottom:164.986667pt;}
.y184{bottom:166.586667pt;}
.y270{bottom:168.186667pt;}
.yb4{bottom:168.666667pt;}
.y260{bottom:168.986667pt;}
.y27e{bottom:169.626667pt;}
.y1b8{bottom:171.880000pt;}
.y2ef{bottom:172.026667pt;}
.y31e{bottom:173.626667pt;}
.y153{bottom:174.746667pt;}
.y2d8{bottom:175.706667pt;}
.y36{bottom:178.266667pt;}
.y5f{bottom:178.906667pt;}
.y2ab{bottom:179.226667pt;}
.y370{bottom:180.346667pt;}
.y216{bottom:181.320000pt;}
.y121{bottom:181.786667pt;}
.y16c{bottom:182.426667pt;}
.y2fa{bottom:183.386667pt;}
.y183{bottom:184.186667pt;}
.y26f{bottom:185.786667pt;}
.yb3{bottom:186.266667pt;}
.y25f{bottom:186.746667pt;}
.y27d{bottom:187.226667pt;}
.ye8{bottom:188.040000pt;}
.y1d9{bottom:188.520000pt;}
.y2ee{bottom:189.626667pt;}
.y343{bottom:190.106667pt;}
.y31d{bottom:191.226667pt;}
.y152{bottom:192.346667pt;}
.y2d7{bottom:193.306667pt;}
.y5e{bottom:194.746667pt;}
.y36f{bottom:195.706667pt;}
.y35{bottom:196.026667pt;}
.y215{bottom:196.040000pt;}
.y2aa{bottom:196.826667pt;}
.y120{bottom:199.386667pt;}
.y16b{bottom:200.026667pt;}
.y182{bottom:201.946667pt;}
.y26e{bottom:203.386667pt;}
.yb2{bottom:203.866667pt;}
.y25e{bottom:204.346667pt;}
.y27c{bottom:204.986667pt;}
.y342{bottom:205.466667pt;}
.y2ed{bottom:207.386667pt;}
.y31c{bottom:209.626667pt;}
.y151{bottom:209.946667pt;}
.y1f5{bottom:210.106667pt;}
.y5d{bottom:210.586667pt;}
.y214{bottom:210.920000pt;}
.y36e{bottom:211.066667pt;}
.y2d6{bottom:211.866667pt;}
.ye1{bottom:212.040000pt;}
.y34{bottom:213.626667pt;}
.y2a9{bottom:214.586667pt;}
.y11f{bottom:216.986667pt;}
.y16a{bottom:217.786667pt;}
.y181{bottom:219.546667pt;}
.y2f9{bottom:219.706667pt;}
.y341{bottom:220.666667pt;}
.y26d{bottom:220.986667pt;}
.y1f3{bottom:221.146667pt;}
.yb1{bottom:221.626667pt;}
.y25d{bottom:221.946667pt;}
.y27b{bottom:222.586667pt;}
.y1f4{bottom:224.186667pt;}
.y2ec{bottom:224.986667pt;}
.y20c{bottom:225.640000pt;}
.y36d{bottom:226.266667pt;}
.y5c{bottom:226.586667pt;}
.y150{bottom:227.546667pt;}
.y1b3{bottom:229.000000pt;}
.y2d5{bottom:229.466667pt;}
.y31b{bottom:230.746667pt;}
.y33{bottom:231.226667pt;}
.y2a8{bottom:232.186667pt;}
.y11e{bottom:234.586667pt;}
.y169{bottom:235.386667pt;}
.y340{bottom:236.026667pt;}
.y180{bottom:237.146667pt;}
.y2f8{bottom:237.306667pt;}
.y26c{bottom:238.586667pt;}
.yb0{bottom:239.226667pt;}
.y25c{bottom:239.546667pt;}
.y27a{bottom:240.186667pt;}
.y20f{bottom:240.360000pt;}
.y2d4{bottom:240.986667pt;}
.y36c{bottom:241.626667pt;}
.y5b{bottom:242.426667pt;}
.y2eb{bottom:242.586667pt;}
.y14f{bottom:245.146667pt;}
.y32{bottom:248.826667pt;}
.y2a7{bottom:249.786667pt;}
.y33f{bottom:251.386667pt;}
.y11d{bottom:252.186667pt;}
.y168{bottom:252.986667pt;}
.y5a{bottom:254.266667pt;}
.y17f{bottom:254.746667pt;}
.y2f7{bottom:254.906667pt;}
.y26b{bottom:256.346667pt;}
.yaf{bottom:256.826667pt;}
.y36b{bottom:256.986667pt;}
.y25b{bottom:257.146667pt;}
.y279{bottom:257.786667pt;}
.y2d3{bottom:258.586667pt;}
.y1d4{bottom:259.720000pt;}
.y2ea{bottom:260.186667pt;}
.y59{bottom:262.106667pt;}
.y14e{bottom:262.906667pt;}
.y33e{bottom:266.746667pt;}
.y31{bottom:267.226667pt;}
.y2a6{bottom:267.386667pt;}
.y209{bottom:269.320000pt;}
.y11c{bottom:269.946667pt;}
.y167{bottom:270.586667pt;}
.y17e{bottom:272.346667pt;}
.y2f6{bottom:272.506667pt;}
.y26a{bottom:273.946667pt;}
.yae{bottom:274.426667pt;}
.y25a{bottom:274.906667pt;}
.y278{bottom:275.386667pt;}
.y37b{bottom:276.026667pt;}
.y2d2{bottom:276.186667pt;}
.y2e9{bottom:277.786667pt;}
.y58{bottom:277.973333pt;}
.y14d{bottom:280.506667pt;}
.y33d{bottom:282.106667pt;}
.y30{bottom:282.586667pt;}
.ydf{bottom:284.040000pt;}
.y31a{bottom:284.826667pt;}
.y2a5{bottom:284.986667pt;}
.y1ac{bottom:286.120000pt;}
.y11b{bottom:287.546667pt;}
.y36a{bottom:287.706667pt;}
.y166{bottom:288.186667pt;}
.y4c{bottom:289.000000pt;}
.y17d{bottom:290.106667pt;}
.y2f5{bottom:290.266667pt;}
.y2f{bottom:291.386667pt;}
.y269{bottom:291.546667pt;}
.yad{bottom:292.026667pt;}
.y259{bottom:292.506667pt;}
.y277{bottom:293.146667pt;}
.y37a{bottom:293.626667pt;}
.y2d1{bottom:293.786667pt;}
.y57{bottom:293.813333pt;}
.y2e8{bottom:295.546667pt;}
.y33c{bottom:297.466667pt;}
.y14c{bottom:298.106667pt;}
.y202{bottom:298.920000pt;}
.y319{bottom:302.426667pt;}
.y2a4{bottom:302.746667pt;}
.y369{bottom:303.066667pt;}
.y11a{bottom:305.146667pt;}
.y165{bottom:307.066667pt;}
.y268{bottom:307.386667pt;}
.y17c{bottom:307.706667pt;}
.y2f4{bottom:308.666667pt;}
.yac{bottom:309.786667pt;}
.y56{bottom:309.813333pt;}
.y276{bottom:310.746667pt;}
.y264{bottom:310.906667pt;}
.y258{bottom:311.226667pt;}
.y2d0{bottom:311.546667pt;}
.y2e{bottom:311.866667pt;}
.y33b{bottom:312.666667pt;}
.y208{bottom:313.640000pt;}
.y2e7{bottom:313.946667pt;}
.y14b{bottom:315.706667pt;}
.yde{bottom:317.146667pt;}
.y368{bottom:318.266667pt;}
.y318{bottom:320.026667pt;}
.y2a3{bottom:320.346667pt;}
.y119{bottom:322.746667pt;}
.y2d{bottom:322.906667pt;}
.y17b{bottom:325.306667pt;}
.y55{bottom:325.653333pt;}
.y267{bottom:325.786667pt;}
.yab{bottom:327.386667pt;}
.y33a{bottom:328.026667pt;}
.y164{bottom:328.186667pt;}
.y275{bottom:328.346667pt;}
.y207{bottom:328.360000pt;}
.y379{bottom:328.826667pt;}
.y2cf{bottom:329.146667pt;}
.y1cf{bottom:330.920000pt;}
.y257{bottom:332.346667pt;}
.ydd{bottom:332.986667pt;}
.y14a{bottom:333.306667pt;}
.y367{bottom:333.626667pt;}
.y317{bottom:337.626667pt;}
.y2c{bottom:337.786667pt;}
.y2a2{bottom:337.946667pt;}
.y118{bottom:340.346667pt;}
.y54{bottom:341.493333pt;}
.y17a{bottom:342.906667pt;}
.y206{bottom:343.080000pt;}
.y339{bottom:343.386667pt;}
.yaa{bottom:344.986667pt;}
.y163{bottom:345.466667pt;}
.y378{bottom:346.586667pt;}
.y2ce{bottom:346.746667pt;}
.ydc{bottom:348.866667pt;}
.y24e{bottom:349.026667pt;}
.y2e6{bottom:350.306667pt;}
.y149{bottom:351.106667pt;}
.y2a1{bottom:355.586667pt;}
.y316{bottom:356.226667pt;}
.y162{bottom:357.026667pt;}
.y53{bottom:357.333333pt;}
.y205{bottom:357.986667pt;}
.y117{bottom:358.146667pt;}
.y266{bottom:358.786667pt;}
.y2b{bottom:358.946667pt;}
.y179{bottom:360.546667pt;}
.ydb{bottom:362.146667pt;}
.ya9{bottom:362.626667pt;}
.y256{bottom:363.746667pt;}
.y377{bottom:364.226667pt;}
.y2cd{bottom:364.386667pt;}
.y2e5{bottom:367.906667pt;}
.y148{bottom:368.706667pt;}
.y1a9{bottom:371.426667pt;}
.y1f6{bottom:372.706667pt;}
.y52{bottom:373.173333pt;}
.y2a0{bottom:373.186667pt;}
.y1ce{bottom:373.826667pt;}
.y338{bottom:374.146667pt;}
.y161{bottom:374.626667pt;}
.y116{bottom:375.746667pt;}
.y2a{bottom:377.506667pt;}
.y178{bottom:378.146667pt;}
.y255{bottom:378.466667pt;}
.y366{bottom:379.746667pt;}
.ya8{bottom:380.226667pt;}
.y2cc{bottom:381.986667pt;}
.y51{bottom:385.013333pt;}
.y2e4{bottom:385.506667pt;}
.y147{bottom:386.306667pt;}
.y201{bottom:387.426667pt;}
.y337{bottom:389.506667pt;}
.y115{bottom:390.626667pt;}
.y29f{bottom:390.946667pt;}
.y160{bottom:392.386667pt;}
.y315{bottom:392.546667pt;}
.y50{bottom:392.853333pt;}
.y251{bottom:393.346667pt;}
.y365{bottom:394.946667pt;}
.y29{bottom:395.266667pt;}
.y177{bottom:395.906667pt;}
.ya7{bottom:397.986667pt;}
.y2cb{bottom:399.746667pt;}
.y114{bottom:402.146667pt;}
.y200{bottom:402.306667pt;}
.y2e3{bottom:403.266667pt;}
.y146{bottom:403.906667pt;}
.y336{bottom:404.706667pt;}
.y28{bottom:407.426667pt;}
.y254{bottom:408.066667pt;}
.y29e{bottom:408.546667pt;}
.y4f{bottom:408.853333pt;}
.y15f{bottom:409.986667pt;}
.y314{bottom:410.146667pt;}
.y364{bottom:410.306667pt;}
.y176{bottom:413.506667pt;}
.y1a8{bottom:414.466667pt;}
.y27{bottom:415.106667pt;}
.ya6{bottom:415.586667pt;}
.y1ff{bottom:417.026667pt;}
.y2ca{bottom:417.346667pt;}
.y113{bottom:419.746667pt;}
.y335{bottom:420.066667pt;}
.y2e2{bottom:420.866667pt;}
.y145{bottom:421.506667pt;}
.y253{bottom:422.786667pt;}
.y4e{bottom:424.693333pt;}
.y363{bottom:425.666667pt;}
.y29d{bottom:426.146667pt;}
.y15e{bottom:427.586667pt;}
.y313{bottom:427.746667pt;}
.y75{bottom:428.213333pt;}
.y175{bottom:431.106667pt;}
.y1fe{bottom:431.746667pt;}
.ya5{bottom:433.186667pt;}
.y2c9{bottom:434.946667pt;}
.y334{bottom:435.426667pt;}
.y26{bottom:435.906667pt;}
.y112{bottom:437.506667pt;}
.y242{bottom:437.666667pt;}
.y2e1{bottom:438.466667pt;}
.y144{bottom:439.266667pt;}
.y4d{bottom:440.533333pt;}
.y362{bottom:441.026667pt;}
.y29c{bottom:443.746667pt;}
.y1cc{bottom:445.026667pt;}
.y15d{bottom:445.186667pt;}
.y312{bottom:445.346667pt;}
.y1fd{bottom:446.626667pt;}
.y174{bottom:448.706667pt;}
.ya4{bottom:450.786667pt;}
.y2c8{bottom:452.546667pt;}
.y111{bottom:455.106667pt;}
.y2e0{bottom:456.066667pt;}
.y361{bottom:456.386667pt;}
.y25{bottom:456.546667pt;}
.y143{bottom:456.866667pt;}
.y1fc{bottom:461.346667pt;}
.y15c{bottom:462.786667pt;}
.y311{bottom:463.106667pt;}
.y333{bottom:466.146667pt;}
.y173{bottom:466.306667pt;}
.y24d{bottom:466.466667pt;}
.ya3{bottom:468.386667pt;}
.yda{bottom:469.826667pt;}
.y2c7{bottom:470.146667pt;}
.y1a7{bottom:471.586667pt;}
.y360{bottom:471.746667pt;}
.y110{bottom:472.706667pt;}
.y2df{bottom:473.666667pt;}
.y142{bottom:474.466667pt;}
.y24{bottom:477.186667pt;}
.y29b{bottom:479.906667pt;}
.y15b{bottom:480.546667pt;}
.y310{bottom:480.706667pt;}
.y24a{bottom:481.186667pt;}
.y332{bottom:481.506667pt;}
.y172{bottom:484.066667pt;}
.ya2{bottom:486.146667pt;}
.y35f{bottom:486.946667pt;}
.yca{bottom:487.746667pt;}
.y2c6{bottom:487.906667pt;}
.y1fb{bottom:490.306667pt;}
.y10f{bottom:491.426667pt;}
.y141{bottom:492.066667pt;}
.y248{bottom:496.066667pt;}
.y331{bottom:496.706667pt;}
.y29a{bottom:497.506667pt;}
.y23{bottom:497.986667pt;}
.y30f{bottom:498.306667pt;}
.y15a{bottom:499.266667pt;}
.yd9{bottom:500.706667pt;}
.y171{bottom:501.666667pt;}
.y35e{bottom:502.306667pt;}
.ya1{bottom:503.746667pt;}
.y1fa{bottom:505.026667pt;}
.yc9{bottom:505.506667pt;}
.y299{bottom:509.026667pt;}
.y140{bottom:509.666667pt;}
.y249{bottom:510.786667pt;}
.y330{bottom:512.066667pt;}
.y10e{bottom:512.546667pt;}
.y30e{bottom:515.906667pt;}
.y1ca{bottom:516.226667pt;}
.y35d{bottom:517.666667pt;}
.yd8{bottom:518.306667pt;}
.y22{bottom:518.626667pt;}
.y159{bottom:518.786667pt;}
.y1f0{bottom:519.746667pt;}
.ya0{bottom:521.346667pt;}
.yc8{bottom:523.106667pt;}
.y245{bottom:525.506667pt;}
.y298{bottom:526.626667pt;}
.y13f{bottom:527.426667pt;}
.y1a4{bottom:528.546667pt;}
.y10d{bottom:529.826667pt;}
.y35c{bottom:533.026667pt;}
.y30d{bottom:533.506667pt;}
.y158{bottom:534.626667pt;}
.yd7{bottom:535.906667pt;}
.y9f{bottom:538.946667pt;}
.y21{bottom:539.266667pt;}
.y247{bottom:540.386667pt;}
.yc7{bottom:540.706667pt;}
.y10c{bottom:541.506667pt;}
.y32f{bottom:542.786667pt;}
.y297{bottom:544.226667pt;}
.y13e{bottom:545.026667pt;}
.y157{bottom:548.386667pt;}
.y30c{bottom:551.266667pt;}
.yd6{bottom:554.653333pt;}
.y246{bottom:555.133333pt;}
.y9e{bottom:556.573333pt;}
.y32e{bottom:558.173333pt;}
.yc6{bottom:558.333333pt;}
.y10b{bottom:559.133333pt;}
.y296{bottom:561.853333pt;}
.y13d{bottom:562.653333pt;}
.y35b{bottom:563.773333pt;}
.y6c{bottom:565.373333pt;}
.y30b{bottom:568.893333pt;}
.y1ef{bottom:569.053333pt;}
.y234{bottom:569.853333pt;}
.y1a2{bottom:571.613333pt;}
.yd5{bottom:571.933333pt;}
.y32d{bottom:573.373333pt;}
.y9d{bottom:574.333333pt;}
.yc5{bottom:575.933333pt;}
.y2c5{bottom:576.093333pt;}
.y10a{bottom:576.733333pt;}
.y35a{bottom:578.973333pt;}
.y295{bottom:579.613333pt;}
.y13c{bottom:580.253333pt;}
.yd4{bottom:583.613333pt;}
.y241{bottom:584.733333pt;}
.y1ee{bottom:586.173333pt;}
.y30a{bottom:586.493333pt;}
.y20{bottom:588.093333pt;}
.y32c{bottom:588.733333pt;}
.y9c{bottom:591.933333pt;}
.yc4{bottom:593.693333pt;}
.y109{bottom:594.333333pt;}
.y294{bottom:597.213333pt;}
.y13b{bottom:597.853333pt;}
.y240{bottom:599.453333pt;}
.yd3{bottom:601.213333pt;}
.y1ed{bottom:601.373333pt;}
.y1f{bottom:601.853333pt;}
.y309{bottom:604.093333pt;}
.y9b{bottom:609.533333pt;}
.y359{bottom:609.693333pt;}
.yc3{bottom:611.293333pt;}
.y108{bottom:611.933333pt;}
.y2c4{bottom:612.093333pt;}
.y23b{bottom:614.173333pt;}
.y293{bottom:614.813333pt;}
.y13a{bottom:615.613333pt;}
.y1e{bottom:615.773333pt;}
.yd2{bottom:618.813333pt;}
.y32b{bottom:619.613333pt;}
.y308{bottom:621.693333pt;}
.y358{bottom:625.053333pt;}
.y9a{bottom:627.133333pt;}
.yc2{bottom:628.893333pt;}
.y23d{bottom:629.053333pt;}
.y1d{bottom:629.533333pt;}
.y107{bottom:629.693333pt;}
.y292{bottom:632.413333pt;}
.y139{bottom:633.213333pt;}
.yd1{bottom:637.213333pt;}
.y307{bottom:639.453333pt;}
.y357{bottom:640.413333pt;}
.y2c3{bottom:641.213333pt;}
.y1a0{bottom:642.813333pt;}
.y1c{bottom:643.293333pt;}
.y23c{bottom:643.773333pt;}
.y99{bottom:644.733333pt;}
.yc1{bottom:646.493333pt;}
.y106{bottom:647.293333pt;}
.y291{bottom:650.013333pt;}
.y138{bottom:650.813333pt;}
.y1b{bottom:653.213333pt;}
.y356{bottom:655.613333pt;}
.y32a{bottom:656.093333pt;}
.y306{bottom:657.053333pt;}
.yd0{bottom:658.493333pt;}
.y237{bottom:658.506667pt;}
.y2c2{bottom:658.973333pt;}
.y3b{bottom:660.893333pt;}
.y98{bottom:662.493333pt;}
.yc0{bottom:664.093333pt;}
.y105{bottom:664.893333pt;}
.y1a{bottom:665.373333pt;}
.y290{bottom:667.773333pt;}
.y137{bottom:668.413333pt;}
.y355{bottom:670.973333pt;}
.y329{bottom:671.773333pt;}
.y1eb{bottom:672.573333pt;}
.y23a{bottom:673.373333pt;}
.y305{bottom:674.653333pt;}
.ycf{bottom:675.933333pt;}
.y2c1{bottom:676.573333pt;}
.y19{bottom:676.733333pt;}
.y97{bottom:680.093333pt;}
.ybf{bottom:681.853333pt;}
.y104{bottom:682.493333pt;}
.yce{bottom:684.893333pt;}
.y28f{bottom:685.373333pt;}
.y136{bottom:686.013333pt;}
.y354{bottom:686.333333pt;}
.y239{bottom:688.106667pt;}
.y18{bottom:688.253333pt;}
.y304{bottom:692.253333pt;}
.y2c0{bottom:694.173333pt;}
.y96{bottom:697.693333pt;}
.ybe{bottom:699.453333pt;}
.y17{bottom:699.773333pt;}
.y19f{bottom:699.933333pt;}
.y103{bottom:700.093333pt;}
.y1c5{bottom:701.053333pt;}
.y353{bottom:701.693333pt;}
.y226{bottom:702.813333pt;}
.y28e{bottom:702.973333pt;}
.y135{bottom:703.773333pt;}
.y328{bottom:708.093333pt;}
.y303{bottom:709.853333pt;}
.y2bf{bottom:711.773333pt;}
.y16{bottom:712.093333pt;}
.ycd{bottom:712.253333pt;}
.y95{bottom:715.293333pt;}
.ybd{bottom:717.053333pt;}
.y233{bottom:717.693333pt;}
.y102{bottom:717.853333pt;}
.y28d{bottom:720.573333pt;}
.y134{bottom:721.373333pt;}
.y15{bottom:723.453333pt;}
.y327{bottom:725.693333pt;}
.y302{bottom:727.613333pt;}
.y2be{bottom:729.373333pt;}
.y352{bottom:732.413333pt;}
.ycc{bottom:732.573333pt;}
.y94{bottom:732.893333pt;}
.ybc{bottom:734.653333pt;}
.y101{bottom:735.453333pt;}
.y28c{bottom:738.173333pt;}
.y133{bottom:738.973333pt;}
.y2de{bottom:739.133333pt;}
.ycb{bottom:741.533333pt;}
.y326{bottom:743.293333pt;}
.y301{bottom:745.213333pt;}
.y231{bottom:746.506667pt;}
.y2bd{bottom:747.133333pt;}
.y14{bottom:747.293333pt;}
.y351{bottom:747.613333pt;}
.y93{bottom:750.653333pt;}
.ybb{bottom:752.253333pt;}
.y100{bottom:753.053333pt;}
.y28b{bottom:755.933333pt;}
.y132{bottom:756.573333pt;}
.y2dd{bottom:756.733333pt;}
.y195{bottom:757.053333pt;}
.y13{bottom:757.213333pt;}
.y1e8{bottom:757.853333pt;}
.y1c4{bottom:758.053333pt;}
.y325{bottom:761.733333pt;}
.y300{bottom:762.853333pt;}
.y350{bottom:763.013333pt;}
.y2bc{bottom:764.773333pt;}
.y22e{bottom:767.493333pt;}
.y92{bottom:768.293333pt;}
.yba{bottom:770.053333pt;}
.yff{bottom:770.693333pt;}
.y28a{bottom:773.573333pt;}
.y131{bottom:774.213333pt;}
.y12{bottom:777.573333pt;}
.y34f{bottom:778.373333pt;}
.y2ff{bottom:780.453333pt;}
.y2bb{bottom:782.373333pt;}
.y91{bottom:785.893333pt;}
.yfe{bottom:788.293333pt;}
.y289{bottom:791.173333pt;}
.y130{bottom:791.973333pt;}
.y34e{bottom:793.733333pt;}
.y22d{bottom:796.453333pt;}
.y2fe{bottom:798.053333pt;}
.y11{bottom:799.013333pt;}
.y2ba{bottom:799.973333pt;}
.y1e7{bottom:800.933333pt;}
.y90{bottom:803.493333pt;}
.yfd{bottom:806.053333pt;}
.y288{bottom:808.773333pt;}
.y34d{bottom:809.093333pt;}
.y12f{bottom:809.573333pt;}
.y10{bottom:812.133333pt;}
.y1c3{bottom:815.173333pt;}
.y2fd{bottom:815.813333pt;}
.y2b9{bottom:817.573333pt;}
.yb9{bottom:820.293333pt;}
.y8f{bottom:821.093333pt;}
.yf{bottom:822.373333pt;}
.yfc{bottom:823.653333pt;}
.y34c{bottom:824.453333pt;}
.y229{bottom:825.253333pt;}
.y287{bottom:826.373333pt;}
.y12e{bottom:827.173333pt;}
.y1c2{bottom:830.053333pt;}
.y324{bottom:833.413333pt;}
.y2fc{bottom:834.213333pt;}
.y2b8{bottom:835.333333pt;}
.ye{bottom:838.053333pt;}
.y8e{bottom:838.853333pt;}
.y34b{bottom:839.653333pt;}
.y22c{bottom:840.133333pt;}
.yfb{bottom:841.253333pt;}
.y18e{bottom:842.373333pt;}
.y286{bottom:844.133333pt;}
.y12d{bottom:844.773333pt;}
.y323{bottom:851.013333pt;}
.y2b7{bottom:852.933333pt;}
.y22b{bottom:854.853333pt;}
.y34a{bottom:855.013333pt;}
.y8d{bottom:856.453333pt;}
.yd{bottom:857.253333pt;}
.yfa{bottom:858.853333pt;}
.y285{bottom:861.733333pt;}
.y12c{bottom:862.373333pt;}
.y322{bottom:868.613333pt;}
.y220{bottom:869.573333pt;}
.y349{bottom:870.373333pt;}
.y2b6{bottom:870.533333pt;}
.y1e0{bottom:872.133333pt;}
.y8c{bottom:874.053333pt;}
.yf9{bottom:876.453333pt;}
.yc{bottom:876.613333pt;}
.y284{bottom:879.333333pt;}
.y12b{bottom:880.133333pt;}
.y225{bottom:884.453333pt;}
.y348{bottom:885.733333pt;}
.y1c1{bottom:887.013333pt;}
.y2b5{bottom:888.133333pt;}
.y8b{bottom:891.653333pt;}
.yf8{bottom:894.213333pt;}
.y12a{bottom:897.733333pt;}
.y221{bottom:899.173333pt;}
.yb{bottom:901.093333pt;}
.y2b4{bottom:905.733333pt;}
.y8a{bottom:909.253333pt;}
.yf7{bottom:911.813333pt;}
.y18d{bottom:913.573333pt;}
.y224{bottom:913.893333pt;}
.y283{bottom:915.173333pt;}
.y129{bottom:915.333333pt;}
.y1de{bottom:915.973333pt;}
.y347{bottom:916.453333pt;}
.y2b3{bottom:923.493333pt;}
.ya{bottom:925.733333pt;}
.y89{bottom:927.013333pt;}
.y189{bottom:928.293333pt;}
.y21f{bottom:928.773333pt;}
.yf6{bottom:929.413333pt;}
.y1bf{bottom:930.053333pt;}
.y346{bottom:931.653333pt;}
.y128{bottom:932.933333pt;}
.y2b2{bottom:941.093333pt;}
.y21e{bottom:943.493333pt;}
.y88{bottom:944.613333pt;}
.yf5{bottom:947.013333pt;}
.y9{bottom:948.933333pt;}
.y127{bottom:950.533333pt;}
.y21c{bottom:958.213333pt;}
.y2b1{bottom:959.493333pt;}
.y87{bottom:962.213333pt;}
.y345{bottom:962.373333pt;}
.y188{bottom:963.520000pt;}
.yf4{bottom:965.760000pt;}
.y126{bottom:968.160000pt;}
.y73{bottom:975.360000pt;}
.y1{bottom:998.400000pt;}
.y49{bottom:1014.240000pt;}
.h1a{height:5.160000pt;}
.h73{height:5.562500pt;}
.h3{height:12.000000pt;}
.h3e{height:14.066667pt;}
.h61{height:14.080000pt;}
.h62{height:14.106667pt;}
.h60{height:14.112000pt;}
.h57{height:14.226667pt;}
.h6b{height:14.240000pt;}
.h59{height:14.258667pt;}
.h1d{height:15.040000pt;}
.h24{height:19.840000pt;}
.h69{height:20.338667pt;}
.h16{height:20.728125pt;}
.h38{height:23.186667pt;}
.h39{height:23.232000pt;}
.h32{height:26.066667pt;}
.h72{height:26.368125pt;}
.hd{height:26.381250pt;}
.hf{height:27.523125pt;}
.h3d{height:28.146667pt;}
.h6a{height:28.160000pt;}
.h5d{height:28.306667pt;}
.h5a{height:28.786667pt;}
.h65{height:28.946667pt;}
.h64{height:30.254687pt;}
.h4{height:30.560000pt;}
.h18{height:32.250000pt;}
.h14{height:35.114107pt;}
.h3a{height:35.200000pt;}
.h5{height:36.431250pt;}
.h23{height:37.308750pt;}
.h17{height:37.410000pt;}
.h5c{height:38.441250pt;}
.h29{height:39.096561pt;}
.h11{height:39.571875pt;}
.hc{height:40.103437pt;}
.h1c{height:40.635000pt;}
.h12{height:41.442606pt;}
.h13{height:42.084375pt;}
.h4d{height:42.258667pt;}
.h4a{height:42.266667pt;}
.h46{height:42.386667pt;}
.h52{height:42.420000pt;}
.h44{height:42.426667pt;}
.h4e{height:42.649687pt;}
.h70{height:42.866667pt;}
.h5b{height:43.026667pt;}
.h51{height:43.186667pt;}
.h1e{height:43.215000pt;}
.h3b{height:43.335947pt;}
.h67{height:43.666667pt;}
.h6d{height:43.680000pt;}
.h6f{height:43.706667pt;}
.h36{height:44.073883pt;}
.h15{height:47.109375pt;}
.h2a{height:47.621250pt;}
.h1f{height:48.375000pt;}
.h10{height:49.148438pt;}
.h21{height:49.336436pt;}
.h1b{height:51.360000pt;}
.h28{height:52.108438pt;}
.h2{height:52.134375pt;}
.h30{height:53.535000pt;}
.h55{height:53.535106pt;}
.h3c{height:54.598989pt;}
.h45{height:56.306667pt;}
.h41{height:56.320000pt;}
.h50{height:56.346667pt;}
.h48{height:56.466667pt;}
.h42{height:56.480000pt;}
.hb{height:57.787500pt;}
.h5f{height:58.432000pt;}
.h63{height:58.546667pt;}
.h6{height:58.563750pt;}
.he{height:60.288750pt;}
.h7{height:61.295000pt;}
.h2b{height:62.781250pt;}
.h33{height:62.812500pt;}
.h31{height:63.792371pt;}
.h68{height:64.020000pt;}
.ha{height:64.500000pt;}
.h2f{height:64.609957pt;}
.h25{height:66.625000pt;}
.h27{height:66.750000pt;}
.h3f{height:70.546667pt;}
.h43{height:70.560000pt;}
.h49{height:70.592000pt;}
.h34{height:71.186667pt;}
.h35{height:71.192000pt;}
.h37{height:71.200000pt;}
.h5e{height:72.466667pt;}
.h58{height:73.138667pt;}
.h19{height:75.465000pt;}
.h4b{height:84.480000pt;}
.h53{height:84.640000pt;}
.h47{height:84.658667pt;}
.h40{height:84.660000pt;}
.h22{height:84.800000pt;}
.h8{height:85.785000pt;}
.h2c{height:85.935625pt;}
.h2e{height:87.974375pt;}
.h71{height:87.986667pt;}
.h9{height:88.611250pt;}
.h2d{height:93.598750pt;}
.h4c{height:98.746667pt;}
.h4f{height:98.912000pt;}
.h26{height:128.840000pt;}
.h6e{height:131.546667pt;}
.h6c{height:132.320000pt;}
.h56{height:146.386667pt;}
.h66{height:166.093333pt;}
.h54{height:425.826667pt;}
.h20{height:451.426667pt;}
.h0{height:1058.400000pt;}
.h1{height:1058.666667pt;}
.w10{width:42.080000pt;}
.we{width:53.592000pt;}
.w3{width:72.952000pt;}
.w16{width:74.578667pt;}
.wf{width:78.418667pt;}
.w15{width:81.112000pt;}
.w1a{width:81.120000pt;}
.w13{width:88.826667pt;}
.w17{width:113.952000pt;}
.w5{width:137.306667pt;}
.w18{width:143.986667pt;}
.w11{width:147.226667pt;}
.wa{width:160.346667pt;}
.w8{width:162.266667pt;}
.wb{width:185.618667pt;}
.w19{width:225.813333pt;}
.w12{width:230.413333pt;}
.wc{width:454.973333pt;}
.wd{width:454.986667pt;}
.w7{width:473.546667pt;}
.w4{width:568.760000pt;}
.w14{width:640.600000pt;}
.w2{width:641.720000pt;}
.w9{width:660.600000pt;}
.w6{width:664.120000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6c{left:3.780000pt;}
.x2{left:7.192000pt;}
.x36{left:8.306667pt;}
.x11{left:9.592000pt;}
.x2d{left:11.032000pt;}
.x3b{left:11.986667pt;}
.x3a{left:13.626667pt;}
.x40{left:14.906667pt;}
.x2e{left:16.312000pt;}
.x39{left:17.786667pt;}
.x17{left:18.893333pt;}
.x68{left:19.840000pt;}
.x43{left:20.826667pt;}
.x37{left:22.386667pt;}
.x3f{left:23.346667pt;}
.x30{left:24.626667pt;}
.x4a{left:25.586667pt;}
.x35{left:26.586667pt;}
.x41{left:27.840000pt;}
.x3e{left:29.280000pt;}
.x38{left:30.400000pt;}
.x48{left:31.520000pt;}
.x5a{left:32.960000pt;}
.x4d{left:34.560000pt;}
.x33{left:35.506667pt;}
.x67{left:36.466667pt;}
.x56{left:37.440000pt;}
.x3c{left:38.720000pt;}
.x5b{left:39.866667pt;}
.x65{left:40.946667pt;}
.x61{left:42.080000pt;}
.x47{left:43.026667pt;}
.x64{left:45.106667pt;}
.x4f{left:46.226667pt;}
.x31{left:47.520000pt;}
.x69{left:48.826667pt;}
.x63{left:50.546667pt;}
.x49{left:51.826667pt;}
.x46{left:53.426667pt;}
.x42{left:54.720000pt;}
.x44{left:56.000000pt;}
.x45{left:57.440000pt;}
.x62{left:58.546667pt;}
.x4e{left:59.826667pt;}
.x53{left:62.546667pt;}
.x3{left:65.746667pt;}
.x4b{left:67.346667pt;}
.x14{left:71.560000pt;}
.x12{left:72.680000pt;}
.x51{left:76.946667pt;}
.x66{left:80.826667pt;}
.x59{left:81.786667pt;}
.x10{left:82.760000pt;}
.x16{left:84.360000pt;}
.x5c{left:86.106667pt;}
.x52{left:87.666667pt;}
.x60{left:88.826667pt;}
.x5e{left:92.346667pt;}
.x5f{left:95.066667pt;}
.x1{left:96.032000pt;}
.x50{left:98.266667pt;}
.x3d{left:99.226667pt;}
.x7{left:103.392000pt;}
.x5d{left:106.586667pt;}
.x6{left:110.912000pt;}
.x1c{left:114.112000pt;}
.xe{left:117.952000pt;}
.x1d{left:130.592000pt;}
.x19{left:133.946667pt;}
.x26{left:135.546667pt;}
.x27{left:139.226667pt;}
.x2f{left:149.640000pt;}
.x29{left:156.986667pt;}
.x2c{left:159.066667pt;}
.x4{left:169.000000pt;}
.x54{left:177.160000pt;}
.xc{left:188.346667pt;}
.xa{left:194.426667pt;}
.x1e{left:203.866667pt;}
.x1a{left:207.226667pt;}
.x1b{left:210.586667pt;}
.x2b{left:228.066667pt;}
.xd{left:232.706667pt;}
.x55{left:251.746667pt;}
.x4c{left:267.866667pt;}
.x13{left:269.826667pt;}
.x15{left:275.866667pt;}
.x25{left:281.666667pt;}
.x6a{left:301.506667pt;}
.x8{left:302.786667pt;}
.x28{left:341.186667pt;}
.x57{left:365.706667pt;}
.x9{left:393.853333pt;}
.x5{left:396.893333pt;}
.xb{left:408.093333pt;}
.x32{left:417.386667pt;}
.xf{left:436.253333pt;}
.x1f{left:465.853333pt;}
.x58{left:509.706667pt;}
.x20{left:511.133333pt;}
.x21{left:542.693333pt;}
.x18{left:551.336000pt;}
.x2a{left:609.093333pt;}
.x22{left:612.293333pt;}
.x34{left:647.813333pt;}
.x6b{left:715.040000pt;}
.x23{left:722.880000pt;}
.x24{left:736.960000pt;}
}




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