
    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_44a7b7ffa4a873cc0d26829a.woff')format("woff");}.ff1{font-family:ff1;line-height:0.711000;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_b0868d4d75780c81c4cb6823.woff')format("woff");}.ff2{font-family:ff2;line-height:0.907000;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_cdeb622b0d213ddbd631d3f8.woff')format("woff");}.ff3{font-family:ff3;line-height:1.041000;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_6e22bd61ba6d1b104c2e27e6.woff')format("woff");}.ff4{font-family:ff4;line-height:0.946000;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_b1c0c2057e7aa04fb13f5729.woff')format("woff");}.ff5{font-family:ff5;line-height:0.989000;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_226e863df148a6d6dc8e999d.woff')format("woff");}.ff6{font-family:ff6;line-height:1.044000;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_738759678602084cf3e76d49.woff')format("woff");}.ff7{font-family:ff7;line-height:1.029000;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_fd45f9cabdbe78a932c21f12.woff')format("woff");}.ff8{font-family:ff8;line-height:0.907000;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_72b858ddba6e85d2a7d6bea1.woff')format("woff");}.ff9{font-family:ff9;line-height:0.907000;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_3bd0a5599de16816448c45d0.woff')format("woff");}.ffa{font-family:ffa;line-height:1.042000;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_efe501ab57af718cff50287d.woff')format("woff");}.ffb{font-family:ffb;line-height:0.732000;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_49831fd25df75082e6446b6f.woff')format("woff");}.ffc{font-family:ffc;line-height:0.728000;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_fe3b58fa9a8c5eab4966f332.woff')format("woff");}.ffd{font-family:ffd;line-height:0.751000;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_6434cc3180083562925032bc.woff')format("woff");}.ffe{font-family:ffe;line-height:1.040000;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_2151699a688cea778720b8c3.woff')format("woff");}.fff{font-family:fff;line-height:1.059000;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.241481,0.000000,-0.064705,0.241481,0,0);-ms-transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);-webkit-transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);}
.m2{transform:matrix(0.246202,0.000000,-0.043412,0.246202,0,0);-ms-transform:matrix(0.246202,0.000000,-0.043412,0.246202,0,0);-webkit-transform:matrix(0.246202,0.000000,-0.043412,0.246202,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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:5.699400px;}
.lsf{letter-spacing:-2.793000px;}
.ls10{letter-spacing:-0.741000px;}
.lse{letter-spacing:-0.570000px;}
.lsd{letter-spacing:-0.228000px;}
.lsc{letter-spacing:-0.042000px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.240000px;}
.ls2{letter-spacing:0.600000px;}
.lsb{letter-spacing:0.660000px;}
.ls8{letter-spacing:0.720000px;}
.ls7{letter-spacing:0.732000px;}
.ls6{letter-spacing:0.900000px;}
.ls9{letter-spacing:1.147800px;}
.ls5{letter-spacing:1.800000px;}
.lsa{letter-spacing:12.086400px;}
.ls0{letter-spacing:114.031200px;}
.ls4{letter-spacing:197.136000px;}
.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;}
}
.ws77{word-spacing:-96.000000px;}
.ws28{word-spacing:-90.900000px;}
.ws2d{word-spacing:-73.932000px;}
.ws29{word-spacing:-73.110691px;}
.ws2e{word-spacing:-72.720000px;}
.ws0{word-spacing:-72.000000px;}
.ws85{word-spacing:-66.660000px;}
.ws1{word-spacing:-60.600000px;}
.ws58{word-spacing:-60.000000px;}
.ws3f{word-spacing:-59.400000px;}
.ws4a{word-spacing:-58.780800px;}
.ws2f{word-spacing:-58.779600px;}
.ws3e{word-spacing:-58.608000px;}
.ws56{word-spacing:-57.816000px;}
.ws3d{word-spacing:-57.456000px;}
.ws94{word-spacing:-57.000000px;}
.ws92{word-spacing:-56.772000px;}
.ws93{word-spacing:-56.430000px;}
.ws96{word-spacing:-56.259000px;}
.ws95{word-spacing:-54.207000px;}
.ws62{word-spacing:-53.352000px;}
.ws40{word-spacing:-52.848000px;}
.ws97{word-spacing:-45.240000px;}
.ws49{word-spacing:-42.019200px;}
.wsc{word-spacing:-36.960000px;}
.ws59{word-spacing:-36.000000px;}
.ws42{word-spacing:-25.848000px;}
.ws16{word-spacing:-20.051233px;}
.ws79{word-spacing:-18.864000px;}
.ws44{word-spacing:-18.360000px;}
.ws60{word-spacing:-15.720000px;}
.ws98{word-spacing:-12.336000px;}
.ws41{word-spacing:-12.096000px;}
.ws91{word-spacing:-10.794000px;}
.ws90{word-spacing:-10.752000px;}
.ws26{word-spacing:-8.910000px;}
.ws50{word-spacing:-8.784000px;}
.ws4f{word-spacing:-8.352000px;}
.ws54{word-spacing:-7.488000px;}
.ws17{word-spacing:-6.840000px;}
.ws43{word-spacing:-6.048000px;}
.ws1f{word-spacing:-4.950000px;}
.ws53{word-spacing:-4.824000px;}
.ws51{word-spacing:-4.032000px;}
.ws25{word-spacing:-3.420000px;}
.ws4d{word-spacing:-3.312000px;}
.ws13{word-spacing:-3.168000px;}
.ws4{word-spacing:-2.952000px;}
.ws18{word-spacing:-2.880000px;}
.ws4b{word-spacing:-2.664000px;}
.ws6d{word-spacing:-2.592000px;}
.ws10{word-spacing:-2.376000px;}
.ws52{word-spacing:-2.232000px;}
.ws2a{word-spacing:-1.800000px;}
.ws3{word-spacing:-1.728000px;}
.ws64{word-spacing:-1.224000px;}
.ws6f{word-spacing:-1.152000px;}
.ws71{word-spacing:-0.792000px;}
.ws81{word-spacing:-0.720000px;}
.ws3a{word-spacing:-0.600000px;}
.ws65{word-spacing:-0.288000px;}
.ws3c{word-spacing:-0.072000px;}
.ws2{word-spacing:0.000000px;}
.ws80{word-spacing:0.432000px;}
.ws35{word-spacing:0.648000px;}
.ws4c{word-spacing:1.008000px;}
.ws5{word-spacing:1.152000px;}
.ws6{word-spacing:1.296000px;}
.ws34{word-spacing:1.728000px;}
.ws8{word-spacing:1.800000px;}
.ws7{word-spacing:1.944000px;}
.ws5b{word-spacing:2.016000px;}
.ws6b{word-spacing:2.088000px;}
.ws74{word-spacing:2.232000px;}
.ws2c{word-spacing:2.808000px;}
.wsb{word-spacing:3.456000px;}
.wsf{word-spacing:3.672000px;}
.ws70{word-spacing:3.744000px;}
.ws6e{word-spacing:3.960000px;}
.ws36{word-spacing:4.032000px;}
.ws67{word-spacing:4.176000px;}
.ws12{word-spacing:4.248000px;}
.ws31{word-spacing:4.392000px;}
.ws83{word-spacing:4.680000px;}
.ws84{word-spacing:4.752000px;}
.ws2b{word-spacing:4.824000px;}
.wsa{word-spacing:5.400000px;}
.ws69{word-spacing:5.616000px;}
.ws14{word-spacing:5.760000px;}
.ws6c{word-spacing:5.976000px;}
.ws47{word-spacing:6.768000px;}
.ws9{word-spacing:6.840000px;}
.ws76{word-spacing:7.344000px;}
.ws75{word-spacing:7.560000px;}
.ws37{word-spacing:7.776000px;}
.wse{word-spacing:7.992000px;}
.ws19{word-spacing:8.568000px;}
.ws7b{word-spacing:8.712000px;}
.ws33{word-spacing:9.216000px;}
.ws22{word-spacing:9.270000px;}
.ws73{word-spacing:9.576000px;}
.ws1a{word-spacing:9.936000px;}
.ws7a{word-spacing:10.152000px;}
.ws5f{word-spacing:10.224000px;}
.ws21{word-spacing:10.530000px;}
.ws11{word-spacing:10.656000px;}
.ws48{word-spacing:10.728000px;}
.ws6a{word-spacing:10.944000px;}
.ws82{word-spacing:11.088000px;}
.ws1b{word-spacing:12.024000px;}
.ws4e{word-spacing:12.168000px;}
.ws72{word-spacing:12.384000px;}
.ws68{word-spacing:12.600000px;}
.ws5a{word-spacing:13.176000px;}
.ws1e{word-spacing:13.680000px;}
.ws3b{word-spacing:13.752000px;}
.ws39{word-spacing:13.824000px;}
.ws45{word-spacing:14.184000px;}
.ws66{word-spacing:14.976000px;}
.ws20{word-spacing:15.030000px;}
.ws32{word-spacing:16.848000px;}
.ws5c{word-spacing:18.360000px;}
.ws46{word-spacing:19.584000px;}
.ws55{word-spacing:19.656000px;}
.ws1d{word-spacing:20.160000px;}
.ws38{word-spacing:20.592000px;}
.ws7d{word-spacing:21.312000px;}
.ws5e{word-spacing:22.392000px;}
.ws30{word-spacing:23.184000px;}
.ws63{word-spacing:24.192000px;}
.ws24{word-spacing:25.290000px;}
.ws23{word-spacing:27.000000px;}
.ws8e{word-spacing:29.916000px;}
.ws88{word-spacing:32.508000px;}
.ws1c{word-spacing:32.670000px;}
.ws5d{word-spacing:33.336000px;}
.ws8d{word-spacing:37.260000px;}
.ws7c{word-spacing:37.440000px;}
.ws8c{word-spacing:41.580000px;}
.ws87{word-spacing:44.388000px;}
.ws8b{word-spacing:46.116000px;}
.ws89{word-spacing:49.572000px;}
.ws86{word-spacing:55.836000px;}
.ws8f{word-spacing:56.160000px;}
.ws8a{word-spacing:62.748000px;}
.ws57{word-spacing:73.800000px;}
.ws61{word-spacing:97.035600px;}
.ws27{word-spacing:98.730000px;}
.ws78{word-spacing:112.608000px;}
.wsd{word-spacing:123.624000px;}
.ws15{word-spacing:125.136000px;}
.ws7f{word-spacing:128.736000px;}
.ws7e{word-spacing:142.752000px;}
._14{margin-left:-1035.882000px;}
._72{margin-left:-583.488000px;}
._85{margin-left:-478.176000px;}
._67{margin-left:-455.808000px;}
._3c{margin-left:-397.545600px;}
._57{margin-left:-368.256000px;}
._4d{margin-left:-360.576000px;}
._11{margin-left:-359.100000px;}
._2c{margin-left:-346.560000px;}
._69{margin-left:-332.640000px;}
._46{margin-left:-318.432000px;}
._7e{margin-left:-306.729600px;}
._33{margin-left:-293.289600px;}
._12{margin-left:-270.900000px;}
._15{margin-left:-269.856000px;}
._6b{margin-left:-268.416000px;}
._5e{margin-left:-263.904000px;}
._83{margin-left:-245.769600px;}
._41{margin-left:-243.849600px;}
._56{margin-left:-230.102400px;}
._74{margin-left:-226.944000px;}
._3a{margin-left:-218.856000px;}
._2e{margin-left:-216.940800px;}
._4c{margin-left:-209.952000px;}
._37{margin-left:-203.721600px;}
._53{margin-left:-201.225600px;}
._52{margin-left:-194.112000px;}
._80{margin-left:-189.600000px;}
._55{margin-left:-182.793600px;}
._6d{margin-left:-171.177600px;}
._30{margin-left:-169.056000px;}
._51{margin-left:-166.761600px;}
._78{margin-left:-161.942400px;}
._2f{margin-left:-160.032000px;}
._27{margin-left:-158.304000px;}
._4b{margin-left:-156.864000px;}
._2d{margin-left:-153.715200px;}
._47{margin-left:-151.382400px;}
._42{margin-left:-150.230400px;}
._65{margin-left:-144.576000px;}
._62{margin-left:-143.328000px;}
._13{margin-left:-137.880000px;}
._81{margin-left:-134.976000px;}
._3f{margin-left:-133.536000px;}
._34{margin-left:-130.262400px;}
._2a{margin-left:-125.193600px;}
._63{margin-left:-121.248000px;}
._5c{margin-left:-119.328000px;}
._4a{margin-left:-118.176000px;}
._58{margin-left:-115.382400px;}
._32{margin-left:-112.416000px;}
._7c{margin-left:-109.824000px;}
._50{margin-left:-107.712000px;}
._75{margin-left:-103.488000px;}
._66{margin-left:-102.240000px;}
._38{margin-left:-101.174400px;}
._35{margin-left:-99.072000px;}
._54{margin-left:-95.232000px;}
._6f{margin-left:-94.185600px;}
._64{margin-left:-86.409600px;}
._3d{margin-left:-84.278400px;}
._36{margin-left:-74.496000px;}
._49{margin-left:-73.152000px;}
._2b{margin-left:-66.806400px;}
._31{margin-left:-64.608000px;}
._44{margin-left:-62.304000px;}
._4f{margin-left:-61.238400px;}
._28{margin-left:-59.904000px;}
._39{margin-left:-58.848000px;}
._5b{margin-left:-57.408000px;}
._3b{margin-left:-56.352000px;}
._4e{margin-left:-43.401600px;}
._45{margin-left:-41.280000px;}
._40{margin-left:-38.496000px;}
._77{margin-left:-36.768000px;}
._16{margin-left:-31.755000px;}
._29{margin-left:-27.168000px;}
._18{margin-left:-22.262205px;}
._5{margin-left:-21.057600px;}
._26{margin-left:-15.469200px;}
._8a{margin-left:-13.857600px;}
._20{margin-left:-10.029600px;}
._1f{margin-left:-8.827200px;}
._25{margin-left:-7.822200px;}
._9{margin-left:-6.480000px;}
._1c{margin-left:-5.376000px;}
._1{margin-left:-4.320000px;}
._0{margin-left:-2.400000px;}
._3{margin-left:-1.224000px;}
._7{width:1.569600px;}
._6{width:3.060000px;}
._19{width:4.248000px;}
._17{width:5.445000px;}
._f{width:6.998400px;}
._4{width:8.409600px;}
._22{width:9.619200px;}
._1a{width:11.678400px;}
._89{width:30.294000px;}
._87{width:43.362000px;}
._88{width:90.050400px;}
._86{width:129.924000px;}
._5a{width:137.280000px;}
._61{width:139.382400px;}
._10{width:159.750000px;}
._24{width:172.944000px;}
._23{width:178.272000px;}
._1b{width:182.952000px;}
._b{width:186.480000px;}
._a{width:189.144000px;}
._8{width:190.296000px;}
._d{width:193.464000px;}
._1e{width:196.128000px;}
._1d{width:197.136000px;}
._2{width:198.864000px;}
._e{width:200.304000px;}
._21{width:201.960000px;}
._c{width:203.424000px;}
._71{width:236.136000px;}
._79{width:253.440000px;}
._7d{width:256.896000px;}
._7a{width:285.609600px;}
._6e{width:336.182400px;}
._6c{width:343.104000px;}
._70{width:405.398400px;}
._82{width:407.232000px;}
._6a{width:409.248000px;}
._7f{width:410.784000px;}
._7b{width:435.446400px;}
._5f{width:461.942400px;}
._5d{width:468.384000px;}
._3e{width:496.608000px;}
._84{width:499.008000px;}
._59{width:536.745600px;}
._76{width:606.876000px;}
._60{width:640.219200px;}
._73{width:651.936000px;}
._43{width:667.872000px;}
._68{width:757.632000px;}
._48{width:981.696000px;}
.fc13{color:rgb(43,66,146);}
.fc12{color:rgb(228,152,27);}
.fc15{color:rgb(42,65,138);}
.fc10{color:rgb(237,133,40);}
.fcf{color:rgb(246,134,34);}
.fc11{color:rgb(237,22,74);}
.fcd{color:rgb(237,22,74);}
.fc9{color:rgb(84,174,229);}
.fc4{color:rgb(35,31,32);}
.fc6{color:rgb(57,53,54);}
.fc3{color:transparent;}
.fc8{color:rgb(82,164,217);}
.fc2{color:rgb(38,70,153);}
.fca{color:rgb(38,72,163);}
.fc14{color:rgb(30,30,48);}
.fce{color:rgb(137,188,48);}
.fc5{color:rgb(237,154,17);}
.fc1{color:rgb(58,57,60);}
.fcb{color:rgb(209,240,245);}
.fc0{color:rgb(16,15,13);}
.fc7{color:rgb(255,255,255);}
.fcc{color:rgb(135,183,53);}
.fsf{font-size:42.000000px;}
.fs1{font-size:48.000000px;}
.fs10{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fsa{font-size:73.110691px;}
.fsb{font-size:73.200000px;}
.fs7{font-size:74.539900px;}
.fs8{font-size:90.000000px;}
.fsd{font-size:96.000000px;}
.fs5{font-size:108.000000px;}
.fsc{font-size:126.000000px;}
.fs6{font-size:132.000000px;}
.fse{font-size:150.000000px;}
.fs4{font-size:156.000000px;}
.fs11{font-size:174.000000px;}
.fs9{font-size:180.000000px;}
.fs12{font-size:222.000000px;}
.y0{bottom:0.000000px;}
.y14c{bottom:0.181350px;}
.y14b{bottom:43.828500px;}
.y1{bottom:44.009850px;}
.y13{bottom:45.434700px;}
.y1ed{bottom:87.103500px;}
.yf8{bottom:87.308850px;}
.y140{bottom:93.410850px;}
.y125{bottom:99.597000px;}
.y1ec{bottom:105.103500px;}
.yf7{bottom:117.314850px;}
.y196{bottom:121.507350px;}
.y1c3{bottom:121.633350px;}
.y60{bottom:121.904850px;}
.y1eb{bottom:123.103500px;}
.y6e{bottom:124.491450px;}
.y124{bottom:129.603000px;}
.y1cf{bottom:135.288600px;}
.y195{bottom:139.052850px;}
.y1c2{bottom:139.178850px;}
.y1ea{bottom:141.103500px;}
.yf6{bottom:147.320850px;}
.yb7{bottom:149.461650px;}
.y5f{bottom:151.910850px;}
.y1c1{bottom:156.724350px;}
.y1e9{bottom:159.103500px;}
.y123{bottom:159.591000px;}
.y24d{bottom:159.622050px;}
.y4c{bottom:164.588850px;}
.y7a{bottom:173.475600px;}
.y194{bottom:174.154350px;}
.y1c0{bottom:174.269850px;}
.y1e8{bottom:177.103500px;}
.yf5{bottom:177.326850px;}
.y24c{bottom:177.622050px;}
.y13f{bottom:183.410850px;}
.y122{bottom:189.597000px;}
.y193{bottom:191.699850px;}
.y1bf{bottom:191.815350px;}
.y4b{bottom:194.594850px;}
.y1e7{bottom:195.103500px;}
.y24b{bottom:195.622050px;}
.y79{bottom:197.469600px;}
.y1da{bottom:205.498350px;}
.yf4{bottom:207.332850px;}
.y192{bottom:209.245350px;}
.y1be{bottom:209.360850px;}
.y1e6{bottom:213.103500px;}
.y13e{bottom:213.410850px;}
.y24a{bottom:213.622050px;}
.y5e{bottom:216.114450px;}
.y121{bottom:219.603000px;}
.y78{bottom:221.463600px;}
.y1ce{bottom:223.040100px;}
.y4a{bottom:224.600850px;}
.y64{bottom:225.584850px;}
.y191{bottom:226.790850px;}
.yb4{bottom:229.633800px;}
.y1e5{bottom:231.103500px;}
.y249{bottom:231.622050px;}
.y22f{bottom:234.622050px;}
.yf3{bottom:237.338850px;}
.yb1{bottom:238.675800px;}
.yb6{bottom:240.133800px;}
.y13d{bottom:243.410850px;}
.y1bd{bottom:244.462350px;}
.y77{bottom:245.457600px;}
.y5d{bottom:246.120450px;}
.y1e4{bottom:249.103500px;}
.y120{bottom:249.585000px;}
.y248{bottom:249.622050px;}
.y167{bottom:249.949350px;}
.yb3{bottom:250.633800px;}
.y22e{bottom:252.622050px;}
.y1d9{bottom:258.152100px;}
.yb0{bottom:259.681800px;}
.yb5{bottom:261.133800px;}
.y190{bottom:261.892350px;}
.y1bc{bottom:262.007850px;}
.y1e3{bottom:267.103500px;}
.yf2{bottom:267.344850px;}
.y76{bottom:269.451600px;}
.y22d{bottom:270.622050px;}
.yb2{bottom:271.633800px;}
.y166{bottom:276.943350px;}
.y13c{bottom:279.410850px;}
.y18f{bottom:279.437850px;}
.y11f{bottom:279.591000px;}
.y1e2{bottom:285.103500px;}
.y22c{bottom:288.622050px;}
.y75{bottom:293.445600px;}
.y18e{bottom:296.983350px;}
.y1bb{bottom:297.109350px;}
.yf1{bottom:297.350850px;}
.y4d{bottom:301.473900px;}
.y1e1{bottom:303.103500px;}
.y247{bottom:303.622050px;}
.y165{bottom:303.937350px;}
.y22b{bottom:306.622050px;}
.y11e{bottom:309.597000px;}
.y18d{bottom:314.528850px;}
.y1ba{bottom:314.654850px;}
.y13b{bottom:315.410850px;}
.y74{bottom:317.439600px;}
.y1e0{bottom:321.103500px;}
.y246{bottom:321.622050px;}
.y22a{bottom:324.622050px;}
.yf0{bottom:327.356850px;}
.y5c{bottom:327.513750px;}
.y164{bottom:330.931350px;}
.y18c{bottom:332.074350px;}
.y1b9{bottom:332.200350px;}
.y1df{bottom:339.103500px;}
.y11d{bottom:339.603000px;}
.y245{bottom:339.622050px;}
.y73{bottom:341.433600px;}
.y229{bottom:342.622050px;}
.y1cd{bottom:345.889350px;}
.y1d8{bottom:345.903600px;}
.y18b{bottom:349.619850px;}
.y1b8{bottom:349.745850px;}
.y13a{bottom:351.410850px;}
.y1de{bottom:357.103500px;}
.yef{bottom:357.362850px;}
.y5b{bottom:357.519750px;}
.y244{bottom:357.622050px;}
.y163{bottom:357.925350px;}
.y228{bottom:360.622050px;}
.y11c{bottom:369.603000px;}
.yad{bottom:370.195650px;}
.yaf{bottom:371.653650px;}
.y1dd{bottom:375.103500px;}
.y243{bottom:375.622050px;}
.y227{bottom:381.622050px;}
.y18a{bottom:384.721350px;}
.y1b7{bottom:384.847350px;}
.y162{bottom:384.919350px;}
.yee{bottom:387.368850px;}
.y5a{bottom:387.525750px;}
.y72{bottom:389.439600px;}
.yac{bottom:391.201650px;}
.yae{bottom:392.653650px;}
.y1dc{bottom:393.103500px;}
.y242{bottom:393.622050px;}
.y1cc{bottom:398.543100px;}
.y63{bottom:401.084850px;}
.y189{bottom:402.266850px;}
.y1b6{bottom:402.392850px;}
.y226{bottom:402.622050px;}
.y11b{bottom:405.603000px;}
.y241{bottom:411.622050px;}
.y161{bottom:411.913350px;}
.y71{bottom:413.433600px;}
.y1d7{bottom:416.099100px;}
.yed{bottom:417.374850px;}
.y139{bottom:417.410850px;}
.y59{bottom:417.531750px;}
.y1b5{bottom:419.938350px;}
.y29{bottom:420.368850px;}
.y225{bottom:423.622050px;}
.y1ee{bottom:424.265250px;}
.y3e{bottom:426.555000px;}
.y240{bottom:429.622050px;}
.y188{bottom:437.368350px;}
.y70{bottom:437.427600px;}
.y160{bottom:438.907350px;}
.yec{bottom:447.380850px;}
.y138{bottom:447.410850px;}
.y58{bottom:447.537750px;}
.y28{bottom:450.374850px;}
.y23f{bottom:450.622050px;}
.y187{bottom:454.913850px;}
.y1b4{bottom:455.039850px;}
.y3d{bottom:458.055000px;}
.y15f{bottom:465.901350px;}
.y11a{bottom:469.524300px;}
.y23e{bottom:471.622050px;}
.ya7{bottom:471.673500px;}
.y186{bottom:472.459350px;}
.y1b3{bottom:472.585350px;}
.yeb{bottom:477.386850px;}
.y137{bottom:477.410850px;}
.y57{bottom:477.543750px;}
.y27{bottom:480.380850px;}
.yab{bottom:482.173500px;}
.y6f{bottom:485.433600px;}
.y1cb{bottom:486.294600px;}
.y3c{bottom:489.555000px;}
.y185{bottom:490.004850px;}
.y1b2{bottom:490.130850px;}
.ya2{bottom:491.209500px;}
.y23d{bottom:492.622050px;}
.ya6{bottom:492.673500px;}
.y15e{bottom:492.895350px;}
.y90{bottom:493.838850px;}
.y224{bottom:498.622050px;}
.y119{bottom:499.524300px;}
.yaa{bottom:503.173500px;}
.y1d6{bottom:503.850600px;}
.yea{bottom:507.392850px;}
.y136{bottom:507.410850px;}
.y1b1{bottom:507.676350px;}
.ya1{bottom:512.215500px;}
.y23c{bottom:513.622050px;}
.ya5{bottom:513.673500px;}
.y223{bottom:516.622050px;}
.y15d{bottom:519.889350px;}
.y3b{bottom:521.055000px;}
.y8f{bottom:523.844850px;}
.ya9{bottom:524.173500px;}
.y184{bottom:525.106350px;}
.y118{bottom:529.524300px;}
.ya0{bottom:533.221500px;}
.y222{bottom:534.622050px;}
.ya4{bottom:534.673500px;}
.ye9{bottom:537.398850px;}
.y135{bottom:537.410850px;}
.y26{bottom:540.374850px;}
.y183{bottom:542.651850px;}
.y1b0{bottom:542.777850px;}
.ya8{bottom:545.173500px;}
.y15c{bottom:546.883350px;}
.y3a{bottom:552.555000px;}
.y221{bottom:552.622050px;}
.y8e{bottom:553.850850px;}
.y23b{bottom:555.622050px;}
.ya3{bottom:555.673500px;}
.y56{bottom:558.102450px;}
.y117{bottom:559.524300px;}
.y182{bottom:560.197350px;}
.y1af{bottom:560.323350px;}
.ye8{bottom:567.404850px;}
.y134{bottom:567.410850px;}
.y25{bottom:570.380850px;}
.y220{bottom:570.622050px;}
.y15b{bottom:573.877350px;}
.y1d5{bottom:574.046100px;}
.y181{bottom:577.742850px;}
.y1ae{bottom:577.868850px;}
.y8d{bottom:583.856850px;}
.y39{bottom:584.055000px;}
.yb{bottom:584.175750px;}
.y55{bottom:588.108450px;}
.y21f{bottom:588.622050px;}
.y116{bottom:589.524300px;}
.y1ca{bottom:591.587850px;}
.y180{bottom:595.288350px;}
.ye7{bottom:597.410850px;}
.y24{bottom:600.386850px;}
.y15a{bottom:600.871350px;}
.y21e{bottom:606.622050px;}
.y1ad{bottom:612.970350px;}
.y8c{bottom:613.862850px;}
.ya{bottom:614.181750px;}
.y38{bottom:615.555000px;}
.y62{bottom:617.084850px;}
.y54{bottom:618.114450px;}
.y115{bottom:619.524300px;}
.y9a{bottom:622.714350px;}
.y9d{bottom:624.193200px;}
.y21d{bottom:624.622050px;}
.y133{bottom:627.410850px;}
.y159{bottom:627.865350px;}
.y17f{bottom:630.389850px;}
.y23{bottom:630.392850px;}
.y1ac{bottom:630.515850px;}
.y23a{bottom:630.622050px;}
.y9f{bottom:634.693200px;}
.y99{bottom:643.720350px;}
.y9{bottom:644.187750px;}
.y9c{bottom:645.193200px;}
.y21c{bottom:645.622050px;}
.y37{bottom:647.055000px;}
.y17e{bottom:647.935350px;}
.y1ab{bottom:648.061350px;}
.y53{bottom:648.120450px;}
.y239{bottom:648.622050px;}
.y114{bottom:649.524300px;}
.y108{bottom:654.054150px;}
.y158{bottom:654.859350px;}
.y9e{bottom:655.693200px;}
.y22{bottom:660.398850px;}
.y1d4{bottom:661.797600px;}
.y132{bottom:663.410850px;}
.y1fb{bottom:664.382850px;}
.y98{bottom:664.726350px;}
.y17d{bottom:665.480850px;}
.y1aa{bottom:665.606850px;}
.y9b{bottom:666.193200px;}
.y21b{bottom:666.622050px;}
.y8b{bottom:673.856850px;}
.y8{bottom:674.193750px;}
.y52{bottom:678.120450px;}
.y36{bottom:678.555000px;}
.ye6{bottom:678.715950px;}
.y1c9{bottom:679.339350px;}
.y1fa{bottom:682.382850px;}
.y17c{bottom:683.026350px;}
.y107{bottom:684.060150px;}
.y238{bottom:684.622050px;}
.y21a{bottom:687.622050px;}
.ye3{bottom:687.757950px;}
.y21{bottom:690.404850px;}
.ye5{bottom:699.715950px;}
.y1f9{bottom:700.382850px;}
.y1a9{bottom:700.708350px;}
.y237{bottom:702.622050px;}
.y8a{bottom:703.862850px;}
.y7{bottom:704.199750px;}
.y219{bottom:708.622050px;}
.ye2{bottom:708.763950px;}
.y35{bottom:710.055000px;}
.y157{bottom:711.867300px;}
.y106{bottom:714.066150px;}
.y1d3{bottom:714.451350px;}
.y49{bottom:714.555000px;}
.y113{bottom:715.524300px;}
.y17b{bottom:718.127850px;}
.y1a8{bottom:718.253850px;}
.y1f8{bottom:718.382850px;}
.y20{bottom:720.410850px;}
.y236{bottom:720.622050px;}
.ye4{bottom:720.715950px;}
.y97{bottom:729.274350px;}
.y131{bottom:729.410850px;}
.y89{bottom:733.868850px;}
.y6{bottom:734.205750px;}
.y17a{bottom:735.673350px;}
.y1f7{bottom:736.382850px;}
.y235{bottom:738.622050px;}
.y51{bottom:740.997600px;}
.y34{bottom:741.555000px;}
.y6d{bottom:742.112850px;}
.y105{bottom:744.072150px;}
.y112{bottom:745.524300px;}
.y48{bottom:746.055000px;}
.yde{bottom:747.235800px;}
.y156{bottom:747.858300px;}
.y179{bottom:753.218850px;}
.y1a7{bottom:753.355350px;}
.y1f6{bottom:754.382850px;}
.y234{bottom:756.622050px;}
.ye1{bottom:757.735800px;}
.y96{bottom:759.280350px;}
.y130{bottom:759.410850px;}
.y88{bottom:763.874850px;}
.y5{bottom:764.211750px;}
.y1c8{bottom:767.090850px;}
.ydd{bottom:768.235800px;}
.y178{bottom:770.764350px;}
.y1a6{bottom:770.900850px;}
.y50{bottom:771.003600px;}
.y6c{bottom:772.118850px;}
.y1f5{bottom:772.382850px;}
.y33{bottom:773.055000px;}
.y104{bottom:774.078150px;}
.y233{bottom:774.622050px;}
.y111{bottom:775.524300px;}
.yda{bottom:777.283800px;}
.y47{bottom:777.555000px;}
.ye0{bottom:778.735800px;}
.y1f{bottom:780.410850px;}
.y218{bottom:783.622050px;}
.y155{bottom:783.849300px;}
.y1d2{bottom:784.646850px;}
.y61{bottom:785.834850px;}
.y1a5{bottom:788.446350px;}
.ydc{bottom:789.235800px;}
.y12f{bottom:789.410850px;}
.y1f4{bottom:790.382850px;}
.y232{bottom:792.622050px;}
.y87{bottom:793.880850px;}
.y4{bottom:794.217750px;}
.y95{bottom:798.952350px;}
.ydf{bottom:799.735800px;}
.y4f{bottom:801.009600px;}
.y217{bottom:801.622050px;}
.y6b{bottom:802.124850px;}
.y103{bottom:804.084150px;}
.y110{bottom:805.524300px;}
.y177{bottom:805.865850px;}
.y1f3{bottom:808.382850px;}
.y46{bottom:809.055000px;}
.ydb{bottom:810.235800px;}
.y1e{bottom:810.368850px;}
.y231{bottom:813.622050px;}
.y20f{bottom:817.817700px;}
.y205{bottom:817.817850px;}
.y12e{bottom:819.410850px;}
.y216{bottom:819.622050px;}
.y1c7{bottom:819.744600px;}
.y154{bottom:819.840300px;}
.y176{bottom:823.411350px;}
.y1a4{bottom:823.547850px;}
.y86{bottom:823.886850px;}
.y3{bottom:824.223750px;}
.y1f2{bottom:826.382850px;}
.y4e{bottom:831.009600px;}
.y6a{bottom:832.130850px;}
.y230{bottom:834.622050px;}
.y10f{bottom:835.524300px;}
.y20e{bottom:835.817700px;}
.y204{bottom:835.817850px;}
.yd2{bottom:836.755650px;}
.y215{bottom:837.622050px;}
.y1d{bottom:840.374850px;}
.y45{bottom:840.555000px;}
.y1a3{bottom:841.093350px;}
.y1f1{bottom:844.382850px;}
.yd9{bottom:847.255650px;}
.y12d{bottom:849.410850px;}
.y20d{bottom:853.817700px;}
.y203{bottom:853.817850px;}
.y2{bottom:854.229750px;}
.y214{bottom:855.622050px;}
.y153{bottom:855.831300px;}
.yd1{bottom:857.755650px;}
.y175{bottom:858.512850px;}
.y1a2{bottom:858.638850px;}
.y69{bottom:862.136850px;}
.y1f0{bottom:862.382850px;}
.y102{bottom:864.078150px;}
.y10e{bottom:865.524300px;}
.yd8{bottom:868.255650px;}
.y1c{bottom:870.380850px;}
.y20c{bottom:871.817700px;}
.y202{bottom:871.817850px;}
.y44{bottom:872.055000px;}
.y1d1{bottom:872.398350px;}
.y174{bottom:876.058350px;}
.y1a1{bottom:876.184350px;}
.y213{bottom:876.622050px;}
.yd0{bottom:878.755650px;}
.y12c{bottom:879.410850px;}
.y1ef{bottom:880.382850px;}
.y85{bottom:883.880850px;}
.yd7{bottom:889.255650px;}
.y20b{bottom:889.817700px;}
.y201{bottom:889.817850px;}
.y14a{bottom:890.317650px;}
.y152{bottom:891.822300px;}
.y68{bottom:892.142850px;}
.y94{bottom:892.892850px;}
.y173{bottom:893.603850px;}
.y101{bottom:894.084150px;}
.y10d{bottom:895.524300px;}
.y212{bottom:897.622050px;}
.ycf{bottom:899.755650px;}
.y43{bottom:903.555000px;}
.y1c6{bottom:907.496100px;}
.y20a{bottom:907.817700px;}
.y200{bottom:907.817850px;}
.yca{bottom:908.803650px;}
.y12b{bottom:909.410850px;}
.yd6{bottom:910.255650px;}
.y172{bottom:911.149350px;}
.y1a0{bottom:911.285850px;}
.yc{bottom:913.814850px;}
.y84{bottom:913.886850px;}
.y1fc{bottom:915.734850px;}
.y211{bottom:918.622050px;}
.y149{bottom:920.323650px;}
.yce{bottom:920.755650px;}
.y67{bottom:922.148850px;}
.y93{bottom:922.898850px;}
.y100{bottom:924.090150px;}
.y1d0{bottom:925.052100px;}
.y10c{bottom:925.524300px;}
.y209{bottom:925.817700px;}
.y1ff{bottom:925.817850px;}
.y151{bottom:927.813300px;}
.y19f{bottom:928.831350px;}
.y1b{bottom:930.374850px;}
.yd5{bottom:931.255650px;}
.y12a{bottom:939.410850px;}
.ycd{bottom:941.755650px;}
.y208{bottom:943.817700px;}
.y1fe{bottom:943.817850px;}
.y83{bottom:943.892850px;}
.y171{bottom:946.250850px;}
.y12{bottom:947.261850px;}
.y148{bottom:950.329650px;}
.y32{bottom:951.284850px;}
.y66{bottom:952.154850px;}
.yd4{bottom:952.255650px;}
.y92{bottom:952.904850px;}
.yff{bottom:955.302150px;}
.y1a{bottom:960.380850px;}
.y207{bottom:961.817700px;}
.y1fd{bottom:961.817850px;}
.ycc{bottom:962.755650px;}
.y170{bottom:963.796350px;}
.y150{bottom:963.804300px;}
.y19e{bottom:963.932850px;}
.y42{bottom:965.070300px;}
.y129{bottom:969.410850px;}
.yd3{bottom:973.255650px;}
.y82{bottom:973.898850px;}
.y147{bottom:980.335650px;}
.y30{bottom:981.254850px;}
.y31{bottom:981.290850px;}
.y16f{bottom:981.341850px;}
.y19d{bottom:981.478350px;}
.y65{bottom:982.160850px;}
.y91{bottom:982.910850px;}
.y11{bottom:983.252850px;}
.ycb{bottom:983.755650px;}
.yfe{bottom:985.308150px;}
.y19{bottom:990.386850px;}
.y1c5{bottom:995.247600px;}
.y206{bottom:997.169700px;}
.y16e{bottom:998.887350px;}
.y19c{bottom:999.023850px;}
.y128{bottom:999.410850px;}
.y14f{bottom:999.795300px;}
.y146{bottom:1010.341650px;}
.y2f{bottom:1011.260850px;}
.yfd{bottom:1015.314150px;}
.y10{bottom:1019.243850px;}
.y18{bottom:1020.392850px;}
.y41{bottom:1020.555300px;}
.yc9{bottom:1020.775500px;}
.y127{bottom:1029.410850px;}
.y81{bottom:1033.892850px;}
.y16d{bottom:1033.988850px;}
.y19b{bottom:1034.125350px;}
.y14e{bottom:1035.786300px;}
.y145{bottom:1040.347650px;}
.y2e{bottom:1041.266850px;}
.ybc{bottom:1041.386850px;}
.yc8{bottom:1041.775500px;}
.yfc{bottom:1045.320150px;}
.y17{bottom:1050.398850px;}
.y16c{bottom:1051.534350px;}
.y19a{bottom:1051.670850px;}
.yc2{bottom:1052.275500px;}
.yf{bottom:1055.234850px;}
.yc7{bottom:1062.775500px;}
.y80{bottom:1063.898850px;}
.y126{bottom:1065.410850px;}
.y16b{bottom:1069.079850px;}
.y199{bottom:1069.216350px;}
.y144{bottom:1070.353650px;}
.y7d{bottom:1070.819700px;}
.y2d{bottom:1071.272850px;}
.ybb{bottom:1071.392850px;}
.y14d{bottom:1071.777300px;}
.ybe{bottom:1071.817650px;}
.yc1{bottom:1073.275500px;}
.yfb{bottom:1075.326150px;}
.y40{bottom:1076.040300px;}
.y16{bottom:1080.404850px;}
.y10b{bottom:1082.800200px;}
.yc6{bottom:1083.775500px;}
.y16a{bottom:1086.625350px;}
.y198{bottom:1086.761850px;}
.ybd{bottom:1092.823650px;}
.y7f{bottom:1093.904850px;}
.yc0{bottom:1094.275500px;}
.y143{bottom:1100.359650px;}
.y1c4{bottom:1100.540850px;}
.y2c{bottom:1101.278850px;}
.yba{bottom:1101.398850px;}
.ye{bottom:1101.734700px;}
.y169{bottom:1104.170850px;}
.y197{bottom:1104.307350px;}
.yc5{bottom:1104.775500px;}
.yfa{bottom:1105.332150px;}
.y15{bottom:1110.410850px;}
.y7c{bottom:1111.310700px;}
.ybf{bottom:1115.275500px;}
.y10a{bottom:1123.309200px;}
.y7e{bottom:1123.910850px;}
.yc4{bottom:1125.775500px;}
.y142{bottom:1130.365650px;}
.y2b{bottom:1131.284850px;}
.yb9{bottom:1131.404850px;}
.y3f{bottom:1131.525300px;}
.y210{bottom:1138.945350px;}
.yc3{bottom:1146.775500px;}
.y168{bottom:1146.884700px;}
.y1db{bottom:1147.345350px;}
.yd{bottom:1148.534700px;}
.y7b{bottom:1151.801700px;}
.y14{bottom:1153.608750px;}
.yf9{bottom:1156.029900px;}
.y141{bottom:1160.371650px;}
.y2a{bottom:1161.290850px;}
.yb8{bottom:1161.410850px;}
.y109{bottom:1163.818200px;}
.h15{height:10.905000px;}
.h19{height:35.364000px;}
.h8{height:38.208000px;}
.ha{height:40.416000px;}
.h12{height:44.820000px;}
.h2{height:46.200000px;}
.h17{height:47.124000px;}
.h1a{height:47.994000px;}
.h5{height:50.520000px;}
.h4{height:53.784000px;}
.hf{height:54.613686px;}
.h16{height:55.572000px;}
.hb{height:56.664000px;}
.h3{height:60.624000px;}
.h10{height:61.634400px;}
.hc{height:62.762596px;}
.hd{height:75.780000px;}
.h14{height:80.832000px;}
.h7{height:89.316000px;}
.h13{height:104.202000px;}
.h18{height:107.400000px;}
.h9{height:109.164000px;}
.h1b{height:124.584000px;}
.he{height:128.880000px;}
.h6{height:129.012000px;}
.h11{height:148.860000px;}
.h1c{height:158.952000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:14.107500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x1b{left:-1.715850px;}
.x0{left:0.000000px;}
.x17{left:55.315200px;}
.xd{left:57.625950px;}
.x1{left:59.547300px;}
.x1c{left:61.068900px;}
.x20{left:78.535050px;}
.x1f{left:80.145300px;}
.x8{left:82.399650px;}
.x11{left:83.586600px;}
.x2{left:85.039350px;}
.x5{left:86.545350px;}
.xf{left:87.625950px;}
.x13{left:88.780500px;}
.x29{left:91.157400px;}
.x26{left:92.574900px;}
.x10{left:96.519600px;}
.xc{left:102.625950px;}
.x1d{left:108.000000px;}
.xe{left:111.000000px;}
.xa{left:117.685050px;}
.xb{left:118.747950px;}
.x7{left:141.625950px;}
.x15{left:278.880150px;}
.x12{left:285.736500px;}
.x27{left:299.364750px;}
.x2a{left:346.114050px;}
.x25{left:368.682900px;}
.x2c{left:390.083250px;}
.x4{left:402.072600px;}
.x2b{left:456.720450px;}
.x23{left:457.984050px;}
.x24{left:459.038550px;}
.x22{left:460.192800px;}
.x21{left:461.860050px;}
.x28{left:465.626100px;}
.x2d{left:470.586750px;}
.x1e{left:486.000000px;}
.x9{left:503.519250px;}
.x16{left:519.330150px;}
.x14{left:526.186500px;}
.x6{left:577.134750px;}
.x19{left:638.709750px;}
.x18{left:820.669650px;}
.x1a{left:822.385500px;}
.x3{left:824.901750px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:5.066133pt;}
.lsf{letter-spacing:-2.482667pt;}
.ls10{letter-spacing:-0.658667pt;}
.lse{letter-spacing:-0.506667pt;}
.lsd{letter-spacing:-0.202667pt;}
.lsc{letter-spacing:-0.037333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.213333pt;}
.ls2{letter-spacing:0.533333pt;}
.lsb{letter-spacing:0.586667pt;}
.ls8{letter-spacing:0.640000pt;}
.ls7{letter-spacing:0.650667pt;}
.ls6{letter-spacing:0.800000pt;}
.ls9{letter-spacing:1.020267pt;}
.ls5{letter-spacing:1.600000pt;}
.lsa{letter-spacing:10.743467pt;}
.ls0{letter-spacing:101.361067pt;}
.ls4{letter-spacing:175.232000pt;}
.ws77{word-spacing:-85.333333pt;}
.ws28{word-spacing:-80.800000pt;}
.ws2d{word-spacing:-65.717333pt;}
.ws29{word-spacing:-64.987281pt;}
.ws2e{word-spacing:-64.640000pt;}
.ws0{word-spacing:-64.000000pt;}
.ws85{word-spacing:-59.253333pt;}
.ws1{word-spacing:-53.866667pt;}
.ws58{word-spacing:-53.333333pt;}
.ws3f{word-spacing:-52.800000pt;}
.ws4a{word-spacing:-52.249600pt;}
.ws2f{word-spacing:-52.248533pt;}
.ws3e{word-spacing:-52.096000pt;}
.ws56{word-spacing:-51.392000pt;}
.ws3d{word-spacing:-51.072000pt;}
.ws94{word-spacing:-50.666667pt;}
.ws92{word-spacing:-50.464000pt;}
.ws93{word-spacing:-50.160000pt;}
.ws96{word-spacing:-50.008000pt;}
.ws95{word-spacing:-48.184000pt;}
.ws62{word-spacing:-47.424000pt;}
.ws40{word-spacing:-46.976000pt;}
.ws97{word-spacing:-40.213333pt;}
.ws49{word-spacing:-37.350400pt;}
.wsc{word-spacing:-32.853333pt;}
.ws59{word-spacing:-32.000000pt;}
.ws42{word-spacing:-22.976000pt;}
.ws16{word-spacing:-17.823318pt;}
.ws79{word-spacing:-16.768000pt;}
.ws44{word-spacing:-16.320000pt;}
.ws60{word-spacing:-13.973333pt;}
.ws98{word-spacing:-10.965333pt;}
.ws41{word-spacing:-10.752000pt;}
.ws91{word-spacing:-9.594667pt;}
.ws90{word-spacing:-9.557333pt;}
.ws26{word-spacing:-7.920000pt;}
.ws50{word-spacing:-7.808000pt;}
.ws4f{word-spacing:-7.424000pt;}
.ws54{word-spacing:-6.656000pt;}
.ws17{word-spacing:-6.080000pt;}
.ws43{word-spacing:-5.376000pt;}
.ws1f{word-spacing:-4.400000pt;}
.ws53{word-spacing:-4.288000pt;}
.ws51{word-spacing:-3.584000pt;}
.ws25{word-spacing:-3.040000pt;}
.ws4d{word-spacing:-2.944000pt;}
.ws13{word-spacing:-2.816000pt;}
.ws4{word-spacing:-2.624000pt;}
.ws18{word-spacing:-2.560000pt;}
.ws4b{word-spacing:-2.368000pt;}
.ws6d{word-spacing:-2.304000pt;}
.ws10{word-spacing:-2.112000pt;}
.ws52{word-spacing:-1.984000pt;}
.ws2a{word-spacing:-1.600000pt;}
.ws3{word-spacing:-1.536000pt;}
.ws64{word-spacing:-1.088000pt;}
.ws6f{word-spacing:-1.024000pt;}
.ws71{word-spacing:-0.704000pt;}
.ws81{word-spacing:-0.640000pt;}
.ws3a{word-spacing:-0.533333pt;}
.ws65{word-spacing:-0.256000pt;}
.ws3c{word-spacing:-0.064000pt;}
.ws2{word-spacing:0.000000pt;}
.ws80{word-spacing:0.384000pt;}
.ws35{word-spacing:0.576000pt;}
.ws4c{word-spacing:0.896000pt;}
.ws5{word-spacing:1.024000pt;}
.ws6{word-spacing:1.152000pt;}
.ws34{word-spacing:1.536000pt;}
.ws8{word-spacing:1.600000pt;}
.ws7{word-spacing:1.728000pt;}
.ws5b{word-spacing:1.792000pt;}
.ws6b{word-spacing:1.856000pt;}
.ws74{word-spacing:1.984000pt;}
.ws2c{word-spacing:2.496000pt;}
.wsb{word-spacing:3.072000pt;}
.wsf{word-spacing:3.264000pt;}
.ws70{word-spacing:3.328000pt;}
.ws6e{word-spacing:3.520000pt;}
.ws36{word-spacing:3.584000pt;}
.ws67{word-spacing:3.712000pt;}
.ws12{word-spacing:3.776000pt;}
.ws31{word-spacing:3.904000pt;}
.ws83{word-spacing:4.160000pt;}
.ws84{word-spacing:4.224000pt;}
.ws2b{word-spacing:4.288000pt;}
.wsa{word-spacing:4.800000pt;}
.ws69{word-spacing:4.992000pt;}
.ws14{word-spacing:5.120000pt;}
.ws6c{word-spacing:5.312000pt;}
.ws47{word-spacing:6.016000pt;}
.ws9{word-spacing:6.080000pt;}
.ws76{word-spacing:6.528000pt;}
.ws75{word-spacing:6.720000pt;}
.ws37{word-spacing:6.912000pt;}
.wse{word-spacing:7.104000pt;}
.ws19{word-spacing:7.616000pt;}
.ws7b{word-spacing:7.744000pt;}
.ws33{word-spacing:8.192000pt;}
.ws22{word-spacing:8.240000pt;}
.ws73{word-spacing:8.512000pt;}
.ws1a{word-spacing:8.832000pt;}
.ws7a{word-spacing:9.024000pt;}
.ws5f{word-spacing:9.088000pt;}
.ws21{word-spacing:9.360000pt;}
.ws11{word-spacing:9.472000pt;}
.ws48{word-spacing:9.536000pt;}
.ws6a{word-spacing:9.728000pt;}
.ws82{word-spacing:9.856000pt;}
.ws1b{word-spacing:10.688000pt;}
.ws4e{word-spacing:10.816000pt;}
.ws72{word-spacing:11.008000pt;}
.ws68{word-spacing:11.200000pt;}
.ws5a{word-spacing:11.712000pt;}
.ws1e{word-spacing:12.160000pt;}
.ws3b{word-spacing:12.224000pt;}
.ws39{word-spacing:12.288000pt;}
.ws45{word-spacing:12.608000pt;}
.ws66{word-spacing:13.312000pt;}
.ws20{word-spacing:13.360000pt;}
.ws32{word-spacing:14.976000pt;}
.ws5c{word-spacing:16.320000pt;}
.ws46{word-spacing:17.408000pt;}
.ws55{word-spacing:17.472000pt;}
.ws1d{word-spacing:17.920000pt;}
.ws38{word-spacing:18.304000pt;}
.ws7d{word-spacing:18.944000pt;}
.ws5e{word-spacing:19.904000pt;}
.ws30{word-spacing:20.608000pt;}
.ws63{word-spacing:21.504000pt;}
.ws24{word-spacing:22.480000pt;}
.ws23{word-spacing:24.000000pt;}
.ws8e{word-spacing:26.592000pt;}
.ws88{word-spacing:28.896000pt;}
.ws1c{word-spacing:29.040000pt;}
.ws5d{word-spacing:29.632000pt;}
.ws8d{word-spacing:33.120000pt;}
.ws7c{word-spacing:33.280000pt;}
.ws8c{word-spacing:36.960000pt;}
.ws87{word-spacing:39.456000pt;}
.ws8b{word-spacing:40.992000pt;}
.ws89{word-spacing:44.064000pt;}
.ws86{word-spacing:49.632000pt;}
.ws8f{word-spacing:49.920000pt;}
.ws8a{word-spacing:55.776000pt;}
.ws57{word-spacing:65.600000pt;}
.ws61{word-spacing:86.253867pt;}
.ws27{word-spacing:87.760000pt;}
.ws78{word-spacing:100.096000pt;}
.wsd{word-spacing:109.888000pt;}
.ws15{word-spacing:111.232000pt;}
.ws7f{word-spacing:114.432000pt;}
.ws7e{word-spacing:126.890667pt;}
._14{margin-left:-920.784000pt;}
._72{margin-left:-518.656000pt;}
._85{margin-left:-425.045333pt;}
._67{margin-left:-405.162667pt;}
._3c{margin-left:-353.373867pt;}
._57{margin-left:-327.338667pt;}
._4d{margin-left:-320.512000pt;}
._11{margin-left:-319.200000pt;}
._2c{margin-left:-308.053333pt;}
._69{margin-left:-295.680000pt;}
._46{margin-left:-283.050667pt;}
._7e{margin-left:-272.648533pt;}
._33{margin-left:-260.701867pt;}
._12{margin-left:-240.800000pt;}
._15{margin-left:-239.872000pt;}
._6b{margin-left:-238.592000pt;}
._5e{margin-left:-234.581333pt;}
._83{margin-left:-218.461867pt;}
._41{margin-left:-216.755200pt;}
._56{margin-left:-204.535467pt;}
._74{margin-left:-201.728000pt;}
._3a{margin-left:-194.538667pt;}
._2e{margin-left:-192.836267pt;}
._4c{margin-left:-186.624000pt;}
._37{margin-left:-181.085867pt;}
._53{margin-left:-178.867200pt;}
._52{margin-left:-172.544000pt;}
._80{margin-left:-168.533333pt;}
._55{margin-left:-162.483200pt;}
._6d{margin-left:-152.157867pt;}
._30{margin-left:-150.272000pt;}
._51{margin-left:-148.232533pt;}
._78{margin-left:-143.948800pt;}
._2f{margin-left:-142.250667pt;}
._27{margin-left:-140.714667pt;}
._4b{margin-left:-139.434667pt;}
._2d{margin-left:-136.635733pt;}
._47{margin-left:-134.562133pt;}
._42{margin-left:-133.538133pt;}
._65{margin-left:-128.512000pt;}
._62{margin-left:-127.402667pt;}
._13{margin-left:-122.560000pt;}
._81{margin-left:-119.978667pt;}
._3f{margin-left:-118.698667pt;}
._34{margin-left:-115.788800pt;}
._2a{margin-left:-111.283200pt;}
._63{margin-left:-107.776000pt;}
._5c{margin-left:-106.069333pt;}
._4a{margin-left:-105.045333pt;}
._58{margin-left:-102.562133pt;}
._32{margin-left:-99.925333pt;}
._7c{margin-left:-97.621333pt;}
._50{margin-left:-95.744000pt;}
._75{margin-left:-91.989333pt;}
._66{margin-left:-90.880000pt;}
._38{margin-left:-89.932800pt;}
._35{margin-left:-88.064000pt;}
._54{margin-left:-84.650667pt;}
._6f{margin-left:-83.720533pt;}
._64{margin-left:-76.808533pt;}
._3d{margin-left:-74.914133pt;}
._36{margin-left:-66.218667pt;}
._49{margin-left:-65.024000pt;}
._2b{margin-left:-59.383467pt;}
._31{margin-left:-57.429333pt;}
._44{margin-left:-55.381333pt;}
._4f{margin-left:-54.434133pt;}
._28{margin-left:-53.248000pt;}
._39{margin-left:-52.309333pt;}
._5b{margin-left:-51.029333pt;}
._3b{margin-left:-50.090667pt;}
._4e{margin-left:-38.579200pt;}
._45{margin-left:-36.693333pt;}
._40{margin-left:-34.218667pt;}
._77{margin-left:-32.682667pt;}
._16{margin-left:-28.226667pt;}
._29{margin-left:-24.149333pt;}
._18{margin-left:-19.788627pt;}
._5{margin-left:-18.717867pt;}
._26{margin-left:-13.750400pt;}
._8a{margin-left:-12.317867pt;}
._20{margin-left:-8.915200pt;}
._1f{margin-left:-7.846400pt;}
._25{margin-left:-6.953067pt;}
._9{margin-left:-5.760000pt;}
._1c{margin-left:-4.778667pt;}
._1{margin-left:-3.840000pt;}
._0{margin-left:-2.133333pt;}
._3{margin-left:-1.088000pt;}
._7{width:1.395200pt;}
._6{width:2.720000pt;}
._19{width:3.776000pt;}
._17{width:4.840000pt;}
._f{width:6.220800pt;}
._4{width:7.475200pt;}
._22{width:8.550400pt;}
._1a{width:10.380800pt;}
._89{width:26.928000pt;}
._87{width:38.544000pt;}
._88{width:80.044800pt;}
._86{width:115.488000pt;}
._5a{width:122.026667pt;}
._61{width:123.895467pt;}
._10{width:142.000000pt;}
._24{width:153.728000pt;}
._23{width:158.464000pt;}
._1b{width:162.624000pt;}
._b{width:165.760000pt;}
._a{width:168.128000pt;}
._8{width:169.152000pt;}
._d{width:171.968000pt;}
._1e{width:174.336000pt;}
._1d{width:175.232000pt;}
._2{width:176.768000pt;}
._e{width:178.048000pt;}
._21{width:179.520000pt;}
._c{width:180.821333pt;}
._71{width:209.898667pt;}
._79{width:225.280000pt;}
._7d{width:228.352000pt;}
._7a{width:253.875200pt;}
._6e{width:298.828800pt;}
._6c{width:304.981333pt;}
._70{width:360.354133pt;}
._82{width:361.984000pt;}
._6a{width:363.776000pt;}
._7f{width:365.141333pt;}
._7b{width:387.063467pt;}
._5f{width:410.615467pt;}
._5d{width:416.341333pt;}
._3e{width:441.429333pt;}
._84{width:443.562667pt;}
._59{width:477.107200pt;}
._76{width:539.445333pt;}
._60{width:569.083733pt;}
._73{width:579.498667pt;}
._43{width:593.664000pt;}
._68{width:673.450667pt;}
._48{width:872.618667pt;}
.fsf{font-size:37.333333pt;}
.fs1{font-size:42.666667pt;}
.fs10{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fsa{font-size:64.987281pt;}
.fsb{font-size:65.066667pt;}
.fs7{font-size:66.257689pt;}
.fs8{font-size:80.000000pt;}
.fsd{font-size:85.333333pt;}
.fs5{font-size:96.000000pt;}
.fsc{font-size:112.000000pt;}
.fs6{font-size:117.333333pt;}
.fse{font-size:133.333333pt;}
.fs4{font-size:138.666667pt;}
.fs11{font-size:154.666667pt;}
.fs9{font-size:160.000000pt;}
.fs12{font-size:197.333333pt;}
.y0{bottom:0.000000pt;}
.y14c{bottom:0.161200pt;}
.y14b{bottom:38.958667pt;}
.y1{bottom:39.119867pt;}
.y13{bottom:40.386400pt;}
.y1ed{bottom:77.425333pt;}
.yf8{bottom:77.607867pt;}
.y140{bottom:83.031867pt;}
.y125{bottom:88.530667pt;}
.y1ec{bottom:93.425333pt;}
.yf7{bottom:104.279867pt;}
.y196{bottom:108.006533pt;}
.y1c3{bottom:108.118533pt;}
.y60{bottom:108.359867pt;}
.y1eb{bottom:109.425333pt;}
.y6e{bottom:110.659067pt;}
.y124{bottom:115.202667pt;}
.y1cf{bottom:120.256533pt;}
.y195{bottom:123.602533pt;}
.y1c2{bottom:123.714533pt;}
.y1ea{bottom:125.425333pt;}
.yf6{bottom:130.951867pt;}
.yb7{bottom:132.854800pt;}
.y5f{bottom:135.031867pt;}
.y1c1{bottom:139.310533pt;}
.y1e9{bottom:141.425333pt;}
.y123{bottom:141.858667pt;}
.y24d{bottom:141.886267pt;}
.y4c{bottom:146.301200pt;}
.y7a{bottom:154.200533pt;}
.y194{bottom:154.803867pt;}
.y1c0{bottom:154.906533pt;}
.y1e8{bottom:157.425333pt;}
.yf5{bottom:157.623867pt;}
.y24c{bottom:157.886267pt;}
.y13f{bottom:163.031867pt;}
.y122{bottom:168.530667pt;}
.y193{bottom:170.399867pt;}
.y1bf{bottom:170.502533pt;}
.y4b{bottom:172.973200pt;}
.y1e7{bottom:173.425333pt;}
.y24b{bottom:173.886267pt;}
.y79{bottom:175.528533pt;}
.y1da{bottom:182.665200pt;}
.yf4{bottom:184.295867pt;}
.y192{bottom:185.995867pt;}
.y1be{bottom:186.098533pt;}
.y1e6{bottom:189.425333pt;}
.y13e{bottom:189.698533pt;}
.y24a{bottom:189.886267pt;}
.y5e{bottom:192.101733pt;}
.y121{bottom:195.202667pt;}
.y78{bottom:196.856533pt;}
.y1ce{bottom:198.257867pt;}
.y4a{bottom:199.645200pt;}
.y64{bottom:200.519867pt;}
.y191{bottom:201.591867pt;}
.yb4{bottom:204.118933pt;}
.y1e5{bottom:205.425333pt;}
.y249{bottom:205.886267pt;}
.y22f{bottom:208.552933pt;}
.yf3{bottom:210.967867pt;}
.yb1{bottom:212.156267pt;}
.yb6{bottom:213.452267pt;}
.y13d{bottom:216.365200pt;}
.y1bd{bottom:217.299867pt;}
.y77{bottom:218.184533pt;}
.y5d{bottom:218.773733pt;}
.y1e4{bottom:221.425333pt;}
.y120{bottom:221.853333pt;}
.y248{bottom:221.886267pt;}
.y167{bottom:222.177200pt;}
.yb3{bottom:222.785600pt;}
.y22e{bottom:224.552933pt;}
.y1d9{bottom:229.468533pt;}
.yb0{bottom:230.828267pt;}
.yb5{bottom:232.118933pt;}
.y190{bottom:232.793200pt;}
.y1bc{bottom:232.895867pt;}
.y1e3{bottom:237.425333pt;}
.yf2{bottom:237.639867pt;}
.y76{bottom:239.512533pt;}
.y22d{bottom:240.552933pt;}
.yb2{bottom:241.452267pt;}
.y166{bottom:246.171867pt;}
.y13c{bottom:248.365200pt;}
.y18f{bottom:248.389200pt;}
.y11f{bottom:248.525333pt;}
.y1e2{bottom:253.425333pt;}
.y22c{bottom:256.552933pt;}
.y75{bottom:260.840533pt;}
.y18e{bottom:263.985200pt;}
.y1bb{bottom:264.097200pt;}
.yf1{bottom:264.311867pt;}
.y4d{bottom:267.976800pt;}
.y1e1{bottom:269.425333pt;}
.y247{bottom:269.886267pt;}
.y165{bottom:270.166533pt;}
.y22b{bottom:272.552933pt;}
.y11e{bottom:275.197333pt;}
.y18d{bottom:279.581200pt;}
.y1ba{bottom:279.693200pt;}
.y13b{bottom:280.365200pt;}
.y74{bottom:282.168533pt;}
.y1e0{bottom:285.425333pt;}
.y246{bottom:285.886267pt;}
.y22a{bottom:288.552933pt;}
.yf0{bottom:290.983867pt;}
.y5c{bottom:291.123333pt;}
.y164{bottom:294.161200pt;}
.y18c{bottom:295.177200pt;}
.y1b9{bottom:295.289200pt;}
.y1df{bottom:301.425333pt;}
.y11d{bottom:301.869333pt;}
.y245{bottom:301.886267pt;}
.y73{bottom:303.496533pt;}
.y229{bottom:304.552933pt;}
.y1cd{bottom:307.457200pt;}
.y1d8{bottom:307.469867pt;}
.y18b{bottom:310.773200pt;}
.y1b8{bottom:310.885200pt;}
.y13a{bottom:312.365200pt;}
.y1de{bottom:317.425333pt;}
.yef{bottom:317.655867pt;}
.y5b{bottom:317.795333pt;}
.y244{bottom:317.886267pt;}
.y163{bottom:318.155867pt;}
.y228{bottom:320.552933pt;}
.y11c{bottom:328.536000pt;}
.yad{bottom:329.062800pt;}
.yaf{bottom:330.358800pt;}
.y1dd{bottom:333.425333pt;}
.y243{bottom:333.886267pt;}
.y227{bottom:339.219600pt;}
.y18a{bottom:341.974533pt;}
.y1b7{bottom:342.086533pt;}
.y162{bottom:342.150533pt;}
.yee{bottom:344.327867pt;}
.y5a{bottom:344.467333pt;}
.y72{bottom:346.168533pt;}
.yac{bottom:347.734800pt;}
.yae{bottom:349.025467pt;}
.y1dc{bottom:349.425333pt;}
.y242{bottom:349.886267pt;}
.y1cc{bottom:354.260533pt;}
.y63{bottom:356.519867pt;}
.y189{bottom:357.570533pt;}
.y1b6{bottom:357.682533pt;}
.y226{bottom:357.886267pt;}
.y11b{bottom:360.536000pt;}
.y241{bottom:365.886267pt;}
.y161{bottom:366.145200pt;}
.y71{bottom:367.496533pt;}
.y1d7{bottom:369.865867pt;}
.yed{bottom:370.999867pt;}
.y139{bottom:371.031867pt;}
.y59{bottom:371.139333pt;}
.y1b5{bottom:373.278533pt;}
.y29{bottom:373.661200pt;}
.y225{bottom:376.552933pt;}
.y1ee{bottom:377.124667pt;}
.y3e{bottom:379.160000pt;}
.y240{bottom:381.886267pt;}
.y188{bottom:388.771867pt;}
.y70{bottom:388.824533pt;}
.y160{bottom:390.139867pt;}
.yec{bottom:397.671867pt;}
.y138{bottom:397.698533pt;}
.y58{bottom:397.811333pt;}
.y28{bottom:400.333200pt;}
.y23f{bottom:400.552933pt;}
.y187{bottom:404.367867pt;}
.y1b4{bottom:404.479867pt;}
.y3d{bottom:407.160000pt;}
.y15f{bottom:414.134533pt;}
.y11a{bottom:417.354933pt;}
.y23e{bottom:419.219600pt;}
.ya7{bottom:419.265333pt;}
.y186{bottom:419.963867pt;}
.y1b3{bottom:420.075867pt;}
.yeb{bottom:424.343867pt;}
.y137{bottom:424.365200pt;}
.y57{bottom:424.483333pt;}
.y27{bottom:427.005200pt;}
.yab{bottom:428.598667pt;}
.y6f{bottom:431.496533pt;}
.y1cb{bottom:432.261867pt;}
.y3c{bottom:435.160000pt;}
.y185{bottom:435.559867pt;}
.y1b2{bottom:435.671867pt;}
.ya2{bottom:436.630667pt;}
.y23d{bottom:437.886267pt;}
.ya6{bottom:437.932000pt;}
.y15e{bottom:438.129200pt;}
.y90{bottom:438.967867pt;}
.y224{bottom:443.219600pt;}
.y119{bottom:444.021600pt;}
.yaa{bottom:447.265333pt;}
.y1d6{bottom:447.867200pt;}
.yea{bottom:451.015867pt;}
.y136{bottom:451.031867pt;}
.y1b1{bottom:451.267867pt;}
.ya1{bottom:455.302667pt;}
.y23c{bottom:456.552933pt;}
.ya5{bottom:456.598667pt;}
.y223{bottom:459.219600pt;}
.y15d{bottom:462.123867pt;}
.y3b{bottom:463.160000pt;}
.y8f{bottom:465.639867pt;}
.ya9{bottom:465.932000pt;}
.y184{bottom:466.761200pt;}
.y118{bottom:470.688267pt;}
.ya0{bottom:473.974667pt;}
.y222{bottom:475.219600pt;}
.ya4{bottom:475.265333pt;}
.ye9{bottom:477.687867pt;}
.y135{bottom:477.698533pt;}
.y26{bottom:480.333200pt;}
.y183{bottom:482.357200pt;}
.y1b0{bottom:482.469200pt;}
.ya8{bottom:484.598667pt;}
.y15c{bottom:486.118533pt;}
.y3a{bottom:491.160000pt;}
.y221{bottom:491.219600pt;}
.y8e{bottom:492.311867pt;}
.y23b{bottom:493.886267pt;}
.ya3{bottom:493.932000pt;}
.y56{bottom:496.091067pt;}
.y117{bottom:497.354933pt;}
.y182{bottom:497.953200pt;}
.y1af{bottom:498.065200pt;}
.ye8{bottom:504.359867pt;}
.y134{bottom:504.365200pt;}
.y25{bottom:507.005200pt;}
.y220{bottom:507.219600pt;}
.y15b{bottom:510.113200pt;}
.y1d5{bottom:510.263200pt;}
.y181{bottom:513.549200pt;}
.y1ae{bottom:513.661200pt;}
.y8d{bottom:518.983867pt;}
.y39{bottom:519.160000pt;}
.yb{bottom:519.267333pt;}
.y55{bottom:522.763067pt;}
.y21f{bottom:523.219600pt;}
.y116{bottom:524.021600pt;}
.y1ca{bottom:525.855867pt;}
.y180{bottom:529.145200pt;}
.ye7{bottom:531.031867pt;}
.y24{bottom:533.677200pt;}
.y15a{bottom:534.107867pt;}
.y21e{bottom:539.219600pt;}
.y1ad{bottom:544.862533pt;}
.y8c{bottom:545.655867pt;}
.ya{bottom:545.939333pt;}
.y38{bottom:547.160000pt;}
.y62{bottom:548.519867pt;}
.y54{bottom:549.435067pt;}
.y115{bottom:550.688267pt;}
.y9a{bottom:553.523867pt;}
.y9d{bottom:554.838400pt;}
.y21d{bottom:555.219600pt;}
.y133{bottom:557.698533pt;}
.y159{bottom:558.102533pt;}
.y17f{bottom:560.346533pt;}
.y23{bottom:560.349200pt;}
.y1ac{bottom:560.458533pt;}
.y23a{bottom:560.552933pt;}
.y9f{bottom:564.171733pt;}
.y99{bottom:572.195867pt;}
.y9{bottom:572.611333pt;}
.y9c{bottom:573.505067pt;}
.y21c{bottom:573.886267pt;}
.y37{bottom:575.160000pt;}
.y17e{bottom:575.942533pt;}
.y1ab{bottom:576.054533pt;}
.y53{bottom:576.107067pt;}
.y239{bottom:576.552933pt;}
.y114{bottom:577.354933pt;}
.y108{bottom:581.381467pt;}
.y158{bottom:582.097200pt;}
.y9e{bottom:582.838400pt;}
.y22{bottom:587.021200pt;}
.y1d4{bottom:588.264533pt;}
.y132{bottom:589.698533pt;}
.y1fb{bottom:590.562533pt;}
.y98{bottom:590.867867pt;}
.y17d{bottom:591.538533pt;}
.y1aa{bottom:591.650533pt;}
.y9b{bottom:592.171733pt;}
.y21b{bottom:592.552933pt;}
.y8b{bottom:598.983867pt;}
.y8{bottom:599.283333pt;}
.y52{bottom:602.773733pt;}
.y36{bottom:603.160000pt;}
.ye6{bottom:603.303067pt;}
.y1c9{bottom:603.857200pt;}
.y1fa{bottom:606.562533pt;}
.y17c{bottom:607.134533pt;}
.y107{bottom:608.053467pt;}
.y238{bottom:608.552933pt;}
.y21a{bottom:611.219600pt;}
.ye3{bottom:611.340400pt;}
.y21{bottom:613.693200pt;}
.ye5{bottom:621.969733pt;}
.y1f9{bottom:622.562533pt;}
.y1a9{bottom:622.851867pt;}
.y237{bottom:624.552933pt;}
.y8a{bottom:625.655867pt;}
.y7{bottom:625.955333pt;}
.y219{bottom:629.886267pt;}
.ye2{bottom:630.012400pt;}
.y35{bottom:631.160000pt;}
.y157{bottom:632.770933pt;}
.y106{bottom:634.725467pt;}
.y1d3{bottom:635.067867pt;}
.y49{bottom:635.160000pt;}
.y113{bottom:636.021600pt;}
.y17b{bottom:638.335867pt;}
.y1a8{bottom:638.447867pt;}
.y1f8{bottom:638.562533pt;}
.y20{bottom:640.365200pt;}
.y236{bottom:640.552933pt;}
.ye4{bottom:640.636400pt;}
.y97{bottom:648.243867pt;}
.y131{bottom:648.365200pt;}
.y89{bottom:652.327867pt;}
.y6{bottom:652.627333pt;}
.y17a{bottom:653.931867pt;}
.y1f7{bottom:654.562533pt;}
.y235{bottom:656.552933pt;}
.y51{bottom:658.664533pt;}
.y34{bottom:659.160000pt;}
.y6d{bottom:659.655867pt;}
.y105{bottom:661.397467pt;}
.y112{bottom:662.688267pt;}
.y48{bottom:663.160000pt;}
.yde{bottom:664.209600pt;}
.y156{bottom:664.762933pt;}
.y179{bottom:669.527867pt;}
.y1a7{bottom:669.649200pt;}
.y1f6{bottom:670.562533pt;}
.y234{bottom:672.552933pt;}
.ye1{bottom:673.542933pt;}
.y96{bottom:674.915867pt;}
.y130{bottom:675.031867pt;}
.y88{bottom:678.999867pt;}
.y5{bottom:679.299333pt;}
.y1c8{bottom:681.858533pt;}
.ydd{bottom:682.876267pt;}
.y178{bottom:685.123867pt;}
.y1a6{bottom:685.245200pt;}
.y50{bottom:685.336533pt;}
.y6c{bottom:686.327867pt;}
.y1f5{bottom:686.562533pt;}
.y33{bottom:687.160000pt;}
.y104{bottom:688.069467pt;}
.y233{bottom:688.552933pt;}
.y111{bottom:689.354933pt;}
.yda{bottom:690.918933pt;}
.y47{bottom:691.160000pt;}
.ye0{bottom:692.209600pt;}
.y1f{bottom:693.698533pt;}
.y218{bottom:696.552933pt;}
.y155{bottom:696.754933pt;}
.y1d2{bottom:697.463867pt;}
.y61{bottom:698.519867pt;}
.y1a5{bottom:700.841200pt;}
.ydc{bottom:701.542933pt;}
.y12f{bottom:701.698533pt;}
.y1f4{bottom:702.562533pt;}
.y232{bottom:704.552933pt;}
.y87{bottom:705.671867pt;}
.y4{bottom:705.971333pt;}
.y95{bottom:710.179867pt;}
.ydf{bottom:710.876267pt;}
.y4f{bottom:712.008533pt;}
.y217{bottom:712.552933pt;}
.y6b{bottom:712.999867pt;}
.y103{bottom:714.741467pt;}
.y110{bottom:716.021600pt;}
.y177{bottom:716.325200pt;}
.y1f3{bottom:718.562533pt;}
.y46{bottom:719.160000pt;}
.ydb{bottom:720.209600pt;}
.y1e{bottom:720.327867pt;}
.y231{bottom:723.219600pt;}
.y20f{bottom:726.949067pt;}
.y205{bottom:726.949200pt;}
.y12e{bottom:728.365200pt;}
.y216{bottom:728.552933pt;}
.y1c7{bottom:728.661867pt;}
.y154{bottom:728.746933pt;}
.y176{bottom:731.921200pt;}
.y1a4{bottom:732.042533pt;}
.y86{bottom:732.343867pt;}
.y3{bottom:732.643333pt;}
.y1f2{bottom:734.562533pt;}
.y4e{bottom:738.675200pt;}
.y6a{bottom:739.671867pt;}
.y230{bottom:741.886267pt;}
.y10f{bottom:742.688267pt;}
.y20e{bottom:742.949067pt;}
.y204{bottom:742.949200pt;}
.yd2{bottom:743.782800pt;}
.y215{bottom:744.552933pt;}
.y1d{bottom:746.999867pt;}
.y45{bottom:747.160000pt;}
.y1a3{bottom:747.638533pt;}
.y1f1{bottom:750.562533pt;}
.yd9{bottom:753.116133pt;}
.y12d{bottom:755.031867pt;}
.y20d{bottom:758.949067pt;}
.y203{bottom:758.949200pt;}
.y2{bottom:759.315333pt;}
.y214{bottom:760.552933pt;}
.y153{bottom:760.738933pt;}
.yd1{bottom:762.449467pt;}
.y175{bottom:763.122533pt;}
.y1a2{bottom:763.234533pt;}
.y69{bottom:766.343867pt;}
.y1f0{bottom:766.562533pt;}
.y102{bottom:768.069467pt;}
.y10e{bottom:769.354933pt;}
.yd8{bottom:771.782800pt;}
.y1c{bottom:773.671867pt;}
.y20c{bottom:774.949067pt;}
.y202{bottom:774.949200pt;}
.y44{bottom:775.160000pt;}
.y1d1{bottom:775.465200pt;}
.y174{bottom:778.718533pt;}
.y1a1{bottom:778.830533pt;}
.y213{bottom:779.219600pt;}
.yd0{bottom:781.116133pt;}
.y12c{bottom:781.698533pt;}
.y1ef{bottom:782.562533pt;}
.y85{bottom:785.671867pt;}
.yd7{bottom:790.449467pt;}
.y20b{bottom:790.949067pt;}
.y201{bottom:790.949200pt;}
.y14a{bottom:791.393467pt;}
.y152{bottom:792.730933pt;}
.y68{bottom:793.015867pt;}
.y94{bottom:793.682533pt;}
.y173{bottom:794.314533pt;}
.y101{bottom:794.741467pt;}
.y10d{bottom:796.021600pt;}
.y212{bottom:797.886267pt;}
.ycf{bottom:799.782800pt;}
.y43{bottom:803.160000pt;}
.y1c6{bottom:806.663200pt;}
.y20a{bottom:806.949067pt;}
.y200{bottom:806.949200pt;}
.yca{bottom:807.825467pt;}
.y12b{bottom:808.365200pt;}
.yd6{bottom:809.116133pt;}
.y172{bottom:809.910533pt;}
.y1a0{bottom:810.031867pt;}
.yc{bottom:812.279867pt;}
.y84{bottom:812.343867pt;}
.y1fc{bottom:813.986533pt;}
.y211{bottom:816.552933pt;}
.y149{bottom:818.065467pt;}
.yce{bottom:818.449467pt;}
.y67{bottom:819.687867pt;}
.y93{bottom:820.354533pt;}
.y100{bottom:821.413467pt;}
.y1d0{bottom:822.268533pt;}
.y10c{bottom:822.688267pt;}
.y209{bottom:822.949067pt;}
.y1ff{bottom:822.949200pt;}
.y151{bottom:824.722933pt;}
.y19f{bottom:825.627867pt;}
.y1b{bottom:826.999867pt;}
.yd5{bottom:827.782800pt;}
.y12a{bottom:835.031867pt;}
.ycd{bottom:837.116133pt;}
.y208{bottom:838.949067pt;}
.y1fe{bottom:838.949200pt;}
.y83{bottom:839.015867pt;}
.y171{bottom:841.111867pt;}
.y12{bottom:842.010533pt;}
.y148{bottom:844.737467pt;}
.y32{bottom:845.586533pt;}
.y66{bottom:846.359867pt;}
.yd4{bottom:846.449467pt;}
.y92{bottom:847.026533pt;}
.yff{bottom:849.157467pt;}
.y1a{bottom:853.671867pt;}
.y207{bottom:854.949067pt;}
.y1fd{bottom:854.949200pt;}
.ycc{bottom:855.782800pt;}
.y170{bottom:856.707867pt;}
.y150{bottom:856.714933pt;}
.y19e{bottom:856.829200pt;}
.y42{bottom:857.840267pt;}
.y129{bottom:861.698533pt;}
.yd3{bottom:865.116133pt;}
.y82{bottom:865.687867pt;}
.y147{bottom:871.409467pt;}
.y30{bottom:872.226533pt;}
.y31{bottom:872.258533pt;}
.y16f{bottom:872.303867pt;}
.y19d{bottom:872.425200pt;}
.y65{bottom:873.031867pt;}
.y91{bottom:873.698533pt;}
.y11{bottom:874.002533pt;}
.ycb{bottom:874.449467pt;}
.yfe{bottom:875.829467pt;}
.y19{bottom:880.343867pt;}
.y1c5{bottom:884.664533pt;}
.y206{bottom:886.373067pt;}
.y16e{bottom:887.899867pt;}
.y19c{bottom:888.021200pt;}
.y128{bottom:888.365200pt;}
.y14f{bottom:888.706933pt;}
.y146{bottom:898.081467pt;}
.y2f{bottom:898.898533pt;}
.yfd{bottom:902.501467pt;}
.y10{bottom:905.994533pt;}
.y18{bottom:907.015867pt;}
.y41{bottom:907.160267pt;}
.yc9{bottom:907.356000pt;}
.y127{bottom:915.031867pt;}
.y81{bottom:919.015867pt;}
.y16d{bottom:919.101200pt;}
.y19b{bottom:919.222533pt;}
.y14e{bottom:920.698933pt;}
.y145{bottom:924.753467pt;}
.y2e{bottom:925.570533pt;}
.ybc{bottom:925.677200pt;}
.yc8{bottom:926.022667pt;}
.yfc{bottom:929.173467pt;}
.y17{bottom:933.687867pt;}
.y16c{bottom:934.697200pt;}
.y19a{bottom:934.818533pt;}
.yc2{bottom:935.356000pt;}
.yf{bottom:937.986533pt;}
.yc7{bottom:944.689333pt;}
.y80{bottom:945.687867pt;}
.y126{bottom:947.031867pt;}
.y16b{bottom:950.293200pt;}
.y199{bottom:950.414533pt;}
.y144{bottom:951.425467pt;}
.y7d{bottom:951.839733pt;}
.y2d{bottom:952.242533pt;}
.ybb{bottom:952.349200pt;}
.y14d{bottom:952.690933pt;}
.ybe{bottom:952.726800pt;}
.yc1{bottom:954.022667pt;}
.yfb{bottom:955.845467pt;}
.y40{bottom:956.480267pt;}
.y16{bottom:960.359867pt;}
.y10b{bottom:962.489067pt;}
.yc6{bottom:963.356000pt;}
.y16a{bottom:965.889200pt;}
.y198{bottom:966.010533pt;}
.ybd{bottom:971.398800pt;}
.y7f{bottom:972.359867pt;}
.yc0{bottom:972.689333pt;}
.y143{bottom:978.097467pt;}
.y1c4{bottom:978.258533pt;}
.y2c{bottom:978.914533pt;}
.yba{bottom:979.021200pt;}
.ye{bottom:979.319733pt;}
.y169{bottom:981.485200pt;}
.y197{bottom:981.606533pt;}
.yc5{bottom:982.022667pt;}
.yfa{bottom:982.517467pt;}
.y15{bottom:987.031867pt;}
.y7c{bottom:987.831733pt;}
.ybf{bottom:991.356000pt;}
.y10a{bottom:998.497067pt;}
.y7e{bottom:999.031867pt;}
.yc4{bottom:1000.689333pt;}
.y142{bottom:1004.769467pt;}
.y2b{bottom:1005.586533pt;}
.yb9{bottom:1005.693200pt;}
.y3f{bottom:1005.800267pt;}
.y210{bottom:1012.395867pt;}
.yc3{bottom:1019.356000pt;}
.y168{bottom:1019.453067pt;}
.y1db{bottom:1019.862533pt;}
.yd{bottom:1020.919733pt;}
.y7b{bottom:1023.823733pt;}
.y14{bottom:1025.430000pt;}
.yf9{bottom:1027.582133pt;}
.y141{bottom:1031.441467pt;}
.y2a{bottom:1032.258533pt;}
.yb8{bottom:1032.365200pt;}
.y109{bottom:1034.505067pt;}
.h15{height:9.693333pt;}
.h19{height:31.434667pt;}
.h8{height:33.962667pt;}
.ha{height:35.925333pt;}
.h12{height:39.840000pt;}
.h2{height:41.066667pt;}
.h17{height:41.888000pt;}
.h1a{height:42.661333pt;}
.h5{height:44.906667pt;}
.h4{height:47.808000pt;}
.hf{height:48.545499pt;}
.h16{height:49.397333pt;}
.hb{height:50.368000pt;}
.h3{height:53.888000pt;}
.h10{height:54.786133pt;}
.hc{height:55.788974pt;}
.hd{height:67.360000pt;}
.h14{height:71.850667pt;}
.h7{height:79.392000pt;}
.h13{height:92.624000pt;}
.h18{height:95.466667pt;}
.h9{height:97.034667pt;}
.h1b{height:110.741333pt;}
.he{height:114.560000pt;}
.h6{height:114.677333pt;}
.h11{height:132.320000pt;}
.h1c{height:141.290667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:12.540000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x1b{left:-1.525200pt;}
.x0{left:0.000000pt;}
.x17{left:49.169067pt;}
.xd{left:51.223067pt;}
.x1{left:52.930933pt;}
.x1c{left:54.283467pt;}
.x20{left:69.808933pt;}
.x1f{left:71.240267pt;}
.x8{left:73.244133pt;}
.x11{left:74.299200pt;}
.x2{left:75.590533pt;}
.x5{left:76.929200pt;}
.xf{left:77.889733pt;}
.x13{left:78.916000pt;}
.x29{left:81.028800pt;}
.x26{left:82.288800pt;}
.x10{left:85.795200pt;}
.xc{left:91.223067pt;}
.x1d{left:96.000000pt;}
.xe{left:98.666667pt;}
.xa{left:104.608933pt;}
.xb{left:105.553733pt;}
.x7{left:125.889733pt;}
.x15{left:247.893467pt;}
.x12{left:253.988000pt;}
.x27{left:266.102000pt;}
.x2a{left:307.656933pt;}
.x25{left:327.718133pt;}
.x2c{left:346.740667pt;}
.x4{left:357.397867pt;}
.x2b{left:405.973733pt;}
.x23{left:407.096933pt;}
.x24{left:408.034267pt;}
.x22{left:409.060267pt;}
.x21{left:410.542267pt;}
.x28{left:413.889867pt;}
.x2d{left:418.299333pt;}
.x1e{left:432.000000pt;}
.x9{left:447.572667pt;}
.x16{left:461.626800pt;}
.x14{left:467.721333pt;}
.x6{left:513.008667pt;}
.x19{left:567.742000pt;}
.x18{left:729.484133pt;}
.x1a{left:731.009333pt;}
.x3{left:733.246000pt;}
}




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