
    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_7fd14e45234b30b5531d9a38.woff')format("woff");}.ff1{font-family:ff1;line-height:0.825000;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_953adea3435d4d55a06356d4.woff')format("woff");}.ff2{font-family:ff2;line-height:1.223000;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_896541419198284ef9aa0484.woff')format("woff");}.ff3{font-family:ff3;line-height:1.136000;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_c360e394f8b39fe640fdb808.woff')format("woff");}.ff4{font-family:ff4;line-height:1.126000;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_7408c88b395bb2611b860676.woff')format("woff");}.ff5{font-family:ff5;line-height:1.239000;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_4ec93348a2b2fa9c283ffcb0.woff')format("woff");}.ff6{font-family:ff6;line-height:1.179000;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_b62c692ac54889a4cd217f6a.woff')format("woff");}.ff7{font-family:ff7;line-height:0.722656;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_46e35640b7fa331bf79f9ca8.woff')format("woff");}.ff8{font-family:ff8;line-height:1.065581;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_3878de52c6b9f56bdbade756.woff')format("woff");}.ff9{font-family:ff9;line-height:1.328000;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_210072bb502b1ffa0cb56fdb.woff')format("woff");}.ffa{font-family:ffa;line-height:1.144000;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_72d6627e52160a1257e1f036.woff')format("woff");}.ffb{font-family:ffb;line-height:1.607000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-19.200000px;}
.v6{vertical-align:-11.983800px;}
.v3{vertical-align:-3.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:22.800000px;}
.v5{vertical-align:32.187000px;}
.v4{vertical-align:55.488000px;}
.ls17{letter-spacing:-0.960000px;}
.ls6{letter-spacing:-0.798000px;}
.ls13{letter-spacing:-0.720000px;}
.ls1e{letter-spacing:-0.672000px;}
.ls5{letter-spacing:-0.570000px;}
.ls16{letter-spacing:-0.480000px;}
.ls1d{letter-spacing:-0.288000px;}
.lsf{letter-spacing:-0.268800px;}
.ls1f{letter-spacing:-0.048000px;}
.ls1{letter-spacing:0.000000px;}
.lse{letter-spacing:0.043200px;}
.ls10{letter-spacing:0.092400px;}
.ls3{letter-spacing:0.570000px;}
.ls18{letter-spacing:0.672000px;}
.ls1a{letter-spacing:0.676800px;}
.ls4{letter-spacing:0.798000px;}
.ls11{letter-spacing:0.855000px;}
.ls12{letter-spacing:1.140000px;}
.ls8{letter-spacing:1.368000px;}
.ls1b{letter-spacing:2.361600px;}
.ls1c{letter-spacing:2.448000px;}
.ls2{letter-spacing:3.360000px;}
.ls14{letter-spacing:5.145600px;}
.ls19{letter-spacing:6.144000px;}
.ls15{letter-spacing:6.720000px;}
.ls0{letter-spacing:34.320000px;}
.ls9{letter-spacing:49.589400px;}
.ls7{letter-spacing:54.502800px;}
.lsc{letter-spacing:98.640000px;}
.lsa{letter-spacing:110.884800px;}
.lsd{letter-spacing:446.256000px;}
.lsb{letter-spacing:679.296000px;}
.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;}
}
.wsd3{word-spacing:-15.390000px;}
.wscb{word-spacing:-15.105000px;}
.wsae{word-spacing:-15.048000px;}
.wsbf{word-spacing:-14.820000px;}
.ws41{word-spacing:-14.250000px;}
.wsab{word-spacing:-13.332000px;}
.ws106{word-spacing:-12.672000px;}
.ws5{word-spacing:-12.000000px;}
.ws1{word-spacing:-11.799000px;}
.ws117{word-spacing:-11.712000px;}
.wsf8{word-spacing:-11.520000px;}
.ws3{word-spacing:-11.514000px;}
.ws80{word-spacing:-11.340000px;}
.ws107{word-spacing:-11.328000px;}
.ws101{word-spacing:-11.280000px;}
.wsfa{word-spacing:-11.040000px;}
.ws4{word-spacing:-10.944000px;}
.wse4{word-spacing:-9.216000px;}
.ws6{word-spacing:-8.400000px;}
.ws2{word-spacing:-8.259300px;}
.wsbb{word-spacing:-8.131200px;}
.wsb9{word-spacing:-7.581000px;}
.ws9c{word-spacing:-7.125000px;}
.wsa4{word-spacing:-6.000000px;}
.ws7{word-spacing:-3.360000px;}
.wsb6{word-spacing:-2.109000px;}
.ws1c{word-spacing:-1.890000px;}
.ws121{word-spacing:-1.776000px;}
.wse6{word-spacing:-1.632000px;}
.ws85{word-spacing:-1.353600px;}
.ws81{word-spacing:-1.311000px;}
.wse5{word-spacing:-1.248000px;}
.wsd6{word-spacing:-1.140000px;}
.wsaa{word-spacing:-1.026000px;}
.ws14{word-spacing:-0.969000px;}
.wsb5{word-spacing:-0.912000px;}
.wsce{word-spacing:-0.855000px;}
.ws54{word-spacing:-0.798000px;}
.wsfb{word-spacing:-0.720000px;}
.ws3c{word-spacing:-0.684000px;}
.ws10f{word-spacing:-0.672000px;}
.wsc2{word-spacing:-0.627000px;}
.ws7e{word-spacing:-0.570000px;}
.ws38{word-spacing:-0.513000px;}
.ws9{word-spacing:-0.456000px;}
.wsf9{word-spacing:-0.432000px;}
.ws87{word-spacing:-0.399000px;}
.ws7b{word-spacing:-0.342000px;}
.wsf6{word-spacing:-0.288000px;}
.ws10{word-spacing:-0.228000px;}
.ws12c{word-spacing:-0.192000px;}
.wsde{word-spacing:-0.171000px;}
.ws12b{word-spacing:-0.144000px;}
.ws5f{word-spacing:-0.114000px;}
.ws119{word-spacing:-0.096000px;}
.ws42{word-spacing:-0.057000px;}
.ws0{word-spacing:-0.048000px;}
.ws8{word-spacing:0.000000px;}
.ws3d{word-spacing:0.057000px;}
.ws147{word-spacing:0.096000px;}
.ws7c{word-spacing:0.114000px;}
.ws6d{word-spacing:0.171000px;}
.wse8{word-spacing:0.192000px;}
.ws57{word-spacing:0.228000px;}
.ws2a{word-spacing:0.285000px;}
.ws116{word-spacing:0.288000px;}
.ws63{word-spacing:0.342000px;}
.ws32{word-spacing:0.399000px;}
.ws4e{word-spacing:0.456000px;}
.wsf7{word-spacing:0.480000px;}
.ws48{word-spacing:0.513000px;}
.ws4b{word-spacing:0.570000px;}
.ws130{word-spacing:0.576000px;}
.ws118{word-spacing:0.624000px;}
.ws88{word-spacing:0.627000px;}
.ws108{word-spacing:0.672000px;}
.ws2c{word-spacing:0.684000px;}
.wsff{word-spacing:0.720000px;}
.ws91{word-spacing:0.741000px;}
.ws123{word-spacing:0.768000px;}
.ws5a{word-spacing:0.798000px;}
.wsd1{word-spacing:0.855000px;}
.ws74{word-spacing:0.912000px;}
.ws128{word-spacing:0.960000px;}
.ws97{word-spacing:0.969000px;}
.ws11b{word-spacing:1.008000px;}
.wsa6{word-spacing:1.026000px;}
.wsea{word-spacing:1.056000px;}
.ws12{word-spacing:1.083000px;}
.ws2e{word-spacing:1.140000px;}
.ws127{word-spacing:1.152000px;}
.ws76{word-spacing:1.197000px;}
.ws12d{word-spacing:1.200000px;}
.ws15{word-spacing:1.254000px;}
.ws52{word-spacing:1.311000px;}
.ws113{word-spacing:1.344000px;}
.ws37{word-spacing:1.368000px;}
.wsec{word-spacing:1.392000px;}
.ws16{word-spacing:1.425000px;}
.ws62{word-spacing:1.482000px;}
.ws122{word-spacing:1.536000px;}
.ws8c{word-spacing:1.539000px;}
.ws12e{word-spacing:1.584000px;}
.ws6f{word-spacing:1.596000px;}
.ws143{word-spacing:1.632000px;}
.ws53{word-spacing:1.653000px;}
.ws13a{word-spacing:1.680000px;}
.ws34{word-spacing:1.710000px;}
.wsdf{word-spacing:1.767000px;}
.wsf3{word-spacing:1.776000px;}
.ws19{word-spacing:1.824000px;}
.ws31{word-spacing:1.881000px;}
.ws22{word-spacing:1.938000px;}
.ws134{word-spacing:1.968000px;}
.ws33{word-spacing:1.995000px;}
.ws12f{word-spacing:2.016000px;}
.wsc{word-spacing:2.052000px;}
.ws132{word-spacing:2.064000px;}
.ws40{word-spacing:2.109000px;}
.ws12a{word-spacing:2.112000px;}
.wsa5{word-spacing:2.166000px;}
.ws35{word-spacing:2.223000px;}
.ws98{word-spacing:2.280000px;}
.ws141{word-spacing:2.304000px;}
.wscf{word-spacing:2.337000px;}
.ws3f{word-spacing:2.394000px;}
.ws114{word-spacing:2.400000px;}
.wsf0{word-spacing:2.448000px;}
.ws61{word-spacing:2.451000px;}
.ws136{word-spacing:2.496000px;}
.ws9a{word-spacing:2.508000px;}
.wsf4{word-spacing:2.544000px;}
.ws135{word-spacing:2.592000px;}
.ws68{word-spacing:2.622000px;}
.wse1{word-spacing:2.679000px;}
.ws77{word-spacing:2.736000px;}
.ws103{word-spacing:2.784000px;}
.ws59{word-spacing:2.793000px;}
.ws26{word-spacing:2.850000px;}
.wsb4{word-spacing:2.907000px;}
.ws139{word-spacing:2.928000px;}
.ws5b{word-spacing:2.964000px;}
.ws55{word-spacing:3.021000px;}
.ws45{word-spacing:3.078000px;}
.wsf5{word-spacing:3.120000px;}
.ws17{word-spacing:3.135000px;}
.ws124{word-spacing:3.168000px;}
.ws60{word-spacing:3.192000px;}
.ws129{word-spacing:3.216000px;}
.ws7d{word-spacing:3.249000px;}
.wsf{word-spacing:3.306000px;}
.wse9{word-spacing:3.312000px;}
.ws112{word-spacing:3.360000px;}
.ws1b{word-spacing:3.363000px;}
.ws11d{word-spacing:3.408000px;}
.ws66{word-spacing:3.420000px;}
.ws110{word-spacing:3.456000px;}
.ws84{word-spacing:3.477000px;}
.ws10c{word-spacing:3.504000px;}
.ws1e{word-spacing:3.534000px;}
.ws11e{word-spacing:3.552000px;}
.wsd{word-spacing:3.591000px;}
.ws145{word-spacing:3.600000px;}
.ws3e{word-spacing:3.648000px;}
.ws11f{word-spacing:3.696000px;}
.wsb3{word-spacing:3.705000px;}
.ws1d{word-spacing:3.819000px;}
.ws104{word-spacing:3.840000px;}
.wsa{word-spacing:3.876000px;}
.ws8e{word-spacing:3.933000px;}
.ws72{word-spacing:3.990000px;}
.ws99{word-spacing:4.047000px;}
.wsc0{word-spacing:4.104000px;}
.ws11a{word-spacing:4.128000px;}
.ws46{word-spacing:4.161000px;}
.wsb{word-spacing:4.218000px;}
.ws10b{word-spacing:4.272000px;}
.wsac{word-spacing:4.275000px;}
.ws13b{word-spacing:4.320000px;}
.ws43{word-spacing:4.332000px;}
.wsfc{word-spacing:4.368000px;}
.wsd9{word-spacing:4.389000px;}
.ws11{word-spacing:4.446000px;}
.wsc8{word-spacing:4.503000px;}
.ws120{word-spacing:4.512000px;}
.ws13{word-spacing:4.560000px;}
.ws149{word-spacing:4.608000px;}
.ws75{word-spacing:4.617000px;}
.ws9d{word-spacing:4.674000px;}
.ws27{word-spacing:4.731000px;}
.ws7a{word-spacing:4.788000px;}
.wsf1{word-spacing:4.800000px;}
.ws3a{word-spacing:4.845000px;}
.wse{word-spacing:4.902000px;}
.wsb8{word-spacing:4.959000px;}
.ws30{word-spacing:5.016000px;}
.ws8d{word-spacing:5.073000px;}
.ws28{word-spacing:5.130000px;}
.ws11c{word-spacing:5.136000px;}
.ws25{word-spacing:5.187000px;}
.wsf2{word-spacing:5.232000px;}
.ws109{word-spacing:5.280000px;}
.ws78{word-spacing:5.301000px;}
.ws102{word-spacing:5.328000px;}
.ws69{word-spacing:5.358000px;}
.ws1f{word-spacing:5.415000px;}
.ws2d{word-spacing:5.472000px;}
.ws9b{word-spacing:5.529000px;}
.ws146{word-spacing:5.568000px;}
.ws71{word-spacing:5.586000px;}
.wsfd{word-spacing:5.616000px;}
.ws56{word-spacing:5.643000px;}
.ws44{word-spacing:5.700000px;}
.ws73{word-spacing:5.757000px;}
.ws140{word-spacing:5.760000px;}
.ws7f{word-spacing:5.814000px;}
.ws100{word-spacing:5.856000px;}
.wsc1{word-spacing:5.871000px;}
.ws2b{word-spacing:5.928000px;}
.ws13d{word-spacing:5.952000px;}
.ws8f{word-spacing:5.985000px;}
.ws39{word-spacing:6.042000px;}
.ws5e{word-spacing:6.099000px;}
.ws137{word-spacing:6.144000px;}
.wse2{word-spacing:6.156000px;}
.ws125{word-spacing:6.192000px;}
.ws20{word-spacing:6.213000px;}
.ws142{word-spacing:6.288000px;}
.ws51{word-spacing:6.327000px;}
.wseb{word-spacing:6.336000px;}
.ws47{word-spacing:6.384000px;}
.ws93{word-spacing:6.441000px;}
.ws83{word-spacing:6.498000px;}
.wsa7{word-spacing:6.555000px;}
.ws29{word-spacing:6.612000px;}
.ws6e{word-spacing:6.669000px;}
.ws105{word-spacing:6.720000px;}
.ws2f{word-spacing:6.726000px;}
.ws3b{word-spacing:6.783000px;}
.ws9e{word-spacing:6.840000px;}
.ws111{word-spacing:6.864000px;}
.ws8a{word-spacing:6.897000px;}
.ws67{word-spacing:6.954000px;}
.ws4d{word-spacing:7.068000px;}
.wsef{word-spacing:7.104000px;}
.ws4a{word-spacing:7.125000px;}
.ws36{word-spacing:7.182000px;}
.ws1a{word-spacing:7.239000px;}
.ws144{word-spacing:7.248000px;}
.ws65{word-spacing:7.296000px;}
.ws70{word-spacing:7.353000px;}
.wsed{word-spacing:7.392000px;}
.ws92{word-spacing:7.410000px;}
.ws79{word-spacing:7.467000px;}
.ws89{word-spacing:7.524000px;}
.ws8b{word-spacing:7.581000px;}
.ws94{word-spacing:7.638000px;}
.wsad{word-spacing:7.695000px;}
.ws10d{word-spacing:7.728000px;}
.ws6b{word-spacing:7.752000px;}
.ws115{word-spacing:7.776000px;}
.ws4c{word-spacing:7.809000px;}
.ws5c{word-spacing:7.923000px;}
.ws21{word-spacing:7.980000px;}
.ws58{word-spacing:8.094000px;}
.ws138{word-spacing:8.160000px;}
.ws82{word-spacing:8.208000px;}
.ws23{word-spacing:8.265000px;}
.ws13f{word-spacing:8.400000px;}
.ws90{word-spacing:8.436000px;}
.ws126{word-spacing:8.448000px;}
.ws24{word-spacing:8.493000px;}
.wse3{word-spacing:8.664000px;}
.ws131{word-spacing:8.688000px;}
.wsd0{word-spacing:8.721000px;}
.wsfe{word-spacing:8.736000px;}
.ws64{word-spacing:8.778000px;}
.wscc{word-spacing:8.892000px;}
.ws13c{word-spacing:8.928000px;}
.wsc9{word-spacing:8.949000px;}
.wsdb{word-spacing:9.006000px;}
.ws10e{word-spacing:9.168000px;}
.wsd7{word-spacing:9.177000px;}
.wsc3{word-spacing:9.348000px;}
.wsda{word-spacing:9.462000px;}
.wsee{word-spacing:9.600000px;}
.wsdc{word-spacing:9.633000px;}
.ws9f{word-spacing:9.690000px;}
.wsa9{word-spacing:9.804000px;}
.ws50{word-spacing:10.089000px;}
.wsa0{word-spacing:10.203000px;}
.wsdd{word-spacing:10.374000px;}
.wsd2{word-spacing:10.944000px;}
.ws148{word-spacing:11.328000px;}
.ws6a{word-spacing:11.400000px;}
.wsa8{word-spacing:11.457000px;}
.ws4f{word-spacing:11.685000px;}
.wsb7{word-spacing:11.913000px;}
.ws13e{word-spacing:12.144000px;}
.wsd5{word-spacing:12.255000px;}
.ws86{word-spacing:12.483000px;}
.ws5d{word-spacing:12.711000px;}
.ws133{word-spacing:12.720000px;}
.ws10a{word-spacing:12.864000px;}
.ws6c{word-spacing:13.053000px;}
.wscd{word-spacing:13.167000px;}
.wsd4{word-spacing:13.737000px;}
.ws49{word-spacing:15.105000px;}
.ws14a{word-spacing:15.552000px;}
.wse0{word-spacing:15.960000px;}
.wsd8{word-spacing:17.442000px;}
.wse7{word-spacing:18.000000px;}
.wsa1{word-spacing:19.551000px;}
.ws18{word-spacing:19.668000px;}
.wsca{word-spacing:21.546000px;}
.ws96{word-spacing:57.312000px;}
.wsc4{word-spacing:196.896000px;}
.wsba{word-spacing:196.900800px;}
.wsbc{word-spacing:242.832000px;}
.wsc5{word-spacing:257.568000px;}
.wsbd{word-spacing:329.712000px;}
.wsc6{word-spacing:344.448000px;}
.wsbe{word-spacing:389.712000px;}
.wsc7{word-spacing:404.448000px;}
.wsa2{word-spacing:404.928000px;}
.wsa3{word-spacing:410.256000px;}
.wsb0{word-spacing:492.048000px;}
.wsb2{word-spacing:634.752000px;}
.ws95{word-spacing:637.968000px;}
.wsb1{word-spacing:640.944000px;}
.wsaf{word-spacing:703.536000px;}
._56{margin-left:-29.474400px;}
._53{margin-left:-18.970800px;}
._8{margin-left:-15.600000px;}
._13{margin-left:-14.385600px;}
._d{margin-left:-13.332000px;}
._f{margin-left:-11.340000px;}
._55{margin-left:-9.718200px;}
._30{margin-left:-7.182000px;}
._1{margin-left:-5.382000px;}
._7{margin-left:-4.111200px;}
._4{margin-left:-2.741700px;}
._0{margin-left:-1.632000px;}
._5{width:1.521600px;}
._6{width:2.772000px;}
._10{width:4.001100px;}
._a{width:5.301000px;}
._b{width:7.149000px;}
._54{width:8.669700px;}
._12{width:11.334600px;}
._57{width:13.056000px;}
._15{width:14.784000px;}
._e{width:18.660000px;}
._c{width:19.668000px;}
._14{width:20.784000px;}
._11{width:30.000000px;}
._2f{width:33.000000px;}
._2{width:39.954600px;}
._3{width:41.049000px;}
._36{width:44.468100px;}
._9{width:56.256000px;}
._26{width:69.326400px;}
._1a{width:85.440000px;}
._1c{width:111.388800px;}
._35{width:140.923200px;}
._1b{width:167.472000px;}
._21{width:194.448000px;}
._3c{width:208.512000px;}
._25{width:211.488000px;}
._24{width:218.544000px;}
._22{width:230.304000px;}
._1d{width:245.788800px;}
._1e{width:259.008000px;}
._3d{width:269.904000px;}
._20{width:280.800000px;}
._48{width:326.160000px;}
._31{width:330.624000px;}
._23{width:341.184000px;}
._52{width:356.448000px;}
._3e{width:378.624000px;}
._4e{width:392.448000px;}
._38{width:401.712000px;}
._4f{width:409.392000px;}
._17{width:414.720000px;}
._4c{width:415.852500px;}
._2e{width:416.942400px;}
._45{width:420.096000px;}
._2a{width:422.256000px;}
._44{width:424.176000px;}
._46{width:438.192000px;}
._50{width:445.008000px;}
._4d{width:446.304000px;}
._43{width:449.088000px;}
._40{width:456.096000px;}
._3f{width:460.176000px;}
._1f{width:461.808000px;}
._34{width:467.136000px;}
._4a{width:469.391400px;}
._41{width:474.192000px;}
._3a{width:480.096000px;}
._39{width:484.176000px;}
._47{width:485.909700px;}
._3b{width:498.192000px;}
._51{width:504.412500px;}
._37{width:509.684100px;}
._49{width:515.181600px;}
._4b{width:520.497600px;}
._18{width:536.527200px;}
._28{width:542.064000px;}
._2d{width:559.104000px;}
._2c{width:566.160000px;}
._42{width:576.528000px;}
._29{width:577.920000px;}
._19{width:602.832000px;}
._27{width:628.416000px;}
._32{width:665.040000px;}
._2b{width:688.800000px;}
._33{width:775.920000px;}
._16{width:920.208000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:33.600000px;}
.fs3{font-size:39.900000px;}
.fs0{font-size:48.000000px;}
.fs8{font-size:56.400000px;}
.fs2{font-size:57.000000px;}
.fs7{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs1{font-size:78.000000px;}
.fs6{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:32.687250px;}
.y28{bottom:33.985050px;}
.y1df{bottom:73.113150px;}
.y1de{bottom:73.137150px;}
.y1dd{bottom:73.161150px;}
.y1dc{bottom:73.185150px;}
.y1c5{bottom:73.197000px;}
.y1c4{bottom:73.209000px;}
.y1db{bottom:73.209150px;}
.y1c3{bottom:73.221000px;}
.y1c2{bottom:73.233000px;}
.y1da{bottom:73.233150px;}
.y122{bottom:73.239000px;}
.y1c1{bottom:73.245000px;}
.y120{bottom:73.251000px;}
.y1c0{bottom:73.257000px;}
.y1d9{bottom:73.257150px;}
.y11e{bottom:73.263000px;}
.y1bf{bottom:73.269000px;}
.y11d{bottom:73.275000px;}
.y14e{bottom:73.287000px;}
.y14f{bottom:73.299000px;}
.y150{bottom:73.311000px;}
.y152{bottom:73.323000px;}
.y153{bottom:73.335000px;}
.y155{bottom:73.347000px;}
.y156{bottom:73.359000px;}
.y157{bottom:73.371000px;}
.y158{bottom:73.383000px;}
.y15a{bottom:73.395000px;}
.y15c{bottom:73.407000px;}
.y15e{bottom:73.419000px;}
.y59{bottom:73.426050px;}
.y160{bottom:73.431000px;}
.y161{bottom:73.443000px;}
.y162{bottom:73.455000px;}
.y164{bottom:73.467000px;}
.y165{bottom:73.479000px;}
.y166{bottom:73.491000px;}
.y167{bottom:73.503000px;}
.y169{bottom:73.515000px;}
.yf6{bottom:73.917600px;}
.y1f1{bottom:74.122350px;}
.ydc{bottom:74.355000px;}
.y18c{bottom:74.387250px;}
.ycd{bottom:74.486550px;}
.y274{bottom:74.559000px;}
.y25{bottom:78.075000px;}
.y11c{bottom:81.302550px;}
.y11f{bottom:82.263000px;}
.y1ab{bottom:83.520300px;}
.y14d{bottom:83.579250px;}
.y7d{bottom:84.982350px;}
.y273{bottom:88.431000px;}
.yac{bottom:89.383800px;}
.y58{bottom:90.682800px;}
.yf5{bottom:91.174350px;}
.y1f0{bottom:91.379100px;}
.y18b{bottom:91.644000px;}
.ycc{bottom:91.743300px;}
.y11b{bottom:98.559300px;}
.y2aa{bottom:98.861550px;}
.y24{bottom:99.497250px;}
.y21c{bottom:99.892050px;}
.y1aa{bottom:101.184300px;}
.y14c{bottom:101.243250px;}
.y7c{bottom:102.239100px;}
.y272{bottom:102.303000px;}
.yab{bottom:106.640550px;}
.y57{bottom:107.939550px;}
.yf4{bottom:108.431100px;}
.y18a{bottom:108.900750px;}
.ycb{bottom:109.000050px;}
.y2a9{bottom:112.733550px;}
.y11a{bottom:115.816050px;}
.y271{bottom:116.175000px;}
.y21b{bottom:117.148800px;}
.y1a9{bottom:118.776300px;}
.y14b{bottom:118.835250px;}
.y7b{bottom:119.495850px;}
.y1d6{bottom:119.725800px;}
.y1bd{bottom:121.024800px;}
.y23{bottom:122.975250px;}
.yaa{bottom:123.897300px;}
.y56{bottom:125.196300px;}
.yf3{bottom:125.687850px;}
.y189{bottom:126.157500px;}
.y2a8{bottom:126.605550px;}
.y1ef{bottom:126.629100px;}
.y209{bottom:128.491050px;}
.y243{bottom:129.725250px;}
.y270{bottom:130.047000px;}
.y119{bottom:133.072800px;}
.y21a{bottom:134.405550px;}
.y1a8{bottom:136.368300px;}
.y14a{bottom:136.427250px;}
.y7a{bottom:136.752600px;}
.y22{bottom:136.847250px;}
.y1d5{bottom:136.982550px;}
.y1bc{bottom:138.281550px;}
.y2a7{bottom:140.477550px;}
.ya9{bottom:141.154050px;}
.y55{bottom:142.453050px;}
.yf2{bottom:142.944600px;}
.y188{bottom:143.414250px;}
.y26f{bottom:143.919000px;}
.yca{bottom:144.250050px;}
.y208{bottom:145.747800px;}
.y242{bottom:146.982000px;}
.y118{bottom:150.329550px;}
.y219{bottom:151.662300px;}
.y1a7{bottom:153.960300px;}
.y79{bottom:154.009350px;}
.y149{bottom:154.019250px;}
.y1d4{bottom:154.239300px;}
.y2a6{bottom:154.349550px;}
.y1bb{bottom:155.538300px;}
.y26e{bottom:157.791000px;}
.ya8{bottom:158.410800px;}
.y54{bottom:159.709800px;}
.yf1{bottom:160.201350px;}
.y187{bottom:160.671000px;}
.y207{bottom:163.004550px;}
.y241{bottom:164.238750px;}
.y117{bottom:167.586300px;}
.y2a5{bottom:168.221550px;}
.y218{bottom:168.919050px;}
.y78{bottom:171.266100px;}
.y1d3{bottom:171.496050px;}
.y1ee{bottom:171.541350px;}
.y26d{bottom:171.663000px;}
.y1a6{bottom:172.104300px;}
.y148{bottom:172.163250px;}
.y1ba{bottom:172.795050px;}
.ya7{bottom:175.667550px;}
.y53{bottom:176.966550px;}
.yf0{bottom:177.458100px;}
.y186{bottom:177.927750px;}
.y206{bottom:180.261300px;}
.y240{bottom:181.495500px;}
.y2a4{bottom:182.093550px;}
.y21{bottom:183.828300px;}
.y116{bottom:184.843050px;}
.y26c{bottom:185.535000px;}
.y217{bottom:186.175800px;}
.y77{bottom:188.522850px;}
.y1d2{bottom:188.752800px;}
.y1ed{bottom:188.798100px;}
.y1b9{bottom:190.051800px;}
.y1a5{bottom:192.065550px;}
.ya6{bottom:192.924300px;}
.y52{bottom:194.223300px;}
.yef{bottom:194.714850px;}
.y185{bottom:195.184500px;}
.y2a3{bottom:195.965550px;}
.y205{bottom:197.518050px;}
.yc9{bottom:198.148800px;}
.y23f{bottom:198.752250px;}
.y26b{bottom:199.407000px;}
.y147{bottom:200.171250px;}
.y20{bottom:201.085050px;}
.y115{bottom:202.099800px;}
.y216{bottom:203.432550px;}
.y76{bottom:205.779600px;}
.y1a4{bottom:205.937550px;}
.y1d1{bottom:206.009550px;}
.y1ec{bottom:206.054850px;}
.y1b8{bottom:207.308550px;}
.y2a2{bottom:209.837550px;}
.ya5{bottom:210.181050px;}
.y51{bottom:211.480050px;}
.y184{bottom:212.441250px;}
.yee{bottom:212.871600px;}
.y26a{bottom:213.279000px;}
.y204{bottom:214.774800px;}
.yc8{bottom:215.405550px;}
.y23e{bottom:216.009000px;}
.y1f{bottom:218.341800px;}
.y114{bottom:219.356550px;}
.y215{bottom:220.689300px;}
.y75{bottom:223.036350px;}
.y1d0{bottom:223.266300px;}
.y1eb{bottom:223.311600px;}
.y2a1{bottom:223.709550px;}
.y146{bottom:223.931250px;}
.y1b7{bottom:224.565300px;}
.y269{bottom:227.151000px;}
.ya4{bottom:227.437800px;}
.y50{bottom:228.736800px;}
.yed{bottom:229.181100px;}
.y183{bottom:229.698000px;}
.y203{bottom:232.031550px;}
.yc7{bottom:232.662300px;}
.y23d{bottom:233.265750px;}
.y1e{bottom:235.598550px;}
.y113{bottom:236.613300px;}
.y2a0{bottom:237.581550px;}
.y214{bottom:237.946050px;}
.y74{bottom:240.293100px;}
.y1cf{bottom:240.523050px;}
.y1ea{bottom:240.568350px;}
.y268{bottom:241.023000px;}
.y1b6{bottom:241.822050px;}
.ya3{bottom:244.694550px;}
.y4f{bottom:245.993550px;}
.yec{bottom:246.437850px;}
.y182{bottom:246.954750px;}
.y202{bottom:249.288300px;}
.yc6{bottom:249.919050px;}
.y23c{bottom:250.522500px;}
.y29f{bottom:251.453550px;}
.y1a3{bottom:252.243300px;}
.y112{bottom:253.870050px;}
.y267{bottom:254.895000px;}
.y213{bottom:255.202800px;}
.y73{bottom:257.549850px;}
.y1ce{bottom:257.779800px;}
.y1e9{bottom:257.825100px;}
.y1b5{bottom:259.078800px;}
.y140{bottom:259.641750px;}
.ya2{bottom:261.951300px;}
.y4e{bottom:263.250300px;}
.yeb{bottom:263.694600px;}
.y181{bottom:264.211500px;}
.y29e{bottom:265.325550px;}
.y201{bottom:266.545050px;}
.yc5{bottom:267.175800px;}
.y23b{bottom:267.779250px;}
.y266{bottom:268.767000px;}
.y1a2{bottom:269.500050px;}
.y1d{bottom:270.848550px;}
.y111{bottom:271.126800px;}
.y212{bottom:272.459550px;}
.y72{bottom:274.806600px;}
.y1cd{bottom:275.036550px;}
.y1e8{bottom:275.081850px;}
.y1b4{bottom:276.335550px;}
.y13f{bottom:276.898500px;}
.y29d{bottom:279.197550px;}
.ya1{bottom:279.208050px;}
.y4d{bottom:280.507050px;}
.yea{bottom:280.951350px;}
.y2bc{bottom:280.973700px;}
.y180{bottom:281.468250px;}
.y265{bottom:282.639000px;}
.y200{bottom:283.801800px;}
.yc4{bottom:284.432550px;}
.y23a{bottom:285.036000px;}
.y110{bottom:288.383550px;}
.y211{bottom:289.716300px;}
.y71{bottom:292.063350px;}
.y1cc{bottom:292.293300px;}
.y1e7{bottom:292.338600px;}
.y29c{bottom:293.069550px;}
.y1b3{bottom:293.592300px;}
.y13e{bottom:294.155250px;}
.y2bb{bottom:294.845700px;}
.ya0{bottom:296.464800px;}
.y264{bottom:296.511000px;}
.y4c{bottom:297.763800px;}
.ye9{bottom:298.208100px;}
.y17f{bottom:298.725000px;}
.y1ff{bottom:301.058550px;}
.yc3{bottom:301.689300px;}
.y239{bottom:302.292750px;}
.y1a1{bottom:304.750050px;}
.y10f{bottom:305.640300px;}
.y29b{bottom:306.941550px;}
.y210{bottom:306.973050px;}
.y2ba{bottom:308.717700px;}
.y70{bottom:309.320100px;}
.y1cb{bottom:309.550050px;}
.y1e6{bottom:309.595350px;}
.y263{bottom:310.383000px;}
.y1b2{bottom:310.849050px;}
.y13d{bottom:311.412000px;}
.y9f{bottom:313.721550px;}
.y4b{bottom:315.020550px;}
.ye8{bottom:315.464850px;}
.y1fe{bottom:318.315300px;}
.yc2{bottom:318.946050px;}
.y238{bottom:319.549500px;}
.y29a{bottom:320.813550px;}
.y2b9{bottom:322.589700px;}
.y10e{bottom:322.897050px;}
.y20f{bottom:324.229800px;}
.y262{bottom:324.255000px;}
.y1c{bottom:324.721050px;}
.y6f{bottom:326.576850px;}
.y1ca{bottom:326.806800px;}
.y1e5{bottom:326.852100px;}
.y1b1{bottom:328.105800px;}
.y13c{bottom:328.668750px;}
.y9e{bottom:330.978300px;}
.y4a{bottom:332.277300px;}
.ye7{bottom:333.621600px;}
.y17e{bottom:333.975000px;}
.y299{bottom:334.685550px;}
.y1fd{bottom:335.572050px;}
.yc1{bottom:336.202800px;}
.y2b8{bottom:336.461700px;}
.y237{bottom:336.806250px;}
.y261{bottom:338.127000px;}
.y10d{bottom:340.153800px;}
.y20e{bottom:341.486550px;}
.y1b{bottom:341.977800px;}
.y6e{bottom:343.833600px;}
.y1c9{bottom:344.063550px;}
.y1e4{bottom:344.108850px;}
.y1a0{bottom:345.128550px;}
.y1b0{bottom:345.362550px;}
.y13b{bottom:345.925500px;}
.y9d{bottom:348.235050px;}
.y298{bottom:348.557550px;}
.y49{bottom:349.534050px;}
.ye6{bottom:349.937850px;}
.y2b7{bottom:350.333700px;}
.y260{bottom:351.999000px;}
.y1fc{bottom:352.828800px;}
.yc0{bottom:353.459550px;}
.y236{bottom:354.063000px;}
.y2da{bottom:356.621717px;}
.y10c{bottom:357.410550px;}
.y20d{bottom:358.743300px;}
.ydb{bottom:358.856550px;}
.y6d{bottom:361.090350px;}
.y1c8{bottom:361.320300px;}
.y1e3{bottom:361.365600px;}
.y19f{bottom:362.385300px;}
.y297{bottom:362.429550px;}
.y1af{bottom:362.619300px;}
.y13a{bottom:363.182250px;}
.y2b6{bottom:364.205700px;}
.y9c{bottom:365.491800px;}
.y25f{bottom:365.871000px;}
.y48{bottom:366.790800px;}
.ye5{bottom:367.194600px;}
.y1fb{bottom:370.085550px;}
.y2d9{bottom:370.493717px;}
.ybf{bottom:370.716300px;}
.y235{bottom:371.319750px;}
.y10b{bottom:374.667300px;}
.y20c{bottom:376.000050px;}
.yda{bottom:376.113300px;}
.y296{bottom:376.301550px;}
.y1a{bottom:376.477050px;}
.y2b5{bottom:378.077700px;}
.y6c{bottom:378.347100px;}
.y1c7{bottom:378.577050px;}
.y1e2{bottom:378.622350px;}
.y19e{bottom:379.642050px;}
.y25e{bottom:379.743000px;}
.y1ae{bottom:379.876050px;}
.y139{bottom:380.439000px;}
.y9b{bottom:382.748550px;}
.y47{bottom:384.047550px;}
.y2d8{bottom:384.365717px;}
.ye4{bottom:384.451350px;}
.y1fa{bottom:387.342300px;}
.ybe{bottom:387.973050px;}
.y234{bottom:388.576500px;}
.y295{bottom:390.173550px;}
.y17d{bottom:391.247850px;}
.y10a{bottom:391.924050px;}
.yd9{bottom:393.370050px;}
.y25d{bottom:393.615000px;}
.y19{bottom:393.733800px;}
.y6b{bottom:395.603850px;}
.y1e1{bottom:395.879100px;}
.y19d{bottom:396.898800px;}
.y1ad{bottom:397.132800px;}
.y138{bottom:397.695750px;}
.y2d7{bottom:398.237717px;}
.y9a{bottom:400.005300px;}
.y46{bottom:401.304300px;}
.ye3{bottom:401.708100px;}
.y151{bottom:402.651000px;}
.y16a{bottom:402.675000px;}
.y159{bottom:402.723000px;}
.y15b{bottom:402.735000px;}
.y15f{bottom:402.759000px;}
.y163{bottom:402.795000px;}
.y294{bottom:404.045550px;}
.y1f9{bottom:404.599050px;}
.ybd{bottom:405.229800px;}
.y233{bottom:405.833250px;}
.y25c{bottom:407.487000px;}
.y17c{bottom:408.504600px;}
.y109{bottom:409.180800px;}
.yd8{bottom:410.626800px;}
.y18{bottom:410.990550px;}
.y20b{bottom:411.250050px;}
.y154{bottom:411.675000px;}
.y15d{bottom:411.747000px;}
.y168{bottom:411.843000px;}
.y2d6{bottom:412.109717px;}
.y6a{bottom:412.860600px;}
.y1c6{bottom:413.827050px;}
.y19c{bottom:414.155550px;}
.y1ac{bottom:414.389550px;}
.y137{bottom:414.952500px;}
.y99{bottom:417.262050px;}
.y293{bottom:417.917550px;}
.y45{bottom:418.561050px;}
.ye2{bottom:418.964850px;}
.y25b{bottom:421.359000px;}
.y1f8{bottom:421.855800px;}
.ybc{bottom:422.486550px;}
.y232{bottom:423.090000px;}
.y17b{bottom:425.761350px;}
.y2d5{bottom:425.981717px;}
.y108{bottom:426.437550px;}
.yd7{bottom:427.883550px;}
.y17{bottom:428.247300px;}
.y69{bottom:430.117350px;}
.y1e0{bottom:431.129100px;}
.y19b{bottom:431.412300px;}
.y292{bottom:431.789550px;}
.y136{bottom:432.209250px;}
.y98{bottom:434.518800px;}
.y25a{bottom:435.231000px;}
.y44{bottom:435.817800px;}
.ye1{bottom:437.121600px;}
.y1f7{bottom:439.112550px;}
.ybb{bottom:439.743300px;}
.y2d4{bottom:439.853717px;}
.y231{bottom:440.346750px;}
.y17a{bottom:443.018100px;}
.yd6{bottom:445.140300px;}
.y16{bottom:445.504050px;}
.y291{bottom:445.661550px;}
.y68{bottom:447.374100px;}
.y19a{bottom:448.669050px;}
.y259{bottom:449.103000px;}
.y135{bottom:449.466000px;}
.y97{bottom:451.775550px;}
.y43{bottom:453.074550px;}
.y2d3{bottom:453.725717px;}
.y1be{bottom:454.969050px;}
.y1d7{bottom:455.149050px;}
.y1f6{bottom:456.369300px;}
.yba{bottom:457.000050px;}
.y230{bottom:457.603500px;}
.y290{bottom:459.533550px;}
.y179{bottom:460.274850px;}
.y107{bottom:461.687550px;}
.yd5{bottom:462.397050px;}
.y15{bottom:462.760800px;}
.y258{bottom:462.975000px;}
.y67{bottom:464.630850px;}
.y199{bottom:465.925800px;}
.y134{bottom:466.722750px;}
.y1f2{bottom:467.218950px;}
.y2d2{bottom:467.597717px;}
.y96{bottom:469.032300px;}
.y42{bottom:470.331300px;}
.ye0{bottom:470.701350px;}
.y28f{bottom:473.405550px;}
.y1f5{bottom:473.626050px;}
.y22f{bottom:474.860250px;}
.y178{bottom:477.531600px;}
.yd4{bottom:479.653800px;}
.y14{bottom:480.017550px;}
.y66{bottom:481.887600px;}
.y198{bottom:483.182550px;}
.y133{bottom:483.979500px;}
.y95{bottom:486.289050px;}
.y28e{bottom:487.277550px;}
.y41{bottom:487.588050px;}
.ydf{bottom:487.958100px;}
.y1f4{bottom:490.882800px;}
.y22e{bottom:492.117000px;}
.yb9{bottom:492.250050px;}
.y177{bottom:494.788350px;}
.y257{bottom:495.150000px;}
.yd3{bottom:496.910550px;}
.y13{bottom:497.274300px;}
.y2b4{bottom:498.833550px;}
.y197{bottom:500.439300px;}
.y28d{bottom:501.149550px;}
.y132{bottom:501.236250px;}
.y1d8{bottom:501.351000px;}
.y94{bottom:503.545800px;}
.y40{bottom:504.844800px;}
.yde{bottom:505.214850px;}
.y1f3{bottom:508.139550px;}
.y22d{bottom:509.373750px;}
.y176{bottom:512.045100px;}
.y2b3{bottom:512.705550px;}
.yd2{bottom:514.167300px;}
.y12{bottom:514.531050px;}
.y28c{bottom:515.021550px;}
.y65{bottom:517.137600px;}
.y196{bottom:517.696050px;}
.y131{bottom:518.493000px;}
.y93{bottom:520.802550px;}
.y106{bottom:520.870800px;}
.y3f{bottom:522.101550px;}
.ydd{bottom:522.471600px;}
.y2b2{bottom:526.577550px;}
.y22c{bottom:526.630500px;}
.y28b{bottom:528.893550px;}
.y175{bottom:529.301850px;}
.yd1{bottom:531.424050px;}
.y11{bottom:531.787800px;}
.yb8{bottom:532.682550px;}
.y195{bottom:534.952800px;}
.y130{bottom:535.749750px;}
.y92{bottom:538.059300px;}
.y105{bottom:538.127550px;}
.y3e{bottom:539.358300px;}
.y2b1{bottom:540.449550px;}
.y28a{bottom:542.765550px;}
.y22b{bottom:543.887250px;}
.y174{bottom:546.558600px;}
.yf7{bottom:547.858950px;}
.yd0{bottom:548.680800px;}
.y10{bottom:549.044550px;}
.yb7{bottom:549.939300px;}
.y194{bottom:552.209550px;}
.y12f{bottom:553.006500px;}
.y2b0{bottom:554.321550px;}
.y91{bottom:555.316050px;}
.y104{bottom:555.384300px;}
.y3d{bottom:556.615050px;}
.y289{bottom:556.637550px;}
.y20a{bottom:560.629050px;}
.y22a{bottom:561.144000px;}
.y173{bottom:563.815350px;}
.ycf{bottom:565.937550px;}
.yf{bottom:566.301300px;}
.y256{bottom:567.002700px;}
.yb6{bottom:567.196050px;}
.y2af{bottom:568.193550px;}
.y64{bottom:569.446050px;}
.y193{bottom:569.466300px;}
.y12e{bottom:570.263250px;}
.y288{bottom:570.509550px;}
.y90{bottom:572.572800px;}
.y103{bottom:572.641050px;}
.y2d1{bottom:573.101682px;}
.y3c{bottom:573.871800px;}
.y229{bottom:578.400750px;}
.y255{bottom:580.874700px;}
.y172{bottom:581.072100px;}
.y2ae{bottom:582.065550px;}
.ye{bottom:583.558050px;}
.y287{bottom:584.381550px;}
.yb5{bottom:584.452800px;}
.y63{bottom:586.702800px;}
.y192{bottom:586.723050px;}
.y2d0{bottom:586.973682px;}
.y12d{bottom:587.520000px;}
.y8f{bottom:589.829550px;}
.y102{bottom:589.897800px;}
.y3b{bottom:591.128550px;}
.y254{bottom:594.746700px;}
.y228{bottom:595.657500px;}
.y2ad{bottom:595.937550px;}
.y286{bottom:598.253550px;}
.y171{bottom:598.328850px;}
.yd{bottom:600.814800px;}
.y2cf{bottom:600.845682px;}
.yce{bottom:601.187550px;}
.yb4{bottom:601.709550px;}
.y62{bottom:603.959550px;}
.y191{bottom:603.979800px;}
.y12c{bottom:604.776750px;}
.y8e{bottom:607.086300px;}
.y101{bottom:607.154550px;}
.y121{bottom:607.539000px;}
.y3a{bottom:608.385300px;}
.y253{bottom:608.618700px;}
.y285{bottom:612.125550px;}
.y227{bottom:612.914250px;}
.y2ce{bottom:614.717682px;}
.y170{bottom:615.585600px;}
.yc{bottom:618.071550px;}
.yb3{bottom:618.966300px;}
.y61{bottom:621.216300px;}
.y190{bottom:621.236550px;}
.y12b{bottom:622.033500px;}
.y252{bottom:622.490700px;}
.y8d{bottom:624.343050px;}
.y100{bottom:624.411300px;}
.y39{bottom:625.642050px;}
.y284{bottom:625.997550px;}
.y2cd{bottom:628.589682px;}
.y226{bottom:630.171000px;}
.y16f{bottom:632.842350px;}
.yb{bottom:635.328300px;}
.yb2{bottom:636.223050px;}
.y251{bottom:636.362700px;}
.y60{bottom:638.473050px;}
.y18f{bottom:638.493300px;}
.y12a{bottom:639.290250px;}
.y283{bottom:639.869550px;}
.y8c{bottom:641.599800px;}
.yff{bottom:641.668050px;}
.y2cc{bottom:642.461682px;}
.y38{bottom:642.898800px;}
.y225{bottom:647.427750px;}
.y16e{bottom:650.099100px;}
.y250{bottom:650.234700px;}
.ya{bottom:652.585050px;}
.yb1{bottom:653.479800px;}
.y282{bottom:653.741550px;}
.y5f{bottom:655.729800px;}
.y18e{bottom:655.750050px;}
.y2cb{bottom:656.333682px;}
.y129{bottom:656.547000px;}
.y8b{bottom:658.856550px;}
.yfe{bottom:658.924800px;}
.y37{bottom:660.155550px;}
.y24f{bottom:664.106700px;}
.y224{bottom:664.684500px;}
.y16d{bottom:667.355850px;}
.y2ac{bottom:667.601550px;}
.y281{bottom:667.613550px;}
.y9{bottom:669.841800px;}
.y2ca{bottom:670.205682px;}
.yb0{bottom:670.736550px;}
.y5e{bottom:672.986550px;}
.y128{bottom:673.803750px;}
.y8a{bottom:676.113300px;}
.yfd{bottom:676.181550px;}
.y36{bottom:677.412300px;}
.y2ab{bottom:681.473550px;}
.y280{bottom:681.485550px;}
.y223{bottom:681.941250px;}
.y2c9{bottom:684.077682px;}
.y16c{bottom:684.612600px;}
.y8{bottom:687.098550px;}
.yaf{bottom:687.993300px;}
.y5d{bottom:690.243300px;}
.y18d{bottom:691.000050px;}
.y127{bottom:691.060500px;}
.y24e{bottom:691.862700px;}
.y89{bottom:693.370050px;}
.yfc{bottom:693.438300px;}
.y35{bottom:694.669050px;}
.y27f{bottom:695.357550px;}
.y222{bottom:699.198000px;}
.yae{bottom:705.250050px;}
.y5c{bottom:707.500050px;}
.y126{bottom:708.317250px;}
.y27e{bottom:709.229550px;}
.y88{bottom:710.626800px;}
.y34{bottom:711.925800px;}
.y221{bottom:716.454750px;}
.y24d{bottom:719.612700px;}
.y16b{bottom:719.862600px;}
.y27d{bottom:723.101550px;}
.y125{bottom:725.574000px;}
.y87{bottom:727.883550px;}
.yfb{bottom:728.837700px;}
.y33{bottom:729.182550px;}
.y220{bottom:733.711500px;}
.y7{bottom:734.837550px;}
.y27c{bottom:736.973550px;}
.yad{bottom:740.500050px;}
.y5b{bottom:742.750050px;}
.y124{bottom:742.830750px;}
.y86{bottom:745.140300px;}
.yfa{bottom:746.087700px;}
.y32{bottom:746.439300px;}
.y6{bottom:748.709550px;}
.y24c{bottom:750.821550px;}
.y27b{bottom:750.845550px;}
.y21f{bottom:750.968250px;}
.y123{bottom:760.087500px;}
.y85{bottom:762.397050px;}
.yf9{bottom:763.337700px;}
.y31{bottom:763.696050px;}
.y24b{bottom:764.693550px;}
.y27a{bottom:764.717550px;}
.y21e{bottom:768.225000px;}
.y2c8{bottom:778.589531px;}
.y279{bottom:778.589550px;}
.y84{bottom:779.653800px;}
.yf8{bottom:780.587550px;}
.y30{bottom:780.952800px;}
.y5{bottom:786.474300px;}
.y24a{bottom:792.449550px;}
.y2c7{bottom:792.461531px;}
.y278{bottom:792.461550px;}
.y83{bottom:796.910550px;}
.y2f{bottom:798.209550px;}
.y21d{bottom:803.475000px;}
.y4{bottom:803.731050px;}
.y249{bottom:806.321550px;}
.y2c6{bottom:806.333531px;}
.y277{bottom:806.333550px;}
.y82{bottom:814.167300px;}
.y2e{bottom:815.466300px;}
.y145{bottom:819.563250px;}
.y248{bottom:820.193550px;}
.y2c5{bottom:820.205531px;}
.y276{bottom:820.205550px;}
.y81{bottom:831.424050px;}
.y2d{bottom:832.723050px;}
.y2c4{bottom:834.077531px;}
.y275{bottom:834.077550px;}
.y144{bottom:837.791250px;}
.y3{bottom:846.166050px;}
.y2c3{bottom:847.949531px;}
.y247{bottom:847.949550px;}
.y80{bottom:848.680800px;}
.y2c{bottom:849.979800px;}
.y143{bottom:851.663250px;}
.y2c2{bottom:861.821531px;}
.y246{bottom:861.821550px;}
.y7f{bottom:865.937550px;}
.y2b{bottom:867.236550px;}
.y2c1{bottom:875.693531px;}
.y245{bottom:875.693550px;}
.y142{bottom:879.671250px;}
.y2a{bottom:884.493300px;}
.y2c0{bottom:889.565531px;}
.y244{bottom:889.565550px;}
.y2{bottom:899.785200px;}
.y7e{bottom:901.187550px;}
.y29{bottom:901.750050px;}
.y2bf{bottom:903.437531px;}
.y141{bottom:903.437550px;}
.y26{bottom:939.109350px;}
.y27{bottom:939.985350px;}
.y2be{bottom:939.989089px;}
.y2bd{bottom:940.241089px;}
.y5a{bottom:940.241100px;}
.hc{height:32.289600px;}
.h2{height:33.840000px;}
.h7{height:42.048000px;}
.hb{height:46.128000px;}
.h3{height:46.704000px;}
.h14{height:49.104000px;}
.h11{height:50.640000px;}
.hf{height:53.640000px;}
.h10{height:54.200400px;}
.h9{height:54.777000px;}
.hd{height:54.862258px;}
.h8{height:56.373000px;}
.he{height:58.311000px;}
.h5{height:61.622700px;}
.h6{height:61.649700px;}
.ha{height:65.274000px;}
.h4{height:69.108000px;}
.h13{height:82.827000px;}
.h12{height:101.616000px;}
.h15{height:106.128000px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w0{width:659.055000px;}
.w1{width:659.250000px;}
.x0{left:0.000000px;}
.x3{left:70.157550px;}
.x5{left:71.220450px;}
.x6{left:72.368400px;}
.x2{left:74.529450px;}
.x12{left:79.157550px;}
.x7{left:87.171900px;}
.x9{left:89.929200px;}
.x4{left:91.421550px;}
.x4d{left:95.669550px;}
.x13{left:102.923700px;}
.x30{left:129.582150px;}
.x14{left:130.931700px;}
.x31{left:147.174150px;}
.x15{left:149.075700px;}
.x32{left:164.766150px;}
.x16{left:166.667700px;}
.x33{left:178.638150px;}
.x17{left:180.539700px;}
.x34{left:196.230150px;}
.x18{left:198.131700px;}
.x35{left:213.822150px;}
.x19{left:215.723700px;}
.x36{left:227.694150px;}
.x1a{left:229.595700px;}
.x44{left:234.466350px;}
.x4e{left:240.165900px;}
.x3b{left:241.216350px;}
.x37{left:245.286150px;}
.x1b{left:247.187700px;}
.x3a{left:248.739900px;}
.x11{left:254.981400px;}
.x45{left:258.232500px;}
.x38{left:262.878150px;}
.x1c{left:264.779700px;}
.xa{left:271.216350px;}
.x39{left:280.542150px;}
.x1d{left:282.371700px;}
.x3c{left:292.990500px;}
.xb{left:294.982500px;}
.x1e{left:299.963700px;}
.x3d{left:311.130450px;}
.x1f{left:313.835700px;}
.x46{left:318.255450px;}
.xc{left:322.990500px;}
.x3e{left:328.722450px;}
.x20{left:331.427700px;}
.x47{left:335.847450px;}
.xd{left:336.862500px;}
.x21{left:345.299700px;}
.x3f{left:346.314450px;}
.x48{left:353.439450px;}
.xe{left:355.018500px;}
.x22{left:362.891700px;}
.x40{left:363.906450px;}
.xf{left:368.890500px;}
.x49{left:371.031450px;}
.x23{left:376.763700px;}
.x41{left:381.498450px;}
.x10{left:386.566500px;}
.x4a{left:388.623450px;}
.x24{left:394.355700px;}
.x42{left:399.090450px;}
.x4b{left:406.215450px;}
.x25{left:408.227700px;}
.x43{left:416.754450px;}
.x4c{left:423.879450px;}
.x26{left:425.819700px;}
.x27{left:443.411700px;}
.x28{left:461.003700px;}
.x29{left:474.875700px;}
.x1{left:485.858400px;}
.x2a{left:492.467700px;}
.x2b{left:510.059700px;}
.x2c{left:527.651700px;}
.x2d{left:545.243700px;}
.x2e{left:559.115700px;}
.x8{left:569.671950px;}
.x2f{left:576.707700px;}
@media print{
.v2{vertical-align:-17.066667pt;}
.v6{vertical-align:-10.652267pt;}
.v3{vertical-align:-3.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:20.266667pt;}
.v5{vertical-align:28.610667pt;}
.v4{vertical-align:49.322667pt;}
.ls17{letter-spacing:-0.853333pt;}
.ls6{letter-spacing:-0.709333pt;}
.ls13{letter-spacing:-0.640000pt;}
.ls1e{letter-spacing:-0.597333pt;}
.ls5{letter-spacing:-0.506667pt;}
.ls16{letter-spacing:-0.426667pt;}
.ls1d{letter-spacing:-0.256000pt;}
.lsf{letter-spacing:-0.238933pt;}
.ls1f{letter-spacing:-0.042667pt;}
.ls1{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.038400pt;}
.ls10{letter-spacing:0.082133pt;}
.ls3{letter-spacing:0.506667pt;}
.ls18{letter-spacing:0.597333pt;}
.ls1a{letter-spacing:0.601600pt;}
.ls4{letter-spacing:0.709333pt;}
.ls11{letter-spacing:0.760000pt;}
.ls12{letter-spacing:1.013333pt;}
.ls8{letter-spacing:1.216000pt;}
.ls1b{letter-spacing:2.099200pt;}
.ls1c{letter-spacing:2.176000pt;}
.ls2{letter-spacing:2.986667pt;}
.ls14{letter-spacing:4.573867pt;}
.ls19{letter-spacing:5.461333pt;}
.ls15{letter-spacing:5.973333pt;}
.ls0{letter-spacing:30.506667pt;}
.ls9{letter-spacing:44.079467pt;}
.ls7{letter-spacing:48.446933pt;}
.lsc{letter-spacing:87.680000pt;}
.lsa{letter-spacing:98.564267pt;}
.lsd{letter-spacing:396.672000pt;}
.lsb{letter-spacing:603.818667pt;}
.wsd3{word-spacing:-13.680000pt;}
.wscb{word-spacing:-13.426667pt;}
.wsae{word-spacing:-13.376000pt;}
.wsbf{word-spacing:-13.173333pt;}
.ws41{word-spacing:-12.666667pt;}
.wsab{word-spacing:-11.850667pt;}
.ws106{word-spacing:-11.264000pt;}
.ws5{word-spacing:-10.666667pt;}
.ws1{word-spacing:-10.488000pt;}
.ws117{word-spacing:-10.410667pt;}
.wsf8{word-spacing:-10.240000pt;}
.ws3{word-spacing:-10.234667pt;}
.ws80{word-spacing:-10.080000pt;}
.ws107{word-spacing:-10.069333pt;}
.ws101{word-spacing:-10.026667pt;}
.wsfa{word-spacing:-9.813333pt;}
.ws4{word-spacing:-9.728000pt;}
.wse4{word-spacing:-8.192000pt;}
.ws6{word-spacing:-7.466667pt;}
.ws2{word-spacing:-7.341600pt;}
.wsbb{word-spacing:-7.227733pt;}
.wsb9{word-spacing:-6.738667pt;}
.ws9c{word-spacing:-6.333333pt;}
.wsa4{word-spacing:-5.333333pt;}
.ws7{word-spacing:-2.986667pt;}
.wsb6{word-spacing:-1.874667pt;}
.ws1c{word-spacing:-1.680000pt;}
.ws121{word-spacing:-1.578667pt;}
.wse6{word-spacing:-1.450667pt;}
.ws85{word-spacing:-1.203200pt;}
.ws81{word-spacing:-1.165333pt;}
.wse5{word-spacing:-1.109333pt;}
.wsd6{word-spacing:-1.013333pt;}
.wsaa{word-spacing:-0.912000pt;}
.ws14{word-spacing:-0.861333pt;}
.wsb5{word-spacing:-0.810667pt;}
.wsce{word-spacing:-0.760000pt;}
.ws54{word-spacing:-0.709333pt;}
.wsfb{word-spacing:-0.640000pt;}
.ws3c{word-spacing:-0.608000pt;}
.ws10f{word-spacing:-0.597333pt;}
.wsc2{word-spacing:-0.557333pt;}
.ws7e{word-spacing:-0.506667pt;}
.ws38{word-spacing:-0.456000pt;}
.ws9{word-spacing:-0.405333pt;}
.wsf9{word-spacing:-0.384000pt;}
.ws87{word-spacing:-0.354667pt;}
.ws7b{word-spacing:-0.304000pt;}
.wsf6{word-spacing:-0.256000pt;}
.ws10{word-spacing:-0.202667pt;}
.ws12c{word-spacing:-0.170667pt;}
.wsde{word-spacing:-0.152000pt;}
.ws12b{word-spacing:-0.128000pt;}
.ws5f{word-spacing:-0.101333pt;}
.ws119{word-spacing:-0.085333pt;}
.ws42{word-spacing:-0.050667pt;}
.ws0{word-spacing:-0.042667pt;}
.ws8{word-spacing:0.000000pt;}
.ws3d{word-spacing:0.050667pt;}
.ws147{word-spacing:0.085333pt;}
.ws7c{word-spacing:0.101333pt;}
.ws6d{word-spacing:0.152000pt;}
.wse8{word-spacing:0.170667pt;}
.ws57{word-spacing:0.202667pt;}
.ws2a{word-spacing:0.253333pt;}
.ws116{word-spacing:0.256000pt;}
.ws63{word-spacing:0.304000pt;}
.ws32{word-spacing:0.354667pt;}
.ws4e{word-spacing:0.405333pt;}
.wsf7{word-spacing:0.426667pt;}
.ws48{word-spacing:0.456000pt;}
.ws4b{word-spacing:0.506667pt;}
.ws130{word-spacing:0.512000pt;}
.ws118{word-spacing:0.554667pt;}
.ws88{word-spacing:0.557333pt;}
.ws108{word-spacing:0.597333pt;}
.ws2c{word-spacing:0.608000pt;}
.wsff{word-spacing:0.640000pt;}
.ws91{word-spacing:0.658667pt;}
.ws123{word-spacing:0.682667pt;}
.ws5a{word-spacing:0.709333pt;}
.wsd1{word-spacing:0.760000pt;}
.ws74{word-spacing:0.810667pt;}
.ws128{word-spacing:0.853333pt;}
.ws97{word-spacing:0.861333pt;}
.ws11b{word-spacing:0.896000pt;}
.wsa6{word-spacing:0.912000pt;}
.wsea{word-spacing:0.938667pt;}
.ws12{word-spacing:0.962667pt;}
.ws2e{word-spacing:1.013333pt;}
.ws127{word-spacing:1.024000pt;}
.ws76{word-spacing:1.064000pt;}
.ws12d{word-spacing:1.066667pt;}
.ws15{word-spacing:1.114667pt;}
.ws52{word-spacing:1.165333pt;}
.ws113{word-spacing:1.194667pt;}
.ws37{word-spacing:1.216000pt;}
.wsec{word-spacing:1.237333pt;}
.ws16{word-spacing:1.266667pt;}
.ws62{word-spacing:1.317333pt;}
.ws122{word-spacing:1.365333pt;}
.ws8c{word-spacing:1.368000pt;}
.ws12e{word-spacing:1.408000pt;}
.ws6f{word-spacing:1.418667pt;}
.ws143{word-spacing:1.450667pt;}
.ws53{word-spacing:1.469333pt;}
.ws13a{word-spacing:1.493333pt;}
.ws34{word-spacing:1.520000pt;}
.wsdf{word-spacing:1.570667pt;}
.wsf3{word-spacing:1.578667pt;}
.ws19{word-spacing:1.621333pt;}
.ws31{word-spacing:1.672000pt;}
.ws22{word-spacing:1.722667pt;}
.ws134{word-spacing:1.749333pt;}
.ws33{word-spacing:1.773333pt;}
.ws12f{word-spacing:1.792000pt;}
.wsc{word-spacing:1.824000pt;}
.ws132{word-spacing:1.834667pt;}
.ws40{word-spacing:1.874667pt;}
.ws12a{word-spacing:1.877333pt;}
.wsa5{word-spacing:1.925333pt;}
.ws35{word-spacing:1.976000pt;}
.ws98{word-spacing:2.026667pt;}
.ws141{word-spacing:2.048000pt;}
.wscf{word-spacing:2.077333pt;}
.ws3f{word-spacing:2.128000pt;}
.ws114{word-spacing:2.133333pt;}
.wsf0{word-spacing:2.176000pt;}
.ws61{word-spacing:2.178667pt;}
.ws136{word-spacing:2.218667pt;}
.ws9a{word-spacing:2.229333pt;}
.wsf4{word-spacing:2.261333pt;}
.ws135{word-spacing:2.304000pt;}
.ws68{word-spacing:2.330667pt;}
.wse1{word-spacing:2.381333pt;}
.ws77{word-spacing:2.432000pt;}
.ws103{word-spacing:2.474667pt;}
.ws59{word-spacing:2.482667pt;}
.ws26{word-spacing:2.533333pt;}
.wsb4{word-spacing:2.584000pt;}
.ws139{word-spacing:2.602667pt;}
.ws5b{word-spacing:2.634667pt;}
.ws55{word-spacing:2.685333pt;}
.ws45{word-spacing:2.736000pt;}
.wsf5{word-spacing:2.773333pt;}
.ws17{word-spacing:2.786667pt;}
.ws124{word-spacing:2.816000pt;}
.ws60{word-spacing:2.837333pt;}
.ws129{word-spacing:2.858667pt;}
.ws7d{word-spacing:2.888000pt;}
.wsf{word-spacing:2.938667pt;}
.wse9{word-spacing:2.944000pt;}
.ws112{word-spacing:2.986667pt;}
.ws1b{word-spacing:2.989333pt;}
.ws11d{word-spacing:3.029333pt;}
.ws66{word-spacing:3.040000pt;}
.ws110{word-spacing:3.072000pt;}
.ws84{word-spacing:3.090667pt;}
.ws10c{word-spacing:3.114667pt;}
.ws1e{word-spacing:3.141333pt;}
.ws11e{word-spacing:3.157333pt;}
.wsd{word-spacing:3.192000pt;}
.ws145{word-spacing:3.200000pt;}
.ws3e{word-spacing:3.242667pt;}
.ws11f{word-spacing:3.285333pt;}
.wsb3{word-spacing:3.293333pt;}
.ws1d{word-spacing:3.394667pt;}
.ws104{word-spacing:3.413333pt;}
.wsa{word-spacing:3.445333pt;}
.ws8e{word-spacing:3.496000pt;}
.ws72{word-spacing:3.546667pt;}
.ws99{word-spacing:3.597333pt;}
.wsc0{word-spacing:3.648000pt;}
.ws11a{word-spacing:3.669333pt;}
.ws46{word-spacing:3.698667pt;}
.wsb{word-spacing:3.749333pt;}
.ws10b{word-spacing:3.797333pt;}
.wsac{word-spacing:3.800000pt;}
.ws13b{word-spacing:3.840000pt;}
.ws43{word-spacing:3.850667pt;}
.wsfc{word-spacing:3.882667pt;}
.wsd9{word-spacing:3.901333pt;}
.ws11{word-spacing:3.952000pt;}
.wsc8{word-spacing:4.002667pt;}
.ws120{word-spacing:4.010667pt;}
.ws13{word-spacing:4.053333pt;}
.ws149{word-spacing:4.096000pt;}
.ws75{word-spacing:4.104000pt;}
.ws9d{word-spacing:4.154667pt;}
.ws27{word-spacing:4.205333pt;}
.ws7a{word-spacing:4.256000pt;}
.wsf1{word-spacing:4.266667pt;}
.ws3a{word-spacing:4.306667pt;}
.wse{word-spacing:4.357333pt;}
.wsb8{word-spacing:4.408000pt;}
.ws30{word-spacing:4.458667pt;}
.ws8d{word-spacing:4.509333pt;}
.ws28{word-spacing:4.560000pt;}
.ws11c{word-spacing:4.565333pt;}
.ws25{word-spacing:4.610667pt;}
.wsf2{word-spacing:4.650667pt;}
.ws109{word-spacing:4.693333pt;}
.ws78{word-spacing:4.712000pt;}
.ws102{word-spacing:4.736000pt;}
.ws69{word-spacing:4.762667pt;}
.ws1f{word-spacing:4.813333pt;}
.ws2d{word-spacing:4.864000pt;}
.ws9b{word-spacing:4.914667pt;}
.ws146{word-spacing:4.949333pt;}
.ws71{word-spacing:4.965333pt;}
.wsfd{word-spacing:4.992000pt;}
.ws56{word-spacing:5.016000pt;}
.ws44{word-spacing:5.066667pt;}
.ws73{word-spacing:5.117333pt;}
.ws140{word-spacing:5.120000pt;}
.ws7f{word-spacing:5.168000pt;}
.ws100{word-spacing:5.205333pt;}
.wsc1{word-spacing:5.218667pt;}
.ws2b{word-spacing:5.269333pt;}
.ws13d{word-spacing:5.290667pt;}
.ws8f{word-spacing:5.320000pt;}
.ws39{word-spacing:5.370667pt;}
.ws5e{word-spacing:5.421333pt;}
.ws137{word-spacing:5.461333pt;}
.wse2{word-spacing:5.472000pt;}
.ws125{word-spacing:5.504000pt;}
.ws20{word-spacing:5.522667pt;}
.ws142{word-spacing:5.589333pt;}
.ws51{word-spacing:5.624000pt;}
.wseb{word-spacing:5.632000pt;}
.ws47{word-spacing:5.674667pt;}
.ws93{word-spacing:5.725333pt;}
.ws83{word-spacing:5.776000pt;}
.wsa7{word-spacing:5.826667pt;}
.ws29{word-spacing:5.877333pt;}
.ws6e{word-spacing:5.928000pt;}
.ws105{word-spacing:5.973333pt;}
.ws2f{word-spacing:5.978667pt;}
.ws3b{word-spacing:6.029333pt;}
.ws9e{word-spacing:6.080000pt;}
.ws111{word-spacing:6.101333pt;}
.ws8a{word-spacing:6.130667pt;}
.ws67{word-spacing:6.181333pt;}
.ws4d{word-spacing:6.282667pt;}
.wsef{word-spacing:6.314667pt;}
.ws4a{word-spacing:6.333333pt;}
.ws36{word-spacing:6.384000pt;}
.ws1a{word-spacing:6.434667pt;}
.ws144{word-spacing:6.442667pt;}
.ws65{word-spacing:6.485333pt;}
.ws70{word-spacing:6.536000pt;}
.wsed{word-spacing:6.570667pt;}
.ws92{word-spacing:6.586667pt;}
.ws79{word-spacing:6.637333pt;}
.ws89{word-spacing:6.688000pt;}
.ws8b{word-spacing:6.738667pt;}
.ws94{word-spacing:6.789333pt;}
.wsad{word-spacing:6.840000pt;}
.ws10d{word-spacing:6.869333pt;}
.ws6b{word-spacing:6.890667pt;}
.ws115{word-spacing:6.912000pt;}
.ws4c{word-spacing:6.941333pt;}
.ws5c{word-spacing:7.042667pt;}
.ws21{word-spacing:7.093333pt;}
.ws58{word-spacing:7.194667pt;}
.ws138{word-spacing:7.253333pt;}
.ws82{word-spacing:7.296000pt;}
.ws23{word-spacing:7.346667pt;}
.ws13f{word-spacing:7.466667pt;}
.ws90{word-spacing:7.498667pt;}
.ws126{word-spacing:7.509333pt;}
.ws24{word-spacing:7.549333pt;}
.wse3{word-spacing:7.701333pt;}
.ws131{word-spacing:7.722667pt;}
.wsd0{word-spacing:7.752000pt;}
.wsfe{word-spacing:7.765333pt;}
.ws64{word-spacing:7.802667pt;}
.wscc{word-spacing:7.904000pt;}
.ws13c{word-spacing:7.936000pt;}
.wsc9{word-spacing:7.954667pt;}
.wsdb{word-spacing:8.005333pt;}
.ws10e{word-spacing:8.149333pt;}
.wsd7{word-spacing:8.157333pt;}
.wsc3{word-spacing:8.309333pt;}
.wsda{word-spacing:8.410667pt;}
.wsee{word-spacing:8.533333pt;}
.wsdc{word-spacing:8.562667pt;}
.ws9f{word-spacing:8.613333pt;}
.wsa9{word-spacing:8.714667pt;}
.ws50{word-spacing:8.968000pt;}
.wsa0{word-spacing:9.069333pt;}
.wsdd{word-spacing:9.221333pt;}
.wsd2{word-spacing:9.728000pt;}
.ws148{word-spacing:10.069333pt;}
.ws6a{word-spacing:10.133333pt;}
.wsa8{word-spacing:10.184000pt;}
.ws4f{word-spacing:10.386667pt;}
.wsb7{word-spacing:10.589333pt;}
.ws13e{word-spacing:10.794667pt;}
.wsd5{word-spacing:10.893333pt;}
.ws86{word-spacing:11.096000pt;}
.ws5d{word-spacing:11.298667pt;}
.ws133{word-spacing:11.306667pt;}
.ws10a{word-spacing:11.434667pt;}
.ws6c{word-spacing:11.602667pt;}
.wscd{word-spacing:11.704000pt;}
.wsd4{word-spacing:12.210667pt;}
.ws49{word-spacing:13.426667pt;}
.ws14a{word-spacing:13.824000pt;}
.wse0{word-spacing:14.186667pt;}
.wsd8{word-spacing:15.504000pt;}
.wse7{word-spacing:16.000000pt;}
.wsa1{word-spacing:17.378667pt;}
.ws18{word-spacing:17.482667pt;}
.wsca{word-spacing:19.152000pt;}
.ws96{word-spacing:50.944000pt;}
.wsc4{word-spacing:175.018667pt;}
.wsba{word-spacing:175.022933pt;}
.wsbc{word-spacing:215.850667pt;}
.wsc5{word-spacing:228.949333pt;}
.wsbd{word-spacing:293.077333pt;}
.wsc6{word-spacing:306.176000pt;}
.wsbe{word-spacing:346.410667pt;}
.wsc7{word-spacing:359.509333pt;}
.wsa2{word-spacing:359.936000pt;}
.wsa3{word-spacing:364.672000pt;}
.wsb0{word-spacing:437.376000pt;}
.wsb2{word-spacing:564.224000pt;}
.ws95{word-spacing:567.082667pt;}
.wsb1{word-spacing:569.728000pt;}
.wsaf{word-spacing:625.365333pt;}
._56{margin-left:-26.199467pt;}
._53{margin-left:-16.862933pt;}
._8{margin-left:-13.866667pt;}
._13{margin-left:-12.787200pt;}
._d{margin-left:-11.850667pt;}
._f{margin-left:-10.080000pt;}
._55{margin-left:-8.638400pt;}
._30{margin-left:-6.384000pt;}
._1{margin-left:-4.784000pt;}
._7{margin-left:-3.654400pt;}
._4{margin-left:-2.437067pt;}
._0{margin-left:-1.450667pt;}
._5{width:1.352533pt;}
._6{width:2.464000pt;}
._10{width:3.556533pt;}
._a{width:4.712000pt;}
._b{width:6.354667pt;}
._54{width:7.706400pt;}
._12{width:10.075200pt;}
._57{width:11.605333pt;}
._15{width:13.141333pt;}
._e{width:16.586667pt;}
._c{width:17.482667pt;}
._14{width:18.474667pt;}
._11{width:26.666667pt;}
._2f{width:29.333333pt;}
._2{width:35.515200pt;}
._3{width:36.488000pt;}
._36{width:39.527200pt;}
._9{width:50.005333pt;}
._26{width:61.623467pt;}
._1a{width:75.946667pt;}
._1c{width:99.012267pt;}
._35{width:125.265067pt;}
._1b{width:148.864000pt;}
._21{width:172.842667pt;}
._3c{width:185.344000pt;}
._25{width:187.989333pt;}
._24{width:194.261333pt;}
._22{width:204.714667pt;}
._1d{width:218.478933pt;}
._1e{width:230.229333pt;}
._3d{width:239.914667pt;}
._20{width:249.600000pt;}
._48{width:289.920000pt;}
._31{width:293.888000pt;}
._23{width:303.274667pt;}
._52{width:316.842667pt;}
._3e{width:336.554667pt;}
._4e{width:348.842667pt;}
._38{width:357.077333pt;}
._4f{width:363.904000pt;}
._17{width:368.640000pt;}
._4c{width:369.646667pt;}
._2e{width:370.615467pt;}
._45{width:373.418667pt;}
._2a{width:375.338667pt;}
._44{width:377.045333pt;}
._46{width:389.504000pt;}
._50{width:395.562667pt;}
._4d{width:396.714667pt;}
._43{width:399.189333pt;}
._40{width:405.418667pt;}
._3f{width:409.045333pt;}
._1f{width:410.496000pt;}
._34{width:415.232000pt;}
._4a{width:417.236800pt;}
._41{width:421.504000pt;}
._3a{width:426.752000pt;}
._39{width:430.378667pt;}
._47{width:431.919733pt;}
._3b{width:442.837333pt;}
._51{width:448.366667pt;}
._37{width:453.052533pt;}
._49{width:457.939200pt;}
._4b{width:462.664533pt;}
._18{width:476.913067pt;}
._28{width:481.834667pt;}
._2d{width:496.981333pt;}
._2c{width:503.253333pt;}
._42{width:512.469333pt;}
._29{width:513.706667pt;}
._19{width:535.850667pt;}
._27{width:558.592000pt;}
._32{width:591.146667pt;}
._2b{width:612.266667pt;}
._33{width:689.706667pt;}
._16{width:817.962667pt;}
.fs5{font-size:29.866667pt;}
.fs3{font-size:35.466667pt;}
.fs0{font-size:42.666667pt;}
.fs8{font-size:50.133333pt;}
.fs2{font-size:50.666667pt;}
.fs7{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs1{font-size:69.333333pt;}
.fs6{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:29.055333pt;}
.y28{bottom:30.208933pt;}
.y1df{bottom:64.989467pt;}
.y1de{bottom:65.010800pt;}
.y1dd{bottom:65.032133pt;}
.y1dc{bottom:65.053467pt;}
.y1c5{bottom:65.064000pt;}
.y1c4{bottom:65.074667pt;}
.y1db{bottom:65.074800pt;}
.y1c3{bottom:65.085333pt;}
.y1c2{bottom:65.096000pt;}
.y1da{bottom:65.096133pt;}
.y122{bottom:65.101333pt;}
.y1c1{bottom:65.106667pt;}
.y120{bottom:65.112000pt;}
.y1c0{bottom:65.117333pt;}
.y1d9{bottom:65.117467pt;}
.y11e{bottom:65.122667pt;}
.y1bf{bottom:65.128000pt;}
.y11d{bottom:65.133333pt;}
.y14e{bottom:65.144000pt;}
.y14f{bottom:65.154667pt;}
.y150{bottom:65.165333pt;}
.y152{bottom:65.176000pt;}
.y153{bottom:65.186667pt;}
.y155{bottom:65.197333pt;}
.y156{bottom:65.208000pt;}
.y157{bottom:65.218667pt;}
.y158{bottom:65.229333pt;}
.y15a{bottom:65.240000pt;}
.y15c{bottom:65.250667pt;}
.y15e{bottom:65.261333pt;}
.y59{bottom:65.267600pt;}
.y160{bottom:65.272000pt;}
.y161{bottom:65.282667pt;}
.y162{bottom:65.293333pt;}
.y164{bottom:65.304000pt;}
.y165{bottom:65.314667pt;}
.y166{bottom:65.325333pt;}
.y167{bottom:65.336000pt;}
.y169{bottom:65.346667pt;}
.yf6{bottom:65.704533pt;}
.y1f1{bottom:65.886533pt;}
.ydc{bottom:66.093333pt;}
.y18c{bottom:66.122000pt;}
.ycd{bottom:66.210267pt;}
.y274{bottom:66.274667pt;}
.y25{bottom:69.400000pt;}
.y11c{bottom:72.268933pt;}
.y11f{bottom:73.122667pt;}
.y1ab{bottom:74.240267pt;}
.y14d{bottom:74.292667pt;}
.y7d{bottom:75.539867pt;}
.y273{bottom:78.605333pt;}
.yac{bottom:79.452267pt;}
.y58{bottom:80.606933pt;}
.yf5{bottom:81.043867pt;}
.y1f0{bottom:81.225867pt;}
.y18b{bottom:81.461333pt;}
.ycc{bottom:81.549600pt;}
.y11b{bottom:87.608267pt;}
.y2aa{bottom:87.876933pt;}
.y24{bottom:88.442000pt;}
.y21c{bottom:88.792933pt;}
.y1aa{bottom:89.941600pt;}
.y14c{bottom:89.994000pt;}
.y7c{bottom:90.879200pt;}
.y272{bottom:90.936000pt;}
.yab{bottom:94.791600pt;}
.y57{bottom:95.946267pt;}
.yf4{bottom:96.383200pt;}
.y18a{bottom:96.800667pt;}
.ycb{bottom:96.888933pt;}
.y2a9{bottom:100.207600pt;}
.y11a{bottom:102.947600pt;}
.y271{bottom:103.266667pt;}
.y21b{bottom:104.132267pt;}
.y1a9{bottom:105.578933pt;}
.y14b{bottom:105.631333pt;}
.y7b{bottom:106.218533pt;}
.y1d6{bottom:106.422933pt;}
.y1bd{bottom:107.577600pt;}
.y23{bottom:109.311333pt;}
.yaa{bottom:110.130933pt;}
.y56{bottom:111.285600pt;}
.yf3{bottom:111.722533pt;}
.y189{bottom:112.140000pt;}
.y2a8{bottom:112.538267pt;}
.y1ef{bottom:112.559200pt;}
.y209{bottom:114.214267pt;}
.y243{bottom:115.311333pt;}
.y270{bottom:115.597333pt;}
.y119{bottom:118.286933pt;}
.y21a{bottom:119.471600pt;}
.y1a8{bottom:121.216267pt;}
.y14a{bottom:121.268667pt;}
.y7a{bottom:121.557867pt;}
.y22{bottom:121.642000pt;}
.y1d5{bottom:121.762267pt;}
.y1bc{bottom:122.916933pt;}
.y2a7{bottom:124.868933pt;}
.ya9{bottom:125.470267pt;}
.y55{bottom:126.624933pt;}
.yf2{bottom:127.061867pt;}
.y188{bottom:127.479333pt;}
.y26f{bottom:127.928000pt;}
.yca{bottom:128.222267pt;}
.y208{bottom:129.553600pt;}
.y242{bottom:130.650667pt;}
.y118{bottom:133.626267pt;}
.y219{bottom:134.810933pt;}
.y1a7{bottom:136.853600pt;}
.y79{bottom:136.897200pt;}
.y149{bottom:136.906000pt;}
.y1d4{bottom:137.101600pt;}
.y2a6{bottom:137.199600pt;}
.y1bb{bottom:138.256267pt;}
.y26e{bottom:140.258667pt;}
.ya8{bottom:140.809600pt;}
.y54{bottom:141.964267pt;}
.yf1{bottom:142.401200pt;}
.y187{bottom:142.818667pt;}
.y207{bottom:144.892933pt;}
.y241{bottom:145.990000pt;}
.y117{bottom:148.965600pt;}
.y2a5{bottom:149.530267pt;}
.y218{bottom:150.150267pt;}
.y78{bottom:152.236533pt;}
.y1d3{bottom:152.440933pt;}
.y1ee{bottom:152.481200pt;}
.y26d{bottom:152.589333pt;}
.y1a6{bottom:152.981600pt;}
.y148{bottom:153.034000pt;}
.y1ba{bottom:153.595600pt;}
.ya7{bottom:156.148933pt;}
.y53{bottom:157.303600pt;}
.yf0{bottom:157.740533pt;}
.y186{bottom:158.158000pt;}
.y206{bottom:160.232267pt;}
.y240{bottom:161.329333pt;}
.y2a4{bottom:161.860933pt;}
.y21{bottom:163.402933pt;}
.y116{bottom:164.304933pt;}
.y26c{bottom:164.920000pt;}
.y217{bottom:165.489600pt;}
.y77{bottom:167.575867pt;}
.y1d2{bottom:167.780267pt;}
.y1ed{bottom:167.820533pt;}
.y1b9{bottom:168.934933pt;}
.y1a5{bottom:170.724933pt;}
.ya6{bottom:171.488267pt;}
.y52{bottom:172.642933pt;}
.yef{bottom:173.079867pt;}
.y185{bottom:173.497333pt;}
.y2a3{bottom:174.191600pt;}
.y205{bottom:175.571600pt;}
.yc9{bottom:176.132267pt;}
.y23f{bottom:176.668667pt;}
.y26b{bottom:177.250667pt;}
.y147{bottom:177.930000pt;}
.y20{bottom:178.742267pt;}
.y115{bottom:179.644267pt;}
.y216{bottom:180.828933pt;}
.y76{bottom:182.915200pt;}
.y1a4{bottom:183.055600pt;}
.y1d1{bottom:183.119600pt;}
.y1ec{bottom:183.159867pt;}
.y1b8{bottom:184.274267pt;}
.y2a2{bottom:186.522267pt;}
.ya5{bottom:186.827600pt;}
.y51{bottom:187.982267pt;}
.y184{bottom:188.836667pt;}
.yee{bottom:189.219200pt;}
.y26a{bottom:189.581333pt;}
.y204{bottom:190.910933pt;}
.yc8{bottom:191.471600pt;}
.y23e{bottom:192.008000pt;}
.y1f{bottom:194.081600pt;}
.y114{bottom:194.983600pt;}
.y215{bottom:196.168267pt;}
.y75{bottom:198.254533pt;}
.y1d0{bottom:198.458933pt;}
.y1eb{bottom:198.499200pt;}
.y2a1{bottom:198.852933pt;}
.y146{bottom:199.050000pt;}
.y1b7{bottom:199.613600pt;}
.y269{bottom:201.912000pt;}
.ya4{bottom:202.166933pt;}
.y50{bottom:203.321600pt;}
.yed{bottom:203.716533pt;}
.y183{bottom:204.176000pt;}
.y203{bottom:206.250267pt;}
.yc7{bottom:206.810933pt;}
.y23d{bottom:207.347333pt;}
.y1e{bottom:209.420933pt;}
.y113{bottom:210.322933pt;}
.y2a0{bottom:211.183600pt;}
.y214{bottom:211.507600pt;}
.y74{bottom:213.593867pt;}
.y1cf{bottom:213.798267pt;}
.y1ea{bottom:213.838533pt;}
.y268{bottom:214.242667pt;}
.y1b6{bottom:214.952933pt;}
.ya3{bottom:217.506267pt;}
.y4f{bottom:218.660933pt;}
.yec{bottom:219.055867pt;}
.y182{bottom:219.515333pt;}
.y202{bottom:221.589600pt;}
.yc6{bottom:222.150267pt;}
.y23c{bottom:222.686667pt;}
.y29f{bottom:223.514267pt;}
.y1a3{bottom:224.216267pt;}
.y112{bottom:225.662267pt;}
.y267{bottom:226.573333pt;}
.y213{bottom:226.846933pt;}
.y73{bottom:228.933200pt;}
.y1ce{bottom:229.137600pt;}
.y1e9{bottom:229.177867pt;}
.y1b5{bottom:230.292267pt;}
.y140{bottom:230.792667pt;}
.ya2{bottom:232.845600pt;}
.y4e{bottom:234.000267pt;}
.yeb{bottom:234.395200pt;}
.y181{bottom:234.854667pt;}
.y29e{bottom:235.844933pt;}
.y201{bottom:236.928933pt;}
.yc5{bottom:237.489600pt;}
.y23b{bottom:238.026000pt;}
.y266{bottom:238.904000pt;}
.y1a2{bottom:239.555600pt;}
.y1d{bottom:240.754267pt;}
.y111{bottom:241.001600pt;}
.y212{bottom:242.186267pt;}
.y72{bottom:244.272533pt;}
.y1cd{bottom:244.476933pt;}
.y1e8{bottom:244.517200pt;}
.y1b4{bottom:245.631600pt;}
.y13f{bottom:246.132000pt;}
.y29d{bottom:248.175600pt;}
.ya1{bottom:248.184933pt;}
.y4d{bottom:249.339600pt;}
.yea{bottom:249.734533pt;}
.y2bc{bottom:249.754400pt;}
.y180{bottom:250.194000pt;}
.y265{bottom:251.234667pt;}
.y200{bottom:252.268267pt;}
.yc4{bottom:252.828933pt;}
.y23a{bottom:253.365333pt;}
.y110{bottom:256.340933pt;}
.y211{bottom:257.525600pt;}
.y71{bottom:259.611867pt;}
.y1cc{bottom:259.816267pt;}
.y1e7{bottom:259.856533pt;}
.y29c{bottom:260.506267pt;}
.y1b3{bottom:260.970933pt;}
.y13e{bottom:261.471333pt;}
.y2bb{bottom:262.085067pt;}
.ya0{bottom:263.524267pt;}
.y264{bottom:263.565333pt;}
.y4c{bottom:264.678933pt;}
.ye9{bottom:265.073867pt;}
.y17f{bottom:265.533333pt;}
.y1ff{bottom:267.607600pt;}
.yc3{bottom:268.168267pt;}
.y239{bottom:268.704667pt;}
.y1a1{bottom:270.888933pt;}
.y10f{bottom:271.680267pt;}
.y29b{bottom:272.836933pt;}
.y210{bottom:272.864933pt;}
.y2ba{bottom:274.415733pt;}
.y70{bottom:274.951200pt;}
.y1cb{bottom:275.155600pt;}
.y1e6{bottom:275.195867pt;}
.y263{bottom:275.896000pt;}
.y1b2{bottom:276.310267pt;}
.y13d{bottom:276.810667pt;}
.y9f{bottom:278.863600pt;}
.y4b{bottom:280.018267pt;}
.ye8{bottom:280.413200pt;}
.y1fe{bottom:282.946933pt;}
.yc2{bottom:283.507600pt;}
.y238{bottom:284.044000pt;}
.y29a{bottom:285.167600pt;}
.y2b9{bottom:286.746400pt;}
.y10e{bottom:287.019600pt;}
.y20f{bottom:288.204267pt;}
.y262{bottom:288.226667pt;}
.y1c{bottom:288.640933pt;}
.y6f{bottom:290.290533pt;}
.y1ca{bottom:290.494933pt;}
.y1e5{bottom:290.535200pt;}
.y1b1{bottom:291.649600pt;}
.y13c{bottom:292.150000pt;}
.y9e{bottom:294.202933pt;}
.y4a{bottom:295.357600pt;}
.ye7{bottom:296.552533pt;}
.y17e{bottom:296.866667pt;}
.y299{bottom:297.498267pt;}
.y1fd{bottom:298.286267pt;}
.yc1{bottom:298.846933pt;}
.y2b8{bottom:299.077067pt;}
.y237{bottom:299.383333pt;}
.y261{bottom:300.557333pt;}
.y10d{bottom:302.358933pt;}
.y20e{bottom:303.543600pt;}
.y1b{bottom:303.980267pt;}
.y6e{bottom:305.629867pt;}
.y1c9{bottom:305.834267pt;}
.y1e4{bottom:305.874533pt;}
.y1a0{bottom:306.780933pt;}
.y1b0{bottom:306.988933pt;}
.y13b{bottom:307.489333pt;}
.y9d{bottom:309.542267pt;}
.y298{bottom:309.828933pt;}
.y49{bottom:310.696933pt;}
.ye6{bottom:311.055867pt;}
.y2b7{bottom:311.407733pt;}
.y260{bottom:312.888000pt;}
.y1fc{bottom:313.625600pt;}
.yc0{bottom:314.186267pt;}
.y236{bottom:314.722667pt;}
.y2da{bottom:316.997082pt;}
.y10c{bottom:317.698267pt;}
.y20d{bottom:318.882933pt;}
.ydb{bottom:318.983600pt;}
.y6d{bottom:320.969200pt;}
.y1c8{bottom:321.173600pt;}
.y1e3{bottom:321.213867pt;}
.y19f{bottom:322.120267pt;}
.y297{bottom:322.159600pt;}
.y1af{bottom:322.328267pt;}
.y13a{bottom:322.828667pt;}
.y2b6{bottom:323.738400pt;}
.y9c{bottom:324.881600pt;}
.y25f{bottom:325.218667pt;}
.y48{bottom:326.036267pt;}
.ye5{bottom:326.395200pt;}
.y1fb{bottom:328.964933pt;}
.y2d9{bottom:329.327749pt;}
.ybf{bottom:329.525600pt;}
.y235{bottom:330.062000pt;}
.y10b{bottom:333.037600pt;}
.y20c{bottom:334.222267pt;}
.yda{bottom:334.322933pt;}
.y296{bottom:334.490267pt;}
.y1a{bottom:334.646267pt;}
.y2b5{bottom:336.069067pt;}
.y6c{bottom:336.308533pt;}
.y1c7{bottom:336.512933pt;}
.y1e2{bottom:336.553200pt;}
.y19e{bottom:337.459600pt;}
.y25e{bottom:337.549333pt;}
.y1ae{bottom:337.667600pt;}
.y139{bottom:338.168000pt;}
.y9b{bottom:340.220933pt;}
.y47{bottom:341.375600pt;}
.y2d8{bottom:341.658415pt;}
.ye4{bottom:341.734533pt;}
.y1fa{bottom:344.304267pt;}
.ybe{bottom:344.864933pt;}
.y234{bottom:345.401333pt;}
.y295{bottom:346.820933pt;}
.y17d{bottom:347.775867pt;}
.y10a{bottom:348.376933pt;}
.yd9{bottom:349.662267pt;}
.y25d{bottom:349.880000pt;}
.y19{bottom:349.985600pt;}
.y6b{bottom:351.647867pt;}
.y1e1{bottom:351.892533pt;}
.y19d{bottom:352.798933pt;}
.y1ad{bottom:353.006933pt;}
.y138{bottom:353.507333pt;}
.y2d7{bottom:353.989082pt;}
.y9a{bottom:355.560267pt;}
.y46{bottom:356.714933pt;}
.ye3{bottom:357.073867pt;}
.y151{bottom:357.912000pt;}
.y16a{bottom:357.933333pt;}
.y159{bottom:357.976000pt;}
.y15b{bottom:357.986667pt;}
.y15f{bottom:358.008000pt;}
.y163{bottom:358.040000pt;}
.y294{bottom:359.151600pt;}
.y1f9{bottom:359.643600pt;}
.ybd{bottom:360.204267pt;}
.y233{bottom:360.740667pt;}
.y25c{bottom:362.210667pt;}
.y17c{bottom:363.115200pt;}
.y109{bottom:363.716267pt;}
.yd8{bottom:365.001600pt;}
.y18{bottom:365.324933pt;}
.y20b{bottom:365.555600pt;}
.y154{bottom:365.933333pt;}
.y15d{bottom:365.997333pt;}
.y168{bottom:366.082667pt;}
.y2d6{bottom:366.319749pt;}
.y6a{bottom:366.987200pt;}
.y1c6{bottom:367.846267pt;}
.y19c{bottom:368.138267pt;}
.y1ac{bottom:368.346267pt;}
.y137{bottom:368.846667pt;}
.y99{bottom:370.899600pt;}
.y293{bottom:371.482267pt;}
.y45{bottom:372.054267pt;}
.ye2{bottom:372.413200pt;}
.y25b{bottom:374.541333pt;}
.y1f8{bottom:374.982933pt;}
.ybc{bottom:375.543600pt;}
.y232{bottom:376.080000pt;}
.y17b{bottom:378.454533pt;}
.y2d5{bottom:378.650415pt;}
.y108{bottom:379.055600pt;}
.yd7{bottom:380.340933pt;}
.y17{bottom:380.664267pt;}
.y69{bottom:382.326533pt;}
.y1e0{bottom:383.225867pt;}
.y19b{bottom:383.477600pt;}
.y292{bottom:383.812933pt;}
.y136{bottom:384.186000pt;}
.y98{bottom:386.238933pt;}
.y25a{bottom:386.872000pt;}
.y44{bottom:387.393600pt;}
.ye1{bottom:388.552533pt;}
.y1f7{bottom:390.322267pt;}
.ybb{bottom:390.882933pt;}
.y2d4{bottom:390.981082pt;}
.y231{bottom:391.419333pt;}
.y17a{bottom:393.793867pt;}
.yd6{bottom:395.680267pt;}
.y16{bottom:396.003600pt;}
.y291{bottom:396.143600pt;}
.y68{bottom:397.665867pt;}
.y19a{bottom:398.816933pt;}
.y259{bottom:399.202667pt;}
.y135{bottom:399.525333pt;}
.y97{bottom:401.578267pt;}
.y43{bottom:402.732933pt;}
.y2d3{bottom:403.311749pt;}
.y1be{bottom:404.416933pt;}
.y1d7{bottom:404.576933pt;}
.y1f6{bottom:405.661600pt;}
.yba{bottom:406.222267pt;}
.y230{bottom:406.758667pt;}
.y290{bottom:408.474267pt;}
.y179{bottom:409.133200pt;}
.y107{bottom:410.388933pt;}
.yd5{bottom:411.019600pt;}
.y15{bottom:411.342933pt;}
.y258{bottom:411.533333pt;}
.y67{bottom:413.005200pt;}
.y199{bottom:414.156267pt;}
.y134{bottom:414.864667pt;}
.y1f2{bottom:415.305733pt;}
.y2d2{bottom:415.642415pt;}
.y96{bottom:416.917600pt;}
.y42{bottom:418.072267pt;}
.ye0{bottom:418.401200pt;}
.y28f{bottom:420.804933pt;}
.y1f5{bottom:421.000933pt;}
.y22f{bottom:422.098000pt;}
.y178{bottom:424.472533pt;}
.yd4{bottom:426.358933pt;}
.y14{bottom:426.682267pt;}
.y66{bottom:428.344533pt;}
.y198{bottom:429.495600pt;}
.y133{bottom:430.204000pt;}
.y95{bottom:432.256933pt;}
.y28e{bottom:433.135600pt;}
.y41{bottom:433.411600pt;}
.ydf{bottom:433.740533pt;}
.y1f4{bottom:436.340267pt;}
.y22e{bottom:437.437333pt;}
.yb9{bottom:437.555600pt;}
.y177{bottom:439.811867pt;}
.y257{bottom:440.133333pt;}
.yd3{bottom:441.698267pt;}
.y13{bottom:442.021600pt;}
.y2b4{bottom:443.407600pt;}
.y197{bottom:444.834933pt;}
.y28d{bottom:445.466267pt;}
.y132{bottom:445.543333pt;}
.y1d8{bottom:445.645333pt;}
.y94{bottom:447.596267pt;}
.y40{bottom:448.750933pt;}
.yde{bottom:449.079867pt;}
.y1f3{bottom:451.679600pt;}
.y22d{bottom:452.776667pt;}
.y176{bottom:455.151200pt;}
.y2b3{bottom:455.738267pt;}
.yd2{bottom:457.037600pt;}
.y12{bottom:457.360933pt;}
.y28c{bottom:457.796933pt;}
.y65{bottom:459.677867pt;}
.y196{bottom:460.174267pt;}
.y131{bottom:460.882667pt;}
.y93{bottom:462.935600pt;}
.y106{bottom:462.996267pt;}
.y3f{bottom:464.090267pt;}
.ydd{bottom:464.419200pt;}
.y2b2{bottom:468.068933pt;}
.y22c{bottom:468.116000pt;}
.y28b{bottom:470.127600pt;}
.y175{bottom:470.490533pt;}
.yd1{bottom:472.376933pt;}
.y11{bottom:472.700267pt;}
.yb8{bottom:473.495600pt;}
.y195{bottom:475.513600pt;}
.y130{bottom:476.222000pt;}
.y92{bottom:478.274933pt;}
.y105{bottom:478.335600pt;}
.y3e{bottom:479.429600pt;}
.y2b1{bottom:480.399600pt;}
.y28a{bottom:482.458267pt;}
.y22b{bottom:483.455333pt;}
.y174{bottom:485.829867pt;}
.yf7{bottom:486.985733pt;}
.yd0{bottom:487.716267pt;}
.y10{bottom:488.039600pt;}
.yb7{bottom:488.834933pt;}
.y194{bottom:490.852933pt;}
.y12f{bottom:491.561333pt;}
.y2b0{bottom:492.730267pt;}
.y91{bottom:493.614267pt;}
.y104{bottom:493.674933pt;}
.y3d{bottom:494.768933pt;}
.y289{bottom:494.788933pt;}
.y20a{bottom:498.336933pt;}
.y22a{bottom:498.794667pt;}
.y173{bottom:501.169200pt;}
.ycf{bottom:503.055600pt;}
.yf{bottom:503.378933pt;}
.y256{bottom:504.002400pt;}
.yb6{bottom:504.174267pt;}
.y2af{bottom:505.060933pt;}
.y64{bottom:506.174267pt;}
.y193{bottom:506.192267pt;}
.y12e{bottom:506.900667pt;}
.y288{bottom:507.119600pt;}
.y90{bottom:508.953600pt;}
.y103{bottom:509.014267pt;}
.y2d1{bottom:509.423718pt;}
.y3c{bottom:510.108267pt;}
.y229{bottom:514.134000pt;}
.y255{bottom:516.333067pt;}
.y172{bottom:516.508533pt;}
.y2ae{bottom:517.391600pt;}
.ye{bottom:518.718267pt;}
.y287{bottom:519.450267pt;}
.yb5{bottom:519.513600pt;}
.y63{bottom:521.513600pt;}
.y192{bottom:521.531600pt;}
.y2d0{bottom:521.754384pt;}
.y12d{bottom:522.240000pt;}
.y8f{bottom:524.292933pt;}
.y102{bottom:524.353600pt;}
.y3b{bottom:525.447600pt;}
.y254{bottom:528.663733pt;}
.y228{bottom:529.473333pt;}
.y2ad{bottom:529.722267pt;}
.y286{bottom:531.780933pt;}
.y171{bottom:531.847867pt;}
.yd{bottom:534.057600pt;}
.y2cf{bottom:534.085051pt;}
.yce{bottom:534.388933pt;}
.yb4{bottom:534.852933pt;}
.y62{bottom:536.852933pt;}
.y191{bottom:536.870933pt;}
.y12c{bottom:537.579333pt;}
.y8e{bottom:539.632267pt;}
.y101{bottom:539.692933pt;}
.y121{bottom:540.034667pt;}
.y3a{bottom:540.786933pt;}
.y253{bottom:540.994400pt;}
.y285{bottom:544.111600pt;}
.y227{bottom:544.812667pt;}
.y2ce{bottom:546.415718pt;}
.y170{bottom:547.187200pt;}
.yc{bottom:549.396933pt;}
.yb3{bottom:550.192267pt;}
.y61{bottom:552.192267pt;}
.y190{bottom:552.210267pt;}
.y12b{bottom:552.918667pt;}
.y252{bottom:553.325067pt;}
.y8d{bottom:554.971600pt;}
.y100{bottom:555.032267pt;}
.y39{bottom:556.126267pt;}
.y284{bottom:556.442267pt;}
.y2cd{bottom:558.746384pt;}
.y226{bottom:560.152000pt;}
.y16f{bottom:562.526533pt;}
.yb{bottom:564.736267pt;}
.yb2{bottom:565.531600pt;}
.y251{bottom:565.655733pt;}
.y60{bottom:567.531600pt;}
.y18f{bottom:567.549600pt;}
.y12a{bottom:568.258000pt;}
.y283{bottom:568.772933pt;}
.y8c{bottom:570.310933pt;}
.yff{bottom:570.371600pt;}
.y2cc{bottom:571.077051pt;}
.y38{bottom:571.465600pt;}
.y225{bottom:575.491333pt;}
.y16e{bottom:577.865867pt;}
.y250{bottom:577.986400pt;}
.ya{bottom:580.075600pt;}
.yb1{bottom:580.870933pt;}
.y282{bottom:581.103600pt;}
.y5f{bottom:582.870933pt;}
.y18e{bottom:582.888933pt;}
.y2cb{bottom:583.407718pt;}
.y129{bottom:583.597333pt;}
.y8b{bottom:585.650267pt;}
.yfe{bottom:585.710933pt;}
.y37{bottom:586.804933pt;}
.y24f{bottom:590.317067pt;}
.y224{bottom:590.830667pt;}
.y16d{bottom:593.205200pt;}
.y2ac{bottom:593.423600pt;}
.y281{bottom:593.434267pt;}
.y9{bottom:595.414933pt;}
.y2ca{bottom:595.738384pt;}
.yb0{bottom:596.210267pt;}
.y5e{bottom:598.210267pt;}
.y128{bottom:598.936667pt;}
.y8a{bottom:600.989600pt;}
.yfd{bottom:601.050267pt;}
.y36{bottom:602.144267pt;}
.y2ab{bottom:605.754267pt;}
.y280{bottom:605.764933pt;}
.y223{bottom:606.170000pt;}
.y2c9{bottom:608.069051pt;}
.y16c{bottom:608.544533pt;}
.y8{bottom:610.754267pt;}
.yaf{bottom:611.549600pt;}
.y5d{bottom:613.549600pt;}
.y18d{bottom:614.222267pt;}
.y127{bottom:614.276000pt;}
.y24e{bottom:614.989067pt;}
.y89{bottom:616.328933pt;}
.yfc{bottom:616.389600pt;}
.y35{bottom:617.483600pt;}
.y27f{bottom:618.095600pt;}
.y222{bottom:621.509333pt;}
.yae{bottom:626.888933pt;}
.y5c{bottom:628.888933pt;}
.y126{bottom:629.615333pt;}
.y27e{bottom:630.426267pt;}
.y88{bottom:631.668267pt;}
.y34{bottom:632.822933pt;}
.y221{bottom:636.848667pt;}
.y24d{bottom:639.655733pt;}
.y16b{bottom:639.877867pt;}
.y27d{bottom:642.756933pt;}
.y125{bottom:644.954667pt;}
.y87{bottom:647.007600pt;}
.yfb{bottom:647.855733pt;}
.y33{bottom:648.162267pt;}
.y220{bottom:652.188000pt;}
.y7{bottom:653.188933pt;}
.y27c{bottom:655.087600pt;}
.yad{bottom:658.222267pt;}
.y5b{bottom:660.222267pt;}
.y124{bottom:660.294000pt;}
.y86{bottom:662.346933pt;}
.yfa{bottom:663.189067pt;}
.y32{bottom:663.501600pt;}
.y6{bottom:665.519600pt;}
.y24c{bottom:667.396933pt;}
.y27b{bottom:667.418267pt;}
.y21f{bottom:667.527333pt;}
.y123{bottom:675.633333pt;}
.y85{bottom:677.686267pt;}
.yf9{bottom:678.522400pt;}
.y31{bottom:678.840933pt;}
.y24b{bottom:679.727600pt;}
.y27a{bottom:679.748933pt;}
.y21e{bottom:682.866667pt;}
.y2c8{bottom:692.079583pt;}
.y279{bottom:692.079600pt;}
.y84{bottom:693.025600pt;}
.yf8{bottom:693.855600pt;}
.y30{bottom:694.180267pt;}
.y5{bottom:699.088267pt;}
.y24a{bottom:704.399600pt;}
.y2c7{bottom:704.410249pt;}
.y278{bottom:704.410267pt;}
.y83{bottom:708.364933pt;}
.y2f{bottom:709.519600pt;}
.y21d{bottom:714.200000pt;}
.y4{bottom:714.427600pt;}
.y249{bottom:716.730267pt;}
.y2c6{bottom:716.740916pt;}
.y277{bottom:716.740933pt;}
.y82{bottom:723.704267pt;}
.y2e{bottom:724.858933pt;}
.y145{bottom:728.500667pt;}
.y248{bottom:729.060933pt;}
.y2c5{bottom:729.071583pt;}
.y276{bottom:729.071600pt;}
.y81{bottom:739.043600pt;}
.y2d{bottom:740.198267pt;}
.y2c4{bottom:741.402249pt;}
.y275{bottom:741.402267pt;}
.y144{bottom:744.703333pt;}
.y3{bottom:752.147600pt;}
.y2c3{bottom:753.732916pt;}
.y247{bottom:753.732933pt;}
.y80{bottom:754.382933pt;}
.y2c{bottom:755.537600pt;}
.y143{bottom:757.034000pt;}
.y2c2{bottom:766.063583pt;}
.y246{bottom:766.063600pt;}
.y7f{bottom:769.722267pt;}
.y2b{bottom:770.876933pt;}
.y2c1{bottom:778.394249pt;}
.y245{bottom:778.394267pt;}
.y142{bottom:781.930000pt;}
.y2a{bottom:786.216267pt;}
.y2c0{bottom:790.724916pt;}
.y244{bottom:790.724933pt;}
.y2{bottom:799.809067pt;}
.y7e{bottom:801.055600pt;}
.y29{bottom:801.555600pt;}
.y2bf{bottom:803.055583pt;}
.y141{bottom:803.055600pt;}
.y26{bottom:834.763867pt;}
.y27{bottom:835.542533pt;}
.y2be{bottom:835.545857pt;}
.y2bd{bottom:835.769857pt;}
.y5a{bottom:835.769867pt;}
.hc{height:28.701867pt;}
.h2{height:30.080000pt;}
.h7{height:37.376000pt;}
.hb{height:41.002667pt;}
.h3{height:41.514667pt;}
.h14{height:43.648000pt;}
.h11{height:45.013333pt;}
.hf{height:47.680000pt;}
.h10{height:48.178133pt;}
.h9{height:48.690667pt;}
.hd{height:48.766452pt;}
.h8{height:50.109333pt;}
.he{height:51.832000pt;}
.h5{height:54.775733pt;}
.h6{height:54.799733pt;}
.ha{height:58.021333pt;}
.h4{height:61.429333pt;}
.h13{height:73.624000pt;}
.h12{height:90.325333pt;}
.h15{height:94.336000pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w0{width:585.826667pt;}
.w1{width:586.000000pt;}
.x0{left:0.000000pt;}
.x3{left:62.362267pt;}
.x5{left:63.307067pt;}
.x6{left:64.327467pt;}
.x2{left:66.248400pt;}
.x12{left:70.362267pt;}
.x7{left:77.486133pt;}
.x9{left:79.937067pt;}
.x4{left:81.263600pt;}
.x4d{left:85.039600pt;}
.x13{left:91.487733pt;}
.x30{left:115.184133pt;}
.x14{left:116.383733pt;}
.x31{left:130.821467pt;}
.x15{left:132.511733pt;}
.x32{left:146.458800pt;}
.x16{left:148.149067pt;}
.x33{left:158.789467pt;}
.x17{left:160.479733pt;}
.x34{left:174.426800pt;}
.x18{left:176.117067pt;}
.x35{left:190.064133pt;}
.x19{left:191.754400pt;}
.x36{left:202.394800pt;}
.x1a{left:204.085067pt;}
.x44{left:208.414533pt;}
.x4e{left:213.480800pt;}
.x3b{left:214.414533pt;}
.x37{left:218.032133pt;}
.x1b{left:219.722400pt;}
.x3a{left:221.102133pt;}
.x11{left:226.650133pt;}
.x45{left:229.540000pt;}
.x38{left:233.669467pt;}
.x1c{left:235.359733pt;}
.xa{left:241.081200pt;}
.x39{left:249.370800pt;}
.x1d{left:250.997067pt;}
.x3c{left:260.436000pt;}
.xb{left:262.206667pt;}
.x1e{left:266.634400pt;}
.x3d{left:276.560400pt;}
.x1f{left:278.965067pt;}
.x46{left:282.893733pt;}
.xc{left:287.102667pt;}
.x3e{left:292.197733pt;}
.x20{left:294.602400pt;}
.x47{left:298.531067pt;}
.xd{left:299.433333pt;}
.x21{left:306.933067pt;}
.x3f{left:307.835067pt;}
.x48{left:314.168400pt;}
.xe{left:315.572000pt;}
.x22{left:322.570400pt;}
.x40{left:323.472400pt;}
.xf{left:327.902667pt;}
.x49{left:329.805733pt;}
.x23{left:334.901067pt;}
.x41{left:339.109733pt;}
.x10{left:343.614667pt;}
.x4a{left:345.443067pt;}
.x24{left:350.538400pt;}
.x42{left:354.747067pt;}
.x4b{left:361.080400pt;}
.x25{left:362.869067pt;}
.x43{left:370.448400pt;}
.x4c{left:376.781733pt;}
.x26{left:378.506400pt;}
.x27{left:394.143733pt;}
.x28{left:409.781067pt;}
.x29{left:422.111733pt;}
.x1{left:431.874133pt;}
.x2a{left:437.749067pt;}
.x2b{left:453.386400pt;}
.x2c{left:469.023733pt;}
.x2d{left:484.661067pt;}
.x2e{left:496.991733pt;}
.x8{left:506.375067pt;}
.x2f{left:512.629067pt;}
}




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