
    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_f81cbd15786bc7b957525a81.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_690a4bc99eebdceff559313f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.049805;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_09ba11acf146c4caf506965a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.103027;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_4bca1f950634e4454e4a62c1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.090820;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_82061521216bedda56efa31e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.877930;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_a5af4dff1a184ab1b1bba8b0.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.101074;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_42f5519e0645fe45948b4fa5.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_f15811f16ee8cad15e893613.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.056152;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_9efa54a82b006a1cfcf3de21.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.817871;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_eb2f7ce259f28e5e8dd7a40d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{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);}
.v2{vertical-align:-21.978000px;}
.v4{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.978000px;}
.v3{vertical-align:180.000000px;}
.ls18{letter-spacing:-4.884000px;}
.lsb{letter-spacing:-1.776000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.051641px;}
.ls11{letter-spacing:0.054460px;}
.ls10{letter-spacing:0.056980px;}
.ls1c{letter-spacing:0.066000px;}
.lsd{letter-spacing:0.132000px;}
.ls9{letter-spacing:0.198000px;}
.ls1d{letter-spacing:0.264000px;}
.ls13{letter-spacing:0.330000px;}
.ls16{letter-spacing:0.396000px;}
.ls1b{letter-spacing:0.528000px;}
.lsc{letter-spacing:0.594000px;}
.ls1e{letter-spacing:0.660000px;}
.ls8{letter-spacing:0.726000px;}
.ls1a{letter-spacing:0.792000px;}
.ls12{letter-spacing:0.924000px;}
.ls14{letter-spacing:0.990000px;}
.lsa{letter-spacing:1.056000px;}
.ls17{letter-spacing:1.122000px;}
.lsf{letter-spacing:1.192800px;}
.ls4{letter-spacing:1.680000px;}
.ls20{letter-spacing:1.688400px;}
.ls1f{letter-spacing:1.716000px;}
.ls2{letter-spacing:2.100000px;}
.ls15{letter-spacing:2.112000px;}
.ls1{letter-spacing:3.360000px;}
.ls19{letter-spacing:8.830200px;}
.ls7{letter-spacing:12.000000px;}
.ls5{letter-spacing:19.680000px;}
.lse{letter-spacing:37.747200px;}
.ls3{letter-spacing:1347.291000px;}
.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;}
}
.ws26{word-spacing:-99.360000px;}
.ws10{word-spacing:-66.000000px;}
.wsd{word-spacing:-48.000000px;}
.ws3f{word-spacing:-44.418000px;}
.ws6b{word-spacing:-42.570000px;}
.ws31{word-spacing:-41.514000px;}
.ws2{word-spacing:-27.360000px;}
.ws55{word-spacing:-17.292000px;}
.ws1a{word-spacing:-17.226000px;}
.ws3{word-spacing:-17.100000px;}
.ws1{word-spacing:-16.500000px;}
.ws4{word-spacing:-15.000000px;}
.wsc{word-spacing:-12.000000px;}
.ws46{word-spacing:-11.616000px;}
.ws8{word-spacing:-10.020000px;}
.wsa{word-spacing:-9.619500px;}
.ws5e{word-spacing:-8.745000px;}
.ws27{word-spacing:-7.008000px;}
.ws42{word-spacing:-6.666000px;}
.ws69{word-spacing:-5.940000px;}
.ws43{word-spacing:-5.148000px;}
.ws3b{word-spacing:-4.884000px;}
.ws74{word-spacing:-4.818000px;}
.ws37{word-spacing:-4.422000px;}
.ws73{word-spacing:-3.828000px;}
.ws6{word-spacing:-3.360000px;}
.ws36{word-spacing:-3.300000px;}
.ws60{word-spacing:-3.102000px;}
.ws6a{word-spacing:-3.036000px;}
.ws7f{word-spacing:-2.838000px;}
.ws3a{word-spacing:-2.640000px;}
.ws54{word-spacing:-2.376000px;}
.ws4b{word-spacing:-2.178000px;}
.ws39{word-spacing:-2.112000px;}
.ws68{word-spacing:-1.716000px;}
.ws5{word-spacing:-1.680000px;}
.ws61{word-spacing:-1.650000px;}
.wsb{word-spacing:-1.632000px;}
.ws1c{word-spacing:-1.584000px;}
.ws18{word-spacing:-1.452000px;}
.ws75{word-spacing:-1.188000px;}
.ws41{word-spacing:-1.122000px;}
.ws9{word-spacing:-1.080000px;}
.ws12{word-spacing:-1.056000px;}
.ws24{word-spacing:-0.990000px;}
.ws32{word-spacing:-0.924000px;}
.ws56{word-spacing:-0.792000px;}
.wsf{word-spacing:-0.726000px;}
.ws67{word-spacing:-0.660000px;}
.ws15{word-spacing:-0.594000px;}
.ws5c{word-spacing:-0.528000px;}
.ws3c{word-spacing:-0.396000px;}
.ws28{word-spacing:-0.330000px;}
.ws64{word-spacing:-0.264000px;}
.ws11{word-spacing:-0.198000px;}
.ws16{word-spacing:-0.132000px;}
.ws63{word-spacing:-0.066000px;}
.ws0{word-spacing:0.000000px;}
.ws66{word-spacing:0.066000px;}
.ws70{word-spacing:0.462000px;}
.ws1b{word-spacing:0.726000px;}
.ws22{word-spacing:1.188000px;}
.ws14{word-spacing:1.776000px;}
.ws25{word-spacing:1.914000px;}
.ws4d{word-spacing:2.640000px;}
.ws80{word-spacing:2.838000px;}
.ws4a{word-spacing:3.036000px;}
.ws87{word-spacing:3.234000px;}
.ws4c{word-spacing:3.366000px;}
.ws2f{word-spacing:3.564000px;}
.ws4f{word-spacing:3.828000px;}
.ws20{word-spacing:4.026000px;}
.ws59{word-spacing:4.290000px;}
.ws6c{word-spacing:4.818000px;}
.ws4e{word-spacing:5.346000px;}
.ws86{word-spacing:5.412000px;}
.ws6f{word-spacing:5.808000px;}
.ws1e{word-spacing:6.270000px;}
.ws2a{word-spacing:6.336000px;}
.ws44{word-spacing:6.468000px;}
.ws72{word-spacing:6.534000px;}
.ws71{word-spacing:6.666000px;}
.ws33{word-spacing:7.062000px;}
.ws85{word-spacing:7.458000px;}
.ws7d{word-spacing:8.052000px;}
.ws17{word-spacing:8.118000px;}
.ws52{word-spacing:8.712000px;}
.ws2c{word-spacing:8.910000px;}
.ws34{word-spacing:8.976000px;}
.ws6e{word-spacing:9.108000px;}
.ws7b{word-spacing:9.570000px;}
.ws5f{word-spacing:9.702000px;}
.ws7c{word-spacing:9.834000px;}
.ws53{word-spacing:9.966000px;}
.ws49{word-spacing:10.494000px;}
.ws79{word-spacing:10.692000px;}
.ws35{word-spacing:11.088000px;}
.ws5d{word-spacing:11.220000px;}
.ws78{word-spacing:11.616000px;}
.ws83{word-spacing:11.880000px;}
.wse{word-spacing:12.000000px;}
.ws2d{word-spacing:12.342000px;}
.ws23{word-spacing:13.728000px;}
.ws51{word-spacing:14.058000px;}
.ws40{word-spacing:14.124000px;}
.ws38{word-spacing:14.256000px;}
.ws3d{word-spacing:14.454000px;}
.ws5a{word-spacing:14.982000px;}
.ws7a{word-spacing:15.114000px;}
.ws48{word-spacing:15.444000px;}
.ws65{word-spacing:15.576000px;}
.ws2b{word-spacing:15.774000px;}
.ws30{word-spacing:17.160000px;}
.ws77{word-spacing:17.358000px;}
.ws1f{word-spacing:17.754000px;}
.ws76{word-spacing:18.348000px;}
.ws62{word-spacing:18.612000px;}
.ws19{word-spacing:18.678000px;}
.ws58{word-spacing:19.008000px;}
.ws47{word-spacing:19.074000px;}
.ws29{word-spacing:19.272000px;}
.ws50{word-spacing:19.866000px;}
.ws45{word-spacing:20.130000px;}
.ws81{word-spacing:22.440000px;}
.ws7e{word-spacing:22.572000px;}
.ws5b{word-spacing:24.420000px;}
.ws84{word-spacing:25.212000px;}
.ws6d{word-spacing:28.314000px;}
.ws13{word-spacing:28.380000px;}
.ws2e{word-spacing:29.370000px;}
.ws3e{word-spacing:32.142000px;}
.ws57{word-spacing:32.736000px;}
.ws1d{word-spacing:34.980000px;}
.ws21{word-spacing:37.752000px;}
.ws82{word-spacing:55.110000px;}
.ws7{word-spacing:345.000000px;}
._17{margin-left:-300.000000px;}
._2d{margin-left:-45.876000px;}
._3{margin-left:-34.072200px;}
._35{margin-left:-15.648000px;}
._0{margin-left:-14.637600px;}
._23{margin-left:-12.000000px;}
._22{margin-left:-10.776000px;}
._2b{margin-left:-9.633000px;}
._1{margin-left:-8.447400px;}
._a{margin-left:-7.132800px;}
._16{margin-left:-6.078006px;}
._2{margin-left:-4.987200px;}
._4{margin-left:-3.649800px;}
._9{margin-left:-2.356200px;}
._5{margin-left:-1.174800px;}
._14{width:1.333200px;}
._12{width:2.739600px;}
._10{width:3.900000px;}
._c{width:5.196600px;}
._b{width:6.426000px;}
._6{width:7.464600px;}
._e{width:8.659200px;}
._11{width:10.018800px;}
._7{width:11.906400px;}
._d{width:13.061400px;}
._13{width:14.170200px;}
._f{width:15.283200px;}
._15{width:18.064200px;}
._25{width:19.291800px;}
._27{width:20.407200px;}
._26{width:22.057200px;}
._8{width:23.997600px;}
._28{width:25.279200px;}
._24{width:26.396400px;}
._1d{width:27.469800px;}
._2c{width:29.157000px;}
._18{width:30.258600px;}
._31{width:31.600800px;}
._2f{width:32.650200px;}
._32{width:34.240800px;}
._2a{width:35.310000px;}
._37{width:36.366000px;}
._1f{width:37.962600px;}
._1b{width:40.021200px;}
._2e{width:41.157600px;}
._30{width:42.325800px;}
._39{width:43.362000px;}
._3a{width:50.186400px;}
._29{width:51.909000px;}
._3e{width:53.387400px;}
._38{width:54.417000px;}
._36{width:56.199000px;}
._34{width:59.901600px;}
._33{width:63.492000px;}
._1c{width:77.130600px;}
._3f{width:80.051400px;}
._40{width:84.942000px;}
._3d{width:124.680000px;}
._3c{width:144.012000px;}
._3b{width:145.992600px;}
._1a{width:345.000000px;}
._19{width:486.072612px;}
._21{width:570.616200px;}
._20{width:810.324006px;}
._1e{width:854.880000px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(90,87,88);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:34.980000px;}
.fs6{font-size:38.478000px;}
.fs4{font-size:48.000000px;}
.fs5{font-size:60.000000px;}
.fs8{font-size:63.000000px;}
.fs3{font-size:66.000000px;}
.fs2{font-size:96.000000px;}
.fs0{font-size:114.000000px;}
.fs1{font-size:156.000000px;}
.fs7{font-size:337.858200px;}
.y0{bottom:0.000000px;}
.y173{bottom:53.872350px;}
.y175{bottom:56.832000px;}
.y1a{bottom:66.708300px;}
.y26f{bottom:70.332000px;}
.y25b{bottom:72.097800px;}
.y172{bottom:74.872350px;}
.y174{bottom:79.332000px;}
.y114{bottom:83.832000px;}
.y13d{bottom:85.332000px;}
.y219{bottom:86.832000px;}
.yc4{bottom:92.832000px;}
.y6a{bottom:94.018500px;}
.y25a{bottom:94.597800px;}
.y222{bottom:95.832000px;}
.yb7{bottom:97.332000px;}
.ya7{bottom:98.832000px;}
.y12c{bottom:101.518500px;}
.y2a1{bottom:101.815950px;}
.y90{bottom:101.832000px;}
.y6{bottom:102.213450px;}
.y267{bottom:103.949850px;}
.y171{bottom:104.122350px;}
.y151{bottom:104.832000px;}
.y1de{bottom:105.097800px;}
.y113{bottom:106.332000px;}
.y13c{bottom:107.832000px;}
.y20c{bottom:108.097800px;}
.y245{bottom:109.018500px;}
.y218{bottom:109.332000px;}
.y1c6{bottom:111.097800px;}
.y1a4{bottom:112.332000px;}
.y25e{bottom:113.214750px;}
.y25f{bottom:114.306000px;}
.yc3{bottom:115.332000px;}
.y69{bottom:116.518500px;}
.y259{bottom:117.097800px;}
.y1f8{bottom:118.332000px;}
.yb6{bottom:119.832000px;}
.ya6{bottom:121.332000px;}
.y12b{bottom:124.018500px;}
.y2a0{bottom:124.315950px;}
.y8f{bottom:124.332000px;}
.y150{bottom:127.332000px;}
.y1dd{bottom:127.597800px;}
.y112{bottom:128.832000px;}
.y13b{bottom:130.332000px;}
.y20b{bottom:130.597800px;}
.y196{bottom:131.518500px;}
.y217{bottom:131.832000px;}
.y1c5{bottom:133.597800px;}
.y1a3{bottom:134.832000px;}
.yde{bottom:137.832000px;}
.y68{bottom:139.018500px;}
.y287{bottom:139.332000px;}
.y258{bottom:139.597800px;}
.y1f7{bottom:140.832000px;}
.yb5{bottom:142.332000px;}
.ya5{bottom:143.832000px;}
.yc2{bottom:145.332000px;}
.y12a{bottom:146.518500px;}
.y29f{bottom:146.815950px;}
.y8e{bottom:146.832000px;}
.y14f{bottom:149.832000px;}
.y1dc{bottom:150.097800px;}
.y111{bottom:151.332000px;}
.y13a{bottom:152.832000px;}
.y20a{bottom:153.097800px;}
.y195{bottom:154.018500px;}
.y216{bottom:154.332000px;}
.y1c4{bottom:156.097800px;}
.y1a2{bottom:157.332000px;}
.ydd{bottom:160.332000px;}
.y67{bottom:161.518500px;}
.y257{bottom:162.097800px;}
.y1f6{bottom:163.332000px;}
.yf5{bottom:164.832000px;}
.ya4{bottom:166.332000px;}
.y19{bottom:167.478750px;}
.y129{bottom:169.018500px;}
.y29e{bottom:169.315950px;}
.y8d{bottom:169.332000px;}
.yb4{bottom:172.332000px;}
.y1db{bottom:172.597800px;}
.yb8{bottom:173.832000px;}
.y139{bottom:175.332000px;}
.y209{bottom:175.597800px;}
.y194{bottom:176.518500px;}
.y215{bottom:176.832000px;}
.y1c3{bottom:178.597800px;}
.y1a1{bottom:179.832000px;}
.y1f3{bottom:181.332000px;}
.ydc{bottom:182.832000px;}
.y66{bottom:184.018500px;}
.y256{bottom:184.597800px;}
.yc1{bottom:185.832000px;}
.yf4{bottom:187.332000px;}
.ya3{bottom:188.832000px;}
.y18{bottom:189.978750px;}
.y128{bottom:191.518500px;}
.y29d{bottom:191.815950px;}
.y8c{bottom:191.832000px;}
.y14e{bottom:194.832000px;}
.y1da{bottom:195.097800px;}
.y110{bottom:196.332000px;}
.y138{bottom:197.832000px;}
.y208{bottom:198.097800px;}
.y193{bottom:199.018500px;}
.y214{bottom:199.332000px;}
.y16e{bottom:199.795200px;}
.y1c2{bottom:201.097800px;}
.y1a0{bottom:202.332000px;}
.y268{bottom:202.799850px;}
.ydb{bottom:205.332000px;}
.y65{bottom:206.518500px;}
.y255{bottom:207.097800px;}
.yc0{bottom:208.332000px;}
.yf3{bottom:209.832000px;}
.ya2{bottom:211.332000px;}
.y17{bottom:212.478750px;}
.y127{bottom:214.018500px;}
.y29c{bottom:214.315950px;}
.y8b{bottom:214.332000px;}
.y260{bottom:215.718750px;}
.y282{bottom:215.832000px;}
.y14d{bottom:217.332000px;}
.y1d9{bottom:217.597800px;}
.y10f{bottom:218.832000px;}
.y15c{bottom:220.332000px;}
.y22d{bottom:220.597800px;}
.y192{bottom:221.518500px;}
.y1f2{bottom:221.832000px;}
.y16d{bottom:222.295200px;}
.y1c1{bottom:223.597800px;}
.y19f{bottom:224.832000px;}
.yda{bottom:227.832000px;}
.y207{bottom:228.097800px;}
.y64{bottom:229.018500px;}
.y213{bottom:229.332000px;}
.y261{bottom:229.481100px;}
.y254{bottom:229.597800px;}
.ybf{bottom:230.832000px;}
.yf2{bottom:232.332000px;}
.ya1{bottom:233.832000px;}
.y16{bottom:234.978750px;}
.y126{bottom:236.518500px;}
.y29b{bottom:236.815950px;}
.y8a{bottom:236.832000px;}
.y283{bottom:238.332000px;}
.y14c{bottom:239.832000px;}
.y1d8{bottom:240.097800px;}
.y10e{bottom:241.332000px;}
.y137{bottom:242.832000px;}
.y22c{bottom:243.097800px;}
.y191{bottom:244.018500px;}
.y1f1{bottom:244.332000px;}
.y16c{bottom:244.795200px;}
.y1c0{bottom:246.097800px;}
.y19e{bottom:247.332000px;}
.y28c{bottom:248.832000px;}
.yd9{bottom:250.332000px;}
.y63{bottom:251.518500px;}
.y253{bottom:252.097800px;}
.y37{bottom:252.718500px;}
.ybe{bottom:253.332000px;}
.yf1{bottom:254.832000px;}
.ya0{bottom:256.332000px;}
.y21b{bottom:257.832000px;}
.y125{bottom:259.018500px;}
.y29a{bottom:259.315950px;}
.y89{bottom:259.332000px;}
.y14b{bottom:262.332000px;}
.y1d7{bottom:262.597800px;}
.y10d{bottom:263.832000px;}
.y136{bottom:265.332000px;}
.y22b{bottom:265.597800px;}
.y190{bottom:266.518500px;}
.y1f0{bottom:266.832000px;}
.y16b{bottom:267.295200px;}
.y1bf{bottom:268.597800px;}
.y19d{bottom:269.832000px;}
.y36{bottom:272.518500px;}
.yd8{bottom:272.832000px;}
.y62{bottom:274.018500px;}
.y21f{bottom:274.332000px;}
.y252{bottom:274.597800px;}
.ybd{bottom:275.832000px;}
.y1e1{bottom:276.097800px;}
.yf0{bottom:277.332000px;}
.y9f{bottom:278.832000px;}
.y28a{bottom:280.332000px;}
.y124{bottom:281.518500px;}
.y299{bottom:281.815950px;}
.y88{bottom:281.832000px;}
.y284{bottom:283.332000px;}
.y14a{bottom:284.832000px;}
.y1d6{bottom:285.097800px;}
.y10c{bottom:286.332000px;}
.y25d{bottom:287.525250px;}
.y135{bottom:287.832000px;}
.y22a{bottom:288.097800px;}
.y18f{bottom:289.018500px;}
.y1ef{bottom:289.332000px;}
.y16a{bottom:289.795200px;}
.y206{bottom:291.097800px;}
.y212{bottom:292.332000px;}
.y35{bottom:294.868500px;}
.yd7{bottom:295.332000px;}
.y61{bottom:296.518500px;}
.y251{bottom:297.097800px;}
.ybc{bottom:298.332000px;}
.y1be{bottom:298.597800px;}
.yef{bottom:299.832000px;}
.y4d{bottom:300.399600px;}
.y9e{bottom:301.332000px;}
.y274{bottom:302.832000px;}
.y123{bottom:304.018500px;}
.y298{bottom:304.315950px;}
.y87{bottom:304.332000px;}
.y221{bottom:305.832000px;}
.y149{bottom:307.332000px;}
.y1d5{bottom:307.597800px;}
.y10b{bottom:308.832000px;}
.y134{bottom:310.332000px;}
.y229{bottom:310.597800px;}
.y18e{bottom:311.518500px;}
.y1ee{bottom:311.832000px;}
.y169{bottom:312.295200px;}
.y205{bottom:313.597800px;}
.y211{bottom:314.832000px;}
.y1e0{bottom:316.597800px;}
.y34{bottom:317.374500px;}
.y199{bottom:317.832000px;}
.y60{bottom:319.018500px;}
.y250{bottom:319.597800px;}
.ybb{bottom:320.832000px;}
.y1bd{bottom:321.097800px;}
.yee{bottom:322.332000px;}
.y9d{bottom:323.832000px;}
.yd6{bottom:325.332000px;}
.y4c{bottom:325.899600px;}
.y269{bottom:326.484900px;}
.y122{bottom:326.518500px;}
.y297{bottom:326.815950px;}
.y86{bottom:326.832000px;}
.y262{bottom:327.436350px;}
.y1d4{bottom:330.097800px;}
.y10a{bottom:331.332000px;}
.y133{bottom:332.832000px;}
.y228{bottom:333.097800px;}
.y18d{bottom:334.018500px;}
.y1ed{bottom:334.332000px;}
.y168{bottom:334.795200px;}
.y15{bottom:335.778750px;}
.y204{bottom:336.097800px;}
.y148{bottom:337.332000px;}
.y1df{bottom:339.097800px;}
.y33{bottom:339.880500px;}
.y198{bottom:340.332000px;}
.y5f{bottom:341.518500px;}
.y24f{bottom:342.097800px;}
.yba{bottom:343.332000px;}
.yed{bottom:344.832000px;}
.y9c{bottom:346.332000px;}
.y4b{bottom:346.899600px;}
.y25c{bottom:347.832000px;}
.y121{bottom:349.018500px;}
.y296{bottom:349.315950px;}
.y85{bottom:349.332000px;}
.y109{bottom:353.832000px;}
.y132{bottom:355.332000px;}
.y227{bottom:355.597800px;}
.y18c{bottom:356.518500px;}
.y1ec{bottom:356.832000px;}
.y167{bottom:357.295200px;}
.y14{bottom:358.278750px;}
.y203{bottom:358.597800px;}
.y210{bottom:359.832000px;}
.y1d3{bottom:360.097800px;}
.y1bc{bottom:361.597800px;}
.y32{bottom:362.386500px;}
.y15b{bottom:362.832000px;}
.y5e{bottom:364.018500px;}
.y24e{bottom:364.597800px;}
.yd5{bottom:365.832000px;}
.yec{bottom:367.332000px;}
.y4a{bottom:367.899600px;}
.y9b{bottom:368.832000px;}
.y289{bottom:370.332000px;}
.y120{bottom:371.518500px;}
.y295{bottom:371.815950px;}
.y84{bottom:371.832000px;}
.yb9{bottom:373.332000px;}
.yb3{bottom:376.332000px;}
.y131{bottom:377.832000px;}
.y226{bottom:378.097800px;}
.y18b{bottom:379.018500px;}
.y166{bottom:379.795200px;}
.y13{bottom:380.778750px;}
.y202{bottom:381.097800px;}
.y20f{bottom:382.332000px;}
.y1bb{bottom:384.097800px;}
.y31{bottom:384.892500px;}
.y19c{bottom:385.332000px;}
.y5c{bottom:386.518500px;}
.y1eb{bottom:386.832000px;}
.y24d{bottom:387.097800px;}
.yd4{bottom:388.332000px;}
.y170{bottom:388.522500px;}
.y49{bottom:388.899600px;}
.yeb{bottom:389.832000px;}
.y9a{bottom:391.332000px;}
.y197{bottom:392.832000px;}
.y11f{bottom:394.018500px;}
.y294{bottom:394.315950px;}
.y83{bottom:394.332000px;}
.ydf{bottom:398.832000px;}
.y130{bottom:400.332000px;}
.y1d2{bottom:400.597800px;}
.y18a{bottom:401.518500px;}
.y165{bottom:402.295200px;}
.y12{bottom:403.278750px;}
.y201{bottom:403.597800px;}
.y20e{bottom:404.832000px;}
.y1ba{bottom:406.597800px;}
.y30{bottom:407.398500px;}
.y19b{bottom:407.832000px;}
.y5d{bottom:409.018500px;}
.y15a{bottom:409.332000px;}
.y24c{bottom:409.597800px;}
.yd3{bottom:410.832000px;}
.yea{bottom:412.332000px;}
.y99{bottom:413.832000px;}
.y48{bottom:414.399600px;}
.yb2{bottom:415.332000px;}
.y11e{bottom:416.518500px;}
.y293{bottom:416.815950px;}
.y82{bottom:416.832000px;}
.y1f5{bottom:418.332000px;}
.y108{bottom:421.332000px;}
.y12f{bottom:422.832000px;}
.y1d1{bottom:423.097800px;}
.y189{bottom:424.018500px;}
.y164{bottom:424.795200px;}
.y11{bottom:425.778750px;}
.y200{bottom:426.097800px;}
.y1ea{bottom:427.332000px;}
.y1b9{bottom:429.097800px;}
.y2f{bottom:429.904500px;}
.y19a{bottom:430.332000px;}
.y159{bottom:431.832000px;}
.y24b{bottom:432.097800px;}
.yd2{bottom:433.332000px;}
.y20d{bottom:434.832000px;}
.y98{bottom:436.332000px;}
.yb1{bottom:437.832000px;}
.y11d{bottom:439.018500px;}
.y292{bottom:439.315950px;}
.y81{bottom:439.332000px;}
.y47{bottom:439.899600px;}
.ye9{bottom:442.332000px;}
.y107{bottom:443.832000px;}
.y12e{bottom:445.332000px;}
.y1d0{bottom:445.597800px;}
.y187{bottom:446.518500px;}
.y163{bottom:447.295200px;}
.y10{bottom:448.278750px;}
.y1ff{bottom:448.597800px;}
.y1e9{bottom:449.832000px;}
.y17f{bottom:451.332000px;}
.y1b8{bottom:451.597800px;}
.y2e{bottom:452.410500px;}
.y26a{bottom:452.484900px;}
.y147{bottom:452.832000px;}
.y158{bottom:454.332000px;}
.y24a{bottom:454.597800px;}
.yd1{bottom:455.832000px;}
.y281{bottom:457.332000px;}
.y97{bottom:458.832000px;}
.yb0{bottom:460.332000px;}
.y46{bottom:460.899600px;}
.y5b{bottom:461.518500px;}
.y291{bottom:461.815950px;}
.y80{bottom:461.832000px;}
.y106{bottom:466.332000px;}
.y286{bottom:467.832000px;}
.y1cf{bottom:468.097800px;}
.y188{bottom:469.018500px;}
.y162{bottom:469.795200px;}
.yf{bottom:470.778750px;}
.y1fe{bottom:471.097800px;}
.y1e8{bottom:472.332000px;}
.y1b7{bottom:474.097800px;}
.y2d{bottom:474.916500px;}
.y12d{bottom:475.332000px;}
.y157{bottom:476.832000px;}
.y249{bottom:477.097800px;}
.yd0{bottom:478.332000px;}
.y21e{bottom:479.832000px;}
.y96{bottom:481.332000px;}
.y45{bottom:481.899600px;}
.yaf{bottom:482.832000px;}
.y290{bottom:484.315950px;}
.y7f{bottom:484.332000px;}
.ye8{bottom:485.832000px;}
.y17e{bottom:487.332000px;}
.y105{bottom:488.832000px;}
.y285{bottom:490.332000px;}
.y1ce{bottom:490.597800px;}
.y161{bottom:492.295200px;}
.y146{bottom:493.332000px;}
.y1e7{bottom:494.832000px;}
.y1b6{bottom:496.597800px;}
.y2c{bottom:497.422500px;}
.y234{bottom:497.832000px;}
.y248{bottom:499.597800px;}
.ycf{bottom:500.832000px;}
.y1fd{bottom:501.097800px;}
.y5{bottom:501.970950px;}
.ye{bottom:502.278750px;}
.y95{bottom:503.832000px;}
.yae{bottom:505.332000px;}
.y28f{bottom:506.815950px;}
.y7e{bottom:506.832000px;}
.y44{bottom:507.399600px;}
.y5a{bottom:508.018500px;}
.ye7{bottom:508.332000px;}
.y17d{bottom:509.832000px;}
.y104{bottom:511.332000px;}
.y1cd{bottom:513.097800px;}
.y11c{bottom:514.018500px;}
.y160{bottom:514.795200px;}
.y277{bottom:515.518500px;}
.y145{bottom:515.832000px;}
.y1e6{bottom:517.332000px;}
.y1b5{bottom:519.097800px;}
.y2b{bottom:519.928500px;}
.y233{bottom:520.332000px;}
.y225{bottom:520.597800px;}
.y186{bottom:521.518500px;}
.y247{bottom:522.097800px;}
.yce{bottom:523.332000px;}
.y94{bottom:526.332000px;}
.yad{bottom:527.832000px;}
.y28e{bottom:529.315950px;}
.y7d{bottom:529.332000px;}
.y59{bottom:530.518500px;}
.ye6{bottom:530.832000px;}
.y17c{bottom:532.332000px;}
.y43{bottom:532.899600px;}
.y4{bottom:533.470950px;}
.y103{bottom:533.832000px;}
.y15f{bottom:537.295200px;}
.y276{bottom:538.018500px;}
.y144{bottom:538.332000px;}
.y1e5{bottom:539.832000px;}
.y1b4{bottom:541.597800px;}
.y2a{bottom:542.434500px;}
.y232{bottom:542.832000px;}
.y1cc{bottom:543.097800px;}
.y246{bottom:544.597800px;}
.ycd{bottom:545.832000px;}
.y156{bottom:547.332000px;}
.y93{bottom:548.832000px;}
.yac{bottom:550.332000px;}
.y28d{bottom:551.815950px;}
.y7c{bottom:551.832000px;}
.y58{bottom:553.018500px;}
.ye5{bottom:553.332000px;}
.y42{bottom:553.899600px;}
.ya8{bottom:556.332000px;}
.y15e{bottom:559.795200px;}
.y11b{bottom:560.518500px;}
.y143{bottom:560.832000px;}
.y17b{bottom:562.332000px;}
.y1b3{bottom:564.097800px;}
.y29{bottom:564.940500px;}
.y231{bottom:565.332000px;}
.y1cb{bottom:565.597800px;}
.y224{bottom:567.097800px;}
.y185{bottom:568.018500px;}
.y155{bottom:569.832000px;}
.y92{bottom:571.332000px;}
.yab{bottom:572.832000px;}
.y244{bottom:574.315950px;}
.y7b{bottom:574.332000px;}
.y41{bottom:574.899600px;}
.ycc{bottom:575.832000px;}
.ye0{bottom:578.832000px;}
.y280{bottom:580.332000px;}
.y57{bottom:581.013000px;}
.y11a{bottom:583.018500px;}
.y1b2{bottom:586.597800px;}
.y28{bottom:587.446500px;}
.y230{bottom:587.832000px;}
.y223{bottom:589.597800px;}
.y184{bottom:590.518500px;}
.y142{bottom:590.832000px;}
.yd{bottom:592.278750px;}
.y154{bottom:592.332000px;}
.yf8{bottom:593.832000px;}
.y243{bottom:596.815950px;}
.y7a{bottom:596.832000px;}
.ye4{bottom:598.332000px;}
.y40{bottom:600.399600px;}
.y91{bottom:601.332000px;}
.yaa{bottom:602.832000px;}
.y119{bottom:605.518500px;}
.y1b1{bottom:609.097800px;}
.y27{bottom:609.952500px;}
.y22f{bottom:610.332000px;}
.y15d{bottom:610.795200px;}
.y1ca{bottom:612.097800px;}
.y183{bottom:613.018500px;}
.yc{bottom:614.778750px;}
.y153{bottom:614.832000px;}
.ycb{bottom:616.332000px;}
.y26e{bottom:617.832000px;}
.y242{bottom:619.315950px;}
.y79{bottom:619.332000px;}
.y56{bottom:620.518500px;}
.ye3{bottom:620.832000px;}
.y26b{bottom:623.664000px;}
.y27f{bottom:625.332000px;}
.y3f{bottom:625.899600px;}
.y118{bottom:628.018500px;}
.y102{bottom:631.332000px;}
.y1b0{bottom:631.597800px;}
.y263{bottom:631.682400px;}
.y26{bottom:632.458500px;}
.y272{bottom:632.832000px;}
.y1c9{bottom:634.597800px;}
.y182{bottom:635.518500px;}
.yca{bottom:638.832000px;}
.y22e{bottom:640.332000px;}
.y241{bottom:641.815950px;}
.y78{bottom:641.832000px;}
.y55{bottom:643.018500px;}
.ye2{bottom:643.332000px;}
.y220{bottom:646.332000px;}
.y3e{bottom:646.899600px;}
.y27e{bottom:647.832000px;}
.y152{bottom:650.832000px;}
.y141{bottom:653.832000px;}
.y1fc{bottom:654.097800px;}
.y25{bottom:654.964500px;}
.y271{bottom:655.332000px;}
.y1c8{bottom:657.097800px;}
.y181{bottom:658.018500px;}
.y117{bottom:659.518500px;}
.yb{bottom:659.778750px;}
.y16f{bottom:660.547500px;}
.yc9{bottom:661.332000px;}
.y1af{bottom:661.597800px;}
.y240{bottom:664.315950px;}
.y77{bottom:664.332000px;}
.y54{bottom:665.518500px;}
.y17a{bottom:665.832000px;}
.y3d{bottom:667.899600px;}
.y1f4{bottom:668.832000px;}
.y27d{bottom:670.332000px;}
.ye1{bottom:673.332000px;}
.y140{bottom:676.332000px;}
.y1fb{bottom:676.597800px;}
.y24{bottom:677.470500px;}
.y101{bottom:677.832000px;}
.y1c7{bottom:679.597800px;}
.ya{bottom:682.278750px;}
.yc8{bottom:683.832000px;}
.y288{bottom:685.332000px;}
.y23f{bottom:686.815950px;}
.y76{bottom:686.832000px;}
.y179{bottom:688.332000px;}
.y180{bottom:689.518500px;}
.y27c{bottom:692.832000px;}
.y3c{bottom:693.399600px;}
.y53{bottom:693.513000px;}
.y13f{bottom:698.832000px;}
.y23{bottom:699.976500px;}
.y100{bottom:700.332000px;}
.y1ae{bottom:702.097800px;}
.y9{bottom:704.778750px;}
.yc7{bottom:706.332000px;}
.y1fa{bottom:706.597800px;}
.y116{bottom:709.018500px;}
.y23e{bottom:709.315950px;}
.y75{bottom:709.332000px;}
.y178{bottom:710.832000px;}
.y27b{bottom:715.332000px;}
.y3b{bottom:718.899600px;}
.y52{bottom:719.518500px;}
.y13e{bottom:721.332000px;}
.y22{bottom:722.482500px;}
.yff{bottom:722.832000px;}
.y1ad{bottom:724.597800px;}
.yc6{bottom:728.832000px;}
.y26c{bottom:729.234900px;}
.y273{bottom:730.332000px;}
.y23d{bottom:731.815950px;}
.y74{bottom:731.832000px;}
.y177{bottom:733.332000px;}
.yf9{bottom:736.332000px;}
.y27a{bottom:737.832000px;}
.y264{bottom:738.390150px;}
.y115{bottom:739.018500px;}
.y3a{bottom:739.899600px;}
.y265{bottom:741.327150px;}
.y21{bottom:744.988500px;}
.yfe{bottom:745.332000px;}
.y1ac{bottom:747.097800px;}
.y8{bottom:749.778750px;}
.yf7{bottom:751.332000px;}
.y28b{bottom:752.832000px;}
.y23c{bottom:754.315950px;}
.y73{bottom:754.332000px;}
.yc5{bottom:758.832000px;}
.y279{bottom:760.332000px;}
.y176{bottom:763.332000px;}
.y20{bottom:767.494500px;}
.yfd{bottom:767.832000px;}
.y51{bottom:769.018500px;}
.y1ab{bottom:769.597800px;}
.y39{bottom:769.899600px;}
.y1e4{bottom:773.832000px;}
.y270{bottom:775.332000px;}
.y23b{bottom:776.815950px;}
.y72{bottom:776.832000px;}
.yf6{bottom:781.332000px;}
.y278{bottom:782.832000px;}
.y1f{bottom:790.000500px;}
.yfc{bottom:790.332000px;}
.y1aa{bottom:792.097800px;}
.y7{bottom:794.778750px;}
.y1e3{bottom:796.332000px;}
.y275{bottom:797.832000px;}
.y50{bottom:799.018500px;}
.y23a{bottom:799.315950px;}
.y71{bottom:799.332000px;}
.y21a{bottom:803.832000px;}
.y3{bottom:810.970950px;}
.y1e{bottom:812.506500px;}
.yfb{bottom:812.832000px;}
.y1a9{bottom:814.597800px;}
.y38{bottom:817.899600px;}
.y21d{bottom:818.832000px;}
.y239{bottom:821.815950px;}
.y70{bottom:821.832000px;}
.y26d{bottom:823.734900px;}
.y1e2{bottom:826.332000px;}
.y4f{bottom:829.018500px;}
.ya9{bottom:829.332000px;}
.y266{bottom:834.986100px;}
.y1d{bottom:835.012500px;}
.y1a8{bottom:837.097800px;}
.yfa{bottom:842.832000px;}
.y238{bottom:844.315950px;}
.y6f{bottom:844.332000px;}
.y21c{bottom:848.832000px;}
.y2{bottom:855.970950px;}
.y1c{bottom:857.518500px;}
.y1a7{bottom:859.597800px;}
.y237{bottom:866.815950px;}
.y6e{bottom:866.832000px;}
.y1a6{bottom:882.097800px;}
.y236{bottom:889.315950px;}
.y6d{bottom:889.332000px;}
.y1f9{bottom:889.597800px;}
.y4e{bottom:898.018500px;}
.y1{bottom:903.970950px;}
.y1b{bottom:907.018500px;}
.y235{bottom:911.815950px;}
.y6c{bottom:911.832000px;}
.y1a5{bottom:912.097800px;}
.y6b{bottom:949.109250px;}
.hf{height:26.716658px;}
.ha{height:40.031250px;}
.h1a{height:40.664062px;}
.h13{height:42.117188px;}
.h8{height:44.730469px;}
.h11{height:45.826172px;}
.hb{height:50.039062px;}
.hc{height:52.646484px;}
.hd{height:53.115234px;}
.h7{height:55.042969px;}
.h17{height:55.278809px;}
.h10{height:55.461914px;}
.he{height:57.750000px;}
.h9{height:57.911133px;}
.h18{height:58.329933px;}
.h14{height:58.426758px;}
.h5{height:65.062500px;}
.h3{height:77.261719px;}
.h6{height:80.062500px;}
.h19{height:84.000000px;}
.h15{height:84.984375px;}
.h4{height:105.726562px;}
.h16{height:281.768460px;}
.h12{height:296.450774px;}
.h2{height:1020.472500px;}
.h0{height:1020.600000px;}
.h1{height:1020.750000px;}
.w3{width:680.250000px;}
.w2{width:680.314500px;}
.w4{width:680.400000px;}
.w0{width:686.880000px;}
.w1{width:687.000000px;}
.x0{left:0.000000px;}
.x7{left:70.200000px;}
.x2f{left:74.578050px;}
.x2e{left:77.615850px;}
.x1e{left:85.038900px;}
.xb{left:86.397000px;}
.x3f{left:87.513600px;}
.x2{left:89.254050px;}
.x3{left:92.739000px;}
.x3c{left:99.280950px;}
.x13{left:102.251550px;}
.x20{left:106.200000px;}
.x53{left:111.005550px;}
.x40{left:114.229050px;}
.x54{left:118.007550px;}
.x17{left:119.013900px;}
.x33{left:120.245700px;}
.xa{left:122.400000px;}
.x24{left:124.136400px;}
.x1f{left:132.014100px;}
.x32{left:134.425500px;}
.x22{left:139.333650px;}
.x25{left:143.050500px;}
.x21{left:144.888300px;}
.x2a{left:146.737800px;}
.x2b{left:149.200800px;}
.x26{left:152.923500px;}
.x41{left:154.387800px;}
.x14{left:155.653950px;}
.x3a{left:160.100400px;}
.x1b{left:162.991050px;}
.x31{left:165.099300px;}
.x29{left:167.458350px;}
.x3d{left:168.667650px;}
.x36{left:171.132300px;}
.x1{left:174.564750px;}
.x37{left:176.477850px;}
.x34{left:184.095300px;}
.x3b{left:189.993750px;}
.x10{left:191.400000px;}
.x42{left:196.387800px;}
.x1c{left:198.895350px;}
.x27{left:207.778950px;}
.x16{left:214.436700px;}
.x43{left:217.387800px;}
.x19{left:222.896100px;}
.x2c{left:224.915250px;}
.x38{left:238.252050px;}
.x18{left:242.622750px;}
.x39{left:244.000500px;}
.x56{left:246.747900px;}
.x30{left:248.380950px;}
.x1d{left:250.264500px;}
.x1a{left:252.327000px;}
.x3e{left:253.827750px;}
.x23{left:255.512700px;}
.x5{left:256.593450px;}
.x44{left:259.629450px;}
.x12{left:262.644450px;}
.x15{left:265.493850px;}
.x28{left:268.976100px;}
.x35{left:273.085050px;}
.xf{left:279.286800px;}
.x55{left:281.113500px;}
.x9{left:289.950900px;}
.x45{left:299.788200px;}
.x6{left:312.735750px;}
.x4{left:315.140250px;}
.x46{left:320.788200px;}
.x2d{left:328.395750px;}
.xe{left:341.884050px;}
.x11{left:345.300000px;}
.x8{left:346.302000px;}
.xc{left:358.457700px;}
.x47{left:363.029850px;}
.x48{left:382.188600px;}
.x49{left:403.188600px;}
.xd{left:424.937700px;}
.x4a{left:445.188600px;}
.x4b{left:466.430250px;}
.x4c{left:487.430250px;}
.x4d{left:506.589000px;}
.x4e{left:527.589000px;}
.x4f{left:548.589000px;}
.x50{left:569.589000px;}
.x51{left:590.589000px;}
.x52{left:611.589000px;}
@media print{
.v2{vertical-align:-19.536000pt;}
.v4{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.536000pt;}
.v3{vertical-align:160.000000pt;}
.ls18{letter-spacing:-4.341333pt;}
.lsb{letter-spacing:-1.578667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.045903pt;}
.ls11{letter-spacing:0.048409pt;}
.ls10{letter-spacing:0.050649pt;}
.ls1c{letter-spacing:0.058667pt;}
.lsd{letter-spacing:0.117333pt;}
.ls9{letter-spacing:0.176000pt;}
.ls1d{letter-spacing:0.234667pt;}
.ls13{letter-spacing:0.293333pt;}
.ls16{letter-spacing:0.352000pt;}
.ls1b{letter-spacing:0.469333pt;}
.lsc{letter-spacing:0.528000pt;}
.ls1e{letter-spacing:0.586667pt;}
.ls8{letter-spacing:0.645333pt;}
.ls1a{letter-spacing:0.704000pt;}
.ls12{letter-spacing:0.821333pt;}
.ls14{letter-spacing:0.880000pt;}
.lsa{letter-spacing:0.938667pt;}
.ls17{letter-spacing:0.997333pt;}
.lsf{letter-spacing:1.060267pt;}
.ls4{letter-spacing:1.493333pt;}
.ls20{letter-spacing:1.500800pt;}
.ls1f{letter-spacing:1.525333pt;}
.ls2{letter-spacing:1.866667pt;}
.ls15{letter-spacing:1.877333pt;}
.ls1{letter-spacing:2.986667pt;}
.ls19{letter-spacing:7.849067pt;}
.ls7{letter-spacing:10.666667pt;}
.ls5{letter-spacing:17.493333pt;}
.lse{letter-spacing:33.553067pt;}
.ls3{letter-spacing:1197.592000pt;}
.ws26{word-spacing:-88.320000pt;}
.ws10{word-spacing:-58.666667pt;}
.wsd{word-spacing:-42.666667pt;}
.ws3f{word-spacing:-39.482667pt;}
.ws6b{word-spacing:-37.840000pt;}
.ws31{word-spacing:-36.901333pt;}
.ws2{word-spacing:-24.320000pt;}
.ws55{word-spacing:-15.370667pt;}
.ws1a{word-spacing:-15.312000pt;}
.ws3{word-spacing:-15.200000pt;}
.ws1{word-spacing:-14.666667pt;}
.ws4{word-spacing:-13.333333pt;}
.wsc{word-spacing:-10.666667pt;}
.ws46{word-spacing:-10.325333pt;}
.ws8{word-spacing:-8.906667pt;}
.wsa{word-spacing:-8.550667pt;}
.ws5e{word-spacing:-7.773333pt;}
.ws27{word-spacing:-6.229333pt;}
.ws42{word-spacing:-5.925333pt;}
.ws69{word-spacing:-5.280000pt;}
.ws43{word-spacing:-4.576000pt;}
.ws3b{word-spacing:-4.341333pt;}
.ws74{word-spacing:-4.282667pt;}
.ws37{word-spacing:-3.930667pt;}
.ws73{word-spacing:-3.402667pt;}
.ws6{word-spacing:-2.986667pt;}
.ws36{word-spacing:-2.933333pt;}
.ws60{word-spacing:-2.757333pt;}
.ws6a{word-spacing:-2.698667pt;}
.ws7f{word-spacing:-2.522667pt;}
.ws3a{word-spacing:-2.346667pt;}
.ws54{word-spacing:-2.112000pt;}
.ws4b{word-spacing:-1.936000pt;}
.ws39{word-spacing:-1.877333pt;}
.ws68{word-spacing:-1.525333pt;}
.ws5{word-spacing:-1.493333pt;}
.ws61{word-spacing:-1.466667pt;}
.wsb{word-spacing:-1.450667pt;}
.ws1c{word-spacing:-1.408000pt;}
.ws18{word-spacing:-1.290667pt;}
.ws75{word-spacing:-1.056000pt;}
.ws41{word-spacing:-0.997333pt;}
.ws9{word-spacing:-0.960000pt;}
.ws12{word-spacing:-0.938667pt;}
.ws24{word-spacing:-0.880000pt;}
.ws32{word-spacing:-0.821333pt;}
.ws56{word-spacing:-0.704000pt;}
.wsf{word-spacing:-0.645333pt;}
.ws67{word-spacing:-0.586667pt;}
.ws15{word-spacing:-0.528000pt;}
.ws5c{word-spacing:-0.469333pt;}
.ws3c{word-spacing:-0.352000pt;}
.ws28{word-spacing:-0.293333pt;}
.ws64{word-spacing:-0.234667pt;}
.ws11{word-spacing:-0.176000pt;}
.ws16{word-spacing:-0.117333pt;}
.ws63{word-spacing:-0.058667pt;}
.ws0{word-spacing:0.000000pt;}
.ws66{word-spacing:0.058667pt;}
.ws70{word-spacing:0.410667pt;}
.ws1b{word-spacing:0.645333pt;}
.ws22{word-spacing:1.056000pt;}
.ws14{word-spacing:1.578667pt;}
.ws25{word-spacing:1.701333pt;}
.ws4d{word-spacing:2.346667pt;}
.ws80{word-spacing:2.522667pt;}
.ws4a{word-spacing:2.698667pt;}
.ws87{word-spacing:2.874667pt;}
.ws4c{word-spacing:2.992000pt;}
.ws2f{word-spacing:3.168000pt;}
.ws4f{word-spacing:3.402667pt;}
.ws20{word-spacing:3.578667pt;}
.ws59{word-spacing:3.813333pt;}
.ws6c{word-spacing:4.282667pt;}
.ws4e{word-spacing:4.752000pt;}
.ws86{word-spacing:4.810667pt;}
.ws6f{word-spacing:5.162667pt;}
.ws1e{word-spacing:5.573333pt;}
.ws2a{word-spacing:5.632000pt;}
.ws44{word-spacing:5.749333pt;}
.ws72{word-spacing:5.808000pt;}
.ws71{word-spacing:5.925333pt;}
.ws33{word-spacing:6.277333pt;}
.ws85{word-spacing:6.629333pt;}
.ws7d{word-spacing:7.157333pt;}
.ws17{word-spacing:7.216000pt;}
.ws52{word-spacing:7.744000pt;}
.ws2c{word-spacing:7.920000pt;}
.ws34{word-spacing:7.978667pt;}
.ws6e{word-spacing:8.096000pt;}
.ws7b{word-spacing:8.506667pt;}
.ws5f{word-spacing:8.624000pt;}
.ws7c{word-spacing:8.741333pt;}
.ws53{word-spacing:8.858667pt;}
.ws49{word-spacing:9.328000pt;}
.ws79{word-spacing:9.504000pt;}
.ws35{word-spacing:9.856000pt;}
.ws5d{word-spacing:9.973333pt;}
.ws78{word-spacing:10.325333pt;}
.ws83{word-spacing:10.560000pt;}
.wse{word-spacing:10.666667pt;}
.ws2d{word-spacing:10.970667pt;}
.ws23{word-spacing:12.202667pt;}
.ws51{word-spacing:12.496000pt;}
.ws40{word-spacing:12.554667pt;}
.ws38{word-spacing:12.672000pt;}
.ws3d{word-spacing:12.848000pt;}
.ws5a{word-spacing:13.317333pt;}
.ws7a{word-spacing:13.434667pt;}
.ws48{word-spacing:13.728000pt;}
.ws65{word-spacing:13.845333pt;}
.ws2b{word-spacing:14.021333pt;}
.ws30{word-spacing:15.253333pt;}
.ws77{word-spacing:15.429333pt;}
.ws1f{word-spacing:15.781333pt;}
.ws76{word-spacing:16.309333pt;}
.ws62{word-spacing:16.544000pt;}
.ws19{word-spacing:16.602667pt;}
.ws58{word-spacing:16.896000pt;}
.ws47{word-spacing:16.954667pt;}
.ws29{word-spacing:17.130667pt;}
.ws50{word-spacing:17.658667pt;}
.ws45{word-spacing:17.893333pt;}
.ws81{word-spacing:19.946667pt;}
.ws7e{word-spacing:20.064000pt;}
.ws5b{word-spacing:21.706667pt;}
.ws84{word-spacing:22.410667pt;}
.ws6d{word-spacing:25.168000pt;}
.ws13{word-spacing:25.226667pt;}
.ws2e{word-spacing:26.106667pt;}
.ws3e{word-spacing:28.570667pt;}
.ws57{word-spacing:29.098667pt;}
.ws1d{word-spacing:31.093333pt;}
.ws21{word-spacing:33.557333pt;}
.ws82{word-spacing:48.986667pt;}
.ws7{word-spacing:306.666667pt;}
._17{margin-left:-266.666667pt;}
._2d{margin-left:-40.778667pt;}
._3{margin-left:-30.286400pt;}
._35{margin-left:-13.909333pt;}
._0{margin-left:-13.011200pt;}
._23{margin-left:-10.666667pt;}
._22{margin-left:-9.578667pt;}
._2b{margin-left:-8.562667pt;}
._1{margin-left:-7.508800pt;}
._a{margin-left:-6.340267pt;}
._16{margin-left:-5.402672pt;}
._2{margin-left:-4.433067pt;}
._4{margin-left:-3.244267pt;}
._9{margin-left:-2.094400pt;}
._5{margin-left:-1.044267pt;}
._14{width:1.185067pt;}
._12{width:2.435200pt;}
._10{width:3.466667pt;}
._c{width:4.619200pt;}
._b{width:5.712000pt;}
._6{width:6.635200pt;}
._e{width:7.697067pt;}
._11{width:8.905600pt;}
._7{width:10.583467pt;}
._d{width:11.610133pt;}
._13{width:12.595733pt;}
._f{width:13.585067pt;}
._15{width:16.057067pt;}
._25{width:17.148267pt;}
._27{width:18.139733pt;}
._26{width:19.606400pt;}
._8{width:21.331200pt;}
._28{width:22.470400pt;}
._24{width:23.463467pt;}
._1d{width:24.417600pt;}
._2c{width:25.917333pt;}
._18{width:26.896533pt;}
._31{width:28.089600pt;}
._2f{width:29.022400pt;}
._32{width:30.436267pt;}
._2a{width:31.386667pt;}
._37{width:32.325333pt;}
._1f{width:33.744533pt;}
._1b{width:35.574400pt;}
._2e{width:36.584533pt;}
._30{width:37.622933pt;}
._39{width:38.544000pt;}
._3a{width:44.610133pt;}
._29{width:46.141333pt;}
._3e{width:47.455467pt;}
._38{width:48.370667pt;}
._36{width:49.954667pt;}
._34{width:53.245867pt;}
._33{width:56.437333pt;}
._1c{width:68.560533pt;}
._3f{width:71.156800pt;}
._40{width:75.504000pt;}
._3d{width:110.826667pt;}
._3c{width:128.010667pt;}
._3b{width:129.771200pt;}
._1a{width:306.666667pt;}
._19{width:432.064544pt;}
._21{width:507.214400pt;}
._20{width:720.288005pt;}
._1e{width:759.893333pt;}
.fs9{font-size:31.093333pt;}
.fs6{font-size:34.202667pt;}
.fs4{font-size:42.666667pt;}
.fs5{font-size:53.333333pt;}
.fs8{font-size:56.000000pt;}
.fs3{font-size:58.666667pt;}
.fs2{font-size:85.333333pt;}
.fs0{font-size:101.333333pt;}
.fs1{font-size:138.666667pt;}
.fs7{font-size:300.318400pt;}
.y0{bottom:0.000000pt;}
.y173{bottom:47.886533pt;}
.y175{bottom:50.517333pt;}
.y1a{bottom:59.296267pt;}
.y26f{bottom:62.517333pt;}
.y25b{bottom:64.086933pt;}
.y172{bottom:66.553200pt;}
.y174{bottom:70.517333pt;}
.y114{bottom:74.517333pt;}
.y13d{bottom:75.850667pt;}
.y219{bottom:77.184000pt;}
.yc4{bottom:82.517333pt;}
.y6a{bottom:83.572000pt;}
.y25a{bottom:84.086933pt;}
.y222{bottom:85.184000pt;}
.yb7{bottom:86.517333pt;}
.ya7{bottom:87.850667pt;}
.y12c{bottom:90.238667pt;}
.y2a1{bottom:90.503067pt;}
.y90{bottom:90.517333pt;}
.y6{bottom:90.856400pt;}
.y267{bottom:92.399867pt;}
.y171{bottom:92.553200pt;}
.y151{bottom:93.184000pt;}
.y1de{bottom:93.420267pt;}
.y113{bottom:94.517333pt;}
.y13c{bottom:95.850667pt;}
.y20c{bottom:96.086933pt;}
.y245{bottom:96.905333pt;}
.y218{bottom:97.184000pt;}
.y1c6{bottom:98.753600pt;}
.y1a4{bottom:99.850667pt;}
.y25e{bottom:100.635333pt;}
.y25f{bottom:101.605333pt;}
.yc3{bottom:102.517333pt;}
.y69{bottom:103.572000pt;}
.y259{bottom:104.086933pt;}
.y1f8{bottom:105.184000pt;}
.yb6{bottom:106.517333pt;}
.ya6{bottom:107.850667pt;}
.y12b{bottom:110.238667pt;}
.y2a0{bottom:110.503067pt;}
.y8f{bottom:110.517333pt;}
.y150{bottom:113.184000pt;}
.y1dd{bottom:113.420267pt;}
.y112{bottom:114.517333pt;}
.y13b{bottom:115.850667pt;}
.y20b{bottom:116.086933pt;}
.y196{bottom:116.905333pt;}
.y217{bottom:117.184000pt;}
.y1c5{bottom:118.753600pt;}
.y1a3{bottom:119.850667pt;}
.yde{bottom:122.517333pt;}
.y68{bottom:123.572000pt;}
.y287{bottom:123.850667pt;}
.y258{bottom:124.086933pt;}
.y1f7{bottom:125.184000pt;}
.yb5{bottom:126.517333pt;}
.ya5{bottom:127.850667pt;}
.yc2{bottom:129.184000pt;}
.y12a{bottom:130.238667pt;}
.y29f{bottom:130.503067pt;}
.y8e{bottom:130.517333pt;}
.y14f{bottom:133.184000pt;}
.y1dc{bottom:133.420267pt;}
.y111{bottom:134.517333pt;}
.y13a{bottom:135.850667pt;}
.y20a{bottom:136.086933pt;}
.y195{bottom:136.905333pt;}
.y216{bottom:137.184000pt;}
.y1c4{bottom:138.753600pt;}
.y1a2{bottom:139.850667pt;}
.ydd{bottom:142.517333pt;}
.y67{bottom:143.572000pt;}
.y257{bottom:144.086933pt;}
.y1f6{bottom:145.184000pt;}
.yf5{bottom:146.517333pt;}
.ya4{bottom:147.850667pt;}
.y19{bottom:148.870000pt;}
.y129{bottom:150.238667pt;}
.y29e{bottom:150.503067pt;}
.y8d{bottom:150.517333pt;}
.yb4{bottom:153.184000pt;}
.y1db{bottom:153.420267pt;}
.yb8{bottom:154.517333pt;}
.y139{bottom:155.850667pt;}
.y209{bottom:156.086933pt;}
.y194{bottom:156.905333pt;}
.y215{bottom:157.184000pt;}
.y1c3{bottom:158.753600pt;}
.y1a1{bottom:159.850667pt;}
.y1f3{bottom:161.184000pt;}
.ydc{bottom:162.517333pt;}
.y66{bottom:163.572000pt;}
.y256{bottom:164.086933pt;}
.yc1{bottom:165.184000pt;}
.yf4{bottom:166.517333pt;}
.ya3{bottom:167.850667pt;}
.y18{bottom:168.870000pt;}
.y128{bottom:170.238667pt;}
.y29d{bottom:170.503067pt;}
.y8c{bottom:170.517333pt;}
.y14e{bottom:173.184000pt;}
.y1da{bottom:173.420267pt;}
.y110{bottom:174.517333pt;}
.y138{bottom:175.850667pt;}
.y208{bottom:176.086933pt;}
.y193{bottom:176.905333pt;}
.y214{bottom:177.184000pt;}
.y16e{bottom:177.595733pt;}
.y1c2{bottom:178.753600pt;}
.y1a0{bottom:179.850667pt;}
.y268{bottom:180.266533pt;}
.ydb{bottom:182.517333pt;}
.y65{bottom:183.572000pt;}
.y255{bottom:184.086933pt;}
.yc0{bottom:185.184000pt;}
.yf3{bottom:186.517333pt;}
.ya2{bottom:187.850667pt;}
.y17{bottom:188.870000pt;}
.y127{bottom:190.238667pt;}
.y29c{bottom:190.503067pt;}
.y8b{bottom:190.517333pt;}
.y260{bottom:191.750000pt;}
.y282{bottom:191.850667pt;}
.y14d{bottom:193.184000pt;}
.y1d9{bottom:193.420267pt;}
.y10f{bottom:194.517333pt;}
.y15c{bottom:195.850667pt;}
.y22d{bottom:196.086933pt;}
.y192{bottom:196.905333pt;}
.y1f2{bottom:197.184000pt;}
.y16d{bottom:197.595733pt;}
.y1c1{bottom:198.753600pt;}
.y19f{bottom:199.850667pt;}
.yda{bottom:202.517333pt;}
.y207{bottom:202.753600pt;}
.y64{bottom:203.572000pt;}
.y213{bottom:203.850667pt;}
.y261{bottom:203.983200pt;}
.y254{bottom:204.086933pt;}
.ybf{bottom:205.184000pt;}
.yf2{bottom:206.517333pt;}
.ya1{bottom:207.850667pt;}
.y16{bottom:208.870000pt;}
.y126{bottom:210.238667pt;}
.y29b{bottom:210.503067pt;}
.y8a{bottom:210.517333pt;}
.y283{bottom:211.850667pt;}
.y14c{bottom:213.184000pt;}
.y1d8{bottom:213.420267pt;}
.y10e{bottom:214.517333pt;}
.y137{bottom:215.850667pt;}
.y22c{bottom:216.086933pt;}
.y191{bottom:216.905333pt;}
.y1f1{bottom:217.184000pt;}
.y16c{bottom:217.595733pt;}
.y1c0{bottom:218.753600pt;}
.y19e{bottom:219.850667pt;}
.y28c{bottom:221.184000pt;}
.yd9{bottom:222.517333pt;}
.y63{bottom:223.572000pt;}
.y253{bottom:224.086933pt;}
.y37{bottom:224.638667pt;}
.ybe{bottom:225.184000pt;}
.yf1{bottom:226.517333pt;}
.ya0{bottom:227.850667pt;}
.y21b{bottom:229.184000pt;}
.y125{bottom:230.238667pt;}
.y29a{bottom:230.503067pt;}
.y89{bottom:230.517333pt;}
.y14b{bottom:233.184000pt;}
.y1d7{bottom:233.420267pt;}
.y10d{bottom:234.517333pt;}
.y136{bottom:235.850667pt;}
.y22b{bottom:236.086933pt;}
.y190{bottom:236.905333pt;}
.y1f0{bottom:237.184000pt;}
.y16b{bottom:237.595733pt;}
.y1bf{bottom:238.753600pt;}
.y19d{bottom:239.850667pt;}
.y36{bottom:242.238667pt;}
.yd8{bottom:242.517333pt;}
.y62{bottom:243.572000pt;}
.y21f{bottom:243.850667pt;}
.y252{bottom:244.086933pt;}
.ybd{bottom:245.184000pt;}
.y1e1{bottom:245.420267pt;}
.yf0{bottom:246.517333pt;}
.y9f{bottom:247.850667pt;}
.y28a{bottom:249.184000pt;}
.y124{bottom:250.238667pt;}
.y299{bottom:250.503067pt;}
.y88{bottom:250.517333pt;}
.y284{bottom:251.850667pt;}
.y14a{bottom:253.184000pt;}
.y1d6{bottom:253.420267pt;}
.y10c{bottom:254.517333pt;}
.y25d{bottom:255.578000pt;}
.y135{bottom:255.850667pt;}
.y22a{bottom:256.086933pt;}
.y18f{bottom:256.905333pt;}
.y1ef{bottom:257.184000pt;}
.y16a{bottom:257.595733pt;}
.y206{bottom:258.753600pt;}
.y212{bottom:259.850667pt;}
.y35{bottom:262.105333pt;}
.yd7{bottom:262.517333pt;}
.y61{bottom:263.572000pt;}
.y251{bottom:264.086933pt;}
.ybc{bottom:265.184000pt;}
.y1be{bottom:265.420267pt;}
.yef{bottom:266.517333pt;}
.y4d{bottom:267.021867pt;}
.y9e{bottom:267.850667pt;}
.y274{bottom:269.184000pt;}
.y123{bottom:270.238667pt;}
.y298{bottom:270.503067pt;}
.y87{bottom:270.517333pt;}
.y221{bottom:271.850667pt;}
.y149{bottom:273.184000pt;}
.y1d5{bottom:273.420267pt;}
.y10b{bottom:274.517333pt;}
.y134{bottom:275.850667pt;}
.y229{bottom:276.086933pt;}
.y18e{bottom:276.905333pt;}
.y1ee{bottom:277.184000pt;}
.y169{bottom:277.595733pt;}
.y205{bottom:278.753600pt;}
.y211{bottom:279.850667pt;}
.y1e0{bottom:281.420267pt;}
.y34{bottom:282.110667pt;}
.y199{bottom:282.517333pt;}
.y60{bottom:283.572000pt;}
.y250{bottom:284.086933pt;}
.ybb{bottom:285.184000pt;}
.y1bd{bottom:285.420267pt;}
.yee{bottom:286.517333pt;}
.y9d{bottom:287.850667pt;}
.yd6{bottom:289.184000pt;}
.y4c{bottom:289.688533pt;}
.y269{bottom:290.208800pt;}
.y122{bottom:290.238667pt;}
.y297{bottom:290.503067pt;}
.y86{bottom:290.517333pt;}
.y262{bottom:291.054533pt;}
.y1d4{bottom:293.420267pt;}
.y10a{bottom:294.517333pt;}
.y133{bottom:295.850667pt;}
.y228{bottom:296.086933pt;}
.y18d{bottom:296.905333pt;}
.y1ed{bottom:297.184000pt;}
.y168{bottom:297.595733pt;}
.y15{bottom:298.470000pt;}
.y204{bottom:298.753600pt;}
.y148{bottom:299.850667pt;}
.y1df{bottom:301.420267pt;}
.y33{bottom:302.116000pt;}
.y198{bottom:302.517333pt;}
.y5f{bottom:303.572000pt;}
.y24f{bottom:304.086933pt;}
.yba{bottom:305.184000pt;}
.yed{bottom:306.517333pt;}
.y9c{bottom:307.850667pt;}
.y4b{bottom:308.355200pt;}
.y25c{bottom:309.184000pt;}
.y121{bottom:310.238667pt;}
.y296{bottom:310.503067pt;}
.y85{bottom:310.517333pt;}
.y109{bottom:314.517333pt;}
.y132{bottom:315.850667pt;}
.y227{bottom:316.086933pt;}
.y18c{bottom:316.905333pt;}
.y1ec{bottom:317.184000pt;}
.y167{bottom:317.595733pt;}
.y14{bottom:318.470000pt;}
.y203{bottom:318.753600pt;}
.y210{bottom:319.850667pt;}
.y1d3{bottom:320.086933pt;}
.y1bc{bottom:321.420267pt;}
.y32{bottom:322.121333pt;}
.y15b{bottom:322.517333pt;}
.y5e{bottom:323.572000pt;}
.y24e{bottom:324.086933pt;}
.yd5{bottom:325.184000pt;}
.yec{bottom:326.517333pt;}
.y4a{bottom:327.021867pt;}
.y9b{bottom:327.850667pt;}
.y289{bottom:329.184000pt;}
.y120{bottom:330.238667pt;}
.y295{bottom:330.503067pt;}
.y84{bottom:330.517333pt;}
.yb9{bottom:331.850667pt;}
.yb3{bottom:334.517333pt;}
.y131{bottom:335.850667pt;}
.y226{bottom:336.086933pt;}
.y18b{bottom:336.905333pt;}
.y166{bottom:337.595733pt;}
.y13{bottom:338.470000pt;}
.y202{bottom:338.753600pt;}
.y20f{bottom:339.850667pt;}
.y1bb{bottom:341.420267pt;}
.y31{bottom:342.126667pt;}
.y19c{bottom:342.517333pt;}
.y5c{bottom:343.572000pt;}
.y1eb{bottom:343.850667pt;}
.y24d{bottom:344.086933pt;}
.yd4{bottom:345.184000pt;}
.y170{bottom:345.353333pt;}
.y49{bottom:345.688533pt;}
.yeb{bottom:346.517333pt;}
.y9a{bottom:347.850667pt;}
.y197{bottom:349.184000pt;}
.y11f{bottom:350.238667pt;}
.y294{bottom:350.503067pt;}
.y83{bottom:350.517333pt;}
.ydf{bottom:354.517333pt;}
.y130{bottom:355.850667pt;}
.y1d2{bottom:356.086933pt;}
.y18a{bottom:356.905333pt;}
.y165{bottom:357.595733pt;}
.y12{bottom:358.470000pt;}
.y201{bottom:358.753600pt;}
.y20e{bottom:359.850667pt;}
.y1ba{bottom:361.420267pt;}
.y30{bottom:362.132000pt;}
.y19b{bottom:362.517333pt;}
.y5d{bottom:363.572000pt;}
.y15a{bottom:363.850667pt;}
.y24c{bottom:364.086933pt;}
.yd3{bottom:365.184000pt;}
.yea{bottom:366.517333pt;}
.y99{bottom:367.850667pt;}
.y48{bottom:368.355200pt;}
.yb2{bottom:369.184000pt;}
.y11e{bottom:370.238667pt;}
.y293{bottom:370.503067pt;}
.y82{bottom:370.517333pt;}
.y1f5{bottom:371.850667pt;}
.y108{bottom:374.517333pt;}
.y12f{bottom:375.850667pt;}
.y1d1{bottom:376.086933pt;}
.y189{bottom:376.905333pt;}
.y164{bottom:377.595733pt;}
.y11{bottom:378.470000pt;}
.y200{bottom:378.753600pt;}
.y1ea{bottom:379.850667pt;}
.y1b9{bottom:381.420267pt;}
.y2f{bottom:382.137333pt;}
.y19a{bottom:382.517333pt;}
.y159{bottom:383.850667pt;}
.y24b{bottom:384.086933pt;}
.yd2{bottom:385.184000pt;}
.y20d{bottom:386.517333pt;}
.y98{bottom:387.850667pt;}
.yb1{bottom:389.184000pt;}
.y11d{bottom:390.238667pt;}
.y292{bottom:390.503067pt;}
.y81{bottom:390.517333pt;}
.y47{bottom:391.021867pt;}
.ye9{bottom:393.184000pt;}
.y107{bottom:394.517333pt;}
.y12e{bottom:395.850667pt;}
.y1d0{bottom:396.086933pt;}
.y187{bottom:396.905333pt;}
.y163{bottom:397.595733pt;}
.y10{bottom:398.470000pt;}
.y1ff{bottom:398.753600pt;}
.y1e9{bottom:399.850667pt;}
.y17f{bottom:401.184000pt;}
.y1b8{bottom:401.420267pt;}
.y2e{bottom:402.142667pt;}
.y26a{bottom:402.208800pt;}
.y147{bottom:402.517333pt;}
.y158{bottom:403.850667pt;}
.y24a{bottom:404.086933pt;}
.yd1{bottom:405.184000pt;}
.y281{bottom:406.517333pt;}
.y97{bottom:407.850667pt;}
.yb0{bottom:409.184000pt;}
.y46{bottom:409.688533pt;}
.y5b{bottom:410.238667pt;}
.y291{bottom:410.503067pt;}
.y80{bottom:410.517333pt;}
.y106{bottom:414.517333pt;}
.y286{bottom:415.850667pt;}
.y1cf{bottom:416.086933pt;}
.y188{bottom:416.905333pt;}
.y162{bottom:417.595733pt;}
.yf{bottom:418.470000pt;}
.y1fe{bottom:418.753600pt;}
.y1e8{bottom:419.850667pt;}
.y1b7{bottom:421.420267pt;}
.y2d{bottom:422.148000pt;}
.y12d{bottom:422.517333pt;}
.y157{bottom:423.850667pt;}
.y249{bottom:424.086933pt;}
.yd0{bottom:425.184000pt;}
.y21e{bottom:426.517333pt;}
.y96{bottom:427.850667pt;}
.y45{bottom:428.355200pt;}
.yaf{bottom:429.184000pt;}
.y290{bottom:430.503067pt;}
.y7f{bottom:430.517333pt;}
.ye8{bottom:431.850667pt;}
.y17e{bottom:433.184000pt;}
.y105{bottom:434.517333pt;}
.y285{bottom:435.850667pt;}
.y1ce{bottom:436.086933pt;}
.y161{bottom:437.595733pt;}
.y146{bottom:438.517333pt;}
.y1e7{bottom:439.850667pt;}
.y1b6{bottom:441.420267pt;}
.y2c{bottom:442.153333pt;}
.y234{bottom:442.517333pt;}
.y248{bottom:444.086933pt;}
.ycf{bottom:445.184000pt;}
.y1fd{bottom:445.420267pt;}
.y5{bottom:446.196400pt;}
.ye{bottom:446.470000pt;}
.y95{bottom:447.850667pt;}
.yae{bottom:449.184000pt;}
.y28f{bottom:450.503067pt;}
.y7e{bottom:450.517333pt;}
.y44{bottom:451.021867pt;}
.y5a{bottom:451.572000pt;}
.ye7{bottom:451.850667pt;}
.y17d{bottom:453.184000pt;}
.y104{bottom:454.517333pt;}
.y1cd{bottom:456.086933pt;}
.y11c{bottom:456.905333pt;}
.y160{bottom:457.595733pt;}
.y277{bottom:458.238667pt;}
.y145{bottom:458.517333pt;}
.y1e6{bottom:459.850667pt;}
.y1b5{bottom:461.420267pt;}
.y2b{bottom:462.158667pt;}
.y233{bottom:462.517333pt;}
.y225{bottom:462.753600pt;}
.y186{bottom:463.572000pt;}
.y247{bottom:464.086933pt;}
.yce{bottom:465.184000pt;}
.y94{bottom:467.850667pt;}
.yad{bottom:469.184000pt;}
.y28e{bottom:470.503067pt;}
.y7d{bottom:470.517333pt;}
.y59{bottom:471.572000pt;}
.ye6{bottom:471.850667pt;}
.y17c{bottom:473.184000pt;}
.y43{bottom:473.688533pt;}
.y4{bottom:474.196400pt;}
.y103{bottom:474.517333pt;}
.y15f{bottom:477.595733pt;}
.y276{bottom:478.238667pt;}
.y144{bottom:478.517333pt;}
.y1e5{bottom:479.850667pt;}
.y1b4{bottom:481.420267pt;}
.y2a{bottom:482.164000pt;}
.y232{bottom:482.517333pt;}
.y1cc{bottom:482.753600pt;}
.y246{bottom:484.086933pt;}
.ycd{bottom:485.184000pt;}
.y156{bottom:486.517333pt;}
.y93{bottom:487.850667pt;}
.yac{bottom:489.184000pt;}
.y28d{bottom:490.503067pt;}
.y7c{bottom:490.517333pt;}
.y58{bottom:491.572000pt;}
.ye5{bottom:491.850667pt;}
.y42{bottom:492.355200pt;}
.ya8{bottom:494.517333pt;}
.y15e{bottom:497.595733pt;}
.y11b{bottom:498.238667pt;}
.y143{bottom:498.517333pt;}
.y17b{bottom:499.850667pt;}
.y1b3{bottom:501.420267pt;}
.y29{bottom:502.169333pt;}
.y231{bottom:502.517333pt;}
.y1cb{bottom:502.753600pt;}
.y224{bottom:504.086933pt;}
.y185{bottom:504.905333pt;}
.y155{bottom:506.517333pt;}
.y92{bottom:507.850667pt;}
.yab{bottom:509.184000pt;}
.y244{bottom:510.503067pt;}
.y7b{bottom:510.517333pt;}
.y41{bottom:511.021867pt;}
.ycc{bottom:511.850667pt;}
.ye0{bottom:514.517333pt;}
.y280{bottom:515.850667pt;}
.y57{bottom:516.456000pt;}
.y11a{bottom:518.238667pt;}
.y1b2{bottom:521.420267pt;}
.y28{bottom:522.174667pt;}
.y230{bottom:522.517333pt;}
.y223{bottom:524.086933pt;}
.y184{bottom:524.905333pt;}
.y142{bottom:525.184000pt;}
.yd{bottom:526.470000pt;}
.y154{bottom:526.517333pt;}
.yf8{bottom:527.850667pt;}
.y243{bottom:530.503067pt;}
.y7a{bottom:530.517333pt;}
.ye4{bottom:531.850667pt;}
.y40{bottom:533.688533pt;}
.y91{bottom:534.517333pt;}
.yaa{bottom:535.850667pt;}
.y119{bottom:538.238667pt;}
.y1b1{bottom:541.420267pt;}
.y27{bottom:542.180000pt;}
.y22f{bottom:542.517333pt;}
.y15d{bottom:542.929067pt;}
.y1ca{bottom:544.086933pt;}
.y183{bottom:544.905333pt;}
.yc{bottom:546.470000pt;}
.y153{bottom:546.517333pt;}
.ycb{bottom:547.850667pt;}
.y26e{bottom:549.184000pt;}
.y242{bottom:550.503067pt;}
.y79{bottom:550.517333pt;}
.y56{bottom:551.572000pt;}
.ye3{bottom:551.850667pt;}
.y26b{bottom:554.368000pt;}
.y27f{bottom:555.850667pt;}
.y3f{bottom:556.355200pt;}
.y118{bottom:558.238667pt;}
.y102{bottom:561.184000pt;}
.y1b0{bottom:561.420267pt;}
.y263{bottom:561.495467pt;}
.y26{bottom:562.185333pt;}
.y272{bottom:562.517333pt;}
.y1c9{bottom:564.086933pt;}
.y182{bottom:564.905333pt;}
.yca{bottom:567.850667pt;}
.y22e{bottom:569.184000pt;}
.y241{bottom:570.503067pt;}
.y78{bottom:570.517333pt;}
.y55{bottom:571.572000pt;}
.ye2{bottom:571.850667pt;}
.y220{bottom:574.517333pt;}
.y3e{bottom:575.021867pt;}
.y27e{bottom:575.850667pt;}
.y152{bottom:578.517333pt;}
.y141{bottom:581.184000pt;}
.y1fc{bottom:581.420267pt;}
.y25{bottom:582.190667pt;}
.y271{bottom:582.517333pt;}
.y1c8{bottom:584.086933pt;}
.y181{bottom:584.905333pt;}
.y117{bottom:586.238667pt;}
.yb{bottom:586.470000pt;}
.y16f{bottom:587.153333pt;}
.yc9{bottom:587.850667pt;}
.y1af{bottom:588.086933pt;}
.y240{bottom:590.503067pt;}
.y77{bottom:590.517333pt;}
.y54{bottom:591.572000pt;}
.y17a{bottom:591.850667pt;}
.y3d{bottom:593.688533pt;}
.y1f4{bottom:594.517333pt;}
.y27d{bottom:595.850667pt;}
.ye1{bottom:598.517333pt;}
.y140{bottom:601.184000pt;}
.y1fb{bottom:601.420267pt;}
.y24{bottom:602.196000pt;}
.y101{bottom:602.517333pt;}
.y1c7{bottom:604.086933pt;}
.ya{bottom:606.470000pt;}
.yc8{bottom:607.850667pt;}
.y288{bottom:609.184000pt;}
.y23f{bottom:610.503067pt;}
.y76{bottom:610.517333pt;}
.y179{bottom:611.850667pt;}
.y180{bottom:612.905333pt;}
.y27c{bottom:615.850667pt;}
.y3c{bottom:616.355200pt;}
.y53{bottom:616.456000pt;}
.y13f{bottom:621.184000pt;}
.y23{bottom:622.201333pt;}
.y100{bottom:622.517333pt;}
.y1ae{bottom:624.086933pt;}
.y9{bottom:626.470000pt;}
.yc7{bottom:627.850667pt;}
.y1fa{bottom:628.086933pt;}
.y116{bottom:630.238667pt;}
.y23e{bottom:630.503067pt;}
.y75{bottom:630.517333pt;}
.y178{bottom:631.850667pt;}
.y27b{bottom:635.850667pt;}
.y3b{bottom:639.021867pt;}
.y52{bottom:639.572000pt;}
.y13e{bottom:641.184000pt;}
.y22{bottom:642.206667pt;}
.yff{bottom:642.517333pt;}
.y1ad{bottom:644.086933pt;}
.yc6{bottom:647.850667pt;}
.y26c{bottom:648.208800pt;}
.y273{bottom:649.184000pt;}
.y23d{bottom:650.503067pt;}
.y74{bottom:650.517333pt;}
.y177{bottom:651.850667pt;}
.yf9{bottom:654.517333pt;}
.y27a{bottom:655.850667pt;}
.y264{bottom:656.346800pt;}
.y115{bottom:656.905333pt;}
.y3a{bottom:657.688533pt;}
.y265{bottom:658.957467pt;}
.y21{bottom:662.212000pt;}
.yfe{bottom:662.517333pt;}
.y1ac{bottom:664.086933pt;}
.y8{bottom:666.470000pt;}
.yf7{bottom:667.850667pt;}
.y28b{bottom:669.184000pt;}
.y23c{bottom:670.503067pt;}
.y73{bottom:670.517333pt;}
.yc5{bottom:674.517333pt;}
.y279{bottom:675.850667pt;}
.y176{bottom:678.517333pt;}
.y20{bottom:682.217333pt;}
.yfd{bottom:682.517333pt;}
.y51{bottom:683.572000pt;}
.y1ab{bottom:684.086933pt;}
.y39{bottom:684.355200pt;}
.y1e4{bottom:687.850667pt;}
.y270{bottom:689.184000pt;}
.y23b{bottom:690.503067pt;}
.y72{bottom:690.517333pt;}
.yf6{bottom:694.517333pt;}
.y278{bottom:695.850667pt;}
.y1f{bottom:702.222667pt;}
.yfc{bottom:702.517333pt;}
.y1aa{bottom:704.086933pt;}
.y7{bottom:706.470000pt;}
.y1e3{bottom:707.850667pt;}
.y275{bottom:709.184000pt;}
.y50{bottom:710.238667pt;}
.y23a{bottom:710.503067pt;}
.y71{bottom:710.517333pt;}
.y21a{bottom:714.517333pt;}
.y3{bottom:720.863067pt;}
.y1e{bottom:722.228000pt;}
.yfb{bottom:722.517333pt;}
.y1a9{bottom:724.086933pt;}
.y38{bottom:727.021867pt;}
.y21d{bottom:727.850667pt;}
.y239{bottom:730.503067pt;}
.y70{bottom:730.517333pt;}
.y26d{bottom:732.208800pt;}
.y1e2{bottom:734.517333pt;}
.y4f{bottom:736.905333pt;}
.ya9{bottom:737.184000pt;}
.y266{bottom:742.209867pt;}
.y1d{bottom:742.233333pt;}
.y1a8{bottom:744.086933pt;}
.yfa{bottom:749.184000pt;}
.y238{bottom:750.503067pt;}
.y6f{bottom:750.517333pt;}
.y21c{bottom:754.517333pt;}
.y2{bottom:760.863067pt;}
.y1c{bottom:762.238667pt;}
.y1a7{bottom:764.086933pt;}
.y237{bottom:770.503067pt;}
.y6e{bottom:770.517333pt;}
.y1a6{bottom:784.086933pt;}
.y236{bottom:790.503067pt;}
.y6d{bottom:790.517333pt;}
.y1f9{bottom:790.753600pt;}
.y4e{bottom:798.238667pt;}
.y1{bottom:803.529733pt;}
.y1b{bottom:806.238667pt;}
.y235{bottom:810.503067pt;}
.y6c{bottom:810.517333pt;}
.y1a5{bottom:810.753600pt;}
.y6b{bottom:843.652667pt;}
.hf{height:23.748141pt;}
.ha{height:35.583333pt;}
.h1a{height:36.145833pt;}
.h13{height:37.437500pt;}
.h8{height:39.760417pt;}
.h11{height:40.734375pt;}
.hb{height:44.479167pt;}
.hc{height:46.796875pt;}
.hd{height:47.213542pt;}
.h7{height:48.927083pt;}
.h17{height:49.136719pt;}
.h10{height:49.299479pt;}
.he{height:51.333333pt;}
.h9{height:51.476562pt;}
.h18{height:51.848829pt;}
.h14{height:51.934896pt;}
.h5{height:57.833333pt;}
.h3{height:68.677083pt;}
.h6{height:71.166667pt;}
.h19{height:74.666667pt;}
.h15{height:75.541667pt;}
.h4{height:93.979167pt;}
.h16{height:250.460853pt;}
.h12{height:263.511799pt;}
.h2{height:907.086667pt;}
.h0{height:907.200000pt;}
.h1{height:907.333333pt;}
.w3{width:604.666667pt;}
.w2{width:604.724000pt;}
.w4{width:604.800000pt;}
.w0{width:610.560000pt;}
.w1{width:610.666667pt;}
.x0{left:0.000000pt;}
.x7{left:62.400000pt;}
.x2f{left:66.291600pt;}
.x2e{left:68.991867pt;}
.x1e{left:75.590133pt;}
.xb{left:76.797333pt;}
.x3f{left:77.789867pt;}
.x2{left:79.336933pt;}
.x3{left:82.434667pt;}
.x3c{left:88.249733pt;}
.x13{left:90.890267pt;}
.x20{left:94.400000pt;}
.x53{left:98.671600pt;}
.x40{left:101.536933pt;}
.x54{left:104.895600pt;}
.x17{left:105.790133pt;}
.x33{left:106.885067pt;}
.xa{left:108.800000pt;}
.x24{left:110.343467pt;}
.x1f{left:117.345867pt;}
.x32{left:119.489333pt;}
.x22{left:123.852133pt;}
.x25{left:127.156000pt;}
.x21{left:128.789600pt;}
.x2a{left:130.433600pt;}
.x2b{left:132.622933pt;}
.x26{left:135.932000pt;}
.x41{left:137.233600pt;}
.x14{left:138.359067pt;}
.x3a{left:142.311467pt;}
.x1b{left:144.880933pt;}
.x31{left:146.754933pt;}
.x29{left:148.851867pt;}
.x3d{left:149.926800pt;}
.x36{left:152.117600pt;}
.x1{left:155.168667pt;}
.x37{left:156.869200pt;}
.x34{left:163.640267pt;}
.x3b{left:168.883333pt;}
.x10{left:170.133333pt;}
.x42{left:174.566933pt;}
.x1c{left:176.795867pt;}
.x27{left:184.692400pt;}
.x16{left:190.610400pt;}
.x43{left:193.233600pt;}
.x19{left:198.129867pt;}
.x2c{left:199.924667pt;}
.x38{left:211.779600pt;}
.x18{left:215.664667pt;}
.x39{left:216.889333pt;}
.x56{left:219.331467pt;}
.x30{left:220.783067pt;}
.x1d{left:222.457333pt;}
.x1a{left:224.290667pt;}
.x3e{left:225.624667pt;}
.x23{left:227.122400pt;}
.x5{left:228.083067pt;}
.x44{left:230.781733pt;}
.x12{left:233.461733pt;}
.x15{left:235.994533pt;}
.x28{left:239.089867pt;}
.x35{left:242.742267pt;}
.xf{left:248.254933pt;}
.x55{left:249.878667pt;}
.x9{left:257.734133pt;}
.x45{left:266.478400pt;}
.x6{left:277.987333pt;}
.x4{left:280.124667pt;}
.x46{left:285.145067pt;}
.x2d{left:291.907333pt;}
.xe{left:303.896933pt;}
.x11{left:306.933333pt;}
.x8{left:307.824000pt;}
.xc{left:318.629067pt;}
.x47{left:322.693200pt;}
.x48{left:339.723200pt;}
.x49{left:358.389867pt;}
.xd{left:377.722400pt;}
.x4a{left:395.723200pt;}
.x4b{left:414.604667pt;}
.x4c{left:433.271333pt;}
.x4d{left:450.301333pt;}
.x4e{left:468.968000pt;}
.x4f{left:487.634667pt;}
.x50{left:506.301333pt;}
.x51{left:524.968000pt;}
.x52{left:543.634667pt;}
}




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