
    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_0ebc2b45cadf5b1dd65609b0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.163086;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_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_d871a18bed3f2f7b7ef48461.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_59d530011166f2537f4d5336.woff2')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_e07dfb9d3d9fb690a7af4eae.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_111b58c29842e4bc17c5c456.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.736816;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_c2a383ed8d0d23f00fff7b62.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_af988b4c4f02abfd4ca0994e.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_63b1eb08916a6f878b79968b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.976562;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_34ac489e1587b66e08b68754.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.914062;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_c9c98a4b4c02f15354f05f72.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.966309;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_3799360542593a1961fad69c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.758789;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_b94a9d00dd1faa979bf2534a.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_a41587d9c3b805862b80708f.woff2')format("woff");}.fff{font-family:fff;line-height:1.202148;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_d0a408abf8ac71c6d728a893.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.202148;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);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-70.560000px;}
.v13{vertical-align:-67.680000px;}
.v8{vertical-align:-60.480000px;}
.v7{vertical-align:-59.040000px;}
.v11{vertical-align:-56.280000px;}
.vb{vertical-align:-46.080000px;}
.v3{vertical-align:-44.760000px;}
.v4{vertical-align:-38.340000px;}
.vc{vertical-align:-35.280000px;}
.ve{vertical-align:-33.420000px;}
.v6{vertical-align:-15.360000px;}
.v0{vertical-align:0.000000px;}
.v12{vertical-align:6.180000px;}
.v9{vertical-align:7.800000px;}
.va{vertical-align:14.520000px;}
.v2{vertical-align:25.620000px;}
.v10{vertical-align:43.200000px;}
.vd{vertical-align:55.560000px;}
.vf{vertical-align:63.120000px;}
.v5{vertical-align:65.400000px;}
.ls3c{letter-spacing:-0.954000px;}
.ls9{letter-spacing:-0.720000px;}
.ls3e{letter-spacing:-0.684000px;}
.lsd{letter-spacing:-0.630000px;}
.ls18{letter-spacing:-0.577200px;}
.ls6{letter-spacing:-0.576000px;}
.ls38{letter-spacing:-0.536400px;}
.ls36{letter-spacing:-0.516600px;}
.ls19{letter-spacing:-0.504000px;}
.ls24{letter-spacing:-0.466800px;}
.ls29{letter-spacing:-0.463800px;}
.ls1c{letter-spacing:-0.443400px;}
.ls16{letter-spacing:-0.382800px;}
.ls37{letter-spacing:-0.299400px;}
.ls3d{letter-spacing:-0.292200px;}
.ls1b{letter-spacing:-0.159600px;}
.ls22{letter-spacing:-0.109200px;}
.ls7{letter-spacing:-0.089400px;}
.lsc{letter-spacing:-0.072000px;}
.ls17{letter-spacing:-0.043200px;}
.ls30{letter-spacing:-0.020160px;}
.ls5{letter-spacing:0.000000px;}
.ls3f{letter-spacing:0.005760px;}
.ls2e{letter-spacing:0.020160px;}
.ls3{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.178800px;}
.ls3a{letter-spacing:0.354600px;}
.ls23{letter-spacing:0.364200px;}
.ls21{letter-spacing:0.387600px;}
.ls39{letter-spacing:0.427800px;}
.ls10{letter-spacing:0.466800px;}
.ls1{letter-spacing:0.493920px;}
.lsb{letter-spacing:0.498000px;}
.ls25{letter-spacing:0.507000px;}
.ls28{letter-spacing:0.508200px;}
.ls3b{letter-spacing:0.548400px;}
.ls1a{letter-spacing:0.550200px;}
.lsa{letter-spacing:0.630000px;}
.ls1d{letter-spacing:0.696000px;}
.ls0{letter-spacing:0.720000px;}
.ls4{letter-spacing:0.869760px;}
.ls2f{letter-spacing:0.984000px;}
.ls2d{letter-spacing:1.056000px;}
.ls2{letter-spacing:1.080000px;}
.ls33{letter-spacing:1.440000px;}
.ls34{letter-spacing:9.300000px;}
.lsf{letter-spacing:40.786560px;}
.lse{letter-spacing:63.826560px;}
.ls14{letter-spacing:163.193280px;}
.ls13{letter-spacing:163.313280px;}
.ls15{letter-spacing:176.093280px;}
.ls26{letter-spacing:271.169760px;}
.ls27{letter-spacing:287.129760px;}
.ls31{letter-spacing:292.400640px;}
.ls32{letter-spacing:308.240640px;}
.ls2b{letter-spacing:351.749760px;}
.ls2c{letter-spacing:351.809760px;}
.ls35{letter-spacing:396.957216px;}
.ls20{letter-spacing:479.292000px;}
.ls2a{letter-spacing:495.156000px;}
.ls1e{letter-spacing:505.212000px;}
.ls1f{letter-spacing:842.316000px;}
.ls12{letter-spacing:850.596000px;}
.ls11{letter-spacing:882.456000px;}
.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;}
}
.ws1{word-spacing:-83.520000px;}
.wsb{word-spacing:-60.480000px;}
.ws25{word-spacing:-24.270240px;}
.ws17{word-spacing:-18.000000px;}
.ws29{word-spacing:-17.280000px;}
.ws23{word-spacing:-16.560000px;}
.wsf{word-spacing:-15.768000px;}
.wse{word-spacing:-15.727344px;}
.ws1c{word-spacing:-15.627000px;}
.wsa{word-spacing:-15.586800px;}
.ws22{word-spacing:-15.140160px;}
.ws0{word-spacing:-15.120000px;}
.ws21{word-spacing:-15.099840px;}
.ws1b{word-spacing:-14.653200px;}
.ws1e{word-spacing:-14.506440px;}
.ws28{word-spacing:-14.466384px;}
.ws15{word-spacing:-14.364480px;}
.ws6{word-spacing:-14.310000px;}
.ws10{word-spacing:-14.218680px;}
.ws19{word-spacing:-14.210160px;}
.ws2a{word-spacing:-14.166000px;}
.ws27{word-spacing:-14.019960px;}
.ws14{word-spacing:-13.875960px;}
.ws26{word-spacing:-13.835304px;}
.ws5{word-spacing:-13.680000px;}
.wsd{word-spacing:-13.625280px;}
.ws20{word-spacing:-13.422720px;}
.ws1f{word-spacing:-13.383264px;}
.ws8{word-spacing:-13.050000px;}
.ws11{word-spacing:-12.366720px;}
.wsc{word-spacing:-11.983920px;}
.ws2{word-spacing:-11.160000px;}
.ws18{word-spacing:-11.127120px;}
.ws1a{word-spacing:-10.739520px;}
.ws3{word-spacing:-10.440000px;}
.ws4{word-spacing:-9.720000px;}
.ws24{word-spacing:-9.470304px;}
.ws12{word-spacing:-9.437760px;}
.ws7{word-spacing:-8.928000px;}
.ws16{word-spacing:-8.136000px;}
.ws1d{word-spacing:-6.834240px;}
.ws2b{word-spacing:-6.080880px;}
.ws2c{word-spacing:-5.240280px;}
.ws9{word-spacing:0.000000px;}
.ws13{word-spacing:121.769760px;}
.ws2d{word-spacing:460.251360px;}
._3c{margin-left:-12.622560px;}
._1b{margin-left:-5.209920px;}
._10{margin-left:-3.473760px;}
._4{margin-left:-2.453760px;}
._3{margin-left:-1.391040px;}
._1{width:1.244160px;}
._0{width:2.332800px;}
._2{width:3.404640px;}
._5{width:4.424160px;}
._6{width:5.865600px;}
._a{width:7.622400px;}
._8{width:8.974080px;}
._9{width:10.152000px;}
._7{width:11.272320px;}
._13{width:12.711360px;}
._e{width:13.789440px;}
._f{width:16.994880px;}
._12{width:18.446400px;}
._11{width:20.252640px;}
._c{width:21.772800px;}
._b{width:23.708160px;}
._d{width:25.004160px;}
._35{width:31.464480px;}
._34{width:33.480000px;}
._39{width:34.804320px;}
._3f{width:39.517920px;}
._29{width:42.663360px;}
._30{width:45.857760px;}
._36{width:47.096160px;}
._32{width:50.025600px;}
._22{width:58.182192px;}
._14{width:61.104960px;}
._41{width:62.160960px;}
._16{width:63.645120px;}
._17{width:64.708800px;}
._28{width:69.324960px;}
._2f{width:78.210240px;}
._2c{width:87.977760px;}
._27{width:89.199840px;}
._31{width:94.797120px;}
._15{width:96.765120px;}
._37{width:104.792160px;}
._38{width:105.921600px;}
._1e{width:112.884000px;}
._3a{width:113.996640px;}
._24{width:119.533440px;}
._3e{width:120.708480px;}
._1c{width:121.912800px;}
._1f{width:125.964480px;}
._3d{width:127.033440px;}
._3b{width:131.229600px;}
._2d{width:140.728800px;}
._40{width:155.206560px;}
._2e{width:163.233600px;}
._33{width:167.477280px;}
._18{width:168.537120px;}
._2b{width:172.722720px;}
._1d{width:173.736000px;}
._26{width:175.264800px;}
._19{width:184.377120px;}
._2a{width:194.569440px;}
._25{width:200.880000px;}
._20{width:235.130880px;}
._21{width:256.921920px;}
._1a{width:362.637120px;}
._23{width:2034.178080px;}
.fca{color:rgb(255,255,0);}
.fc8{color:rgb(153,0,51);}
.fc5{color:rgb(99,37,35);}
.fc4{color:transparent;}
.fc7{color:rgb(23,55,94);}
.fc2{color:rgb(0,0,255);}
.fcb{color:rgb(31,73,125);}
.fc1{color:rgb(0,112,192);}
.fc9{color:rgb(13,13,13);}
.fc6{color:rgb(64,64,64);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fsb{font-size:18.720000px;}
.fs3{font-size:24.480000px;}
.fsa{font-size:30.240000px;}
.fs9{font-size:36.000000px;}
.fs7{font-size:41.760000px;}
.fs12{font-size:41.904000px;}
.fsc{font-size:47.520000px;}
.fs14{font-size:47.664000px;}
.fs8{font-size:54.720000px;}
.fs10{font-size:54.864000px;}
.fs4{font-size:57.600000px;}
.fs2{font-size:60.480000px;}
.fs11{font-size:60.624000px;}
.fsd{font-size:63.360000px;}
.fs13{font-size:63.504000px;}
.fs0{font-size:66.240000px;}
.fs15{font-size:66.384000px;}
.fsf{font-size:72.000000px;}
.fse{font-size:72.144000px;}
.fs5{font-size:83.520000px;}
.fs1{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.y59{bottom:3.955500px;}
.y5{bottom:3.960000px;}
.ydc{bottom:4.665000px;}
.yb1{bottom:4.680000px;}
.y8e{bottom:5.025000px;}
.y88{bottom:5.040000px;}
.y101{bottom:5.043000px;}
.y17f{bottom:5.085000px;}
.y5b{bottom:5.370000px;}
.y90{bottom:5.385000px;}
.y8b{bottom:5.400000px;}
.y141{bottom:5.430000px;}
.yac{bottom:5.445000px;}
.y1f6{bottom:7.845000px;}
.y2{bottom:7.920000px;}
.y27f{bottom:8.070000px;}
.yfe{bottom:9.510000px;}
.y282{bottom:10.365000px;}
.ycd{bottom:10.368000px;}
.ybc{bottom:11.085000px;}
.y1b5{bottom:11.730000px;}
.y23b{bottom:12.990000px;}
.y22c{bottom:13.935000px;}
.y4c{bottom:14.035500px;}
.y133{bottom:14.220000px;}
.y1f2{bottom:14.370000px;}
.yc4{bottom:16.170000px;}
.y1f4{bottom:17.565000px;}
.yd1{bottom:17.856000px;}
.yf9{bottom:18.975000px;}
.y58{bottom:21.235500px;}
.y4{bottom:21.240000px;}
.y4b{bottom:21.595500px;}
.y1b4{bottom:22.530000px;}
.ycc{bottom:23.328000px;}
.y23a{bottom:24.150000px;}
.y1f8{bottom:24.660000px;}
.y22b{bottom:24.735000px;}
.y1f1{bottom:26.610000px;}
.y1b6{bottom:28.080000px;}
.y279{bottom:28.515000px;}
.yfd{bottom:29.370000px;}
.y1b1{bottom:32.910000px;}
.y132{bottom:33.630000px;}
.yc6{bottom:35.430000px;}
.y223{bottom:35.640000px;}
.y42{bottom:38.160000px;}
.y57{bottom:38.515500px;}
.y1e9{bottom:39.270000px;}
.yc3{bottom:41.475000px;}
.y12a{bottom:42.630000px;}
.ybf{bottom:43.305000px;}
.y3{bottom:44.280000px;}
.y26c{bottom:44.355000px;}
.yb9{bottom:45.360000px;}
.y1f0{bottom:46.110000px;}
.yfc{bottom:49.245000px;}
.y281{bottom:49.575000px;}
.y27a{bottom:49.785000px;}
.y22a{bottom:50.040000px;}
.y17c{bottom:50.070000px;}
.y230{bottom:50.580000px;}
.y4a{bottom:51.151500px;}
.y26b{bottom:51.555000px;}
.y135{bottom:52.485000px;}
.y131{bottom:53.070000px;}
.yc7{bottom:54.645000px;}
.y1f7{bottom:55.515000px;}
.y41{bottom:55.800000px;}
.yba{bottom:55.905000px;}
.y7{bottom:57.636000px;}
.y277{bottom:58.110000px;}
.yc0{bottom:58.350000px;}
.y1ef{bottom:58.395000px;}
.yf8{bottom:58.605000px;}
.y129{bottom:58.755000px;}
.y56{bottom:60.154500px;}
.y224{bottom:60.810000px;}
.y1b0{bottom:60.915000px;}
.yd0{bottom:61.230000px;}
.yce{bottom:63.180000px;}
.y17a{bottom:63.330000px;}
.y49{bottom:63.394500px;}
.y231{bottom:65.730000px;}
.y138{bottom:65.775000px;}
.y22f{bottom:66.495000px;}
.y26f{bottom:67.710000px;}
.y276{bottom:69.300000px;}
.y27b{bottom:71.070000px;}
.y130{bottom:72.465000px;}
.y40{bottom:73.080000px;}
.yc8{bottom:73.905000px;}
.y179{bottom:74.490000px;}
.y26e{bottom:75.270000px;}
.y229{bottom:75.345000px;}
.y48{bottom:76.354500px;}
.y1ee{bottom:77.910000px;}
.yfb{bottom:78.090000px;}
.yc2{bottom:78.480000px;}
.y55{bottom:78.874500px;}
.y1b2{bottom:79.200000px;}
.y280{bottom:79.350000px;}
.y222{bottom:79.740000px;}
.y232{bottom:80.895000px;}
.y26d{bottom:82.470000px;}
.y16e{bottom:86.295000px;}
.y47{bottom:89.314500px;}
.y1ed{bottom:90.150000px;}
.y3f{bottom:90.360000px;}
.y104{bottom:90.396000px;}
.yb8{bottom:91.260000px;}
.y12f{bottom:91.905000px;}
.y27c{bottom:92.340000px;}
.y16f{bottom:93.060000px;}
.yc9{bottom:93.165000px;}
.yfa{bottom:93.420000px;}
.y267{bottom:93.636000px;}
.y275{bottom:94.470000px;}
.y225{bottom:94.500000px;}
.y54{bottom:94.714500px;}
.yf7{bottom:95.835000px;}
.y233{bottom:96.045000px;}
.yc1{bottom:96.840000px;}
.y2bd{bottom:97.956000px;}
.y43{bottom:97.960500px;}
.y170{bottom:99.825000px;}
.y12b{bottom:100.080000px;}
.yb6{bottom:100.116000px;}
.y228{bottom:100.650000px;}
.y137{bottom:100.875000px;}
.y22e{bottom:102.420000px;}
.y12c{bottom:102.750000px;}
.y128{bottom:104.295000px;}
.y171{bottom:106.590000px;}
.yb5{bottom:107.316000px;}
.y3e{bottom:107.685000px;}
.y26a{bottom:107.715000px;}
.y103{bottom:109.836000px;}
.y53{bottom:110.194500px;}
.y46{bottom:110.914500px;}
.y266{bottom:110.916000px;}
.y234{bottom:111.210000px;}
.y12e{bottom:111.315000px;}
.ycf{bottom:112.290000px;}
.yca{bottom:112.425000px;}
.y172{bottom:113.370000px;}
.y27d{bottom:113.610000px;}
.y269{bottom:114.945000px;}
.y2bc{bottom:115.236000px;}
.y16c{bottom:116.316000px;}
.y52{bottom:119.194500px;}
.y1ea{bottom:119.235000px;}
.y274{bottom:119.625000px;}
.y173{bottom:120.165000px;}
.yb4{bottom:121.356000px;}
.y227{bottom:122.865000px;}
.yc5{bottom:123.480000px;}
.y3d{bottom:124.605000px;}
.y1e8{bottom:125.310000px;}
.y1b3{bottom:125.535000px;}
.y235{bottom:126.360000px;}
.y174{bottom:126.930000px;}
.y265{bottom:128.196000px;}
.y102{bottom:128.916000px;}
.y17b{bottom:129.165000px;}
.y136{bottom:129.810000px;}
.y272{bottom:131.040000px;}
.y12d{bottom:131.190000px;}
.ycb{bottom:131.685000px;}
.y2bb{bottom:132.516000px;}
.y16b{bottom:133.596000px;}
.y175{bottom:133.710000px;}
.y18d{bottom:133.956000px;}
.y27e{bottom:134.895000px;}
.y226{bottom:136.545000px;}
.y271{bottom:138.600000px;}
.y51{bottom:138.634500px;}
.ybd{bottom:140.400000px;}
.y176{bottom:140.475000px;}
.y236{bottom:141.510000px;}
.y3c{bottom:141.885000px;}
.y126{bottom:142.632000px;}
.y273{bottom:143.925000px;}
.y270{bottom:145.800000px;}
.y264{bottom:146.592000px;}
.y177{bottom:147.240000px;}
.yd2{bottom:147.570000px;}
.y1ec{bottom:148.110000px;}
.y100{bottom:148.392000px;}
.y2ba{bottom:149.832000px;}
.y16a{bottom:150.915000px;}
.y1b8{bottom:152.100000px;}
.y18c{bottom:153.435000px;}
.y178{bottom:154.005000px;}
.y50{bottom:154.114500px;}
.y237{bottom:156.675000px;}
.y14c{bottom:158.835000px;}
.y3b{bottom:159.165000px;}
.y125{bottom:159.915000px;}
.y1e6{bottom:162.795000px;}
.y263{bottom:163.875000px;}
.y1fa{bottom:164.595000px;}
.y1eb{bottom:165.390000px;}
.y2b9{bottom:166.755000px;}
.yff{bottom:167.835000px;}
.y169{bottom:168.195000px;}
.y4f{bottom:169.594500px;}
.y1b7{bottom:170.490000px;}
.y283{bottom:171.390000px;}
.y238{bottom:171.795000px;}
.y18b{bottom:172.515000px;}
.y45{bottom:173.194500px;}
.y17d{bottom:174.240000px;}
.y23c{bottom:175.140000px;}
.y3a{bottom:176.445000px;}
.y124{bottom:177.195000px;}
.y14b{bottom:177.915000px;}
.y20a{bottom:178.275000px;}
.y1e5{bottom:180.075000px;}
.y262{bottom:181.155000px;}
.y93{bottom:181.515000px;}
.y44{bottom:184.024500px;}
.y1f9{bottom:184.755000px;}
.y4e{bottom:185.104500px;}
.y168{bottom:185.475000px;}
.y239{bottom:186.945000px;}
.y220{bottom:190.875000px;}
.y2e3{bottom:191.235000px;}
.y18a{bottom:191.955000px;}
.y2b8{bottom:193.395000px;}
.y39{bottom:193.725000px;}
.y123{bottom:194.475000px;}
.y92{bottom:195.570000px;}
.y14a{bottom:197.355000px;}
.y209{bottom:197.715000px;}
.y261{bottom:198.435000px;}
.y4d{bottom:200.224500px;}
.y167{bottom:202.395000px;}
.y1ae{bottom:205.275000px;}
.y21f{bottom:208.155000px;}
.y2e2{bottom:208.515000px;}
.y2b7{bottom:210.675000px;}
.y38{bottom:211.005000px;}
.y189{bottom:211.395000px;}
.y122{bottom:211.755000px;}
.y1e4{bottom:214.635000px;}
.y91{bottom:215.010000px;}
.y260{bottom:215.355000px;}
.y149{bottom:216.795000px;}
.y208{bottom:217.155000px;}
.y166{bottom:219.675000px;}
.yf5{bottom:221.115000px;}
.y1ad{bottom:222.555000px;}
.y1c6{bottom:223.275000px;}
.y248{bottom:223.995000px;}
.y21e{bottom:225.435000px;}
.y2b6{bottom:227.955000px;}
.y37{bottom:228.315000px;}
.yf4{bottom:229.035000px;}
.y188{bottom:230.835000px;}
.y1e3{bottom:231.915000px;}
.y25f{bottom:233.715000px;}
.y8f{bottom:234.450000px;}
.y148{bottom:236.235000px;}
.y207{bottom:236.595000px;}
.y165{bottom:236.955000px;}
.y1ac{bottom:239.835000px;}
.y1c5{bottom:242.715000px;}
.y2e1{bottom:243.075000px;}
.y247{bottom:243.435000px;}
.y2b5{bottom:245.235000px;}
.y36{bottom:245.595000px;}
.yf3{bottom:245.955000px;}
.y121{bottom:246.315000px;}
.y1e2{bottom:249.195000px;}
.y187{bottom:250.275000px;}
.y25e{bottom:250.995000px;}
.y8d{bottom:253.890000px;}
.y164{bottom:254.235000px;}
.y147{bottom:255.315000px;}
.y206{bottom:255.675000px;}
.y1ab{bottom:257.115000px;}
.y21d{bottom:259.995000px;}
.y1c4{bottom:262.155000px;}
.y2b4{bottom:262.515000px;}
.y35{bottom:262.875000px;}
.yf2{bottom:263.235000px;}
.y120{bottom:263.595000px;}
.y1e1{bottom:266.115000px;}
.y25d{bottom:268.275000px;}
.y163{bottom:271.515000px;}
.y8c{bottom:273.345000px;}
.y1aa{bottom:274.425000px;}
.y146{bottom:274.785000px;}
.y205{bottom:275.145000px;}
.y2e0{bottom:276.945000px;}
.y21c{bottom:277.305000px;}
.y34{bottom:280.155000px;}
.yf1{bottom:280.185000px;}
.y11f{bottom:280.905000px;}
.y1c3{bottom:281.265000px;}
.y246{bottom:282.345000px;}
.y1e0{bottom:283.065000px;}
.y25c{bottom:285.585000px;}
.y162{bottom:288.465000px;}
.yb3{bottom:291.705000px;}
.y8a{bottom:292.425000px;}
.y145{bottom:294.225000px;}
.y204{bottom:294.585000px;}
.y33{bottom:297.435000px;}
.yf0{bottom:297.465000px;}
.y2b3{bottom:297.825000px;}
.y11e{bottom:298.185000px;}
.y1df{bottom:300.345000px;}
.y1c2{bottom:300.705000px;}
.y245{bottom:301.425000px;}
.y25b{bottom:303.945000px;}
.yb2{bottom:305.745000px;}
.y1a9{bottom:308.985000px;}
.yef{bottom:311.145000px;}
.ye{bottom:311.505000px;}
.y89{bottom:311.865000px;}
.y203{bottom:314.025000px;}
.y32{bottom:314.715000px;}
.y161{bottom:315.105000px;}
.y11d{bottom:315.465000px;}
.y2b2{bottom:316.185000px;}
.y1de{bottom:317.625000px;}
.y1c1{bottom:320.145000px;}
.y244{bottom:320.865000px;}
.y25a{bottom:321.225000px;}
.yb0{bottom:325.185000px;}
.y1a8{bottom:325.905000px;}
.y21b{bottom:328.785000px;}
.y87{bottom:331.305000px;}
.y31{bottom:331.635000px;}
.y160{bottom:332.385000px;}
.y2b1{bottom:334.545000px;}
.y1dd{bottom:334.905000px;}
.y259{bottom:338.505000px;}
.y1c0{bottom:339.585000px;}
.y243{bottom:340.305000px;}
.y1a7{bottom:343.185000px;}
.yaf{bottom:344.265000px;}
.y21a{bottom:346.065000px;}
.y11c{bottom:347.505000px;}
.y1c{bottom:348.195000px;}
.y30{bottom:348.915000px;}
.y15f{bottom:349.665000px;}
.y2b0{bottom:351.825000px;}
.y1dc{bottom:352.185000px;}
.y86{bottom:354.345000px;}
.y11b{bottom:355.425000px;}
.y258{bottom:356.865000px;}
.y242{bottom:359.745000px;}
.y1a6{bottom:360.465000px;}
.y219{bottom:363.345000px;}
.yae{bottom:363.705000px;}
.y15e{bottom:364.065000px;}
.y2f{bottom:366.225000px;}
.y2af{bottom:370.185000px;}
.y85{bottom:371.625000px;}
.y1b{bottom:372.345000px;}
.y11a{bottom:372.705000px;}
.y257{bottom:374.145000px;}
.y1a5{bottom:377.745000px;}
.y1db{bottom:378.825000px;}
.y218{bottom:380.625000px;}
.yad{bottom:383.145000px;}
.y2e{bottom:383.505000px;}
.y15d{bottom:385.305000px;}
.y2ae{bottom:388.545000px;}
.y256{bottom:391.425000px;}
.y1da{bottom:396.105000px;}
.y1a{bottom:396.465000px;}
.y84{bottom:397.905000px;}
.y2df{bottom:398.265000px;}
.y2d{bottom:400.425000px;}
.yab{bottom:402.585000px;}
.y1a4{bottom:404.385000px;}
.y2ad{bottom:405.870000px;}
.y1d9{bottom:413.430000px;}
.y83{bottom:415.230000px;}
.y255{bottom:417.030000px;}
.y19{bottom:420.585000px;}
.y1a3{bottom:421.710000px;}
.yaa{bottom:422.070000px;}
.y2ac{bottom:424.230000px;}
.y217{bottom:424.590000px;}
.y2c{bottom:426.345000px;}
.y119{bottom:427.470000px;}
.y1d8{bottom:427.830000px;}
.y134{bottom:430.920000px;}
.y82{bottom:432.150000px;}
.y2de{bottom:432.510000px;}
.y1d7{bottom:435.390000px;}
.y1a2{bottom:436.110000px;}
.ya9{bottom:441.150000px;}
.y2ab{bottom:441.510000px;}
.y2b{bottom:441.825000px;}
.y216{bottom:441.870000px;}
.y1a1{bottom:443.670000px;}
.y18{bottom:444.705000px;}
.y1d6{bottom:449.430000px;}
.y2dd{bottom:450.150000px;}
.y1f3{bottom:451.080000px;}
.y215{bottom:456.270000px;}
.y2a{bottom:457.305000px;}
.y1a0{bottom:457.350000px;}
.y81{bottom:458.790000px;}
.y1af{bottom:459.360000px;}
.y2aa{bottom:459.870000px;}
.ya8{bottom:460.590000px;}
.y1f5{bottom:460.800000px;}
.y254{bottom:460.950000px;}
.y214{bottom:463.830000px;}
.y2dc{bottom:467.070000px;}
.y17{bottom:468.825000px;}
.y29{bottom:473.145000px;}
.y253{bottom:475.710000px;}
.y80{bottom:476.070000px;}
.y2a9{bottom:476.790000px;}
.y213{bottom:477.510000px;}
.y22d{bottom:479.160000px;}
.y252{bottom:483.270000px;}
.ya7{bottom:483.630000px;}
.y2db{bottom:484.350000px;}
.y28{bottom:488.625000px;}
.y16{bottom:492.990000px;}
.y7f{bottom:493.350000px;}
.yee{bottom:495.150000px;}
.y251{bottom:496.950000px;}
.y278{bottom:500.400000px;}
.y2da{bottom:501.630000px;}
.y2a8{bottom:503.070000px;}
.y27{bottom:504.150000px;}
.yed{bottom:509.190000px;}
.y7e{bottom:510.270000px;}
.y15{bottom:517.470000px;}
.ya6{bottom:518.550000px;}
.y26{bottom:519.630000px;}
.y2a7{bottom:520.350000px;}
.yec{bottom:528.630000px;}
.y25{bottom:535.110000px;}
.ya5{bottom:535.830000px;}
.y2d9{bottom:536.190000px;}
.y2a6{bottom:537.660000px;}
.y7d{bottom:538.020000px;}
.y14{bottom:541.590000px;}
.yeb{bottom:548.100000px;}
.y24{bottom:550.590000px;}
.ya4{bottom:553.140000px;}
.y2a5{bottom:554.940000px;}
.y7c{bottom:555.300000px;}
.y13{bottom:565.710000px;}
.y23{bottom:566.070000px;}
.yea{bottom:567.540000px;}
.ya3{bottom:567.900000px;}
.y2d8{bottom:570.780000px;}
.y2a4{bottom:572.220000px;}
.y7b{bottom:572.580000px;}
.ya2{bottom:575.100000px;}
.y22{bottom:581.550000px;}
.y118{bottom:582.300000px;}
.ye9{bottom:586.620000px;}
.y2d7{bottom:588.060000px;}
.ya1{bottom:588.780000px;}
.y7a{bottom:589.500000px;}
.y12{bottom:589.830000px;}
.ybe{bottom:591.840000px;}
.y21{bottom:597.390000px;}
.y117{bottom:600.300000px;}
.y2d6{bottom:604.980000px;}
.ye8{bottom:606.060000px;}
.y2a3{bottom:606.780000px;}
.y79{bottom:607.860000px;}
.y144{bottom:609.660000px;}
.y20{bottom:612.870000px;}
.y11{bottom:613.950000px;}
.y15c{bottom:614.340000px;}
.y2d5{bottom:622.620000px;}
.y2a2{bottom:624.060000px;}
.y78{bottom:625.140000px;}
.ye7{bottom:625.500000px;}
.y1f{bottom:628.380000px;}
.y143{bottom:629.100000px;}
.y116{bottom:631.260000px;}
.y15b{bottom:631.620000px;}
.y10{bottom:638.100000px;}
.y2d4{bottom:639.900000px;}
.y2a1{bottom:641.340000px;}
.y77{bottom:642.060000px;}
.y1e{bottom:643.860000px;}
.ye6{bottom:644.940000px;}
.y142{bottom:648.180000px;}
.y15a{bottom:648.900000px;}
.y2d3{bottom:656.820000px;}
.y1d5{bottom:657.540000px;}
.y2a0{bottom:658.620000px;}
.y1d{bottom:658.980000px;}
.y19f{bottom:659.340000px;}
.y76{bottom:660.420000px;}
.yf{bottom:662.220000px;}
.y115{bottom:662.580000px;}
.y186{bottom:664.380000px;}
.ye5{bottom:665.460000px;}
.y159{bottom:666.180000px;}
.y140{bottom:667.620000px;}
.y202{bottom:673.410000px;}
.y2d2{bottom:674.130000px;}
.y1bf{bottom:674.850000px;}
.y75{bottom:675.570000px;}
.y29f{bottom:675.930000px;}
.y19e{bottom:676.650000px;}
.y212{bottom:679.530000px;}
.y74{bottom:683.130000px;}
.y158{bottom:683.490000px;}
.y185{bottom:683.850000px;}
.y13f{bottom:687.090000px;}
.ye4{bottom:687.810000px;}
.y2d1{bottom:691.410000px;}
.y1d4{bottom:692.130000px;}
.y201{bottom:692.850000px;}
.y114{bottom:693.570000px;}
.y19d{bottom:693.930000px;}
.y1be{bottom:694.290000px;}
.ye3{bottom:695.730000px;}
.y73{bottom:700.410000px;}
.y157{bottom:700.770000px;}
.y184{bottom:703.290000px;}
.y289{bottom:706.170000px;}
.y13e{bottom:706.530000px;}
.y2d0{bottom:708.690000px;}
.y1d3{bottom:709.410000px;}
.y29e{bottom:710.130000px;}
.y19c{bottom:711.210000px;}
.ya0{bottom:711.930000px;}
.y200{bottom:712.290000px;}
.ye2{bottom:713.010000px;}
.y1bd{bottom:713.730000px;}
.y72{bottom:717.690000px;}
.y183{bottom:722.370000px;}
.y113{bottom:724.890000px;}
.y288{bottom:725.610000px;}
.y2cf{bottom:725.970000px;}
.y9f{bottom:725.985000px;}
.y1d2{bottom:726.330000px;}
.y29d{bottom:727.050000px;}
.y19b{bottom:728.490000px;}
.ye1{bottom:730.290000px;}
.y1ff{bottom:731.370000px;}
.y241{bottom:732.450000px;}
.y1bc{bottom:733.170000px;}
.y156{bottom:734.610000px;}
.y71{bottom:734.970000px;}
.y182{bottom:741.810000px;}
.y2ce{bottom:742.890000px;}
.y1d1{bottom:743.610000px;}
.y287{bottom:744.690000px;}
.ye0{bottom:745.050000px;}
.y112{bottom:745.410000px;}
.y9e{bottom:745.425000px;}
.y19a{bottom:745.770000px;}
.y1fe{bottom:750.810000px;}
.y155{bottom:751.890000px;}
.y70{bottom:752.250000px;}
.y29c{bottom:753.690000px;}
.y2cd{bottom:760.530000px;}
.y1d0{bottom:760.890000px;}
.y181{bottom:761.250000px;}
.y199{bottom:763.050000px;}
.y286{bottom:764.130000px;}
.y9d{bottom:764.865000px;}
.y111{bottom:765.930000px;}
.ydf{bottom:766.290000px;}
.yf6{bottom:768.240000px;}
.y154{bottom:769.170000px;}
.y6f{bottom:769.530000px;}
.y1fd{bottom:770.250000px;}
.y240{bottom:770.970000px;}
.y1bb{bottom:771.690000px;}
.y2cc{bottom:777.450000px;}
.y1cf{bottom:778.170000px;}
.y198{bottom:780.330000px;}
.y180{bottom:780.690000px;}
.y110{bottom:783.210000px;}
.y285{bottom:783.570000px;}
.y9c{bottom:783.945000px;}
.y6e{bottom:786.450000px;}
.y29b{bottom:788.250000px;}
.y1fc{bottom:789.690000px;}
.y23f{bottom:790.410000px;}
.y1ba{bottom:791.130000px;}
.y2cb{bottom:795.090000px;}
.y1ce{bottom:795.450000px;}
.y197{bottom:797.250000px;}
.y17e{bottom:799.770000px;}
.y10f{bottom:800.130000px;}
.y284{bottom:803.055000px;}
.y9b{bottom:803.430000px;}
.y153{bottom:803.775000px;}
.y29a{bottom:806.655000px;}
.y1fb{bottom:808.815000px;}
.y23e{bottom:809.895000px;}
.y1b9{bottom:810.615000px;}
.y2ca{bottom:812.055000px;}
.y1cd{bottom:812.775000px;}
.y6d{bottom:813.135000px;}
.y196{bottom:814.575000px;}
.y10e{bottom:817.455000px;}
.y152{bottom:821.055000px;}
.y9a{bottom:822.870000px;}
.y299{bottom:823.935000px;}
.y23d{bottom:829.335000px;}
.y2c9{bottom:829.695000px;}
.y1cc{bottom:830.055000px;}
.y6c{bottom:830.415000px;}
.y195{bottom:831.855000px;}
.y10d{bottom:834.375000px;}
.y250{bottom:841.215000px;}
.y99{bottom:845.895000px;}
.y2c8{bottom:846.615000px;}
.y6b{bottom:847.695000px;}
.y10c{bottom:851.655000px;}
.y151{bottom:855.975000px;}
.y298{bottom:859.575000px;}
.y194{bottom:863.895000px;}
.y2c7{bottom:864.255000px;}
.y6a{bottom:864.615000px;}
.y1cb{bottom:864.975000px;}
.y10b{bottom:865.695000px;}
.y127{bottom:867.240000px;}
.y211{bottom:867.495000px;}
.y24f{bottom:867.855000px;}
.y193{bottom:871.815000px;}
.y150{bottom:873.255000px;}
.y297{bottom:876.855000px;}
.y98{bottom:880.815000px;}
.y69{bottom:882.255000px;}
.yde{bottom:884.775000px;}
.y24e{bottom:885.135000px;}
.y192{bottom:888.735000px;}
.y14f{bottom:890.535000px;}
.y210{bottom:894.135000px;}
.y296{bottom:894.855000px;}
.y97{bottom:897.735000px;}
.ydd{bottom:898.830000px;}
.y68{bottom:899.175000px;}
.y1ca{bottom:899.535000px;}
.y24d{bottom:902.415000px;}
.y14e{bottom:905.295000px;}
.y191{bottom:906.015000px;}
.y20f{bottom:911.415000px;}
.y295{bottom:912.135000px;}
.y14d{bottom:912.495000px;}
.y1c9{bottom:913.935000px;}
.y96{bottom:915.015000px;}
.y2c6{bottom:915.375000px;}
.y67{bottom:916.455000px;}
.ydb{bottom:918.270000px;}
.y24c{bottom:919.695000px;}
.y190{bottom:920.775000px;}
.y1c8{bottom:921.495000px;}
.y18f{bottom:928.335000px;}
.y20e{bottom:928.695000px;}
.y16d{bottom:928.800000px;}
.y294{bottom:929.415000px;}
.y95{bottom:930.135000px;}
.y2c5{bottom:933.045000px;}
.y66{bottom:933.765000px;}
.y24b{bottom:934.125000px;}
.y1c7{bottom:935.205000px;}
.y1e7{bottom:937.080000px;}
.y94{bottom:937.365000px;}
.yda{bottom:937.725000px;}
.y24a{bottom:941.685000px;}
.y18e{bottom:942.045000px;}
.y20d{bottom:943.125000px;}
.y293{bottom:947.805000px;}
.y2c4{bottom:949.965000px;}
.y20c{bottom:950.685000px;}
.y65{bottom:951.045000px;}
.yb7{bottom:953.640000px;}
.y249{bottom:955.365000px;}
.yd9{bottom:956.805000px;}
.y268{bottom:957.600000px;}
.y20b{bottom:964.365000px;}
.y292{bottom:965.085000px;}
.ybb{bottom:965.160000px;}
.y221{bottom:967.320000px;}
.y64{bottom:968.325000px;}
.yd8{bottom:976.245000px;}
.y2c3{bottom:976.605000px;}
.y291{bottom:982.365000px;}
.y63{bottom:985.605000px;}
.yd{bottom:985.965000px;}
.yc{bottom:991.365000px;}
.y2c2{bottom:993.885000px;}
.yd7{bottom:995.685000px;}
.y290{bottom:1000.725000px;}
.y62{bottom:1002.885000px;}
.yb{bottom:1008.285000px;}
.y2c1{bottom:1011.165000px;}
.yd6{bottom:1015.125000px;}
.y28f{bottom:1018.005000px;}
.y10a{bottom:1019.805000px;}
.y61{bottom:1020.165000px;}
.y13d{bottom:1022.685000px;}
.y2c0{bottom:1028.445000px;}
.yd5{bottom:1034.205000px;}
.y28e{bottom:1035.285000px;}
.ya{bottom:1035.645000px;}
.y109{bottom:1037.085000px;}
.y60{bottom:1037.445000px;}
.y13c{bottom:1042.125000px;}
.y2bf{bottom:1045.725000px;}
.y28d{bottom:1053.645000px;}
.y108{bottom:1054.365000px;}
.y5f{bottom:1054.725000px;}
.yd4{bottom:1055.085000px;}
.y9{bottom:1059.765000px;}
.y13b{bottom:1061.565000px;}
.yd3{bottom:1062.645000px;}
.y2be{bottom:1063.005000px;}
.y28c{bottom:1070.970000px;}
.y107{bottom:1071.690000px;}
.y5e{bottom:1072.050000px;}
.y13a{bottom:1081.050000px;}
.y28b{bottom:1087.890000px;}
.y8{bottom:1088.250000px;}
.y106{bottom:1088.610000px;}
.y5d{bottom:1088.970000px;}
.y5a{bottom:1091.520000px;}
.y139{bottom:1100.490000px;}
.y28a{bottom:1105.170000px;}
.y105{bottom:1105.890000px;}
.y5c{bottom:1106.250000px;}
.y6{bottom:1121.730000px;}
.y1{bottom:1127.130000px;}
.hb{height:4.165313px;}
.h13{height:5.650313px;}
.h1a{height:18.345000px;}
.h2b{height:18.360000px;}
.h1b{height:18.363516px;}
.h2e{height:18.372656px;}
.h40{height:18.396000px;}
.h19{height:18.705000px;}
.h2d{height:18.720000px;}
.h1c{height:18.741000px;}
.h1d{height:18.750000px;}
.h33{height:18.756000px;}
.h18{height:18.866250px;}
.h44{height:23.400000px;}
.h7{height:24.348516px;}
.h50{height:25.065703px;}
.h15{height:27.720000px;}
.h11{height:29.678906px;}
.h30{height:30.963516px;}
.h22{height:33.480000px;}
.h32{height:36.861328px;}
.he{height:40.985156px;}
.hd{height:42.086250px;}
.h52{height:42.229688px;}
.h21{height:42.759141px;}
.h43{height:42.906586px;}
.h4b{height:47.891250px;}
.h4a{height:48.036375px;}
.h20{height:48.656953px;}
.hf{height:53.677969px;}
.h12{height:55.147500px;}
.h28{height:56.029219px;}
.h3d{height:56.176664px;}
.h8{height:58.050000px;}
.h14{height:59.328281px;}
.h5{height:59.357813px;}
.h6{height:60.155156px;}
.ha{height:60.952500px;}
.h46{height:61.097625px;}
.h24{height:61.927031px;}
.h3f{height:62.074477px;}
.h17{height:62.163910px;}
.h37{height:63.176953px;}
.h16{height:63.455625px;}
.h4e{height:63.855000px;}
.h23{height:64.875938px;}
.h49{height:65.023383px;}
.h3{height:65.884219px;}
.h47{height:67.824844px;}
.h31{height:68.752500px;}
.h35{height:70.628906px;}
.h34{height:70.664062px;}
.h2c{height:72.562500px;}
.h27{height:73.722656px;}
.h26{height:73.870102px;}
.h3e{height:80.061328px;}
.h3a{height:81.384844px;}
.h2{height:81.390000px;}
.h1f{height:81.649219px;}
.h9{height:84.172500px;}
.h45{height:107.775938px;}
.h2f{height:112.680000px;}
.h25{height:116.280000px;}
.h4{height:116.640000px;}
.h2a{height:130.275937px;}
.h4d{height:138.804844px;}
.h38{height:147.240000px;}
.h36{height:149.040000px;}
.h48{height:152.280000px;}
.h3c{height:153.084844px;}
.h4f{height:162.000000px;}
.h29{height:164.520000px;}
.h1e{height:165.960000px;}
.h41{height:182.520000px;}
.h51{height:187.920000px;}
.h39{height:190.800000px;}
.h3b{height:196.200000px;}
.h4c{height:196.560000px;}
.h42{height:203.040000px;}
.h10{height:212.805000px;}
.hc{height:671.565000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:103.702500px;}
.w32{width:126.756000px;}
.w4a{width:126.792000px;}
.w8{width:128.880000px;}
.w4{width:132.502500px;}
.w2a{width:141.156000px;}
.w2e{width:141.516000px;}
.w26{width:141.876000px;}
.wc{width:143.325000px;}
.w36{width:147.996000px;}
.w31{width:148.032000px;}
.w49{width:148.356000px;}
.w10{width:154.470000px;}
.w18{width:154.830000px;}
.w4d{width:158.475000px;}
.w29{width:158.835000px;}
.w43{width:160.995000px;}
.w11{width:161.325000px;}
.w44{width:161.715000px;}
.w6{width:163.080000px;}
.w21{width:169.635000px;}
.w3f{width:174.315000px;}
.w40{width:175.395000px;}
.wa{width:180.045000px;}
.w3a{width:180.075000px;}
.w38{width:190.155000px;}
.w37{width:190.545000px;}
.w13{width:190.800000px;}
.w2d{width:190.875000px;}
.w1c{width:191.205000px;}
.w1b{width:191.235000px;}
.w1a{width:191.565000px;}
.wd{width:196.995000px;}
.w39{width:201.315000px;}
.w3e{width:220.395000px;}
.w20{width:220.785000px;}
.w14{width:221.400000px;}
.w42{width:222.915000px;}
.wf{width:230.490000px;}
.w28{width:243.465000px;}
.w1f{width:245.625000px;}
.w9{width:259.665000px;}
.w17{width:262.530000px;}
.w30{width:296.385000px;}
.w25{width:296.745000px;}
.w35{width:296.790000px;}
.w45{width:306.000000px;}
.w4c{width:307.545000px;}
.w1d{width:311.760000px;}
.w12{width:316.080000px;}
.w3b{width:344.160000px;}
.w4e{width:356.040000px;}
.w23{width:359.640000px;}
.w50{width:360.510000px;}
.w15{width:392.760000px;}
.w48{width:403.020000px;}
.w22{width:406.080000px;}
.w4f{width:428.400000px;}
.w3c{width:500.040000px;}
.w46{width:505.800000px;}
.wb{width:521.820000px;}
.w33{width:524.880000px;}
.w2b{width:532.080000px;}
.w27{width:544.890000px;}
.w41{width:547.050000px;}
.we{width:547.740000px;}
.w7{width:570.060000px;}
.w3d{width:571.530000px;}
.w2f{width:572.970000px;}
.w19{width:575.460000px;}
.w2c{width:577.290000px;}
.w16{width:580.140000px;}
.w4b{width:594.570000px;}
.w5{width:596.745000px;}
.w24{width:609.690000px;}
.w3{width:622.665000px;}
.w34{width:637.125000px;}
.w1e{width:637.485000px;}
.w47{width:679.605000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xaf{left:2.445000px;}
.x1e{left:6.876000px;}
.x16{left:8.295000px;}
.x4{left:13.305000px;}
.x14{left:16.546500px;}
.x19{left:18.346500px;}
.x5{left:19.425000px;}
.x3c{left:21.240000px;}
.x84{left:23.400000px;}
.x7e{left:25.920000px;}
.x3a{left:26.985000px;}
.x13{left:29.146500px;}
.x7c{left:30.960000px;}
.x54{left:32.385000px;}
.x28{left:35.265000px;}
.xbd{left:36.330000px;}
.x7a{left:37.803000px;}
.x5e{left:39.240000px;}
.x94{left:41.040000px;}
.x31{left:42.480000px;}
.x6{left:43.575000px;}
.x27{left:45.390000px;}
.x1a{left:47.542500px;}
.x35{left:49.695000px;}
.xe{left:50.782500px;}
.x23{left:51.825000px;}
.x6a{left:54.030000px;}
.xd{left:55.102500px;}
.x33{left:56.175000px;}
.x1c{left:57.262500px;}
.xbe{left:58.650000px;}
.x25{left:59.805000px;}
.xb8{left:60.843000px;}
.x17{left:62.295000px;}
.x95{left:63.360000px;}
.x4a{left:64.725000px;}
.x1b{left:66.265500px;}
.x3f{left:68.415000px;}
.x3e{left:69.840000px;}
.x99{left:70.950000px;}
.x86{left:72.030000px;}
.x11{left:73.105500px;}
.x8c{left:75.705000px;}
.x10{left:76.705500px;}
.x1{left:78.529500px;}
.x12{left:80.305500px;}
.x2a{left:82.470000px;}
.x60{left:84.270000px;}
.x7{left:86.436000px;}
.x34{left:87.510000px;}
.x75{left:88.950000px;}
.x36{left:91.110000px;}
.x46{left:93.570000px;}
.x2{left:95.425500px;}
.xb3{left:96.879000px;}
.x40{left:97.935000px;}
.x65{left:99.795000px;}
.xb7{left:100.833000px;}
.x87{left:101.910000px;}
.x1d{left:102.985500px;}
.x96{left:104.430000px;}
.x76{left:105.549000px;}
.x18{left:106.945500px;}
.x57{left:108.375000px;}
.x59{left:111.255000px;}
.x58{left:114.135000px;}
.xa1{left:115.269000px;}
.x2f{left:116.295000px;}
.x2b{left:118.515000px;}
.x66{left:119.985000px;}
.x29{left:122.115000px;}
.xf{left:124.585500px;}
.x73{left:125.790000px;}
.x68{left:128.196000px;}
.x80{left:131.433000px;}
.x97{left:133.950000px;}
.x8f{left:135.105000px;}
.x4b{left:136.290000px;}
.x7f{left:139.353000px;}
.x1f{left:140.472000px;}
.x78{left:141.912000px;}
.x91{left:143.310000px;}
.xb9{left:144.393000px;}
.x79{left:145.833000px;}
.x48{left:149.655000px;}
.x22{left:151.620000px;}
.xbc{left:153.750000px;}
.x53{left:156.690000px;}
.x90{left:158.115000px;}
.x47{left:159.735000px;}
.x21{left:161.730000px;}
.xc4{left:163.149000px;}
.xc2{left:168.549000px;}
.xc3{left:171.069000px;}
.x39{left:172.890000px;}
.x82{left:174.315000px;}
.xbb{left:178.635000px;}
.x8b{left:179.640000px;}
.x3{left:182.250000px;}
.xb6{left:184.389000px;}
.x2e{left:185.850000px;}
.x72{left:187.665000px;}
.xb0{left:188.745000px;}
.x8d{left:192.390000px;}
.x37{left:195.900000px;}
.x4c{left:198.750000px;}
.x50{left:204.150000px;}
.x8e{left:205.710000px;}
.x88{left:207.435000px;}
.x41{left:208.860000px;}
.xa6{left:210.345000px;}
.x15{left:218.970000px;}
.x9a{left:221.475000px;}
.x61{left:222.900000px;}
.x5a{left:225.060000px;}
.xbf{left:231.480000px;}
.xa8{left:232.950000px;}
.xaa{left:234.615000px;}
.x81{left:239.838000px;}
.x70{left:242.640000px;}
.x4d{left:244.050000px;}
.x49{left:248.400000px;}
.x67{left:250.845000px;}
.x77{left:253.554000px;}
.xa5{left:263.265000px;}
.x51{left:265.830000px;}
.x9e{left:269.025000px;}
.x71{left:272.520000px;}
.xae{left:274.425000px;}
.xb1{left:276.690000px;}
.xb{left:280.185000px;}
.xb2{left:281.730000px;}
.xc0{left:282.990000px;}
.x43{left:287.640000px;}
.x64{left:289.080000px;}
.x24{left:291.345000px;}
.xa7{left:296.130000px;}
.x4f{left:301.110000px;}
.x4e{left:312.990000px;}
.x8a{left:316.230000px;}
.x52{left:320.910000px;}
.x74{left:325.440000px;}
.x30{left:329.910000px;}
.x20{left:333.870000px;}
.x45{left:335.160000px;}
.x9f{left:339.090000px;}
.x5d{left:351.150000px;}
.xa9{left:369.255000px;}
.x69{left:374.550000px;}
.x44{left:376.920000px;}
.xab{left:382.110000px;}
.xac{left:396.870000px;}
.x92{left:402.300000px;}
.x3b{left:404.100000px;}
.x83{left:418.500000px;}
.x55{left:419.940000px;}
.xa0{left:425.700000px;}
.x9d{left:426.780000px;}
.x63{left:430.020000px;}
.x7b{left:439.380000px;}
.x6f{left:441.900000px;}
.x5c{left:446.580000px;}
.x2d{left:457.740000px;}
.xc1{left:468.180000px;}
.x6d{left:473.580000px;}
.xb4{left:510.690000px;}
.x32{left:527.625000px;}
.x5f{left:543.105000px;}
.x26{left:551.745000px;}
.xa2{left:553.170000px;}
.x38{left:557.850000px;}
.x3d{left:559.305000px;}
.x56{left:575.505000px;}
.x85{left:578.055000px;}
.x93{left:593.895000px;}
.x6b{left:596.055000px;}
.xad{left:600.735000px;}
.x5b{left:604.335000px;}
.x2c{left:605.415000px;}
.x98{left:606.495000px;}
.x7d{left:609.735000px;}
.x9b{left:616.575000px;}
.xa3{left:619.815000px;}
.x6e{left:627.735000px;}
.x42{left:644.655000px;}
.x6c{left:650.415000px;}
.x62{left:658.335000px;}
.xb5{left:659.775000px;}
.xba{left:661.575000px;}
.xa{left:676.365000px;}
.x89{left:678.525000px;}
.xa4{left:697.605000px;}
.x9c{left:709.845000px;}
.x9{left:766.050000px;}
.x8{left:784.770000px;}
.xc{left:807.090000px;}
@media print{
.v1{vertical-align:-62.720000pt;}
.v13{vertical-align:-60.160000pt;}
.v8{vertical-align:-53.760000pt;}
.v7{vertical-align:-52.480000pt;}
.v11{vertical-align:-50.026667pt;}
.vb{vertical-align:-40.960000pt;}
.v3{vertical-align:-39.786667pt;}
.v4{vertical-align:-34.080000pt;}
.vc{vertical-align:-31.360000pt;}
.ve{vertical-align:-29.706667pt;}
.v6{vertical-align:-13.653333pt;}
.v0{vertical-align:0.000000pt;}
.v12{vertical-align:5.493333pt;}
.v9{vertical-align:6.933333pt;}
.va{vertical-align:12.906667pt;}
.v2{vertical-align:22.773333pt;}
.v10{vertical-align:38.400000pt;}
.vd{vertical-align:49.386667pt;}
.vf{vertical-align:56.106667pt;}
.v5{vertical-align:58.133333pt;}
.ls3c{letter-spacing:-0.848000pt;}
.ls9{letter-spacing:-0.640000pt;}
.ls3e{letter-spacing:-0.608000pt;}
.lsd{letter-spacing:-0.560000pt;}
.ls18{letter-spacing:-0.513067pt;}
.ls6{letter-spacing:-0.512000pt;}
.ls38{letter-spacing:-0.476800pt;}
.ls36{letter-spacing:-0.459200pt;}
.ls19{letter-spacing:-0.448000pt;}
.ls24{letter-spacing:-0.414933pt;}
.ls29{letter-spacing:-0.412267pt;}
.ls1c{letter-spacing:-0.394133pt;}
.ls16{letter-spacing:-0.340267pt;}
.ls37{letter-spacing:-0.266133pt;}
.ls3d{letter-spacing:-0.259733pt;}
.ls1b{letter-spacing:-0.141867pt;}
.ls22{letter-spacing:-0.097067pt;}
.ls7{letter-spacing:-0.079467pt;}
.lsc{letter-spacing:-0.064000pt;}
.ls17{letter-spacing:-0.038400pt;}
.ls30{letter-spacing:-0.017920pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3f{letter-spacing:0.005120pt;}
.ls2e{letter-spacing:0.017920pt;}
.ls3{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.158933pt;}
.ls3a{letter-spacing:0.315200pt;}
.ls23{letter-spacing:0.323733pt;}
.ls21{letter-spacing:0.344533pt;}
.ls39{letter-spacing:0.380267pt;}
.ls10{letter-spacing:0.414933pt;}
.ls1{letter-spacing:0.439040pt;}
.lsb{letter-spacing:0.442667pt;}
.ls25{letter-spacing:0.450667pt;}
.ls28{letter-spacing:0.451733pt;}
.ls3b{letter-spacing:0.487467pt;}
.ls1a{letter-spacing:0.489067pt;}
.lsa{letter-spacing:0.560000pt;}
.ls1d{letter-spacing:0.618667pt;}
.ls0{letter-spacing:0.640000pt;}
.ls4{letter-spacing:0.773120pt;}
.ls2f{letter-spacing:0.874667pt;}
.ls2d{letter-spacing:0.938667pt;}
.ls2{letter-spacing:0.960000pt;}
.ls33{letter-spacing:1.280000pt;}
.ls34{letter-spacing:8.266667pt;}
.lsf{letter-spacing:36.254720pt;}
.lse{letter-spacing:56.734720pt;}
.ls14{letter-spacing:145.060693pt;}
.ls13{letter-spacing:145.167360pt;}
.ls15{letter-spacing:156.527360pt;}
.ls26{letter-spacing:241.039787pt;}
.ls27{letter-spacing:255.226453pt;}
.ls31{letter-spacing:259.911680pt;}
.ls32{letter-spacing:273.991680pt;}
.ls2b{letter-spacing:312.666453pt;}
.ls2c{letter-spacing:312.719787pt;}
.ls35{letter-spacing:352.850859pt;}
.ls20{letter-spacing:426.037333pt;}
.ls2a{letter-spacing:440.138667pt;}
.ls1e{letter-spacing:449.077333pt;}
.ls1f{letter-spacing:748.725333pt;}
.ls12{letter-spacing:756.085333pt;}
.ls11{letter-spacing:784.405333pt;}
.ws1{word-spacing:-74.240000pt;}
.wsb{word-spacing:-53.760000pt;}
.ws25{word-spacing:-21.573547pt;}
.ws17{word-spacing:-16.000000pt;}
.ws29{word-spacing:-15.360000pt;}
.ws23{word-spacing:-14.720000pt;}
.wsf{word-spacing:-14.016000pt;}
.wse{word-spacing:-13.979861pt;}
.ws1c{word-spacing:-13.890667pt;}
.wsa{word-spacing:-13.854933pt;}
.ws22{word-spacing:-13.457920pt;}
.ws0{word-spacing:-13.440000pt;}
.ws21{word-spacing:-13.422080pt;}
.ws1b{word-spacing:-13.025067pt;}
.ws1e{word-spacing:-12.894613pt;}
.ws28{word-spacing:-12.859008pt;}
.ws15{word-spacing:-12.768427pt;}
.ws6{word-spacing:-12.720000pt;}
.ws10{word-spacing:-12.638827pt;}
.ws19{word-spacing:-12.631253pt;}
.ws2a{word-spacing:-12.592000pt;}
.ws27{word-spacing:-12.462187pt;}
.ws14{word-spacing:-12.334187pt;}
.ws26{word-spacing:-12.298048pt;}
.ws5{word-spacing:-12.160000pt;}
.wsd{word-spacing:-12.111360pt;}
.ws20{word-spacing:-11.931307pt;}
.ws1f{word-spacing:-11.896235pt;}
.ws8{word-spacing:-11.600000pt;}
.ws11{word-spacing:-10.992640pt;}
.wsc{word-spacing:-10.652373pt;}
.ws2{word-spacing:-9.920000pt;}
.ws18{word-spacing:-9.890773pt;}
.ws1a{word-spacing:-9.546240pt;}
.ws3{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws24{word-spacing:-8.418048pt;}
.ws12{word-spacing:-8.389120pt;}
.ws7{word-spacing:-7.936000pt;}
.ws16{word-spacing:-7.232000pt;}
.ws1d{word-spacing:-6.074880pt;}
.ws2b{word-spacing:-5.405227pt;}
.ws2c{word-spacing:-4.658027pt;}
.ws9{word-spacing:0.000000pt;}
.ws13{word-spacing:108.239787pt;}
.ws2d{word-spacing:409.112320pt;}
._3c{margin-left:-11.220053pt;}
._1b{margin-left:-4.631040pt;}
._10{margin-left:-3.087787pt;}
._4{margin-left:-2.181120pt;}
._3{margin-left:-1.236480pt;}
._1{width:1.105920pt;}
._0{width:2.073600pt;}
._2{width:3.026347pt;}
._5{width:3.932587pt;}
._6{width:5.213867pt;}
._a{width:6.775467pt;}
._8{width:7.976960pt;}
._9{width:9.024000pt;}
._7{width:10.019840pt;}
._13{width:11.298987pt;}
._e{width:12.257280pt;}
._f{width:15.106560pt;}
._12{width:16.396800pt;}
._11{width:18.002347pt;}
._c{width:19.353600pt;}
._b{width:21.073920pt;}
._d{width:22.225920pt;}
._35{width:27.968427pt;}
._34{width:29.760000pt;}
._39{width:30.937173pt;}
._3f{width:35.127040pt;}
._29{width:37.922987pt;}
._30{width:40.762453pt;}
._36{width:41.863253pt;}
._32{width:44.467200pt;}
._22{width:51.717504pt;}
._14{width:54.315520pt;}
._41{width:55.254187pt;}
._16{width:56.573440pt;}
._17{width:57.518933pt;}
._28{width:61.622187pt;}
._2f{width:69.520213pt;}
._2c{width:78.202453pt;}
._27{width:79.288747pt;}
._31{width:84.264107pt;}
._15{width:86.013440pt;}
._37{width:93.148587pt;}
._38{width:94.152533pt;}
._1e{width:100.341333pt;}
._3a{width:101.330347pt;}
._24{width:106.251947pt;}
._3e{width:107.296427pt;}
._1c{width:108.366933pt;}
._1f{width:111.968427pt;}
._3d{width:112.918613pt;}
._3b{width:116.648533pt;}
._2d{width:125.092267pt;}
._40{width:137.961387pt;}
._2e{width:145.096533pt;}
._33{width:148.868693pt;}
._18{width:149.810773pt;}
._2b{width:153.531307pt;}
._1d{width:154.432000pt;}
._26{width:155.790933pt;}
._19{width:163.890773pt;}
._2a{width:172.950613pt;}
._25{width:178.560000pt;}
._20{width:209.005227pt;}
._21{width:228.375040pt;}
._1a{width:322.344107pt;}
._23{width:1808.158293pt;}
.fs6{font-size:5.120000pt;}
.fsb{font-size:16.640000pt;}
.fs3{font-size:21.760000pt;}
.fsa{font-size:26.880000pt;}
.fs9{font-size:32.000000pt;}
.fs7{font-size:37.120000pt;}
.fs12{font-size:37.248000pt;}
.fsc{font-size:42.240000pt;}
.fs14{font-size:42.368000pt;}
.fs8{font-size:48.640000pt;}
.fs10{font-size:48.768000pt;}
.fs4{font-size:51.200000pt;}
.fs2{font-size:53.760000pt;}
.fs11{font-size:53.888000pt;}
.fsd{font-size:56.320000pt;}
.fs13{font-size:56.448000pt;}
.fs0{font-size:58.880000pt;}
.fs15{font-size:59.008000pt;}
.fsf{font-size:64.000000pt;}
.fse{font-size:64.128000pt;}
.fs5{font-size:74.240000pt;}
.fs1{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.y59{bottom:3.516000pt;}
.y5{bottom:3.520000pt;}
.ydc{bottom:4.146667pt;}
.yb1{bottom:4.160000pt;}
.y8e{bottom:4.466667pt;}
.y88{bottom:4.480000pt;}
.y101{bottom:4.482667pt;}
.y17f{bottom:4.520000pt;}
.y5b{bottom:4.773333pt;}
.y90{bottom:4.786667pt;}
.y8b{bottom:4.800000pt;}
.y141{bottom:4.826667pt;}
.yac{bottom:4.840000pt;}
.y1f6{bottom:6.973333pt;}
.y2{bottom:7.040000pt;}
.y27f{bottom:7.173333pt;}
.yfe{bottom:8.453333pt;}
.y282{bottom:9.213333pt;}
.ycd{bottom:9.216000pt;}
.ybc{bottom:9.853333pt;}
.y1b5{bottom:10.426667pt;}
.y23b{bottom:11.546667pt;}
.y22c{bottom:12.386667pt;}
.y4c{bottom:12.476000pt;}
.y133{bottom:12.640000pt;}
.y1f2{bottom:12.773333pt;}
.yc4{bottom:14.373333pt;}
.y1f4{bottom:15.613333pt;}
.yd1{bottom:15.872000pt;}
.yf9{bottom:16.866667pt;}
.y58{bottom:18.876000pt;}
.y4{bottom:18.880000pt;}
.y4b{bottom:19.196000pt;}
.y1b4{bottom:20.026667pt;}
.ycc{bottom:20.736000pt;}
.y23a{bottom:21.466667pt;}
.y1f8{bottom:21.920000pt;}
.y22b{bottom:21.986667pt;}
.y1f1{bottom:23.653333pt;}
.y1b6{bottom:24.960000pt;}
.y279{bottom:25.346667pt;}
.yfd{bottom:26.106667pt;}
.y1b1{bottom:29.253333pt;}
.y132{bottom:29.893333pt;}
.yc6{bottom:31.493333pt;}
.y223{bottom:31.680000pt;}
.y42{bottom:33.920000pt;}
.y57{bottom:34.236000pt;}
.y1e9{bottom:34.906667pt;}
.yc3{bottom:36.866667pt;}
.y12a{bottom:37.893333pt;}
.ybf{bottom:38.493333pt;}
.y3{bottom:39.360000pt;}
.y26c{bottom:39.426667pt;}
.yb9{bottom:40.320000pt;}
.y1f0{bottom:40.986667pt;}
.yfc{bottom:43.773333pt;}
.y281{bottom:44.066667pt;}
.y27a{bottom:44.253333pt;}
.y22a{bottom:44.480000pt;}
.y17c{bottom:44.506667pt;}
.y230{bottom:44.960000pt;}
.y4a{bottom:45.468000pt;}
.y26b{bottom:45.826667pt;}
.y135{bottom:46.653333pt;}
.y131{bottom:47.173333pt;}
.yc7{bottom:48.573333pt;}
.y1f7{bottom:49.346667pt;}
.y41{bottom:49.600000pt;}
.yba{bottom:49.693333pt;}
.y7{bottom:51.232000pt;}
.y277{bottom:51.653333pt;}
.yc0{bottom:51.866667pt;}
.y1ef{bottom:51.906667pt;}
.yf8{bottom:52.093333pt;}
.y129{bottom:52.226667pt;}
.y56{bottom:53.470667pt;}
.y224{bottom:54.053333pt;}
.y1b0{bottom:54.146667pt;}
.yd0{bottom:54.426667pt;}
.yce{bottom:56.160000pt;}
.y17a{bottom:56.293333pt;}
.y49{bottom:56.350667pt;}
.y231{bottom:58.426667pt;}
.y138{bottom:58.466667pt;}
.y22f{bottom:59.106667pt;}
.y26f{bottom:60.186667pt;}
.y276{bottom:61.600000pt;}
.y27b{bottom:63.173333pt;}
.y130{bottom:64.413333pt;}
.y40{bottom:64.960000pt;}
.yc8{bottom:65.693333pt;}
.y179{bottom:66.213333pt;}
.y26e{bottom:66.906667pt;}
.y229{bottom:66.973333pt;}
.y48{bottom:67.870667pt;}
.y1ee{bottom:69.253333pt;}
.yfb{bottom:69.413333pt;}
.yc2{bottom:69.760000pt;}
.y55{bottom:70.110667pt;}
.y1b2{bottom:70.400000pt;}
.y280{bottom:70.533333pt;}
.y222{bottom:70.880000pt;}
.y232{bottom:71.906667pt;}
.y26d{bottom:73.306667pt;}
.y16e{bottom:76.706667pt;}
.y47{bottom:79.390667pt;}
.y1ed{bottom:80.133333pt;}
.y3f{bottom:80.320000pt;}
.y104{bottom:80.352000pt;}
.yb8{bottom:81.120000pt;}
.y12f{bottom:81.693333pt;}
.y27c{bottom:82.080000pt;}
.y16f{bottom:82.720000pt;}
.yc9{bottom:82.813333pt;}
.yfa{bottom:83.040000pt;}
.y267{bottom:83.232000pt;}
.y275{bottom:83.973333pt;}
.y225{bottom:84.000000pt;}
.y54{bottom:84.190667pt;}
.yf7{bottom:85.186667pt;}
.y233{bottom:85.373333pt;}
.yc1{bottom:86.080000pt;}
.y2bd{bottom:87.072000pt;}
.y43{bottom:87.076000pt;}
.y170{bottom:88.733333pt;}
.y12b{bottom:88.960000pt;}
.yb6{bottom:88.992000pt;}
.y228{bottom:89.466667pt;}
.y137{bottom:89.666667pt;}
.y22e{bottom:91.040000pt;}
.y12c{bottom:91.333333pt;}
.y128{bottom:92.706667pt;}
.y171{bottom:94.746667pt;}
.yb5{bottom:95.392000pt;}
.y3e{bottom:95.720000pt;}
.y26a{bottom:95.746667pt;}
.y103{bottom:97.632000pt;}
.y53{bottom:97.950667pt;}
.y46{bottom:98.590667pt;}
.y266{bottom:98.592000pt;}
.y234{bottom:98.853333pt;}
.y12e{bottom:98.946667pt;}
.ycf{bottom:99.813333pt;}
.yca{bottom:99.933333pt;}
.y172{bottom:100.773333pt;}
.y27d{bottom:100.986667pt;}
.y269{bottom:102.173333pt;}
.y2bc{bottom:102.432000pt;}
.y16c{bottom:103.392000pt;}
.y52{bottom:105.950667pt;}
.y1ea{bottom:105.986667pt;}
.y274{bottom:106.333333pt;}
.y173{bottom:106.813333pt;}
.yb4{bottom:107.872000pt;}
.y227{bottom:109.213333pt;}
.yc5{bottom:109.760000pt;}
.y3d{bottom:110.760000pt;}
.y1e8{bottom:111.386667pt;}
.y1b3{bottom:111.586667pt;}
.y235{bottom:112.320000pt;}
.y174{bottom:112.826667pt;}
.y265{bottom:113.952000pt;}
.y102{bottom:114.592000pt;}
.y17b{bottom:114.813333pt;}
.y136{bottom:115.386667pt;}
.y272{bottom:116.480000pt;}
.y12d{bottom:116.613333pt;}
.ycb{bottom:117.053333pt;}
.y2bb{bottom:117.792000pt;}
.y16b{bottom:118.752000pt;}
.y175{bottom:118.853333pt;}
.y18d{bottom:119.072000pt;}
.y27e{bottom:119.906667pt;}
.y226{bottom:121.373333pt;}
.y271{bottom:123.200000pt;}
.y51{bottom:123.230667pt;}
.ybd{bottom:124.800000pt;}
.y176{bottom:124.866667pt;}
.y236{bottom:125.786667pt;}
.y3c{bottom:126.120000pt;}
.y126{bottom:126.784000pt;}
.y273{bottom:127.933333pt;}
.y270{bottom:129.600000pt;}
.y264{bottom:130.304000pt;}
.y177{bottom:130.880000pt;}
.yd2{bottom:131.173333pt;}
.y1ec{bottom:131.653333pt;}
.y100{bottom:131.904000pt;}
.y2ba{bottom:133.184000pt;}
.y16a{bottom:134.146667pt;}
.y1b8{bottom:135.200000pt;}
.y18c{bottom:136.386667pt;}
.y178{bottom:136.893333pt;}
.y50{bottom:136.990667pt;}
.y237{bottom:139.266667pt;}
.y14c{bottom:141.186667pt;}
.y3b{bottom:141.480000pt;}
.y125{bottom:142.146667pt;}
.y1e6{bottom:144.706667pt;}
.y263{bottom:145.666667pt;}
.y1fa{bottom:146.306667pt;}
.y1eb{bottom:147.013333pt;}
.y2b9{bottom:148.226667pt;}
.yff{bottom:149.186667pt;}
.y169{bottom:149.506667pt;}
.y4f{bottom:150.750667pt;}
.y1b7{bottom:151.546667pt;}
.y283{bottom:152.346667pt;}
.y238{bottom:152.706667pt;}
.y18b{bottom:153.346667pt;}
.y45{bottom:153.950667pt;}
.y17d{bottom:154.880000pt;}
.y23c{bottom:155.680000pt;}
.y3a{bottom:156.840000pt;}
.y124{bottom:157.506667pt;}
.y14b{bottom:158.146667pt;}
.y20a{bottom:158.466667pt;}
.y1e5{bottom:160.066667pt;}
.y262{bottom:161.026667pt;}
.y93{bottom:161.346667pt;}
.y44{bottom:163.577333pt;}
.y1f9{bottom:164.226667pt;}
.y4e{bottom:164.537333pt;}
.y168{bottom:164.866667pt;}
.y239{bottom:166.173333pt;}
.y220{bottom:169.666667pt;}
.y2e3{bottom:169.986667pt;}
.y18a{bottom:170.626667pt;}
.y2b8{bottom:171.906667pt;}
.y39{bottom:172.200000pt;}
.y123{bottom:172.866667pt;}
.y92{bottom:173.840000pt;}
.y14a{bottom:175.426667pt;}
.y209{bottom:175.746667pt;}
.y261{bottom:176.386667pt;}
.y4d{bottom:177.977333pt;}
.y167{bottom:179.906667pt;}
.y1ae{bottom:182.466667pt;}
.y21f{bottom:185.026667pt;}
.y2e2{bottom:185.346667pt;}
.y2b7{bottom:187.266667pt;}
.y38{bottom:187.560000pt;}
.y189{bottom:187.906667pt;}
.y122{bottom:188.226667pt;}
.y1e4{bottom:190.786667pt;}
.y91{bottom:191.120000pt;}
.y260{bottom:191.426667pt;}
.y149{bottom:192.706667pt;}
.y208{bottom:193.026667pt;}
.y166{bottom:195.266667pt;}
.yf5{bottom:196.546667pt;}
.y1ad{bottom:197.826667pt;}
.y1c6{bottom:198.466667pt;}
.y248{bottom:199.106667pt;}
.y21e{bottom:200.386667pt;}
.y2b6{bottom:202.626667pt;}
.y37{bottom:202.946667pt;}
.yf4{bottom:203.586667pt;}
.y188{bottom:205.186667pt;}
.y1e3{bottom:206.146667pt;}
.y25f{bottom:207.746667pt;}
.y8f{bottom:208.400000pt;}
.y148{bottom:209.986667pt;}
.y207{bottom:210.306667pt;}
.y165{bottom:210.626667pt;}
.y1ac{bottom:213.186667pt;}
.y1c5{bottom:215.746667pt;}
.y2e1{bottom:216.066667pt;}
.y247{bottom:216.386667pt;}
.y2b5{bottom:217.986667pt;}
.y36{bottom:218.306667pt;}
.yf3{bottom:218.626667pt;}
.y121{bottom:218.946667pt;}
.y1e2{bottom:221.506667pt;}
.y187{bottom:222.466667pt;}
.y25e{bottom:223.106667pt;}
.y8d{bottom:225.680000pt;}
.y164{bottom:225.986667pt;}
.y147{bottom:226.946667pt;}
.y206{bottom:227.266667pt;}
.y1ab{bottom:228.546667pt;}
.y21d{bottom:231.106667pt;}
.y1c4{bottom:233.026667pt;}
.y2b4{bottom:233.346667pt;}
.y35{bottom:233.666667pt;}
.yf2{bottom:233.986667pt;}
.y120{bottom:234.306667pt;}
.y1e1{bottom:236.546667pt;}
.y25d{bottom:238.466667pt;}
.y163{bottom:241.346667pt;}
.y8c{bottom:242.973333pt;}
.y1aa{bottom:243.933333pt;}
.y146{bottom:244.253333pt;}
.y205{bottom:244.573333pt;}
.y2e0{bottom:246.173333pt;}
.y21c{bottom:246.493333pt;}
.y34{bottom:249.026667pt;}
.yf1{bottom:249.053333pt;}
.y11f{bottom:249.693333pt;}
.y1c3{bottom:250.013333pt;}
.y246{bottom:250.973333pt;}
.y1e0{bottom:251.613333pt;}
.y25c{bottom:253.853333pt;}
.y162{bottom:256.413333pt;}
.yb3{bottom:259.293333pt;}
.y8a{bottom:259.933333pt;}
.y145{bottom:261.533333pt;}
.y204{bottom:261.853333pt;}
.y33{bottom:264.386667pt;}
.yf0{bottom:264.413333pt;}
.y2b3{bottom:264.733333pt;}
.y11e{bottom:265.053333pt;}
.y1df{bottom:266.973333pt;}
.y1c2{bottom:267.293333pt;}
.y245{bottom:267.933333pt;}
.y25b{bottom:270.173333pt;}
.yb2{bottom:271.773333pt;}
.y1a9{bottom:274.653333pt;}
.yef{bottom:276.573333pt;}
.ye{bottom:276.893333pt;}
.y89{bottom:277.213333pt;}
.y203{bottom:279.133333pt;}
.y32{bottom:279.746667pt;}
.y161{bottom:280.093333pt;}
.y11d{bottom:280.413333pt;}
.y2b2{bottom:281.053333pt;}
.y1de{bottom:282.333333pt;}
.y1c1{bottom:284.573333pt;}
.y244{bottom:285.213333pt;}
.y25a{bottom:285.533333pt;}
.yb0{bottom:289.053333pt;}
.y1a8{bottom:289.693333pt;}
.y21b{bottom:292.253333pt;}
.y87{bottom:294.493333pt;}
.y31{bottom:294.786667pt;}
.y160{bottom:295.453333pt;}
.y2b1{bottom:297.373333pt;}
.y1dd{bottom:297.693333pt;}
.y259{bottom:300.893333pt;}
.y1c0{bottom:301.853333pt;}
.y243{bottom:302.493333pt;}
.y1a7{bottom:305.053333pt;}
.yaf{bottom:306.013333pt;}
.y21a{bottom:307.613333pt;}
.y11c{bottom:308.893333pt;}
.y1c{bottom:309.506667pt;}
.y30{bottom:310.146667pt;}
.y15f{bottom:310.813333pt;}
.y2b0{bottom:312.733333pt;}
.y1dc{bottom:313.053333pt;}
.y86{bottom:314.973333pt;}
.y11b{bottom:315.933333pt;}
.y258{bottom:317.213333pt;}
.y242{bottom:319.773333pt;}
.y1a6{bottom:320.413333pt;}
.y219{bottom:322.973333pt;}
.yae{bottom:323.293333pt;}
.y15e{bottom:323.613333pt;}
.y2f{bottom:325.533333pt;}
.y2af{bottom:329.053333pt;}
.y85{bottom:330.333333pt;}
.y1b{bottom:330.973333pt;}
.y11a{bottom:331.293333pt;}
.y257{bottom:332.573333pt;}
.y1a5{bottom:335.773333pt;}
.y1db{bottom:336.733333pt;}
.y218{bottom:338.333333pt;}
.yad{bottom:340.573333pt;}
.y2e{bottom:340.893333pt;}
.y15d{bottom:342.493333pt;}
.y2ae{bottom:345.373333pt;}
.y256{bottom:347.933333pt;}
.y1da{bottom:352.093333pt;}
.y1a{bottom:352.413333pt;}
.y84{bottom:353.693333pt;}
.y2df{bottom:354.013333pt;}
.y2d{bottom:355.933333pt;}
.yab{bottom:357.853333pt;}
.y1a4{bottom:359.453333pt;}
.y2ad{bottom:360.773333pt;}
.y1d9{bottom:367.493333pt;}
.y83{bottom:369.093333pt;}
.y255{bottom:370.693333pt;}
.y19{bottom:373.853333pt;}
.y1a3{bottom:374.853333pt;}
.yaa{bottom:375.173333pt;}
.y2ac{bottom:377.093333pt;}
.y217{bottom:377.413333pt;}
.y2c{bottom:378.973333pt;}
.y119{bottom:379.973333pt;}
.y1d8{bottom:380.293333pt;}
.y134{bottom:383.040000pt;}
.y82{bottom:384.133333pt;}
.y2de{bottom:384.453333pt;}
.y1d7{bottom:387.013333pt;}
.y1a2{bottom:387.653333pt;}
.ya9{bottom:392.133333pt;}
.y2ab{bottom:392.453333pt;}
.y2b{bottom:392.733333pt;}
.y216{bottom:392.773333pt;}
.y1a1{bottom:394.373333pt;}
.y18{bottom:395.293333pt;}
.y1d6{bottom:399.493333pt;}
.y2dd{bottom:400.133333pt;}
.y1f3{bottom:400.960000pt;}
.y215{bottom:405.573333pt;}
.y2a{bottom:406.493333pt;}
.y1a0{bottom:406.533333pt;}
.y81{bottom:407.813333pt;}
.y1af{bottom:408.320000pt;}
.y2aa{bottom:408.773333pt;}
.ya8{bottom:409.413333pt;}
.y1f5{bottom:409.600000pt;}
.y254{bottom:409.733333pt;}
.y214{bottom:412.293333pt;}
.y2dc{bottom:415.173333pt;}
.y17{bottom:416.733333pt;}
.y29{bottom:420.573333pt;}
.y253{bottom:422.853333pt;}
.y80{bottom:423.173333pt;}
.y2a9{bottom:423.813333pt;}
.y213{bottom:424.453333pt;}
.y22d{bottom:425.920000pt;}
.y252{bottom:429.573333pt;}
.ya7{bottom:429.893333pt;}
.y2db{bottom:430.533333pt;}
.y28{bottom:434.333333pt;}
.y16{bottom:438.213333pt;}
.y7f{bottom:438.533333pt;}
.yee{bottom:440.133333pt;}
.y251{bottom:441.733333pt;}
.y278{bottom:444.800000pt;}
.y2da{bottom:445.893333pt;}
.y2a8{bottom:447.173333pt;}
.y27{bottom:448.133333pt;}
.yed{bottom:452.613333pt;}
.y7e{bottom:453.573333pt;}
.y15{bottom:459.973333pt;}
.ya6{bottom:460.933333pt;}
.y26{bottom:461.893333pt;}
.y2a7{bottom:462.533333pt;}
.yec{bottom:469.893333pt;}
.y25{bottom:475.653333pt;}
.ya5{bottom:476.293333pt;}
.y2d9{bottom:476.613333pt;}
.y2a6{bottom:477.920000pt;}
.y7d{bottom:478.240000pt;}
.y14{bottom:481.413333pt;}
.yeb{bottom:487.200000pt;}
.y24{bottom:489.413333pt;}
.ya4{bottom:491.680000pt;}
.y2a5{bottom:493.280000pt;}
.y7c{bottom:493.600000pt;}
.y13{bottom:502.853333pt;}
.y23{bottom:503.173333pt;}
.yea{bottom:504.480000pt;}
.ya3{bottom:504.800000pt;}
.y2d8{bottom:507.360000pt;}
.y2a4{bottom:508.640000pt;}
.y7b{bottom:508.960000pt;}
.ya2{bottom:511.200000pt;}
.y22{bottom:516.933333pt;}
.y118{bottom:517.600000pt;}
.ye9{bottom:521.440000pt;}
.y2d7{bottom:522.720000pt;}
.ya1{bottom:523.360000pt;}
.y7a{bottom:524.000000pt;}
.y12{bottom:524.293333pt;}
.ybe{bottom:526.080000pt;}
.y21{bottom:531.013333pt;}
.y117{bottom:533.600000pt;}
.y2d6{bottom:537.760000pt;}
.ye8{bottom:538.720000pt;}
.y2a3{bottom:539.360000pt;}
.y79{bottom:540.320000pt;}
.y144{bottom:541.920000pt;}
.y20{bottom:544.773333pt;}
.y11{bottom:545.733333pt;}
.y15c{bottom:546.080000pt;}
.y2d5{bottom:553.440000pt;}
.y2a2{bottom:554.720000pt;}
.y78{bottom:555.680000pt;}
.ye7{bottom:556.000000pt;}
.y1f{bottom:558.560000pt;}
.y143{bottom:559.200000pt;}
.y116{bottom:561.120000pt;}
.y15b{bottom:561.440000pt;}
.y10{bottom:567.200000pt;}
.y2d4{bottom:568.800000pt;}
.y2a1{bottom:570.080000pt;}
.y77{bottom:570.720000pt;}
.y1e{bottom:572.320000pt;}
.ye6{bottom:573.280000pt;}
.y142{bottom:576.160000pt;}
.y15a{bottom:576.800000pt;}
.y2d3{bottom:583.840000pt;}
.y1d5{bottom:584.480000pt;}
.y2a0{bottom:585.440000pt;}
.y1d{bottom:585.760000pt;}
.y19f{bottom:586.080000pt;}
.y76{bottom:587.040000pt;}
.yf{bottom:588.640000pt;}
.y115{bottom:588.960000pt;}
.y186{bottom:590.560000pt;}
.ye5{bottom:591.520000pt;}
.y159{bottom:592.160000pt;}
.y140{bottom:593.440000pt;}
.y202{bottom:598.586667pt;}
.y2d2{bottom:599.226667pt;}
.y1bf{bottom:599.866667pt;}
.y75{bottom:600.506667pt;}
.y29f{bottom:600.826667pt;}
.y19e{bottom:601.466667pt;}
.y212{bottom:604.026667pt;}
.y74{bottom:607.226667pt;}
.y158{bottom:607.546667pt;}
.y185{bottom:607.866667pt;}
.y13f{bottom:610.746667pt;}
.ye4{bottom:611.386667pt;}
.y2d1{bottom:614.586667pt;}
.y1d4{bottom:615.226667pt;}
.y201{bottom:615.866667pt;}
.y114{bottom:616.506667pt;}
.y19d{bottom:616.826667pt;}
.y1be{bottom:617.146667pt;}
.ye3{bottom:618.426667pt;}
.y73{bottom:622.586667pt;}
.y157{bottom:622.906667pt;}
.y184{bottom:625.146667pt;}
.y289{bottom:627.706667pt;}
.y13e{bottom:628.026667pt;}
.y2d0{bottom:629.946667pt;}
.y1d3{bottom:630.586667pt;}
.y29e{bottom:631.226667pt;}
.y19c{bottom:632.186667pt;}
.ya0{bottom:632.826667pt;}
.y200{bottom:633.146667pt;}
.ye2{bottom:633.786667pt;}
.y1bd{bottom:634.426667pt;}
.y72{bottom:637.946667pt;}
.y183{bottom:642.106667pt;}
.y113{bottom:644.346667pt;}
.y288{bottom:644.986667pt;}
.y2cf{bottom:645.306667pt;}
.y9f{bottom:645.320000pt;}
.y1d2{bottom:645.626667pt;}
.y29d{bottom:646.266667pt;}
.y19b{bottom:647.546667pt;}
.ye1{bottom:649.146667pt;}
.y1ff{bottom:650.106667pt;}
.y241{bottom:651.066667pt;}
.y1bc{bottom:651.706667pt;}
.y156{bottom:652.986667pt;}
.y71{bottom:653.306667pt;}
.y182{bottom:659.386667pt;}
.y2ce{bottom:660.346667pt;}
.y1d1{bottom:660.986667pt;}
.y287{bottom:661.946667pt;}
.ye0{bottom:662.266667pt;}
.y112{bottom:662.586667pt;}
.y9e{bottom:662.600000pt;}
.y19a{bottom:662.906667pt;}
.y1fe{bottom:667.386667pt;}
.y155{bottom:668.346667pt;}
.y70{bottom:668.666667pt;}
.y29c{bottom:669.946667pt;}
.y2cd{bottom:676.026667pt;}
.y1d0{bottom:676.346667pt;}
.y181{bottom:676.666667pt;}
.y199{bottom:678.266667pt;}
.y286{bottom:679.226667pt;}
.y9d{bottom:679.880000pt;}
.y111{bottom:680.826667pt;}
.ydf{bottom:681.146667pt;}
.yf6{bottom:682.880000pt;}
.y154{bottom:683.706667pt;}
.y6f{bottom:684.026667pt;}
.y1fd{bottom:684.666667pt;}
.y240{bottom:685.306667pt;}
.y1bb{bottom:685.946667pt;}
.y2cc{bottom:691.066667pt;}
.y1cf{bottom:691.706667pt;}
.y198{bottom:693.626667pt;}
.y180{bottom:693.946667pt;}
.y110{bottom:696.186667pt;}
.y285{bottom:696.506667pt;}
.y9c{bottom:696.840000pt;}
.y6e{bottom:699.066667pt;}
.y29b{bottom:700.666667pt;}
.y1fc{bottom:701.946667pt;}
.y23f{bottom:702.586667pt;}
.y1ba{bottom:703.226667pt;}
.y2cb{bottom:706.746667pt;}
.y1ce{bottom:707.066667pt;}
.y197{bottom:708.666667pt;}
.y17e{bottom:710.906667pt;}
.y10f{bottom:711.226667pt;}
.y284{bottom:713.826667pt;}
.y9b{bottom:714.160000pt;}
.y153{bottom:714.466667pt;}
.y29a{bottom:717.026667pt;}
.y1fb{bottom:718.946667pt;}
.y23e{bottom:719.906667pt;}
.y1b9{bottom:720.546667pt;}
.y2ca{bottom:721.826667pt;}
.y1cd{bottom:722.466667pt;}
.y6d{bottom:722.786667pt;}
.y196{bottom:724.066667pt;}
.y10e{bottom:726.626667pt;}
.y152{bottom:729.826667pt;}
.y9a{bottom:731.440000pt;}
.y299{bottom:732.386667pt;}
.y23d{bottom:737.186667pt;}
.y2c9{bottom:737.506667pt;}
.y1cc{bottom:737.826667pt;}
.y6c{bottom:738.146667pt;}
.y195{bottom:739.426667pt;}
.y10d{bottom:741.666667pt;}
.y250{bottom:747.746667pt;}
.y99{bottom:751.906667pt;}
.y2c8{bottom:752.546667pt;}
.y6b{bottom:753.506667pt;}
.y10c{bottom:757.026667pt;}
.y151{bottom:760.866667pt;}
.y298{bottom:764.066667pt;}
.y194{bottom:767.906667pt;}
.y2c7{bottom:768.226667pt;}
.y6a{bottom:768.546667pt;}
.y1cb{bottom:768.866667pt;}
.y10b{bottom:769.506667pt;}
.y127{bottom:770.880000pt;}
.y211{bottom:771.106667pt;}
.y24f{bottom:771.426667pt;}
.y193{bottom:774.946667pt;}
.y150{bottom:776.226667pt;}
.y297{bottom:779.426667pt;}
.y98{bottom:782.946667pt;}
.y69{bottom:784.226667pt;}
.yde{bottom:786.466667pt;}
.y24e{bottom:786.786667pt;}
.y192{bottom:789.986667pt;}
.y14f{bottom:791.586667pt;}
.y210{bottom:794.786667pt;}
.y296{bottom:795.426667pt;}
.y97{bottom:797.986667pt;}
.ydd{bottom:798.960000pt;}
.y68{bottom:799.266667pt;}
.y1ca{bottom:799.586667pt;}
.y24d{bottom:802.146667pt;}
.y14e{bottom:804.706667pt;}
.y191{bottom:805.346667pt;}
.y20f{bottom:810.146667pt;}
.y295{bottom:810.786667pt;}
.y14d{bottom:811.106667pt;}
.y1c9{bottom:812.386667pt;}
.y96{bottom:813.346667pt;}
.y2c6{bottom:813.666667pt;}
.y67{bottom:814.626667pt;}
.ydb{bottom:816.240000pt;}
.y24c{bottom:817.506667pt;}
.y190{bottom:818.466667pt;}
.y1c8{bottom:819.106667pt;}
.y18f{bottom:825.186667pt;}
.y20e{bottom:825.506667pt;}
.y16d{bottom:825.600000pt;}
.y294{bottom:826.146667pt;}
.y95{bottom:826.786667pt;}
.y2c5{bottom:829.373333pt;}
.y66{bottom:830.013333pt;}
.y24b{bottom:830.333333pt;}
.y1c7{bottom:831.293333pt;}
.y1e7{bottom:832.960000pt;}
.y94{bottom:833.213333pt;}
.yda{bottom:833.533333pt;}
.y24a{bottom:837.053333pt;}
.y18e{bottom:837.373333pt;}
.y20d{bottom:838.333333pt;}
.y293{bottom:842.493333pt;}
.y2c4{bottom:844.413333pt;}
.y20c{bottom:845.053333pt;}
.y65{bottom:845.373333pt;}
.yb7{bottom:847.680000pt;}
.y249{bottom:849.213333pt;}
.yd9{bottom:850.493333pt;}
.y268{bottom:851.200000pt;}
.y20b{bottom:857.213333pt;}
.y292{bottom:857.853333pt;}
.ybb{bottom:857.920000pt;}
.y221{bottom:859.840000pt;}
.y64{bottom:860.733333pt;}
.yd8{bottom:867.773333pt;}
.y2c3{bottom:868.093333pt;}
.y291{bottom:873.213333pt;}
.y63{bottom:876.093333pt;}
.yd{bottom:876.413333pt;}
.yc{bottom:881.213333pt;}
.y2c2{bottom:883.453333pt;}
.yd7{bottom:885.053333pt;}
.y290{bottom:889.533333pt;}
.y62{bottom:891.453333pt;}
.yb{bottom:896.253333pt;}
.y2c1{bottom:898.813333pt;}
.yd6{bottom:902.333333pt;}
.y28f{bottom:904.893333pt;}
.y10a{bottom:906.493333pt;}
.y61{bottom:906.813333pt;}
.y13d{bottom:909.053333pt;}
.y2c0{bottom:914.173333pt;}
.yd5{bottom:919.293333pt;}
.y28e{bottom:920.253333pt;}
.ya{bottom:920.573333pt;}
.y109{bottom:921.853333pt;}
.y60{bottom:922.173333pt;}
.y13c{bottom:926.333333pt;}
.y2bf{bottom:929.533333pt;}
.y28d{bottom:936.573333pt;}
.y108{bottom:937.213333pt;}
.y5f{bottom:937.533333pt;}
.yd4{bottom:937.853333pt;}
.y9{bottom:942.013333pt;}
.y13b{bottom:943.613333pt;}
.yd3{bottom:944.573333pt;}
.y2be{bottom:944.893333pt;}
.y28c{bottom:951.973333pt;}
.y107{bottom:952.613333pt;}
.y5e{bottom:952.933333pt;}
.y13a{bottom:960.933333pt;}
.y28b{bottom:967.013333pt;}
.y8{bottom:967.333333pt;}
.y106{bottom:967.653333pt;}
.y5d{bottom:967.973333pt;}
.y5a{bottom:970.240000pt;}
.y139{bottom:978.213333pt;}
.y28a{bottom:982.373333pt;}
.y105{bottom:983.013333pt;}
.y5c{bottom:983.333333pt;}
.y6{bottom:997.093333pt;}
.y1{bottom:1001.893333pt;}
.hb{height:3.702500pt;}
.h13{height:5.022500pt;}
.h1a{height:16.306667pt;}
.h2b{height:16.320000pt;}
.h1b{height:16.323125pt;}
.h2e{height:16.331250pt;}
.h40{height:16.352000pt;}
.h19{height:16.626667pt;}
.h2d{height:16.640000pt;}
.h1c{height:16.658667pt;}
.h1d{height:16.666667pt;}
.h33{height:16.672000pt;}
.h18{height:16.770000pt;}
.h44{height:20.800000pt;}
.h7{height:21.643125pt;}
.h50{height:22.280625pt;}
.h15{height:24.640000pt;}
.h11{height:26.381250pt;}
.h30{height:27.523125pt;}
.h22{height:29.760000pt;}
.h32{height:32.765625pt;}
.he{height:36.431250pt;}
.hd{height:37.410000pt;}
.h52{height:37.537500pt;}
.h21{height:38.008125pt;}
.h43{height:38.139187pt;}
.h4b{height:42.570000pt;}
.h4a{height:42.699000pt;}
.h20{height:43.250625pt;}
.hf{height:47.713750pt;}
.h12{height:49.020000pt;}
.h28{height:49.803750pt;}
.h3d{height:49.934812pt;}
.h8{height:51.600000pt;}
.h14{height:52.736250pt;}
.h5{height:52.762500pt;}
.h6{height:53.471250pt;}
.ha{height:54.180000pt;}
.h46{height:54.309000pt;}
.h24{height:55.046250pt;}
.h3f{height:55.177312pt;}
.h17{height:55.256809pt;}
.h37{height:56.157292pt;}
.h16{height:56.405000pt;}
.h4e{height:56.760000pt;}
.h23{height:57.667500pt;}
.h49{height:57.798563pt;}
.h3{height:58.563750pt;}
.h47{height:60.288750pt;}
.h31{height:61.113333pt;}
.h35{height:62.781250pt;}
.h34{height:62.812500pt;}
.h2c{height:64.500000pt;}
.h27{height:65.531250pt;}
.h26{height:65.662312pt;}
.h3e{height:71.165625pt;}
.h3a{height:72.342083pt;}
.h2{height:72.346667pt;}
.h1f{height:72.577083pt;}
.h9{height:74.820000pt;}
.h45{height:95.800833pt;}
.h2f{height:100.160000pt;}
.h25{height:103.360000pt;}
.h4{height:103.680000pt;}
.h2a{height:115.800833pt;}
.h4d{height:123.382083pt;}
.h38{height:130.880000pt;}
.h36{height:132.480000pt;}
.h48{height:135.360000pt;}
.h3c{height:136.075417pt;}
.h4f{height:144.000000pt;}
.h29{height:146.240000pt;}
.h1e{height:147.520000pt;}
.h41{height:162.240000pt;}
.h51{height:167.040000pt;}
.h39{height:169.600000pt;}
.h3b{height:174.400000pt;}
.h4c{height:174.720000pt;}
.h42{height:180.480000pt;}
.h10{height:189.160000pt;}
.hc{height:596.946667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:92.180000pt;}
.w32{width:112.672000pt;}
.w4a{width:112.704000pt;}
.w8{width:114.560000pt;}
.w4{width:117.780000pt;}
.w2a{width:125.472000pt;}
.w2e{width:125.792000pt;}
.w26{width:126.112000pt;}
.wc{width:127.400000pt;}
.w36{width:131.552000pt;}
.w31{width:131.584000pt;}
.w49{width:131.872000pt;}
.w10{width:137.306667pt;}
.w18{width:137.626667pt;}
.w4d{width:140.866667pt;}
.w29{width:141.186667pt;}
.w43{width:143.106667pt;}
.w11{width:143.400000pt;}
.w44{width:143.746667pt;}
.w6{width:144.960000pt;}
.w21{width:150.786667pt;}
.w3f{width:154.946667pt;}
.w40{width:155.906667pt;}
.wa{width:160.040000pt;}
.w3a{width:160.066667pt;}
.w38{width:169.026667pt;}
.w37{width:169.373333pt;}
.w13{width:169.600000pt;}
.w2d{width:169.666667pt;}
.w1c{width:169.960000pt;}
.w1b{width:169.986667pt;}
.w1a{width:170.280000pt;}
.wd{width:175.106667pt;}
.w39{width:178.946667pt;}
.w3e{width:195.906667pt;}
.w20{width:196.253333pt;}
.w14{width:196.800000pt;}
.w42{width:198.146667pt;}
.wf{width:204.880000pt;}
.w28{width:216.413333pt;}
.w1f{width:218.333333pt;}
.w9{width:230.813333pt;}
.w17{width:233.360000pt;}
.w30{width:263.453333pt;}
.w25{width:263.773333pt;}
.w35{width:263.813333pt;}
.w45{width:272.000000pt;}
.w4c{width:273.373333pt;}
.w1d{width:277.120000pt;}
.w12{width:280.960000pt;}
.w3b{width:305.920000pt;}
.w4e{width:316.480000pt;}
.w23{width:319.680000pt;}
.w50{width:320.453333pt;}
.w15{width:349.120000pt;}
.w48{width:358.240000pt;}
.w22{width:360.960000pt;}
.w4f{width:380.800000pt;}
.w3c{width:444.480000pt;}
.w46{width:449.600000pt;}
.wb{width:463.840000pt;}
.w33{width:466.560000pt;}
.w2b{width:472.960000pt;}
.w27{width:484.346667pt;}
.w41{width:486.266667pt;}
.we{width:486.880000pt;}
.w7{width:506.720000pt;}
.w3d{width:508.026667pt;}
.w2f{width:509.306667pt;}
.w19{width:511.520000pt;}
.w2c{width:513.146667pt;}
.w16{width:515.680000pt;}
.w4b{width:528.506667pt;}
.w5{width:530.440000pt;}
.w24{width:541.946667pt;}
.w3{width:553.480000pt;}
.w34{width:566.333333pt;}
.w1e{width:566.653333pt;}
.w47{width:604.093333pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xaf{left:2.173333pt;}
.x1e{left:6.112000pt;}
.x16{left:7.373333pt;}
.x4{left:11.826667pt;}
.x14{left:14.708000pt;}
.x19{left:16.308000pt;}
.x5{left:17.266667pt;}
.x3c{left:18.880000pt;}
.x84{left:20.800000pt;}
.x7e{left:23.040000pt;}
.x3a{left:23.986667pt;}
.x13{left:25.908000pt;}
.x7c{left:27.520000pt;}
.x54{left:28.786667pt;}
.x28{left:31.346667pt;}
.xbd{left:32.293333pt;}
.x7a{left:33.602667pt;}
.x5e{left:34.880000pt;}
.x94{left:36.480000pt;}
.x31{left:37.760000pt;}
.x6{left:38.733333pt;}
.x27{left:40.346667pt;}
.x1a{left:42.260000pt;}
.x35{left:44.173333pt;}
.xe{left:45.140000pt;}
.x23{left:46.066667pt;}
.x6a{left:48.026667pt;}
.xd{left:48.980000pt;}
.x33{left:49.933333pt;}
.x1c{left:50.900000pt;}
.xbe{left:52.133333pt;}
.x25{left:53.160000pt;}
.xb8{left:54.082667pt;}
.x17{left:55.373333pt;}
.x95{left:56.320000pt;}
.x4a{left:57.533333pt;}
.x1b{left:58.902667pt;}
.x3f{left:60.813333pt;}
.x3e{left:62.080000pt;}
.x99{left:63.066667pt;}
.x86{left:64.026667pt;}
.x11{left:64.982667pt;}
.x8c{left:67.293333pt;}
.x10{left:68.182667pt;}
.x1{left:69.804000pt;}
.x12{left:71.382667pt;}
.x2a{left:73.306667pt;}
.x60{left:74.906667pt;}
.x7{left:76.832000pt;}
.x34{left:77.786667pt;}
.x75{left:79.066667pt;}
.x36{left:80.986667pt;}
.x46{left:83.173333pt;}
.x2{left:84.822667pt;}
.xb3{left:86.114667pt;}
.x40{left:87.053333pt;}
.x65{left:88.706667pt;}
.xb7{left:89.629333pt;}
.x87{left:90.586667pt;}
.x1d{left:91.542667pt;}
.x96{left:92.826667pt;}
.x76{left:93.821333pt;}
.x18{left:95.062667pt;}
.x57{left:96.333333pt;}
.x59{left:98.893333pt;}
.x58{left:101.453333pt;}
.xa1{left:102.461333pt;}
.x2f{left:103.373333pt;}
.x2b{left:105.346667pt;}
.x66{left:106.653333pt;}
.x29{left:108.546667pt;}
.xf{left:110.742667pt;}
.x73{left:111.813333pt;}
.x68{left:113.952000pt;}
.x80{left:116.829333pt;}
.x97{left:119.066667pt;}
.x8f{left:120.093333pt;}
.x4b{left:121.146667pt;}
.x7f{left:123.869333pt;}
.x1f{left:124.864000pt;}
.x78{left:126.144000pt;}
.x91{left:127.386667pt;}
.xb9{left:128.349333pt;}
.x79{left:129.629333pt;}
.x48{left:133.026667pt;}
.x22{left:134.773333pt;}
.xbc{left:136.666667pt;}
.x53{left:139.280000pt;}
.x90{left:140.546667pt;}
.x47{left:141.986667pt;}
.x21{left:143.760000pt;}
.xc4{left:145.021333pt;}
.xc2{left:149.821333pt;}
.xc3{left:152.061333pt;}
.x39{left:153.680000pt;}
.x82{left:154.946667pt;}
.xbb{left:158.786667pt;}
.x8b{left:159.680000pt;}
.x3{left:162.000000pt;}
.xb6{left:163.901333pt;}
.x2e{left:165.200000pt;}
.x72{left:166.813333pt;}
.xb0{left:167.773333pt;}
.x8d{left:171.013333pt;}
.x37{left:174.133333pt;}
.x4c{left:176.666667pt;}
.x50{left:181.466667pt;}
.x8e{left:182.853333pt;}
.x88{left:184.386667pt;}
.x41{left:185.653333pt;}
.xa6{left:186.973333pt;}
.x15{left:194.640000pt;}
.x9a{left:196.866667pt;}
.x61{left:198.133333pt;}
.x5a{left:200.053333pt;}
.xbf{left:205.760000pt;}
.xa8{left:207.066667pt;}
.xaa{left:208.546667pt;}
.x81{left:213.189333pt;}
.x70{left:215.680000pt;}
.x4d{left:216.933333pt;}
.x49{left:220.800000pt;}
.x67{left:222.973333pt;}
.x77{left:225.381333pt;}
.xa5{left:234.013333pt;}
.x51{left:236.293333pt;}
.x9e{left:239.133333pt;}
.x71{left:242.240000pt;}
.xae{left:243.933333pt;}
.xb1{left:245.946667pt;}
.xb{left:249.053333pt;}
.xb2{left:250.426667pt;}
.xc0{left:251.546667pt;}
.x43{left:255.680000pt;}
.x64{left:256.960000pt;}
.x24{left:258.973333pt;}
.xa7{left:263.226667pt;}
.x4f{left:267.653333pt;}
.x4e{left:278.213333pt;}
.x8a{left:281.093333pt;}
.x52{left:285.253333pt;}
.x74{left:289.280000pt;}
.x30{left:293.253333pt;}
.x20{left:296.773333pt;}
.x45{left:297.920000pt;}
.x9f{left:301.413333pt;}
.x5d{left:312.133333pt;}
.xa9{left:328.226667pt;}
.x69{left:332.933333pt;}
.x44{left:335.040000pt;}
.xab{left:339.653333pt;}
.xac{left:352.773333pt;}
.x92{left:357.600000pt;}
.x3b{left:359.200000pt;}
.x83{left:372.000000pt;}
.x55{left:373.280000pt;}
.xa0{left:378.400000pt;}
.x9d{left:379.360000pt;}
.x63{left:382.240000pt;}
.x7b{left:390.560000pt;}
.x6f{left:392.800000pt;}
.x5c{left:396.960000pt;}
.x2d{left:406.880000pt;}
.xc1{left:416.160000pt;}
.x6d{left:420.960000pt;}
.xb4{left:453.946667pt;}
.x32{left:469.000000pt;}
.x5f{left:482.760000pt;}
.x26{left:490.440000pt;}
.xa2{left:491.706667pt;}
.x38{left:495.866667pt;}
.x3d{left:497.160000pt;}
.x56{left:511.560000pt;}
.x85{left:513.826667pt;}
.x93{left:527.906667pt;}
.x6b{left:529.826667pt;}
.xad{left:533.986667pt;}
.x5b{left:537.186667pt;}
.x2c{left:538.146667pt;}
.x98{left:539.106667pt;}
.x7d{left:541.986667pt;}
.x9b{left:548.066667pt;}
.xa3{left:550.946667pt;}
.x6e{left:557.986667pt;}
.x42{left:573.026667pt;}
.x6c{left:578.146667pt;}
.x62{left:585.186667pt;}
.xb5{left:586.466667pt;}
.xba{left:588.066667pt;}
.xa{left:601.213333pt;}
.x89{left:603.133333pt;}
.xa4{left:620.093333pt;}
.x9c{left:630.973333pt;}
.x9{left:680.933333pt;}
.x8{left:697.573333pt;}
.xc{left:717.413333pt;}
}




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