
    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_0bafc450895bff704fbb45ce.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.710000;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_9433c01798a87ea873b74e3d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.148000;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_f680c60f3faf181a41898b48.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_1c43365c321175b7f2f39870.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_0e54b48e1bdc645020e916cc.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.093262;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_35762558b1b37281b6f7a98c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.095000;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_500aac1ad30826846b02d58e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_a8631b320809c8180db4a1e2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.148000;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_35762558b1b37281b6f7a98c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.095000;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_a8631b320809c8180db4a1e2.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.148000;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_35762558b1b37281b6f7a98c.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.095000;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_f2781ccbc3c39ce5019bf0d6.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.900391;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_7e78e0aa134b4f486164fd8e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_4657de45471750bb10cd51e3.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,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);}
.v8{vertical-align:-28.416000px;}
.v6{vertical-align:-3.409800px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:1.080000px;}
.v2{vertical-align:15.984000px;}
.v7{vertical-align:18.189600px;}
.v1{vertical-align:19.956000px;}
.v5{vertical-align:21.600000px;}
.va{vertical-align:23.574600px;}
.v9{vertical-align:26.835000px;}
.v3{vertical-align:28.800000px;}
.v4{vertical-align:30.831600px;}
.lsc{letter-spacing:-4.200000px;}
.ls6{letter-spacing:-3.552000px;}
.ls9{letter-spacing:-2.880000px;}
.ls5{letter-spacing:-1.998000px;}
.ls7{letter-spacing:-1.440000px;}
.ls4{letter-spacing:-1.294260px;}
.ls3{letter-spacing:-1.200000px;}
.lsb{letter-spacing:-0.936000px;}
.ls2{letter-spacing:-0.600000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:1.488000px;}
.ls8{letter-spacing:228.096000px;}
.lsa{letter-spacing:439.248000px;}
.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;}
}
.ws4f{word-spacing:-241.596000px;}
.ws2{word-spacing:-18.000000px;}
.wsf{word-spacing:-15.000000px;}
.ws2b{word-spacing:-13.500000px;}
.ws3{word-spacing:-13.020000px;}
.ws15{word-spacing:-12.000000px;}
.ws80{word-spacing:-11.700000px;}
.ws0{word-spacing:-11.160000px;}
.ws99{word-spacing:-10.800000px;}
.ws40{word-spacing:-9.000000px;}
.ws7{word-spacing:-8.745000px;}
.ws2e{word-spacing:-8.448000px;}
.ws1{word-spacing:-7.812000px;}
.ws1f{word-spacing:-7.450740px;}
.ws9c{word-spacing:-3.540000px;}
.ws59{word-spacing:-2.820000px;}
.wsa8{word-spacing:-2.640000px;}
.ws33{word-spacing:-2.304000px;}
.ws8c{word-spacing:-2.160000px;}
.ws79{word-spacing:-2.112000px;}
.ws45{word-spacing:-1.920000px;}
.ws5b{word-spacing:-1.872000px;}
.ws7d{word-spacing:-1.776000px;}
.ws1d{word-spacing:-1.680000px;}
.wsa6{word-spacing:-1.620000px;}
.ws3b{word-spacing:-1.488000px;}
.ws38{word-spacing:-1.392000px;}
.ws90{word-spacing:-1.380000px;}
.ws97{word-spacing:-1.260000px;}
.ws51{word-spacing:-1.248000px;}
.ws44{word-spacing:-1.104000px;}
.ws86{word-spacing:-1.020000px;}
.wsa1{word-spacing:-0.960000px;}
.ws88{word-spacing:-0.840000px;}
.ws57{word-spacing:-0.816000px;}
.ws46{word-spacing:-0.576000px;}
.ws6{word-spacing:-0.378000px;}
.ws50{word-spacing:-0.336000px;}
.ws6d{word-spacing:-0.300000px;}
.ws3c{word-spacing:-0.288000px;}
.ws91{word-spacing:-0.240000px;}
.ws7a{word-spacing:-0.180000px;}
.ws36{word-spacing:-0.060000px;}
.ws4{word-spacing:0.000000px;}
.ws34{word-spacing:0.096000px;}
.ws92{word-spacing:0.120000px;}
.ws48{word-spacing:0.240000px;}
.wsa{word-spacing:0.600000px;}
.ws74{word-spacing:0.864000px;}
.ws8b{word-spacing:0.900000px;}
.ws3e{word-spacing:0.912000px;}
.ws8f{word-spacing:1.020000px;}
.wsd{word-spacing:1.152000px;}
.ws10{word-spacing:1.200000px;}
.ws39{word-spacing:1.260000px;}
.ws73{word-spacing:1.392000px;}
.ws12{word-spacing:1.440000px;}
.wse{word-spacing:1.488000px;}
.ws96{word-spacing:1.500000px;}
.ws37{word-spacing:1.800000px;}
.ws1b{word-spacing:1.860000px;}
.ws1e{word-spacing:1.968000px;}
.ws94{word-spacing:1.980000px;}
.ws71{word-spacing:2.016000px;}
.ws5{word-spacing:2.106000px;}
.ws47{word-spacing:2.160000px;}
.ws14{word-spacing:2.256000px;}
.wsa3{word-spacing:2.280000px;}
.ws1a{word-spacing:2.340000px;}
.ws6e{word-spacing:2.400000px;}
.ws5c{word-spacing:2.448000px;}
.ws43{word-spacing:2.496000px;}
.ws3a{word-spacing:2.520000px;}
.ws89{word-spacing:2.580000px;}
.ws3d{word-spacing:2.832000px;}
.ws1c{word-spacing:2.940000px;}
.ws58{word-spacing:3.000000px;}
.ws5a{word-spacing:3.024000px;}
.ws78{word-spacing:3.216000px;}
.ws30{word-spacing:3.240000px;}
.wsb{word-spacing:3.264000px;}
.ws9b{word-spacing:3.300000px;}
.wsc{word-spacing:3.312000px;}
.ws5d{word-spacing:3.360000px;}
.ws72{word-spacing:3.600000px;}
.wsa5{word-spacing:3.660000px;}
.ws18{word-spacing:3.696000px;}
.ws95{word-spacing:4.140000px;}
.ws32{word-spacing:4.200000px;}
.ws9e{word-spacing:4.320000px;}
.ws2d{word-spacing:4.560000px;}
.ws13{word-spacing:4.608000px;}
.ws2f{word-spacing:4.680000px;}
.ws6c{word-spacing:4.704000px;}
.wsa0{word-spacing:4.740000px;}
.ws70{word-spacing:4.848000px;}
.ws16{word-spacing:4.992000px;}
.ws8a{word-spacing:5.220000px;}
.ws11{word-spacing:5.460000px;}
.ws9{word-spacing:5.520000px;}
.wsa4{word-spacing:5.880000px;}
.ws93{word-spacing:6.000000px;}
.ws9a{word-spacing:6.300000px;}
.ws9d{word-spacing:7.140000px;}
.ws8e{word-spacing:7.500000px;}
.ws31{word-spacing:7.800000px;}
.ws6f{word-spacing:7.824000px;}
.wsa2{word-spacing:8.460000px;}
.ws8{word-spacing:8.580000px;}
.ws35{word-spacing:8.820000px;}
.ws9f{word-spacing:9.300000px;}
.ws17{word-spacing:10.224000px;}
.ws19{word-spacing:11.040000px;}
.wsa7{word-spacing:11.520000px;}
.ws87{word-spacing:15.600000px;}
.ws8d{word-spacing:16.920000px;}
.ws20{word-spacing:20.760000px;}
.ws75{word-spacing:28.080000px;}
.ws98{word-spacing:37.740000px;}
.ws54{word-spacing:39.832200px;}
.ws55{word-spacing:42.758400px;}
.ws52{word-spacing:46.575000px;}
.ws77{word-spacing:52.080000px;}
.ws56{word-spacing:54.090000px;}
.ws22{word-spacing:64.961400px;}
.ws53{word-spacing:69.075000px;}
.ws5e{word-spacing:75.054000px;}
.ws76{word-spacing:76.080000px;}
.ws7f{word-spacing:78.158400px;}
.ws42{word-spacing:93.096000px;}
.ws4c{word-spacing:94.122000px;}
.ws4b{word-spacing:106.596000px;}
.ws4d{word-spacing:107.622000px;}
.ws7e{word-spacing:110.026800px;}
.ws3f{word-spacing:112.752000px;}
.ws41{word-spacing:113.346000px;}
.ws4a{word-spacing:114.372000px;}
.ws49{word-spacing:126.846000px;}
.ws21{word-spacing:133.200000px;}
.ws28{word-spacing:142.506000px;}
.ws4e{word-spacing:153.846000px;}
.ws23{word-spacing:155.682000px;}
.ws24{word-spacing:169.182000px;}
.ws26{word-spacing:170.154000px;}
.ws2a{word-spacing:176.148000px;}
.ws25{word-spacing:189.432000px;}
.ws2c{word-spacing:202.932000px;}
.ws29{word-spacing:207.144000px;}
.ws6b{word-spacing:213.552000px;}
.ws81{word-spacing:214.176000px;}
.ws84{word-spacing:215.040000px;}
.ws65{word-spacing:226.861200px;}
.ws63{word-spacing:227.796000px;}
.ws64{word-spacing:235.077600px;}
.ws62{word-spacing:236.012400px;}
.ws61{word-spacing:239.161200px;}
.ws6a{word-spacing:240.672000px;}
.ws27{word-spacing:245.646000px;}
.ws60{word-spacing:247.377600px;}
.ws68{word-spacing:252.672000px;}
.ws5f{word-spacing:253.527600px;}
.ws66{word-spacing:254.413200px;}
.ws67{word-spacing:266.688000px;}
.ws69{word-spacing:267.552000px;}
.ws82{word-spacing:299.184000px;}
.ws85{word-spacing:305.184000px;}
.ws83{word-spacing:311.184000px;}
.ws7b{word-spacing:340.992000px;}
.ws7c{word-spacing:342.336000px;}
._37{margin-left:-60.750000px;}
._13{margin-left:-35.934000px;}
._3c{margin-left:-15.933600px;}
._2e{margin-left:-14.825400px;}
._c{margin-left:-13.806000px;}
._48{margin-left:-12.012000px;}
._29{margin-left:-7.596000px;}
._b{margin-left:-6.336000px;}
._0{margin-left:-5.328000px;}
._1{margin-left:-3.888000px;}
._6{margin-left:-2.538000px;}
._7{margin-left:-1.026000px;}
._5{width:1.242000px;}
._8{width:2.700000px;}
._3{width:3.942000px;}
._4{width:5.832000px;}
._a{width:7.074000px;}
._d{width:8.466000px;}
._2{width:9.720000px;}
._e{width:11.100000px;}
._f{width:12.360000px;}
._10{width:13.680000px;}
._3d{width:15.408000px;}
._14{width:16.560000px;}
._4d{width:17.880000px;}
._9{width:23.039400px;}
._12{width:25.056000px;}
._4e{width:26.328000px;}
._15{width:27.594000px;}
._45{width:41.376000px;}
._11{width:49.056000px;}
._3b{width:59.553000px;}
._46{width:76.320000px;}
._38{width:87.840000px;}
._3a{width:103.788000px;}
._35{width:106.596000px;}
._32{width:107.622000px;}
._39{width:114.354000px;}
._30{width:120.096000px;}
._34{width:126.846000px;}
._33{width:128.412000px;}
._4b{width:135.135600px;}
._31{width:140.454000px;}
._36{width:141.912000px;}
._3f{width:153.576000px;}
._2f{width:154.764000px;}
._40{width:157.824000px;}
._20{width:183.114000px;}
._1f{width:184.626000px;}
._16{width:189.000000px;}
._17{width:191.646000px;}
._23{width:202.932000px;}
._2b{width:214.182000px;}
._19{width:218.646000px;}
._1c{width:224.964000px;}
._1d{width:226.476000px;}
._2c{width:229.104000px;}
._1a{width:232.470000px;}
._1b{width:238.896000px;}
._18{width:248.994000px;}
._24{width:252.018000px;}
._44{width:253.584000px;}
._28{width:254.988000px;}
._2a{width:256.716000px;}
._1e{width:260.118000px;}
._26{width:261.738000px;}
._2d{width:264.150000px;}
._3e{width:265.608000px;}
._42{width:271.434000px;}
._21{width:274.482000px;}
._43{width:278.688000px;}
._27{width:281.232000px;}
._41{width:282.672000px;}
._22{width:294.948000px;}
._25{width:306.720000px;}
._4c{width:311.184000px;}
._49{width:322.080000px;}
._47{width:345.216000px;}
._4a{width:476.784000px;}
.fc5{color:rgb(29,83,40);}
.fc4{color:rgb(45,78,168);}
.fc3{color:rgb(27,27,28);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs2{font-size:25.200000px;}
.fs9{font-size:27.984000px;}
.fs8{font-size:34.980000px;}
.fs1{font-size:36.000000px;}
.fs5{font-size:42.000000px;}
.fsa{font-size:45.000000px;}
.fs7{font-size:45.294370px;}
.fsc{font-size:46.800000px;}
.fs6{font-size:48.000000px;}
.fsb{font-size:49.200000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:94.139850px;}
.y1b{bottom:95.012400px;}
.y1a{bottom:105.812400px;}
.y2d9{bottom:146.678100px;}
.y143{bottom:146.893200px;}
.y2fb{bottom:146.921550px;}
.y105{bottom:146.933250px;}
.y337{bottom:146.978250px;}
.yf5{bottom:147.091500px;}
.y3c{bottom:147.146400px;}
.y168{bottom:147.188400px;}
.y238{bottom:147.925350px;}
.y18c{bottom:148.208850px;}
.y7e{bottom:148.492200px;}
.y2c6{bottom:148.548900px;}
.y363{bottom:148.584450px;}
.y9f{bottom:148.593900px;}
.y21d{bottom:148.917450px;}
.y316{bottom:149.172600px;}
.y18{bottom:149.427300px;}
.y27a{bottom:149.486850px;}
.y130{bottom:149.639550px;}
.y112{bottom:150.110550px;}
.y28f{bottom:150.136350px;}
.y1c7{bottom:150.634950px;}
.y2ad{bottom:151.164000px;}
.ybd{bottom:151.297200px;}
.y1b0{bottom:151.407600px;}
.y33b{bottom:153.592650px;}
.y1fa{bottom:153.821400px;}
.y390{bottom:154.703100px;}
.y376{bottom:154.717650px;}
.ye0{bottom:159.953100px;}
.y33f{bottom:159.967650px;}
.y2d8{bottom:161.078100px;}
.y142{bottom:161.293200px;}
.y2fa{bottom:161.321550px;}
.y104{bottom:161.333250px;}
.y336{bottom:161.378250px;}
.yf4{bottom:161.491500px;}
.y167{bottom:161.588400px;}
.y237{bottom:162.325350px;}
.y18b{bottom:162.608850px;}
.y7d{bottom:162.892200px;}
.y2c5{bottom:162.948900px;}
.y9e{bottom:162.993900px;}
.y21c{bottom:163.317450px;}
.y315{bottom:163.572600px;}
.y17{bottom:163.831800px;}
.y279{bottom:163.886850px;}
.y12f{bottom:164.039550px;}
.y111{bottom:164.510550px;}
.y28e{bottom:164.536350px;}
.y1c6{bottom:165.034950px;}
.y3b{bottom:165.146400px;}
.ybc{bottom:165.697200px;}
.y1af{bottom:165.807600px;}
.y362{bottom:166.584450px;}
.y1f9{bottom:168.221400px;}
.y2ac{bottom:169.164000px;}
.y33a{bottom:171.592650px;}
.y38f{bottom:172.703100px;}
.y375{bottom:172.717650px;}
.y2d7{bottom:175.478100px;}
.y141{bottom:175.693200px;}
.y335{bottom:175.778250px;}
.yf3{bottom:175.891500px;}
.y166{bottom:175.988400px;}
.y236{bottom:176.725350px;}
.y18a{bottom:177.008850px;}
.y7c{bottom:177.292200px;}
.y2c4{bottom:177.348900px;}
.y9d{bottom:177.393900px;}
.y21b{bottom:177.717450px;}
.ydf{bottom:177.953100px;}
.y33e{bottom:177.967650px;}
.y314{bottom:177.972600px;}
.y16{bottom:178.227300px;}
.y278{bottom:178.286850px;}
.y12e{bottom:178.439550px;}
.y28d{bottom:178.936350px;}
.y1c5{bottom:179.434950px;}
.ybb{bottom:180.097200px;}
.y1ae{bottom:180.207600px;}
.y1f8{bottom:182.621400px;}
.y3a{bottom:183.146400px;}
.y361{bottom:184.584450px;}
.y2f9{bottom:189.592650px;}
.y2d6{bottom:189.878100px;}
.y140{bottom:190.093200px;}
.yf2{bottom:190.291500px;}
.y165{bottom:190.388400px;}
.y38e{bottom:190.703100px;}
.y374{bottom:190.717650px;}
.y235{bottom:191.125350px;}
.y189{bottom:191.408850px;}
.y7b{bottom:191.692200px;}
.y2c3{bottom:191.748900px;}
.y9c{bottom:191.793900px;}
.y21a{bottom:192.117450px;}
.y313{bottom:192.372600px;}
.y277{bottom:192.686850px;}
.y12d{bottom:192.839550px;}
.y28c{bottom:193.336350px;}
.y1c4{bottom:193.834950px;}
.yba{bottom:194.497200px;}
.y1ad{bottom:194.607600px;}
.y2ab{bottom:195.669000px;}
.yde{bottom:195.953100px;}
.y103{bottom:195.961800px;}
.y33d{bottom:195.967650px;}
.y1f7{bottom:197.021400px;}
.y360{bottom:202.584450px;}
.y2d5{bottom:204.278100px;}
.y13f{bottom:204.493200px;}
.yf1{bottom:204.691500px;}
.y164{bottom:204.788400px;}
.y234{bottom:205.525350px;}
.y188{bottom:205.808850px;}
.y7a{bottom:206.092200px;}
.y2c2{bottom:206.148900px;}
.y334{bottom:206.190150px;}
.y9b{bottom:206.193900px;}
.y219{bottom:206.517450px;}
.y276{bottom:207.086850px;}
.y12c{bottom:207.239550px;}
.y110{bottom:207.442650px;}
.y39{bottom:207.521400px;}
.y2f8{bottom:207.592650px;}
.y28b{bottom:207.736350px;}
.y1c3{bottom:208.234950px;}
.y38d{bottom:208.703100px;}
.y373{bottom:208.717650px;}
.yb9{bottom:208.897200px;}
.y1ac{bottom:209.007600px;}
.y1f6{bottom:211.421400px;}
.y2aa{bottom:213.669000px;}
.ydd{bottom:213.953100px;}
.y102{bottom:213.967650px;}
.y13e{bottom:218.893200px;}
.y163{bottom:219.188400px;}
.y5b{bottom:219.217650px;}
.y233{bottom:219.925350px;}
.y187{bottom:220.208850px;}
.y79{bottom:220.492200px;}
.y2c1{bottom:220.548900px;}
.y35f{bottom:220.584450px;}
.y9a{bottom:220.593900px;}
.y218{bottom:220.917450px;}
.y275{bottom:221.486850px;}
.y28a{bottom:222.136350px;}
.y1c2{bottom:222.634950px;}
.yb8{bottom:223.297200px;}
.y1ab{bottom:223.407600px;}
.y333{bottom:224.190150px;}
.y2f7{bottom:225.292650px;}
.y10f{bottom:225.442650px;}
.y38{bottom:225.521400px;}
.y339{bottom:225.592650px;}
.y1f5{bottom:225.821400px;}
.y38c{bottom:226.703100px;}
.y372{bottom:226.717650px;}
.y15{bottom:227.441700px;}
.ydc{bottom:231.953100px;}
.yf0{bottom:231.964800px;}
.y101{bottom:231.967650px;}
.y13d{bottom:233.293200px;}
.y162{bottom:233.588400px;}
.y232{bottom:234.325350px;}
.y186{bottom:234.608850px;}
.y78{bottom:234.892200px;}
.y2c0{bottom:234.948900px;}
.y99{bottom:234.993900px;}
.y217{bottom:235.317450px;}
.y289{bottom:236.536350px;}
.y1c1{bottom:237.034950px;}
.y5a{bottom:237.217650px;}
.yb7{bottom:237.697200px;}
.y35e{bottom:238.584450px;}
.y1f4{bottom:240.221400px;}
.y12b{bottom:242.615550px;}
.y2f6{bottom:242.992650px;}
.y10e{bottom:243.442650px;}
.y37{bottom:243.521400px;}
.y338{bottom:243.592650px;}
.y14{bottom:243.641700px;}
.y38b{bottom:244.703100px;}
.y371{bottom:244.717650px;}
.y13c{bottom:247.693200px;}
.y161{bottom:247.988400px;}
.y332{bottom:248.565150px;}
.y231{bottom:248.725350px;}
.y185{bottom:249.008850px;}
.y2bf{bottom:249.348900px;}
.y98{bottom:249.393900px;}
.ydb{bottom:249.953100px;}
.yef{bottom:249.964800px;}
.y100{bottom:249.967650px;}
.y2a9{bottom:250.809000px;}
.y288{bottom:250.936350px;}
.y1c0{bottom:251.434950px;}
.yb6{bottom:252.097200px;}
.y1f3{bottom:254.621400px;}
.y59{bottom:255.217650px;}
.y274{bottom:255.338400px;}
.y35d{bottom:256.584450px;}
.y2d4{bottom:256.678800px;}
.y13{bottom:259.841700px;}
.y2f5{bottom:260.692650px;}
.y10d{bottom:261.442650px;}
.y12a{bottom:261.553950px;}
.y346{bottom:261.592650px;}
.y13b{bottom:262.093200px;}
.y160{bottom:262.388400px;}
.y38a{bottom:262.703100px;}
.y370{bottom:262.717650px;}
.y230{bottom:263.125350px;}
.y184{bottom:263.408850px;}
.y2be{bottom:263.748900px;}
.y97{bottom:263.793900px;}
.y287{bottom:265.336350px;}
.y1bf{bottom:265.834950px;}
.yb5{bottom:266.497200px;}
.y312{bottom:267.172500px;}
.y36{bottom:267.896400px;}
.yda{bottom:267.953100px;}
.yee{bottom:267.964800px;}
.yff{bottom:267.967650px;}
.y2a8{bottom:268.809000px;}
.y1f2{bottom:269.021400px;}
.y58{bottom:273.217650px;}
.y273{bottom:273.338400px;}
.y77{bottom:273.453450px;}
.y216{bottom:274.229400px;}
.y35c{bottom:274.584450px;}
.y2d3{bottom:274.678800px;}
.y12{bottom:276.041700px;}
.y253{bottom:276.165600px;}
.y15f{bottom:276.788400px;}
.y22f{bottom:277.525350px;}
.y183{bottom:277.808850px;}
.y2f4{bottom:278.092650px;}
.y2bd{bottom:278.148900px;}
.y129{bottom:278.563950px;}
.y10c{bottom:279.442650px;}
.y345{bottom:279.592650px;}
.y286{bottom:279.736350px;}
.y1be{bottom:280.234950px;}
.y389{bottom:280.703100px;}
.y36f{bottom:280.717650px;}
.yb4{bottom:280.897200px;}
.y1f1{bottom:283.421400px;}
.y311{bottom:285.172500px;}
.yd9{bottom:285.953100px;}
.yed{bottom:285.964800px;}
.yfe{bottom:285.967650px;}
.y2a7{bottom:286.809000px;}
.y15e{bottom:291.188400px;}
.y57{bottom:291.217650px;}
.y272{bottom:291.338400px;}
.y76{bottom:291.453450px;}
.y22e{bottom:291.925350px;}
.y182{bottom:292.208850px;}
.y215{bottom:292.229400px;}
.y11{bottom:292.241700px;}
.y2bc{bottom:292.548900px;}
.y35b{bottom:292.584450px;}
.y2d2{bottom:292.678800px;}
.y285{bottom:294.136350px;}
.y252{bottom:294.165600px;}
.y1e4{bottom:294.583500px;}
.y1bd{bottom:294.634950px;}
.y2f3{bottom:295.492650px;}
.y128{bottom:295.573950px;}
.y1aa{bottom:295.671600px;}
.y10b{bottom:297.442650px;}
.y96{bottom:297.586800px;}
.y344{bottom:297.592650px;}
.y1f0{bottom:297.821400px;}
.y388{bottom:298.703100px;}
.y36e{bottom:298.717650px;}
.y310{bottom:303.172500px;}
.yd8{bottom:303.953100px;}
.yec{bottom:303.964800px;}
.yfd{bottom:303.967650px;}
.y2a6{bottom:304.809000px;}
.y15d{bottom:305.588400px;}
.y22d{bottom:306.325350px;}
.y181{bottom:306.608850px;}
.y2bb{bottom:306.948900px;}
.y10{bottom:308.441700px;}
.y284{bottom:308.536350px;}
.y1bc{bottom:309.034950px;}
.y331{bottom:309.090150px;}
.y56{bottom:309.217650px;}
.y271{bottom:309.338400px;}
.y75{bottom:309.453450px;}
.y214{bottom:310.229400px;}
.y35a{bottom:310.584450px;}
.y2d1{bottom:310.678800px;}
.y251{bottom:312.165600px;}
.y1e3{bottom:312.583500px;}
.y127{bottom:312.583950px;}
.y2f2{bottom:312.892650px;}
.y1a9{bottom:314.629200px;}
.y10a{bottom:315.442650px;}
.y95{bottom:315.586800px;}
.y343{bottom:315.592650px;}
.y387{bottom:316.703100px;}
.y36d{bottom:316.717650px;}
.y13a{bottom:319.867650px;}
.y15c{bottom:319.988400px;}
.y22c{bottom:320.725350px;}
.y180{bottom:321.008850px;}
.y30f{bottom:321.172500px;}
.y2ba{bottom:321.348900px;}
.yd7{bottom:321.953100px;}
.yeb{bottom:321.964800px;}
.yfc{bottom:321.967650px;}
.y2a5{bottom:322.809000px;}
.y283{bottom:322.936350px;}
.y1bb{bottom:323.434950px;}
.yf{bottom:324.641700px;}
.y35{bottom:326.285250px;}
.y330{bottom:327.090150px;}
.y55{bottom:327.217650px;}
.y270{bottom:327.338400px;}
.y74{bottom:327.453450px;}
.y213{bottom:328.232400px;}
.y33c{bottom:328.342650px;}
.y359{bottom:328.584450px;}
.y2d0{bottom:328.678800px;}
.y126{bottom:329.593950px;}
.y250{bottom:330.165600px;}
.y2f1{bottom:330.292650px;}
.y1e2{bottom:330.583500px;}
.y1a8{bottom:331.639200px;}
.y109{bottom:333.442650px;}
.y94{bottom:333.586800px;}
.y342{bottom:333.592650px;}
.y15b{bottom:334.388400px;}
.y386{bottom:334.703100px;}
.y36c{bottom:334.717650px;}
.y22b{bottom:335.125350px;}
.y17f{bottom:335.408850px;}
.y2b9{bottom:335.748900px;}
.y282{bottom:337.336350px;}
.y1ba{bottom:337.834950px;}
.y139{bottom:338.167650px;}
.y30e{bottom:339.172500px;}
.yd6{bottom:339.953100px;}
.y2c7{bottom:339.961800px;}
.yea{bottom:339.964800px;}
.yfb{bottom:339.967650px;}
.y2a4{bottom:340.809000px;}
.ye{bottom:340.841700px;}
.y34{bottom:342.485250px;}
.y32f{bottom:345.090150px;}
.y54{bottom:345.217650px;}
.y26f{bottom:345.338400px;}
.y73{bottom:345.453450px;}
.yb3{bottom:346.342650px;}
.y212{bottom:346.532400px;}
.y358{bottom:346.584450px;}
.y125{bottom:346.603950px;}
.y2cf{bottom:346.678800px;}
.y2f0{bottom:347.692650px;}
.y24f{bottom:348.165600px;}
.y1e1{bottom:348.583500px;}
.y1a7{bottom:348.649200px;}
.y22a{bottom:349.525350px;}
.y17e{bottom:349.808850px;}
.y2b8{bottom:350.148900px;}
.y108{bottom:351.442650px;}
.y341{bottom:351.592650px;}
.y281{bottom:351.736350px;}
.y1b9{bottom:352.234950px;}
.y385{bottom:352.703100px;}
.y36b{bottom:352.717650px;}
.y138{bottom:356.467650px;}
.yd{bottom:357.041700px;}
.y30d{bottom:357.172500px;}
.yd5{bottom:357.953100px;}
.y93{bottom:357.961800px;}
.ye9{bottom:357.964800px;}
.yfa{bottom:357.967650px;}
.y33{bottom:358.685250px;}
.y2a3{bottom:358.809000px;}
.y32e{bottom:363.090150px;}
.y53{bottom:363.217650px;}
.y26e{bottom:363.338400px;}
.y124{bottom:363.613950px;}
.y229{bottom:363.925350px;}
.y17d{bottom:364.208850px;}
.yb2{bottom:364.342650px;}
.y2b7{bottom:364.548900px;}
.y357{bottom:364.584450px;}
.y2ce{bottom:364.678800px;}
.y211{bottom:364.832400px;}
.y2ef{bottom:365.092650px;}
.y1a6{bottom:365.659200px;}
.y280{bottom:366.136350px;}
.y24e{bottom:366.165600px;}
.y15a{bottom:366.503100px;}
.y1e0{bottom:366.583500px;}
.y340{bottom:369.592650px;}
.y72{bottom:369.828450px;}
.y384{bottom:370.703100px;}
.y36a{bottom:370.717650px;}
.yc{bottom:373.241700px;}
.y137{bottom:374.767650px;}
.y32{bottom:374.885250px;}
.y30c{bottom:375.172500px;}
.y107{bottom:375.817650px;}
.yd4{bottom:375.953100px;}
.y92{bottom:375.961800px;}
.ye8{bottom:375.964800px;}
.yf9{bottom:375.967650px;}
.y2a2{bottom:376.809000px;}
.y228{bottom:378.325350px;}
.y17c{bottom:378.608850px;}
.y2b6{bottom:378.948900px;}
.y27f{bottom:380.536350px;}
.y123{bottom:380.623950px;}
.y32d{bottom:381.090150px;}
.y52{bottom:381.217650px;}
.yb1{bottom:382.342650px;}
.y2ee{bottom:382.492650px;}
.y356{bottom:382.584450px;}
.y1a5{bottom:382.669200px;}
.y2cd{bottom:382.678800px;}
.y210{bottom:383.132400px;}
.y24d{bottom:384.165600px;}
.y159{bottom:384.503100px;}
.y1df{bottom:384.583500px;}
.y26d{bottom:387.713400px;}
.y71{bottom:387.828450px;}
.y383{bottom:388.703100px;}
.y369{bottom:388.717650px;}
.yb{bottom:389.441700px;}
.y31{bottom:391.085250px;}
.y227{bottom:392.725350px;}
.y136{bottom:393.067650px;}
.y30b{bottom:393.172500px;}
.y2b5{bottom:393.348900px;}
.y106{bottom:393.817650px;}
.yd3{bottom:393.953100px;}
.y91{bottom:393.964800px;}
.yf8{bottom:393.967650px;}
.y2a1{bottom:394.809000px;}
.y27e{bottom:394.936350px;}
.y1ef{bottom:395.475000px;}
.y122{bottom:397.633950px;}
.y32c{bottom:399.090150px;}
.y1a4{bottom:399.679200px;}
.y2ed{bottom:399.892650px;}
.yb0{bottom:400.342650px;}
.y355{bottom:400.584450px;}
.y2cc{bottom:400.678800px;}
.y24c{bottom:402.165600px;}
.y158{bottom:402.503100px;}
.y1de{bottom:402.583500px;}
.y51{bottom:405.592650px;}
.ya{bottom:405.641700px;}
.y26c{bottom:405.713400px;}
.y70{bottom:405.828450px;}
.y382{bottom:406.703100px;}
.y368{bottom:406.717650px;}
.y226{bottom:407.125350px;}
.y30{bottom:407.285250px;}
.y2b4{bottom:407.748900px;}
.y20f{bottom:407.807400px;}
.y27d{bottom:409.336350px;}
.y30a{bottom:411.172500px;}
.y135{bottom:411.367650px;}
.y1b8{bottom:411.817650px;}
.y90{bottom:411.964800px;}
.yf7{bottom:411.967650px;}
.y2a0{bottom:412.809000px;}
.y1ee{bottom:413.475000px;}
.y17b{bottom:413.750100px;}
.y121{bottom:414.643950px;}
.y1a3{bottom:416.689200px;}
.y32b{bottom:417.090150px;}
.y2ec{bottom:417.292650px;}
.yd2{bottom:418.328100px;}
.yaf{bottom:418.342650px;}
.y354{bottom:418.584450px;}
.y24b{bottom:420.165600px;}
.y157{bottom:420.503100px;}
.y1dd{bottom:420.583500px;}
.y225{bottom:421.525350px;}
.y9{bottom:421.841700px;}
.y2b3{bottom:422.148900px;}
.y2f{bottom:423.485250px;}
.y50{bottom:423.592650px;}
.y26b{bottom:423.713400px;}
.y27c{bottom:423.736350px;}
.y6f{bottom:423.828450px;}
.y381{bottom:424.703100px;}
.y367{bottom:424.717650px;}
.y20e{bottom:426.107400px;}
.y2cb{bottom:427.183800px;}
.y309{bottom:429.172500px;}
.y134{bottom:429.667650px;}
.y1b7{bottom:429.817650px;}
.y8f{bottom:429.964800px;}
.yf6{bottom:429.967650px;}
.y17a{bottom:431.450100px;}
.y1ed{bottom:431.475000px;}
.y120{bottom:431.653950px;}
.y1a2{bottom:433.699200px;}
.y2eb{bottom:434.692650px;}
.y32a{bottom:435.090150px;}
.y224{bottom:435.925350px;}
.yd1{bottom:436.328100px;}
.yae{bottom:436.342650px;}
.y2b2{bottom:436.548900px;}
.y353{bottom:436.584450px;}
.y27b{bottom:438.136350px;}
.y156{bottom:438.503100px;}
.y1dc{bottom:438.583500px;}
.y2e{bottom:439.685250px;}
.y4f{bottom:441.592650px;}
.y26a{bottom:441.713400px;}
.y6e{bottom:441.828450px;}
.y380{bottom:442.703100px;}
.y366{bottom:442.717650px;}
.y20d{bottom:444.407400px;}
.y2ca{bottom:445.183800px;}
.y308{bottom:447.172500px;}
.y29f{bottom:447.816150px;}
.y1b6{bottom:447.817650px;}
.y8e{bottom:447.964800px;}
.y133{bottom:447.967650px;}
.y11f{bottom:448.663950px;}
.y179{bottom:449.150100px;}
.y1ec{bottom:449.475000px;}
.y223{bottom:450.325350px;}
.y1a1{bottom:450.709200px;}
.y2b1{bottom:450.948900px;}
.y2ea{bottom:452.092650px;}
.y329{bottom:453.090150px;}
.yd0{bottom:454.328100px;}
.yad{bottom:454.342650px;}
.y352{bottom:454.584450px;}
.y24a{bottom:455.173500px;}
.y2d{bottom:455.885250px;}
.y155{bottom:456.503100px;}
.y4e{bottom:459.592650px;}
.y269{bottom:459.713400px;}
.y6d{bottom:459.828450px;}
.y37f{bottom:460.703100px;}
.y365{bottom:460.717650px;}
.y29e{bottom:462.216150px;}
.y20c{bottom:462.707400px;}
.y2c9{bottom:463.183800px;}
.y222{bottom:464.725350px;}
.y1db{bottom:465.088500px;}
.y307{bottom:465.172500px;}
.y2b0{bottom:465.348900px;}
.y11e{bottom:465.673950px;}
.y1b5{bottom:465.817650px;}
.y8d{bottom:465.964800px;}
.y132{bottom:465.967650px;}
.y178{bottom:466.850100px;}
.y1eb{bottom:467.475000px;}
.y1a0{bottom:467.719200px;}
.y2e9{bottom:469.492650px;}
.y328{bottom:471.090150px;}
.y2c{bottom:472.085250px;}
.ycf{bottom:472.328100px;}
.yac{bottom:472.342650px;}
.y351{bottom:472.584450px;}
.y154{bottom:474.503100px;}
.y249{bottom:474.520800px;}
.y4d{bottom:477.592650px;}
.y268{bottom:477.713400px;}
.y37e{bottom:478.703100px;}
.y364{bottom:478.717650px;}
.y221{bottom:479.125350px;}
.y8{bottom:480.566700px;}
.y20b{bottom:481.007400px;}
.y11d{bottom:482.683950px;}
.y19f{bottom:482.915550px;}
.y1da{bottom:483.088500px;}
.y306{bottom:483.172500px;}
.y1b4{bottom:483.817650px;}
.y8c{bottom:483.964800px;}
.y131{bottom:483.967650px;}
.y6c{bottom:484.209450px;}
.y177{bottom:484.550100px;}
.y1ea{bottom:485.475000px;}
.y2b{bottom:488.285250px;}
.y327{bottom:489.090150px;}
.yce{bottom:490.328100px;}
.ye7{bottom:490.342650px;}
.y350{bottom:490.584450px;}
.y248{bottom:491.531700px;}
.y153{bottom:492.503100px;}
.y2e8{bottom:493.267650px;}
.y220{bottom:493.525350px;}
.y19c{bottom:493.715550px;}
.y2c8{bottom:493.939800px;}
.y267{bottom:495.713400px;}
.y37d{bottom:496.703100px;}
.yab{bottom:496.717650px;}
.y7{bottom:496.766700px;}
.y29d{bottom:498.720150px;}
.y19b{bottom:499.115550px;}
.y20a{bottom:499.307400px;}
.y11c{bottom:499.693950px;}
.y1b3{bottom:501.817650px;}
.y2af{bottom:501.961800px;}
.y4c{bottom:501.967650px;}
.y6b{bottom:502.209450px;}
.y1e9{bottom:503.475000px;}
.y2a{bottom:504.485250px;}
.y19d{bottom:504.515550px;}
.y326{bottom:507.090150px;}
.y21f{bottom:507.925350px;}
.ycd{bottom:508.328100px;}
.y8b{bottom:508.339800px;}
.ye6{bottom:508.342650px;}
.y247{bottom:508.542600px;}
.y34f{bottom:508.584450px;}
.y176{bottom:508.625100px;}
.y152{bottom:510.503100px;}
.y2e7{bottom:510.667650px;}
.y266{bottom:513.713400px;}
.y37c{bottom:514.703100px;}
.yaa{bottom:514.717650px;}
.y19e{bottom:515.315550px;}
.y11b{bottom:516.703950px;}
.y209{bottom:517.607400px;}
.y305{bottom:518.196750px;}
.y1b2{bottom:519.817650px;}
.y2ae{bottom:519.961800px;}
.y4b{bottom:519.967650px;}
.y6a{bottom:520.209450px;}
.y1d9{bottom:520.228500px;}
.y1e8{bottom:521.475000px;}
.y21e{bottom:522.325350px;}
.y325{bottom:525.090150px;}
.y246{bottom:525.553500px;}
.y175{bottom:526.325100px;}
.ycc{bottom:526.328100px;}
.y8a{bottom:526.339800px;}
.ye5{bottom:526.342650px;}
.y34e{bottom:526.584450px;}
.y19a{bottom:527.041500px;}
.y2e6{bottom:528.067650px;}
.y151{bottom:528.503100px;}
.y265{bottom:531.713400px;}
.y37b{bottom:532.703100px;}
.ya9{bottom:532.717650px;}
.y11a{bottom:533.713950px;}
.y29c{bottom:535.344150px;}
.y208{bottom:535.907400px;}
.y304{bottom:537.792750px;}
.y4a{bottom:537.967650px;}
.y69{bottom:538.209450px;}
.y1d8{bottom:538.228500px;}
.y1e7{bottom:539.475000px;}
.y199{bottom:541.441500px;}
.y245{bottom:542.564400px;}
.y324{bottom:543.090150px;}
.y1b1{bottom:544.192650px;}
.y174{bottom:544.325100px;}
.ycb{bottom:544.328100px;}
.y89{bottom:544.339800px;}
.ye4{bottom:544.342650px;}
.y34d{bottom:544.584450px;}
.y2e5{bottom:545.467650px;}
.y150{bottom:546.803100px;}
.y29{bottom:549.642750px;}
.y29b{bottom:549.744150px;}
.y37a{bottom:550.703100px;}
.ya8{bottom:550.717650px;}
.y119{bottom:550.723950px;}
.y207{bottom:554.207400px;}
.y303{bottom:554.796750px;}
.y49{bottom:555.967650px;}
.y68{bottom:556.209450px;}
.y1d7{bottom:556.228500px;}
.y1e6{bottom:557.475000px;}
.y244{bottom:559.575300px;}
.y323{bottom:561.090150px;}
.y173{bottom:562.325100px;}
.yca{bottom:562.328100px;}
.y88{bottom:562.339800px;}
.ye3{bottom:562.342650px;}
.y34c{bottom:562.584450px;}
.y2e4{bottom:562.867650px;}
.y29a{bottom:564.144150px;}
.y14f{bottom:565.103100px;}
.y6{bottom:565.790400px;}
.y28{bottom:565.842750px;}
.y198{bottom:565.942650px;}
.y264{bottom:566.737800px;}
.y118{bottom:567.733950px;}
.y379{bottom:568.703100px;}
.ya7{bottom:568.717650px;}
.y302{bottom:571.800750px;}
.y206{bottom:572.507400px;}
.y48{bottom:573.967650px;}
.y67{bottom:574.209450px;}
.y243{bottom:576.586200px;}
.y322{bottom:579.090150px;}
.y2e3{bottom:580.267650px;}
.y172{bottom:580.325100px;}
.yc9{bottom:580.328100px;}
.y87{bottom:580.339800px;}
.ye2{bottom:580.342650px;}
.y34b{bottom:580.584450px;}
.y27{bottom:582.042750px;}
.y14e{bottom:583.403100px;}
.y197{bottom:583.642650px;}
.y263{bottom:586.333800px;}
.y299{bottom:586.368150px;}
.y116{bottom:586.662600px;}
.y378{bottom:586.703100px;}
.ya6{bottom:586.717650px;}
.y1d6{bottom:586.984500px;}
.y5{bottom:587.390400px;}
.y301{bottom:588.804750px;}
.y205{bottom:590.807400px;}
.y47{bottom:591.967650px;}
.y66{bottom:592.209450px;}
.y1e5{bottom:592.482900px;}
.y242{bottom:593.597100px;}
.y115{bottom:593.862600px;}
.y2e2{bottom:597.667650px;}
.y26{bottom:598.242750px;}
.y171{bottom:598.325100px;}
.yc8{bottom:598.328100px;}
.y86{bottom:598.339800px;}
.ye1{bottom:598.342650px;}
.y34a{bottom:598.584450px;}
.y298{bottom:600.768150px;}
.y117{bottom:601.062600px;}
.y196{bottom:601.342650px;}
.y14d{bottom:601.703100px;}
.y262{bottom:603.241800px;}
.y377{bottom:604.703100px;}
.ya5{bottom:604.717650px;}
.y300{bottom:605.808750px;}
.y1d5{bottom:605.948400px;}
.y4{bottom:608.990400px;}
.y204{bottom:609.107400px;}
.y46{bottom:609.967650px;}
.y65{bottom:610.209450px;}
.y241{bottom:610.608000px;}
.y25{bottom:614.442750px;}
.y2e1{bottom:615.067650px;}
.y297{bottom:615.168150px;}
.y170{bottom:616.325100px;}
.y85{bottom:616.342650px;}
.y349{bottom:616.584450px;}
.y195{bottom:619.042650px;}
.y114{bottom:619.185900px;}
.y14c{bottom:620.003100px;}
.y261{bottom:620.245800px;}
.y321{bottom:621.480300px;}
.yc7{bottom:622.703100px;}
.ya4{bottom:622.717650px;}
.y2ff{bottom:622.812750px;}
.y1d4{bottom:622.958400px;}
.y240{bottom:627.618900px;}
.y45{bottom:627.967650px;}
.y3{bottom:630.590400px;}
.y24{bottom:630.642750px;}
.y113{bottom:633.585900px;}
.y16f{bottom:634.325100px;}
.y84{bottom:634.342650px;}
.y64{bottom:634.584450px;}
.y320{bottom:635.880300px;}
.y194{bottom:636.742650px;}
.y260{bottom:637.249800px;}
.y296{bottom:637.392150px;}
.y14b{bottom:638.303100px;}
.y2e0{bottom:638.842650px;}
.y2fe{bottom:639.816750px;}
.y1d3{bottom:639.968400px;}
.yc6{bottom:640.703100px;}
.ya3{bottom:640.717650px;}
.y203{bottom:644.115300px;}
.y23f{bottom:644.629800px;}
.y44{bottom:645.967650px;}
.y23{bottom:646.842750px;}
.y295{bottom:651.792150px;}
.y16e{bottom:652.328100px;}
.y83{bottom:652.342650px;}
.y63{bottom:652.584450px;}
.y25f{bottom:654.253800px;}
.y31f{bottom:655.380300px;}
.y2fd{bottom:656.100750px;}
.y2df{bottom:656.242650px;}
.y14a{bottom:656.603100px;}
.y1d2{bottom:656.978400px;}
.yc5{bottom:658.703100px;}
.ya2{bottom:658.717650px;}
.y193{bottom:660.817650px;}
.y23e{bottom:661.640700px;}
.y22{bottom:663.042750px;}
.y202{bottom:663.520200px;}
.y43{bottom:663.967650px;}
.y294{bottom:666.192150px;}
.y16d{bottom:670.328100px;}
.y82{bottom:670.342650px;}
.y2fc{bottom:670.500750px;}
.y62{bottom:670.584450px;}
.y25e{bottom:671.257800px;}
.y31e{bottom:672.384300px;}
.y2de{bottom:673.642650px;}
.y1d1{bottom:673.988400px;}
.y201{bottom:674.320200px;}
.y149{bottom:674.903100px;}
.yc4{bottom:676.703100px;}
.ya1{bottom:676.717650px;}
.y192{bottom:678.517650px;}
.y23d{bottom:678.651600px;}
.y21{bottom:679.242750px;}
.y200{bottom:686.671800px;}
.y25d{bottom:688.261800px;}
.y16c{bottom:688.328100px;}
.y42{bottom:688.342650px;}
.y293{bottom:688.416150px;}
.y61{bottom:688.584450px;}
.y31d{bottom:689.388300px;}
.y1d0{bottom:690.998400px;}
.y2dd{bottom:691.042650px;}
.y148{bottom:693.203100px;}
.yc3{bottom:694.703100px;}
.ya0{bottom:694.717650px;}
.y20{bottom:695.442750px;}
.y23c{bottom:695.662500px;}
.y191{bottom:696.217650px;}
.y292{bottom:702.816150px;}
.y1ff{bottom:703.776600px;}
.y16b{bottom:706.328100px;}
.y41{bottom:706.342650px;}
.y31c{bottom:706.392300px;}
.y60{bottom:706.584450px;}
.y1cf{bottom:708.008400px;}
.y2dc{bottom:708.442650px;}
.y25a{bottom:708.894750px;}
.y147{bottom:711.503100px;}
.y1f{bottom:711.642750px;}
.y25c{bottom:711.937800px;}
.y23b{bottom:712.673400px;}
.yc2{bottom:712.703100px;}
.y81{bottom:712.717650px;}
.y190{bottom:713.917650px;}
.y291{bottom:717.216150px;}
.y1fe{bottom:721.540350px;}
.y259{bottom:722.394750px;}
.y1ce{bottom:723.204750px;}
.y31b{bottom:723.396300px;}
.y16a{bottom:724.328100px;}
.y40{bottom:724.342650px;}
.y5f{bottom:724.584450px;}
.y2db{bottom:725.842650px;}
.y1e{bottom:727.842750px;}
.y256{bottom:728.889750px;}
.y23a{bottom:729.684300px;}
.y146{bottom:729.803100px;}
.yc1{bottom:730.703100px;}
.y80{bottom:730.717650px;}
.y18f{bottom:731.617650px;}
.y1cb{bottom:734.004750px;}
.y258{bottom:735.894750px;}
.y1fd{bottom:739.394100px;}
.y1ca{bottom:739.404750px;}
.y31a{bottom:740.312400px;}
.y169{bottom:742.328100px;}
.y3f{bottom:742.342650px;}
.y348{bottom:742.584450px;}
.y25b{bottom:743.965800px;}
.y1cc{bottom:744.804750px;}
.y319{bottom:746.203650px;}
.y145{bottom:748.103100px;}
.yc0{bottom:748.703100px;}
.y7f{bottom:748.717650px;}
.y5e{bottom:748.959450px;}
.y18e{bottom:749.317650px;}
.y257{bottom:749.394750px;}
.y239{bottom:749.526750px;}
.y2da{bottom:749.617650px;}
.y290{bottom:751.140150px;}
.y1cd{bottom:755.604750px;}
.y1fc{bottom:758.785650px;}
.y347{bottom:760.584450px;}
.y144{bottom:766.403100px;}
.ybf{bottom:766.703100px;}
.y3e{bottom:766.717650px;}
.y5d{bottom:766.959450px;}
.y18d{bottom:767.017650px;}
.y1c9{bottom:767.964150px;}
.y318{bottom:768.527250px;}
.y255{bottom:768.597750px;}
.y1d{bottom:769.557750px;}
.y19{bottom:771.195312px;}
.y1fb{bottom:780.049650px;}
.y1c8{bottom:782.364150px;}
.y317{bottom:782.567250px;}
.y254{bottom:782.997750px;}
.ybe{bottom:784.703100px;}
.y3d{bottom:784.717650px;}
.y5c{bottom:784.959450px;}
.y1c{bottom:785.757750px;}
.y2{bottom:788.253300px;}
.hd{height:29.700000px;}
.hc{height:30.188875px;}
.h16{height:31.974609px;}
.h1c{height:33.328125px;}
.h1f{height:33.351562px;}
.h9{height:34.650000px;}
.h3{height:34.956000px;}
.h1a{height:36.075063px;}
.h1d{height:37.303711px;}
.h6{height:37.520508px;}
.h18{height:39.484863px;}
.h19{height:39.968262px;}
.h20{height:41.074219px;}
.h2{height:41.280000px;}
.h21{height:41.566992px;}
.h13{height:41.660156px;}
.h14{height:41.689453px;}
.ha{height:42.099187px;}
.hb{height:42.117188px;}
.h10{height:42.632812px;}
.h24{height:43.016813px;}
.h1e{height:44.092233px;}
.h8{height:47.381836px;}
.h7{height:47.961914px;}
.h17{height:48.393914px;}
.hf{height:52.634484px;}
.he{height:52.646484px;}
.h5{height:53.291016px;}
.h15{height:53.574609px;}
.h1b{height:57.674463px;}
.h4{height:63.949219px;}
.h22{height:64.138711px;}
.h23{height:65.141592px;}
.h12{height:68.135311px;}
.h11{height:71.432813px;}
.h0{height:892.914000px;}
.h1{height:893.250000px;}
.w2{width:631.212953px;}
.w1{width:637.500000px;}
.w0{width:637.795500px;}
.x0{left:0.000000px;}
.xa{left:3.285000px;}
.xb{left:87.743288px;}
.x2{left:127.541400px;}
.x1d{left:132.985500px;}
.x38{left:135.081450px;}
.x36{left:138.453450px;}
.xf{left:140.839950px;}
.x28{left:142.869600px;}
.x18{left:145.592850px;}
.x34{left:146.601450px;}
.x3{left:147.774450px;}
.x9{left:148.827900px;}
.x14{left:151.964850px;}
.x11{left:153.050400px;}
.x1c{left:154.138350px;}
.x31{left:155.561250px;}
.x17{left:156.838350px;}
.x16{left:158.701350px;}
.x5{left:160.590450px;}
.x29{left:161.701800px;}
.x15{left:162.832350px;}
.x1a{left:164.357850px;}
.x19{left:167.543850px;}
.xc{left:170.084100px;}
.x1b{left:172.970850px;}
.x37{left:178.953450px;}
.x2b{left:190.494150px;}
.x4{left:201.594450px;}
.x39{left:206.313450px;}
.x3a{left:218.292300px;}
.x2d{left:226.122150px;}
.x33{left:232.737450px;}
.x7{left:234.713700px;}
.x2c{left:237.372150px;}
.x2f{left:239.250900px;}
.x2e{left:245.505900px;}
.x8{left:255.901950px;}
.x1f{left:271.630050px;}
.x6{left:276.780450px;}
.x32{left:277.941450px;}
.x2a{left:282.654600px;}
.x1e{left:284.905500px;}
.x1{left:302.648550px;}
.x10{left:303.775950px;}
.x3b{left:306.240150px;}
.x20{left:331.165050px;}
.x21{left:337.249050px;}
.x30{left:341.777250px;}
.xe{left:347.684100px;}
.x35{left:351.561450px;}
.x13{left:359.366400px;}
.x12{left:367.214400px;}
.x23{left:393.436050px;}
.xd{left:397.273200px;}
.x22{left:399.187050px;}
.x27{left:448.039050px;}
.x25{left:454.456050px;}
.x24{left:459.919050px;}
.x26{left:462.592050px;}
@media print{
.v8{vertical-align:-25.258667pt;}
.v6{vertical-align:-3.030933pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:0.960000pt;}
.v2{vertical-align:14.208000pt;}
.v7{vertical-align:16.168533pt;}
.v1{vertical-align:17.738667pt;}
.v5{vertical-align:19.200000pt;}
.va{vertical-align:20.955200pt;}
.v9{vertical-align:23.853333pt;}
.v3{vertical-align:25.600000pt;}
.v4{vertical-align:27.405867pt;}
.lsc{letter-spacing:-3.733333pt;}
.ls6{letter-spacing:-3.157333pt;}
.ls9{letter-spacing:-2.560000pt;}
.ls5{letter-spacing:-1.776000pt;}
.ls7{letter-spacing:-1.280000pt;}
.ls4{letter-spacing:-1.150453pt;}
.ls3{letter-spacing:-1.066667pt;}
.lsb{letter-spacing:-0.832000pt;}
.ls2{letter-spacing:-0.533333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:1.322667pt;}
.ls8{letter-spacing:202.752000pt;}
.lsa{letter-spacing:390.442667pt;}
.ws4f{word-spacing:-214.752000pt;}
.ws2{word-spacing:-16.000000pt;}
.wsf{word-spacing:-13.333333pt;}
.ws2b{word-spacing:-12.000000pt;}
.ws3{word-spacing:-11.573333pt;}
.ws15{word-spacing:-10.666667pt;}
.ws80{word-spacing:-10.400000pt;}
.ws0{word-spacing:-9.920000pt;}
.ws99{word-spacing:-9.600000pt;}
.ws40{word-spacing:-8.000000pt;}
.ws7{word-spacing:-7.773333pt;}
.ws2e{word-spacing:-7.509333pt;}
.ws1{word-spacing:-6.944000pt;}
.ws1f{word-spacing:-6.622880pt;}
.ws9c{word-spacing:-3.146667pt;}
.ws59{word-spacing:-2.506667pt;}
.wsa8{word-spacing:-2.346667pt;}
.ws33{word-spacing:-2.048000pt;}
.ws8c{word-spacing:-1.920000pt;}
.ws79{word-spacing:-1.877333pt;}
.ws45{word-spacing:-1.706667pt;}
.ws5b{word-spacing:-1.664000pt;}
.ws7d{word-spacing:-1.578667pt;}
.ws1d{word-spacing:-1.493333pt;}
.wsa6{word-spacing:-1.440000pt;}
.ws3b{word-spacing:-1.322667pt;}
.ws38{word-spacing:-1.237333pt;}
.ws90{word-spacing:-1.226667pt;}
.ws97{word-spacing:-1.120000pt;}
.ws51{word-spacing:-1.109333pt;}
.ws44{word-spacing:-0.981333pt;}
.ws86{word-spacing:-0.906667pt;}
.wsa1{word-spacing:-0.853333pt;}
.ws88{word-spacing:-0.746667pt;}
.ws57{word-spacing:-0.725333pt;}
.ws46{word-spacing:-0.512000pt;}
.ws6{word-spacing:-0.336000pt;}
.ws50{word-spacing:-0.298667pt;}
.ws6d{word-spacing:-0.266667pt;}
.ws3c{word-spacing:-0.256000pt;}
.ws91{word-spacing:-0.213333pt;}
.ws7a{word-spacing:-0.160000pt;}
.ws36{word-spacing:-0.053333pt;}
.ws4{word-spacing:0.000000pt;}
.ws34{word-spacing:0.085333pt;}
.ws92{word-spacing:0.106667pt;}
.ws48{word-spacing:0.213333pt;}
.wsa{word-spacing:0.533333pt;}
.ws74{word-spacing:0.768000pt;}
.ws8b{word-spacing:0.800000pt;}
.ws3e{word-spacing:0.810667pt;}
.ws8f{word-spacing:0.906667pt;}
.wsd{word-spacing:1.024000pt;}
.ws10{word-spacing:1.066667pt;}
.ws39{word-spacing:1.120000pt;}
.ws73{word-spacing:1.237333pt;}
.ws12{word-spacing:1.280000pt;}
.wse{word-spacing:1.322667pt;}
.ws96{word-spacing:1.333333pt;}
.ws37{word-spacing:1.600000pt;}
.ws1b{word-spacing:1.653333pt;}
.ws1e{word-spacing:1.749333pt;}
.ws94{word-spacing:1.760000pt;}
.ws71{word-spacing:1.792000pt;}
.ws5{word-spacing:1.872000pt;}
.ws47{word-spacing:1.920000pt;}
.ws14{word-spacing:2.005333pt;}
.wsa3{word-spacing:2.026667pt;}
.ws1a{word-spacing:2.080000pt;}
.ws6e{word-spacing:2.133333pt;}
.ws5c{word-spacing:2.176000pt;}
.ws43{word-spacing:2.218667pt;}
.ws3a{word-spacing:2.240000pt;}
.ws89{word-spacing:2.293333pt;}
.ws3d{word-spacing:2.517333pt;}
.ws1c{word-spacing:2.613333pt;}
.ws58{word-spacing:2.666667pt;}
.ws5a{word-spacing:2.688000pt;}
.ws78{word-spacing:2.858667pt;}
.ws30{word-spacing:2.880000pt;}
.wsb{word-spacing:2.901333pt;}
.ws9b{word-spacing:2.933333pt;}
.wsc{word-spacing:2.944000pt;}
.ws5d{word-spacing:2.986667pt;}
.ws72{word-spacing:3.200000pt;}
.wsa5{word-spacing:3.253333pt;}
.ws18{word-spacing:3.285333pt;}
.ws95{word-spacing:3.680000pt;}
.ws32{word-spacing:3.733333pt;}
.ws9e{word-spacing:3.840000pt;}
.ws2d{word-spacing:4.053333pt;}
.ws13{word-spacing:4.096000pt;}
.ws2f{word-spacing:4.160000pt;}
.ws6c{word-spacing:4.181333pt;}
.wsa0{word-spacing:4.213333pt;}
.ws70{word-spacing:4.309333pt;}
.ws16{word-spacing:4.437333pt;}
.ws8a{word-spacing:4.640000pt;}
.ws11{word-spacing:4.853333pt;}
.ws9{word-spacing:4.906667pt;}
.wsa4{word-spacing:5.226667pt;}
.ws93{word-spacing:5.333333pt;}
.ws9a{word-spacing:5.600000pt;}
.ws9d{word-spacing:6.346667pt;}
.ws8e{word-spacing:6.666667pt;}
.ws31{word-spacing:6.933333pt;}
.ws6f{word-spacing:6.954667pt;}
.wsa2{word-spacing:7.520000pt;}
.ws8{word-spacing:7.626667pt;}
.ws35{word-spacing:7.840000pt;}
.ws9f{word-spacing:8.266667pt;}
.ws17{word-spacing:9.088000pt;}
.ws19{word-spacing:9.813333pt;}
.wsa7{word-spacing:10.240000pt;}
.ws87{word-spacing:13.866667pt;}
.ws8d{word-spacing:15.040000pt;}
.ws20{word-spacing:18.453333pt;}
.ws75{word-spacing:24.960000pt;}
.ws98{word-spacing:33.546667pt;}
.ws54{word-spacing:35.406400pt;}
.ws55{word-spacing:38.007467pt;}
.ws52{word-spacing:41.400000pt;}
.ws77{word-spacing:46.293333pt;}
.ws56{word-spacing:48.080000pt;}
.ws22{word-spacing:57.743467pt;}
.ws53{word-spacing:61.400000pt;}
.ws5e{word-spacing:66.714667pt;}
.ws76{word-spacing:67.626667pt;}
.ws7f{word-spacing:69.474133pt;}
.ws42{word-spacing:82.752000pt;}
.ws4c{word-spacing:83.664000pt;}
.ws4b{word-spacing:94.752000pt;}
.ws4d{word-spacing:95.664000pt;}
.ws7e{word-spacing:97.801600pt;}
.ws3f{word-spacing:100.224000pt;}
.ws41{word-spacing:100.752000pt;}
.ws4a{word-spacing:101.664000pt;}
.ws49{word-spacing:112.752000pt;}
.ws21{word-spacing:118.400000pt;}
.ws28{word-spacing:126.672000pt;}
.ws4e{word-spacing:136.752000pt;}
.ws23{word-spacing:138.384000pt;}
.ws24{word-spacing:150.384000pt;}
.ws26{word-spacing:151.248000pt;}
.ws2a{word-spacing:156.576000pt;}
.ws25{word-spacing:168.384000pt;}
.ws2c{word-spacing:180.384000pt;}
.ws29{word-spacing:184.128000pt;}
.ws6b{word-spacing:189.824000pt;}
.ws81{word-spacing:190.378667pt;}
.ws84{word-spacing:191.146667pt;}
.ws65{word-spacing:201.654400pt;}
.ws63{word-spacing:202.485333pt;}
.ws64{word-spacing:208.957867pt;}
.ws62{word-spacing:209.788800pt;}
.ws61{word-spacing:212.587733pt;}
.ws6a{word-spacing:213.930667pt;}
.ws27{word-spacing:218.352000pt;}
.ws60{word-spacing:219.891200pt;}
.ws68{word-spacing:224.597333pt;}
.ws5f{word-spacing:225.357867pt;}
.ws66{word-spacing:226.145067pt;}
.ws67{word-spacing:237.056000pt;}
.ws69{word-spacing:237.824000pt;}
.ws82{word-spacing:265.941333pt;}
.ws85{word-spacing:271.274667pt;}
.ws83{word-spacing:276.608000pt;}
.ws7b{word-spacing:303.104000pt;}
.ws7c{word-spacing:304.298667pt;}
._37{margin-left:-54.000000pt;}
._13{margin-left:-31.941333pt;}
._3c{margin-left:-14.163200pt;}
._2e{margin-left:-13.178133pt;}
._c{margin-left:-12.272000pt;}
._48{margin-left:-10.677333pt;}
._29{margin-left:-6.752000pt;}
._b{margin-left:-5.632000pt;}
._0{margin-left:-4.736000pt;}
._1{margin-left:-3.456000pt;}
._6{margin-left:-2.256000pt;}
._7{margin-left:-0.912000pt;}
._5{width:1.104000pt;}
._8{width:2.400000pt;}
._3{width:3.504000pt;}
._4{width:5.184000pt;}
._a{width:6.288000pt;}
._d{width:7.525333pt;}
._2{width:8.640000pt;}
._e{width:9.866667pt;}
._f{width:10.986667pt;}
._10{width:12.160000pt;}
._3d{width:13.696000pt;}
._14{width:14.720000pt;}
._4d{width:15.893333pt;}
._9{width:20.479467pt;}
._12{width:22.272000pt;}
._4e{width:23.402667pt;}
._15{width:24.528000pt;}
._45{width:36.778667pt;}
._11{width:43.605333pt;}
._3b{width:52.936000pt;}
._46{width:67.840000pt;}
._38{width:78.080000pt;}
._3a{width:92.256000pt;}
._35{width:94.752000pt;}
._32{width:95.664000pt;}
._39{width:101.648000pt;}
._30{width:106.752000pt;}
._34{width:112.752000pt;}
._33{width:114.144000pt;}
._4b{width:120.120533pt;}
._31{width:124.848000pt;}
._36{width:126.144000pt;}
._3f{width:136.512000pt;}
._2f{width:137.568000pt;}
._40{width:140.288000pt;}
._20{width:162.768000pt;}
._1f{width:164.112000pt;}
._16{width:168.000000pt;}
._17{width:170.352000pt;}
._23{width:180.384000pt;}
._2b{width:190.384000pt;}
._19{width:194.352000pt;}
._1c{width:199.968000pt;}
._1d{width:201.312000pt;}
._2c{width:203.648000pt;}
._1a{width:206.640000pt;}
._1b{width:212.352000pt;}
._18{width:221.328000pt;}
._24{width:224.016000pt;}
._44{width:225.408000pt;}
._28{width:226.656000pt;}
._2a{width:228.192000pt;}
._1e{width:231.216000pt;}
._26{width:232.656000pt;}
._2d{width:234.800000pt;}
._3e{width:236.096000pt;}
._42{width:241.274667pt;}
._21{width:243.984000pt;}
._43{width:247.722667pt;}
._27{width:249.984000pt;}
._41{width:251.264000pt;}
._22{width:262.176000pt;}
._25{width:272.640000pt;}
._4c{width:276.608000pt;}
._49{width:286.293333pt;}
._47{width:306.858667pt;}
._4a{width:423.808000pt;}
.fs2{font-size:22.400000pt;}
.fs9{font-size:24.874667pt;}
.fs8{font-size:31.093333pt;}
.fs1{font-size:32.000000pt;}
.fs5{font-size:37.333333pt;}
.fsa{font-size:40.000000pt;}
.fs7{font-size:40.261663pt;}
.fsc{font-size:41.600000pt;}
.fs6{font-size:42.666667pt;}
.fsb{font-size:43.733333pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:83.679867pt;}
.y1b{bottom:84.455467pt;}
.y1a{bottom:94.055467pt;}
.y2d9{bottom:130.380533pt;}
.y143{bottom:130.571733pt;}
.y2fb{bottom:130.596933pt;}
.y105{bottom:130.607333pt;}
.y337{bottom:130.647333pt;}
.yf5{bottom:130.748000pt;}
.y3c{bottom:130.796800pt;}
.y168{bottom:130.834133pt;}
.y238{bottom:131.489200pt;}
.y18c{bottom:131.741200pt;}
.y7e{bottom:131.993067pt;}
.y2c6{bottom:132.043467pt;}
.y363{bottom:132.075067pt;}
.y9f{bottom:132.083467pt;}
.y21d{bottom:132.371067pt;}
.y316{bottom:132.597867pt;}
.y18{bottom:132.824267pt;}
.y27a{bottom:132.877200pt;}
.y130{bottom:133.012933pt;}
.y112{bottom:133.431600pt;}
.y28f{bottom:133.454533pt;}
.y1c7{bottom:133.897733pt;}
.y2ad{bottom:134.368000pt;}
.ybd{bottom:134.486400pt;}
.y1b0{bottom:134.584533pt;}
.y33b{bottom:136.526800pt;}
.y1fa{bottom:136.730133pt;}
.y390{bottom:137.513867pt;}
.y376{bottom:137.526800pt;}
.ye0{bottom:142.180533pt;}
.y33f{bottom:142.193467pt;}
.y2d8{bottom:143.180533pt;}
.y142{bottom:143.371733pt;}
.y2fa{bottom:143.396933pt;}
.y104{bottom:143.407333pt;}
.y336{bottom:143.447333pt;}
.yf4{bottom:143.548000pt;}
.y167{bottom:143.634133pt;}
.y237{bottom:144.289200pt;}
.y18b{bottom:144.541200pt;}
.y7d{bottom:144.793067pt;}
.y2c5{bottom:144.843467pt;}
.y9e{bottom:144.883467pt;}
.y21c{bottom:145.171067pt;}
.y315{bottom:145.397867pt;}
.y17{bottom:145.628267pt;}
.y279{bottom:145.677200pt;}
.y12f{bottom:145.812933pt;}
.y111{bottom:146.231600pt;}
.y28e{bottom:146.254533pt;}
.y1c6{bottom:146.697733pt;}
.y3b{bottom:146.796800pt;}
.ybc{bottom:147.286400pt;}
.y1af{bottom:147.384533pt;}
.y362{bottom:148.075067pt;}
.y1f9{bottom:149.530133pt;}
.y2ac{bottom:150.368000pt;}
.y33a{bottom:152.526800pt;}
.y38f{bottom:153.513867pt;}
.y375{bottom:153.526800pt;}
.y2d7{bottom:155.980533pt;}
.y141{bottom:156.171733pt;}
.y335{bottom:156.247333pt;}
.yf3{bottom:156.348000pt;}
.y166{bottom:156.434133pt;}
.y236{bottom:157.089200pt;}
.y18a{bottom:157.341200pt;}
.y7c{bottom:157.593067pt;}
.y2c4{bottom:157.643467pt;}
.y9d{bottom:157.683467pt;}
.y21b{bottom:157.971067pt;}
.ydf{bottom:158.180533pt;}
.y33e{bottom:158.193467pt;}
.y314{bottom:158.197867pt;}
.y16{bottom:158.424267pt;}
.y278{bottom:158.477200pt;}
.y12e{bottom:158.612933pt;}
.y28d{bottom:159.054533pt;}
.y1c5{bottom:159.497733pt;}
.ybb{bottom:160.086400pt;}
.y1ae{bottom:160.184533pt;}
.y1f8{bottom:162.330133pt;}
.y3a{bottom:162.796800pt;}
.y361{bottom:164.075067pt;}
.y2f9{bottom:168.526800pt;}
.y2d6{bottom:168.780533pt;}
.y140{bottom:168.971733pt;}
.yf2{bottom:169.148000pt;}
.y165{bottom:169.234133pt;}
.y38e{bottom:169.513867pt;}
.y374{bottom:169.526800pt;}
.y235{bottom:169.889200pt;}
.y189{bottom:170.141200pt;}
.y7b{bottom:170.393067pt;}
.y2c3{bottom:170.443467pt;}
.y9c{bottom:170.483467pt;}
.y21a{bottom:170.771067pt;}
.y313{bottom:170.997867pt;}
.y277{bottom:171.277200pt;}
.y12d{bottom:171.412933pt;}
.y28c{bottom:171.854533pt;}
.y1c4{bottom:172.297733pt;}
.yba{bottom:172.886400pt;}
.y1ad{bottom:172.984533pt;}
.y2ab{bottom:173.928000pt;}
.yde{bottom:174.180533pt;}
.y103{bottom:174.188267pt;}
.y33d{bottom:174.193467pt;}
.y1f7{bottom:175.130133pt;}
.y360{bottom:180.075067pt;}
.y2d5{bottom:181.580533pt;}
.y13f{bottom:181.771733pt;}
.yf1{bottom:181.948000pt;}
.y164{bottom:182.034133pt;}
.y234{bottom:182.689200pt;}
.y188{bottom:182.941200pt;}
.y7a{bottom:183.193067pt;}
.y2c2{bottom:183.243467pt;}
.y334{bottom:183.280133pt;}
.y9b{bottom:183.283467pt;}
.y219{bottom:183.571067pt;}
.y276{bottom:184.077200pt;}
.y12c{bottom:184.212933pt;}
.y110{bottom:184.393467pt;}
.y39{bottom:184.463467pt;}
.y2f8{bottom:184.526800pt;}
.y28b{bottom:184.654533pt;}
.y1c3{bottom:185.097733pt;}
.y38d{bottom:185.513867pt;}
.y373{bottom:185.526800pt;}
.yb9{bottom:185.686400pt;}
.y1ac{bottom:185.784533pt;}
.y1f6{bottom:187.930133pt;}
.y2aa{bottom:189.928000pt;}
.ydd{bottom:190.180533pt;}
.y102{bottom:190.193467pt;}
.y13e{bottom:194.571733pt;}
.y163{bottom:194.834133pt;}
.y5b{bottom:194.860133pt;}
.y233{bottom:195.489200pt;}
.y187{bottom:195.741200pt;}
.y79{bottom:195.993067pt;}
.y2c1{bottom:196.043467pt;}
.y35f{bottom:196.075067pt;}
.y9a{bottom:196.083467pt;}
.y218{bottom:196.371067pt;}
.y275{bottom:196.877200pt;}
.y28a{bottom:197.454533pt;}
.y1c2{bottom:197.897733pt;}
.yb8{bottom:198.486400pt;}
.y1ab{bottom:198.584533pt;}
.y333{bottom:199.280133pt;}
.y2f7{bottom:200.260133pt;}
.y10f{bottom:200.393467pt;}
.y38{bottom:200.463467pt;}
.y339{bottom:200.526800pt;}
.y1f5{bottom:200.730133pt;}
.y38c{bottom:201.513867pt;}
.y372{bottom:201.526800pt;}
.y15{bottom:202.170400pt;}
.ydc{bottom:206.180533pt;}
.yf0{bottom:206.190933pt;}
.y101{bottom:206.193467pt;}
.y13d{bottom:207.371733pt;}
.y162{bottom:207.634133pt;}
.y232{bottom:208.289200pt;}
.y186{bottom:208.541200pt;}
.y78{bottom:208.793067pt;}
.y2c0{bottom:208.843467pt;}
.y99{bottom:208.883467pt;}
.y217{bottom:209.171067pt;}
.y289{bottom:210.254533pt;}
.y1c1{bottom:210.697733pt;}
.y5a{bottom:210.860133pt;}
.yb7{bottom:211.286400pt;}
.y35e{bottom:212.075067pt;}
.y1f4{bottom:213.530133pt;}
.y12b{bottom:215.658267pt;}
.y2f6{bottom:215.993467pt;}
.y10e{bottom:216.393467pt;}
.y37{bottom:216.463467pt;}
.y338{bottom:216.526800pt;}
.y14{bottom:216.570400pt;}
.y38b{bottom:217.513867pt;}
.y371{bottom:217.526800pt;}
.y13c{bottom:220.171733pt;}
.y161{bottom:220.434133pt;}
.y332{bottom:220.946800pt;}
.y231{bottom:221.089200pt;}
.y185{bottom:221.341200pt;}
.y2bf{bottom:221.643467pt;}
.y98{bottom:221.683467pt;}
.ydb{bottom:222.180533pt;}
.yef{bottom:222.190933pt;}
.y100{bottom:222.193467pt;}
.y2a9{bottom:222.941333pt;}
.y288{bottom:223.054533pt;}
.y1c0{bottom:223.497733pt;}
.yb6{bottom:224.086400pt;}
.y1f3{bottom:226.330133pt;}
.y59{bottom:226.860133pt;}
.y274{bottom:226.967467pt;}
.y35d{bottom:228.075067pt;}
.y2d4{bottom:228.158933pt;}
.y13{bottom:230.970400pt;}
.y2f5{bottom:231.726800pt;}
.y10d{bottom:232.393467pt;}
.y12a{bottom:232.492400pt;}
.y346{bottom:232.526800pt;}
.y13b{bottom:232.971733pt;}
.y160{bottom:233.234133pt;}
.y38a{bottom:233.513867pt;}
.y370{bottom:233.526800pt;}
.y230{bottom:233.889200pt;}
.y184{bottom:234.141200pt;}
.y2be{bottom:234.443467pt;}
.y97{bottom:234.483467pt;}
.y287{bottom:235.854533pt;}
.y1bf{bottom:236.297733pt;}
.yb5{bottom:236.886400pt;}
.y312{bottom:237.486667pt;}
.y36{bottom:238.130133pt;}
.yda{bottom:238.180533pt;}
.yee{bottom:238.190933pt;}
.yff{bottom:238.193467pt;}
.y2a8{bottom:238.941333pt;}
.y1f2{bottom:239.130133pt;}
.y58{bottom:242.860133pt;}
.y273{bottom:242.967467pt;}
.y77{bottom:243.069733pt;}
.y216{bottom:243.759467pt;}
.y35c{bottom:244.075067pt;}
.y2d3{bottom:244.158933pt;}
.y12{bottom:245.370400pt;}
.y253{bottom:245.480533pt;}
.y15f{bottom:246.034133pt;}
.y22f{bottom:246.689200pt;}
.y183{bottom:246.941200pt;}
.y2f4{bottom:247.193467pt;}
.y2bd{bottom:247.243467pt;}
.y129{bottom:247.612400pt;}
.y10c{bottom:248.393467pt;}
.y345{bottom:248.526800pt;}
.y286{bottom:248.654533pt;}
.y1be{bottom:249.097733pt;}
.y389{bottom:249.513867pt;}
.y36f{bottom:249.526800pt;}
.yb4{bottom:249.686400pt;}
.y1f1{bottom:251.930133pt;}
.y311{bottom:253.486667pt;}
.yd9{bottom:254.180533pt;}
.yed{bottom:254.190933pt;}
.yfe{bottom:254.193467pt;}
.y2a7{bottom:254.941333pt;}
.y15e{bottom:258.834133pt;}
.y57{bottom:258.860133pt;}
.y272{bottom:258.967467pt;}
.y76{bottom:259.069733pt;}
.y22e{bottom:259.489200pt;}
.y182{bottom:259.741200pt;}
.y215{bottom:259.759467pt;}
.y11{bottom:259.770400pt;}
.y2bc{bottom:260.043467pt;}
.y35b{bottom:260.075067pt;}
.y2d2{bottom:260.158933pt;}
.y285{bottom:261.454533pt;}
.y252{bottom:261.480533pt;}
.y1e4{bottom:261.852000pt;}
.y1bd{bottom:261.897733pt;}
.y2f3{bottom:262.660133pt;}
.y128{bottom:262.732400pt;}
.y1aa{bottom:262.819200pt;}
.y10b{bottom:264.393467pt;}
.y96{bottom:264.521600pt;}
.y344{bottom:264.526800pt;}
.y1f0{bottom:264.730133pt;}
.y388{bottom:265.513867pt;}
.y36e{bottom:265.526800pt;}
.y310{bottom:269.486667pt;}
.yd8{bottom:270.180533pt;}
.yec{bottom:270.190933pt;}
.yfd{bottom:270.193467pt;}
.y2a6{bottom:270.941333pt;}
.y15d{bottom:271.634133pt;}
.y22d{bottom:272.289200pt;}
.y181{bottom:272.541200pt;}
.y2bb{bottom:272.843467pt;}
.y10{bottom:274.170400pt;}
.y284{bottom:274.254533pt;}
.y1bc{bottom:274.697733pt;}
.y331{bottom:274.746800pt;}
.y56{bottom:274.860133pt;}
.y271{bottom:274.967467pt;}
.y75{bottom:275.069733pt;}
.y214{bottom:275.759467pt;}
.y35a{bottom:276.075067pt;}
.y2d1{bottom:276.158933pt;}
.y251{bottom:277.480533pt;}
.y1e3{bottom:277.852000pt;}
.y127{bottom:277.852400pt;}
.y2f2{bottom:278.126800pt;}
.y1a9{bottom:279.670400pt;}
.y10a{bottom:280.393467pt;}
.y95{bottom:280.521600pt;}
.y343{bottom:280.526800pt;}
.y387{bottom:281.513867pt;}
.y36d{bottom:281.526800pt;}
.y13a{bottom:284.326800pt;}
.y15c{bottom:284.434133pt;}
.y22c{bottom:285.089200pt;}
.y180{bottom:285.341200pt;}
.y30f{bottom:285.486667pt;}
.y2ba{bottom:285.643467pt;}
.yd7{bottom:286.180533pt;}
.yeb{bottom:286.190933pt;}
.yfc{bottom:286.193467pt;}
.y2a5{bottom:286.941333pt;}
.y283{bottom:287.054533pt;}
.y1bb{bottom:287.497733pt;}
.yf{bottom:288.570400pt;}
.y35{bottom:290.031333pt;}
.y330{bottom:290.746800pt;}
.y55{bottom:290.860133pt;}
.y270{bottom:290.967467pt;}
.y74{bottom:291.069733pt;}
.y213{bottom:291.762133pt;}
.y33c{bottom:291.860133pt;}
.y359{bottom:292.075067pt;}
.y2d0{bottom:292.158933pt;}
.y126{bottom:292.972400pt;}
.y250{bottom:293.480533pt;}
.y2f1{bottom:293.593467pt;}
.y1e2{bottom:293.852000pt;}
.y1a8{bottom:294.790400pt;}
.y109{bottom:296.393467pt;}
.y94{bottom:296.521600pt;}
.y342{bottom:296.526800pt;}
.y15b{bottom:297.234133pt;}
.y386{bottom:297.513867pt;}
.y36c{bottom:297.526800pt;}
.y22b{bottom:297.889200pt;}
.y17f{bottom:298.141200pt;}
.y2b9{bottom:298.443467pt;}
.y282{bottom:299.854533pt;}
.y1ba{bottom:300.297733pt;}
.y139{bottom:300.593467pt;}
.y30e{bottom:301.486667pt;}
.yd6{bottom:302.180533pt;}
.y2c7{bottom:302.188267pt;}
.yea{bottom:302.190933pt;}
.yfb{bottom:302.193467pt;}
.y2a4{bottom:302.941333pt;}
.ye{bottom:302.970400pt;}
.y34{bottom:304.431333pt;}
.y32f{bottom:306.746800pt;}
.y54{bottom:306.860133pt;}
.y26f{bottom:306.967467pt;}
.y73{bottom:307.069733pt;}
.yb3{bottom:307.860133pt;}
.y212{bottom:308.028800pt;}
.y358{bottom:308.075067pt;}
.y125{bottom:308.092400pt;}
.y2cf{bottom:308.158933pt;}
.y2f0{bottom:309.060133pt;}
.y24f{bottom:309.480533pt;}
.y1e1{bottom:309.852000pt;}
.y1a7{bottom:309.910400pt;}
.y22a{bottom:310.689200pt;}
.y17e{bottom:310.941200pt;}
.y2b8{bottom:311.243467pt;}
.y108{bottom:312.393467pt;}
.y341{bottom:312.526800pt;}
.y281{bottom:312.654533pt;}
.y1b9{bottom:313.097733pt;}
.y385{bottom:313.513867pt;}
.y36b{bottom:313.526800pt;}
.y138{bottom:316.860133pt;}
.yd{bottom:317.370400pt;}
.y30d{bottom:317.486667pt;}
.yd5{bottom:318.180533pt;}
.y93{bottom:318.188267pt;}
.ye9{bottom:318.190933pt;}
.yfa{bottom:318.193467pt;}
.y33{bottom:318.831333pt;}
.y2a3{bottom:318.941333pt;}
.y32e{bottom:322.746800pt;}
.y53{bottom:322.860133pt;}
.y26e{bottom:322.967467pt;}
.y124{bottom:323.212400pt;}
.y229{bottom:323.489200pt;}
.y17d{bottom:323.741200pt;}
.yb2{bottom:323.860133pt;}
.y2b7{bottom:324.043467pt;}
.y357{bottom:324.075067pt;}
.y2ce{bottom:324.158933pt;}
.y211{bottom:324.295467pt;}
.y2ef{bottom:324.526800pt;}
.y1a6{bottom:325.030400pt;}
.y280{bottom:325.454533pt;}
.y24e{bottom:325.480533pt;}
.y15a{bottom:325.780533pt;}
.y1e0{bottom:325.852000pt;}
.y340{bottom:328.526800pt;}
.y72{bottom:328.736400pt;}
.y384{bottom:329.513867pt;}
.y36a{bottom:329.526800pt;}
.yc{bottom:331.770400pt;}
.y137{bottom:333.126800pt;}
.y32{bottom:333.231333pt;}
.y30c{bottom:333.486667pt;}
.y107{bottom:334.060133pt;}
.yd4{bottom:334.180533pt;}
.y92{bottom:334.188267pt;}
.ye8{bottom:334.190933pt;}
.yf9{bottom:334.193467pt;}
.y2a2{bottom:334.941333pt;}
.y228{bottom:336.289200pt;}
.y17c{bottom:336.541200pt;}
.y2b6{bottom:336.843467pt;}
.y27f{bottom:338.254533pt;}
.y123{bottom:338.332400pt;}
.y32d{bottom:338.746800pt;}
.y52{bottom:338.860133pt;}
.yb1{bottom:339.860133pt;}
.y2ee{bottom:339.993467pt;}
.y356{bottom:340.075067pt;}
.y1a5{bottom:340.150400pt;}
.y2cd{bottom:340.158933pt;}
.y210{bottom:340.562133pt;}
.y24d{bottom:341.480533pt;}
.y159{bottom:341.780533pt;}
.y1df{bottom:341.852000pt;}
.y26d{bottom:344.634133pt;}
.y71{bottom:344.736400pt;}
.y383{bottom:345.513867pt;}
.y369{bottom:345.526800pt;}
.yb{bottom:346.170400pt;}
.y31{bottom:347.631333pt;}
.y227{bottom:349.089200pt;}
.y136{bottom:349.393467pt;}
.y30b{bottom:349.486667pt;}
.y2b5{bottom:349.643467pt;}
.y106{bottom:350.060133pt;}
.yd3{bottom:350.180533pt;}
.y91{bottom:350.190933pt;}
.yf8{bottom:350.193467pt;}
.y2a1{bottom:350.941333pt;}
.y27e{bottom:351.054533pt;}
.y1ef{bottom:351.533333pt;}
.y122{bottom:353.452400pt;}
.y32c{bottom:354.746800pt;}
.y1a4{bottom:355.270400pt;}
.y2ed{bottom:355.460133pt;}
.yb0{bottom:355.860133pt;}
.y355{bottom:356.075067pt;}
.y2cc{bottom:356.158933pt;}
.y24c{bottom:357.480533pt;}
.y158{bottom:357.780533pt;}
.y1de{bottom:357.852000pt;}
.y51{bottom:360.526800pt;}
.ya{bottom:360.570400pt;}
.y26c{bottom:360.634133pt;}
.y70{bottom:360.736400pt;}
.y382{bottom:361.513867pt;}
.y368{bottom:361.526800pt;}
.y226{bottom:361.889200pt;}
.y30{bottom:362.031333pt;}
.y2b4{bottom:362.443467pt;}
.y20f{bottom:362.495467pt;}
.y27d{bottom:363.854533pt;}
.y30a{bottom:365.486667pt;}
.y135{bottom:365.660133pt;}
.y1b8{bottom:366.060133pt;}
.y90{bottom:366.190933pt;}
.yf7{bottom:366.193467pt;}
.y2a0{bottom:366.941333pt;}
.y1ee{bottom:367.533333pt;}
.y17b{bottom:367.777867pt;}
.y121{bottom:368.572400pt;}
.y1a3{bottom:370.390400pt;}
.y32b{bottom:370.746800pt;}
.y2ec{bottom:370.926800pt;}
.yd2{bottom:371.847200pt;}
.yaf{bottom:371.860133pt;}
.y354{bottom:372.075067pt;}
.y24b{bottom:373.480533pt;}
.y157{bottom:373.780533pt;}
.y1dd{bottom:373.852000pt;}
.y225{bottom:374.689200pt;}
.y9{bottom:374.970400pt;}
.y2b3{bottom:375.243467pt;}
.y2f{bottom:376.431333pt;}
.y50{bottom:376.526800pt;}
.y26b{bottom:376.634133pt;}
.y27c{bottom:376.654533pt;}
.y6f{bottom:376.736400pt;}
.y381{bottom:377.513867pt;}
.y367{bottom:377.526800pt;}
.y20e{bottom:378.762133pt;}
.y2cb{bottom:379.718933pt;}
.y309{bottom:381.486667pt;}
.y134{bottom:381.926800pt;}
.y1b7{bottom:382.060133pt;}
.y8f{bottom:382.190933pt;}
.yf6{bottom:382.193467pt;}
.y17a{bottom:383.511200pt;}
.y1ed{bottom:383.533333pt;}
.y120{bottom:383.692400pt;}
.y1a2{bottom:385.510400pt;}
.y2eb{bottom:386.393467pt;}
.y32a{bottom:386.746800pt;}
.y224{bottom:387.489200pt;}
.yd1{bottom:387.847200pt;}
.yae{bottom:387.860133pt;}
.y2b2{bottom:388.043467pt;}
.y353{bottom:388.075067pt;}
.y27b{bottom:389.454533pt;}
.y156{bottom:389.780533pt;}
.y1dc{bottom:389.852000pt;}
.y2e{bottom:390.831333pt;}
.y4f{bottom:392.526800pt;}
.y26a{bottom:392.634133pt;}
.y6e{bottom:392.736400pt;}
.y380{bottom:393.513867pt;}
.y366{bottom:393.526800pt;}
.y20d{bottom:395.028800pt;}
.y2ca{bottom:395.718933pt;}
.y308{bottom:397.486667pt;}
.y29f{bottom:398.058800pt;}
.y1b6{bottom:398.060133pt;}
.y8e{bottom:398.190933pt;}
.y133{bottom:398.193467pt;}
.y11f{bottom:398.812400pt;}
.y179{bottom:399.244533pt;}
.y1ec{bottom:399.533333pt;}
.y223{bottom:400.289200pt;}
.y1a1{bottom:400.630400pt;}
.y2b1{bottom:400.843467pt;}
.y2ea{bottom:401.860133pt;}
.y329{bottom:402.746800pt;}
.yd0{bottom:403.847200pt;}
.yad{bottom:403.860133pt;}
.y352{bottom:404.075067pt;}
.y24a{bottom:404.598667pt;}
.y2d{bottom:405.231333pt;}
.y155{bottom:405.780533pt;}
.y4e{bottom:408.526800pt;}
.y269{bottom:408.634133pt;}
.y6d{bottom:408.736400pt;}
.y37f{bottom:409.513867pt;}
.y365{bottom:409.526800pt;}
.y29e{bottom:410.858800pt;}
.y20c{bottom:411.295467pt;}
.y2c9{bottom:411.718933pt;}
.y222{bottom:413.089200pt;}
.y1db{bottom:413.412000pt;}
.y307{bottom:413.486667pt;}
.y2b0{bottom:413.643467pt;}
.y11e{bottom:413.932400pt;}
.y1b5{bottom:414.060133pt;}
.y8d{bottom:414.190933pt;}
.y132{bottom:414.193467pt;}
.y178{bottom:414.977867pt;}
.y1eb{bottom:415.533333pt;}
.y1a0{bottom:415.750400pt;}
.y2e9{bottom:417.326800pt;}
.y328{bottom:418.746800pt;}
.y2c{bottom:419.631333pt;}
.ycf{bottom:419.847200pt;}
.yac{bottom:419.860133pt;}
.y351{bottom:420.075067pt;}
.y154{bottom:421.780533pt;}
.y249{bottom:421.796267pt;}
.y4d{bottom:424.526800pt;}
.y268{bottom:424.634133pt;}
.y37e{bottom:425.513867pt;}
.y364{bottom:425.526800pt;}
.y221{bottom:425.889200pt;}
.y8{bottom:427.170400pt;}
.y20b{bottom:427.562133pt;}
.y11d{bottom:429.052400pt;}
.y19f{bottom:429.258267pt;}
.y1da{bottom:429.412000pt;}
.y306{bottom:429.486667pt;}
.y1b4{bottom:430.060133pt;}
.y8c{bottom:430.190933pt;}
.y131{bottom:430.193467pt;}
.y6c{bottom:430.408400pt;}
.y177{bottom:430.711200pt;}
.y1ea{bottom:431.533333pt;}
.y2b{bottom:434.031333pt;}
.y327{bottom:434.746800pt;}
.yce{bottom:435.847200pt;}
.ye7{bottom:435.860133pt;}
.y350{bottom:436.075067pt;}
.y248{bottom:436.917067pt;}
.y153{bottom:437.780533pt;}
.y2e8{bottom:438.460133pt;}
.y220{bottom:438.689200pt;}
.y19c{bottom:438.858267pt;}
.y2c8{bottom:439.057600pt;}
.y267{bottom:440.634133pt;}
.y37d{bottom:441.513867pt;}
.yab{bottom:441.526800pt;}
.y7{bottom:441.570400pt;}
.y29d{bottom:443.306800pt;}
.y19b{bottom:443.658267pt;}
.y20a{bottom:443.828800pt;}
.y11c{bottom:444.172400pt;}
.y1b3{bottom:446.060133pt;}
.y2af{bottom:446.188267pt;}
.y4c{bottom:446.193467pt;}
.y6b{bottom:446.408400pt;}
.y1e9{bottom:447.533333pt;}
.y2a{bottom:448.431333pt;}
.y19d{bottom:448.458267pt;}
.y326{bottom:450.746800pt;}
.y21f{bottom:451.489200pt;}
.ycd{bottom:451.847200pt;}
.y8b{bottom:451.857600pt;}
.ye6{bottom:451.860133pt;}
.y247{bottom:452.037867pt;}
.y34f{bottom:452.075067pt;}
.y176{bottom:452.111200pt;}
.y152{bottom:453.780533pt;}
.y2e7{bottom:453.926800pt;}
.y266{bottom:456.634133pt;}
.y37c{bottom:457.513867pt;}
.yaa{bottom:457.526800pt;}
.y19e{bottom:458.058267pt;}
.y11b{bottom:459.292400pt;}
.y209{bottom:460.095467pt;}
.y305{bottom:460.619333pt;}
.y1b2{bottom:462.060133pt;}
.y2ae{bottom:462.188267pt;}
.y4b{bottom:462.193467pt;}
.y6a{bottom:462.408400pt;}
.y1d9{bottom:462.425333pt;}
.y1e8{bottom:463.533333pt;}
.y21e{bottom:464.289200pt;}
.y325{bottom:466.746800pt;}
.y246{bottom:467.158667pt;}
.y175{bottom:467.844533pt;}
.ycc{bottom:467.847200pt;}
.y8a{bottom:467.857600pt;}
.ye5{bottom:467.860133pt;}
.y34e{bottom:468.075067pt;}
.y19a{bottom:468.481333pt;}
.y2e6{bottom:469.393467pt;}
.y151{bottom:469.780533pt;}
.y265{bottom:472.634133pt;}
.y37b{bottom:473.513867pt;}
.ya9{bottom:473.526800pt;}
.y11a{bottom:474.412400pt;}
.y29c{bottom:475.861467pt;}
.y208{bottom:476.362133pt;}
.y304{bottom:478.038000pt;}
.y4a{bottom:478.193467pt;}
.y69{bottom:478.408400pt;}
.y1d8{bottom:478.425333pt;}
.y1e7{bottom:479.533333pt;}
.y199{bottom:481.281333pt;}
.y245{bottom:482.279467pt;}
.y324{bottom:482.746800pt;}
.y1b1{bottom:483.726800pt;}
.y174{bottom:483.844533pt;}
.ycb{bottom:483.847200pt;}
.y89{bottom:483.857600pt;}
.ye4{bottom:483.860133pt;}
.y34d{bottom:484.075067pt;}
.y2e5{bottom:484.860133pt;}
.y150{bottom:486.047200pt;}
.y29{bottom:488.571333pt;}
.y29b{bottom:488.661467pt;}
.y37a{bottom:489.513867pt;}
.ya8{bottom:489.526800pt;}
.y119{bottom:489.532400pt;}
.y207{bottom:492.628800pt;}
.y303{bottom:493.152667pt;}
.y49{bottom:494.193467pt;}
.y68{bottom:494.408400pt;}
.y1d7{bottom:494.425333pt;}
.y1e6{bottom:495.533333pt;}
.y244{bottom:497.400267pt;}
.y323{bottom:498.746800pt;}
.y173{bottom:499.844533pt;}
.yca{bottom:499.847200pt;}
.y88{bottom:499.857600pt;}
.ye3{bottom:499.860133pt;}
.y34c{bottom:500.075067pt;}
.y2e4{bottom:500.326800pt;}
.y29a{bottom:501.461467pt;}
.y14f{bottom:502.313867pt;}
.y6{bottom:502.924800pt;}
.y28{bottom:502.971333pt;}
.y198{bottom:503.060133pt;}
.y264{bottom:503.766933pt;}
.y118{bottom:504.652400pt;}
.y379{bottom:505.513867pt;}
.ya7{bottom:505.526800pt;}
.y302{bottom:508.267333pt;}
.y206{bottom:508.895467pt;}
.y48{bottom:510.193467pt;}
.y67{bottom:510.408400pt;}
.y243{bottom:512.521067pt;}
.y322{bottom:514.746800pt;}
.y2e3{bottom:515.793467pt;}
.y172{bottom:515.844533pt;}
.yc9{bottom:515.847200pt;}
.y87{bottom:515.857600pt;}
.ye2{bottom:515.860133pt;}
.y34b{bottom:516.075067pt;}
.y27{bottom:517.371333pt;}
.y14e{bottom:518.580533pt;}
.y197{bottom:518.793467pt;}
.y263{bottom:521.185600pt;}
.y299{bottom:521.216133pt;}
.y116{bottom:521.477867pt;}
.y378{bottom:521.513867pt;}
.ya6{bottom:521.526800pt;}
.y1d6{bottom:521.764000pt;}
.y5{bottom:522.124800pt;}
.y301{bottom:523.382000pt;}
.y205{bottom:525.162133pt;}
.y47{bottom:526.193467pt;}
.y66{bottom:526.408400pt;}
.y1e5{bottom:526.651467pt;}
.y242{bottom:527.641867pt;}
.y115{bottom:527.877867pt;}
.y2e2{bottom:531.260133pt;}
.y26{bottom:531.771333pt;}
.y171{bottom:531.844533pt;}
.yc8{bottom:531.847200pt;}
.y86{bottom:531.857600pt;}
.ye1{bottom:531.860133pt;}
.y34a{bottom:532.075067pt;}
.y298{bottom:534.016133pt;}
.y117{bottom:534.277867pt;}
.y196{bottom:534.526800pt;}
.y14d{bottom:534.847200pt;}
.y262{bottom:536.214933pt;}
.y377{bottom:537.513867pt;}
.ya5{bottom:537.526800pt;}
.y300{bottom:538.496667pt;}
.y1d5{bottom:538.620800pt;}
.y4{bottom:541.324800pt;}
.y204{bottom:541.428800pt;}
.y46{bottom:542.193467pt;}
.y65{bottom:542.408400pt;}
.y241{bottom:542.762667pt;}
.y25{bottom:546.171333pt;}
.y2e1{bottom:546.726800pt;}
.y297{bottom:546.816133pt;}
.y170{bottom:547.844533pt;}
.y85{bottom:547.860133pt;}
.y349{bottom:548.075067pt;}
.y195{bottom:550.260133pt;}
.y114{bottom:550.387467pt;}
.y14c{bottom:551.113867pt;}
.y261{bottom:551.329600pt;}
.y321{bottom:552.426933pt;}
.yc7{bottom:553.513867pt;}
.ya4{bottom:553.526800pt;}
.y2ff{bottom:553.611333pt;}
.y1d4{bottom:553.740800pt;}
.y240{bottom:557.883467pt;}
.y45{bottom:558.193467pt;}
.y3{bottom:560.524800pt;}
.y24{bottom:560.571333pt;}
.y113{bottom:563.187467pt;}
.y16f{bottom:563.844533pt;}
.y84{bottom:563.860133pt;}
.y64{bottom:564.075067pt;}
.y320{bottom:565.226933pt;}
.y194{bottom:565.993467pt;}
.y260{bottom:566.444267pt;}
.y296{bottom:566.570800pt;}
.y14b{bottom:567.380533pt;}
.y2e0{bottom:567.860133pt;}
.y2fe{bottom:568.726000pt;}
.y1d3{bottom:568.860800pt;}
.yc6{bottom:569.513867pt;}
.ya3{bottom:569.526800pt;}
.y203{bottom:572.546933pt;}
.y23f{bottom:573.004267pt;}
.y44{bottom:574.193467pt;}
.y23{bottom:574.971333pt;}
.y295{bottom:579.370800pt;}
.y16e{bottom:579.847200pt;}
.y83{bottom:579.860133pt;}
.y63{bottom:580.075067pt;}
.y25f{bottom:581.558933pt;}
.y31f{bottom:582.560267pt;}
.y2fd{bottom:583.200667pt;}
.y2df{bottom:583.326800pt;}
.y14a{bottom:583.647200pt;}
.y1d2{bottom:583.980800pt;}
.yc5{bottom:585.513867pt;}
.ya2{bottom:585.526800pt;}
.y193{bottom:587.393467pt;}
.y23e{bottom:588.125067pt;}
.y22{bottom:589.371333pt;}
.y202{bottom:589.795733pt;}
.y43{bottom:590.193467pt;}
.y294{bottom:592.170800pt;}
.y16d{bottom:595.847200pt;}
.y82{bottom:595.860133pt;}
.y2fc{bottom:596.000667pt;}
.y62{bottom:596.075067pt;}
.y25e{bottom:596.673600pt;}
.y31e{bottom:597.674933pt;}
.y2de{bottom:598.793467pt;}
.y1d1{bottom:599.100800pt;}
.y201{bottom:599.395733pt;}
.y149{bottom:599.913867pt;}
.yc4{bottom:601.513867pt;}
.ya1{bottom:601.526800pt;}
.y192{bottom:603.126800pt;}
.y23d{bottom:603.245867pt;}
.y21{bottom:603.771333pt;}
.y200{bottom:610.374933pt;}
.y25d{bottom:611.788267pt;}
.y16c{bottom:611.847200pt;}
.y42{bottom:611.860133pt;}
.y293{bottom:611.925467pt;}
.y61{bottom:612.075067pt;}
.y31d{bottom:612.789600pt;}
.y1d0{bottom:614.220800pt;}
.y2dd{bottom:614.260133pt;}
.y148{bottom:616.180533pt;}
.yc3{bottom:617.513867pt;}
.ya0{bottom:617.526800pt;}
.y20{bottom:618.171333pt;}
.y23c{bottom:618.366667pt;}
.y191{bottom:618.860133pt;}
.y292{bottom:624.725467pt;}
.y1ff{bottom:625.579200pt;}
.y16b{bottom:627.847200pt;}
.y41{bottom:627.860133pt;}
.y31c{bottom:627.904267pt;}
.y60{bottom:628.075067pt;}
.y1cf{bottom:629.340800pt;}
.y2dc{bottom:629.726800pt;}
.y25a{bottom:630.128667pt;}
.y147{bottom:632.447200pt;}
.y1f{bottom:632.571333pt;}
.y25c{bottom:632.833600pt;}
.y23b{bottom:633.487467pt;}
.yc2{bottom:633.513867pt;}
.y81{bottom:633.526800pt;}
.y190{bottom:634.593467pt;}
.y291{bottom:637.525467pt;}
.y1fe{bottom:641.369200pt;}
.y259{bottom:642.128667pt;}
.y1ce{bottom:642.848667pt;}
.y31b{bottom:643.018933pt;}
.y16a{bottom:643.847200pt;}
.y40{bottom:643.860133pt;}
.y5f{bottom:644.075067pt;}
.y2db{bottom:645.193467pt;}
.y1e{bottom:646.971333pt;}
.y256{bottom:647.902000pt;}
.y23a{bottom:648.608267pt;}
.y146{bottom:648.713867pt;}
.yc1{bottom:649.513867pt;}
.y80{bottom:649.526800pt;}
.y18f{bottom:650.326800pt;}
.y1cb{bottom:652.448667pt;}
.y258{bottom:654.128667pt;}
.y1fd{bottom:657.239200pt;}
.y1ca{bottom:657.248667pt;}
.y31a{bottom:658.055467pt;}
.y169{bottom:659.847200pt;}
.y3f{bottom:659.860133pt;}
.y348{bottom:660.075067pt;}
.y25b{bottom:661.302933pt;}
.y1cc{bottom:662.048667pt;}
.y319{bottom:663.292133pt;}
.y145{bottom:664.980533pt;}
.yc0{bottom:665.513867pt;}
.y7f{bottom:665.526800pt;}
.y5e{bottom:665.741733pt;}
.y18e{bottom:666.060133pt;}
.y257{bottom:666.128667pt;}
.y239{bottom:666.246000pt;}
.y2da{bottom:666.326800pt;}
.y290{bottom:667.680133pt;}
.y1cd{bottom:671.648667pt;}
.y1fc{bottom:674.476133pt;}
.y347{bottom:676.075067pt;}
.y144{bottom:681.247200pt;}
.ybf{bottom:681.513867pt;}
.y3e{bottom:681.526800pt;}
.y5d{bottom:681.741733pt;}
.y18d{bottom:681.793467pt;}
.y1c9{bottom:682.634800pt;}
.y318{bottom:683.135333pt;}
.y255{bottom:683.198000pt;}
.y1d{bottom:684.051333pt;}
.y19{bottom:685.506944pt;}
.y1fb{bottom:693.377467pt;}
.y1c8{bottom:695.434800pt;}
.y317{bottom:695.615333pt;}
.y254{bottom:695.998000pt;}
.ybe{bottom:697.513867pt;}
.y3d{bottom:697.526800pt;}
.y5c{bottom:697.741733pt;}
.y1c{bottom:698.451333pt;}
.y2{bottom:700.669600pt;}
.hd{height:26.400000pt;}
.hc{height:26.834555pt;}
.h16{height:28.421875pt;}
.h1c{height:29.625000pt;}
.h1f{height:29.645833pt;}
.h9{height:30.800000pt;}
.h3{height:31.072000pt;}
.h1a{height:32.066723pt;}
.h1d{height:33.158854pt;}
.h6{height:33.351562pt;}
.h18{height:35.097656pt;}
.h19{height:35.527344pt;}
.h20{height:36.510417pt;}
.h2{height:36.693333pt;}
.h21{height:36.948437pt;}
.h13{height:37.031250pt;}
.h14{height:37.057292pt;}
.ha{height:37.421500pt;}
.hb{height:37.437500pt;}
.h10{height:37.895833pt;}
.h24{height:38.237167pt;}
.h1e{height:39.193096pt;}
.h8{height:42.117188pt;}
.h7{height:42.632812pt;}
.h17{height:43.016812pt;}
.hf{height:46.786208pt;}
.he{height:46.796875pt;}
.h5{height:47.369792pt;}
.h15{height:47.621875pt;}
.h1b{height:51.266190pt;}
.h4{height:56.843750pt;}
.h22{height:57.012187pt;}
.h23{height:57.903638pt;}
.h12{height:60.564721pt;}
.h11{height:63.495833pt;}
.h0{height:793.701333pt;}
.h1{height:794.000000pt;}
.w2{width:561.078181pt;}
.w1{width:566.666667pt;}
.w0{width:566.929333pt;}
.x0{left:0.000000pt;}
.xa{left:2.920000pt;}
.xb{left:77.994034pt;}
.x2{left:113.370133pt;}
.x1d{left:118.209333pt;}
.x38{left:120.072400pt;}
.x36{left:123.069733pt;}
.xf{left:125.191067pt;}
.x28{left:126.995200pt;}
.x18{left:129.415867pt;}
.x34{left:130.312400pt;}
.x3{left:131.355067pt;}
.x9{left:132.291467pt;}
.x14{left:135.079867pt;}
.x11{left:136.044800pt;}
.x1c{left:137.011867pt;}
.x31{left:138.276667pt;}
.x17{left:139.411867pt;}
.x16{left:141.067867pt;}
.x5{left:142.747067pt;}
.x29{left:143.734933pt;}
.x15{left:144.739867pt;}
.x1a{left:146.095867pt;}
.x19{left:148.927867pt;}
.xc{left:151.185867pt;}
.x1b{left:153.751867pt;}
.x37{left:159.069733pt;}
.x2b{left:169.328133pt;}
.x4{left:179.195067pt;}
.x39{left:183.389733pt;}
.x3a{left:194.037600pt;}
.x2d{left:200.997467pt;}
.x33{left:206.877733pt;}
.x7{left:208.634400pt;}
.x2c{left:210.997467pt;}
.x2f{left:212.667467pt;}
.x2e{left:218.227467pt;}
.x8{left:227.468400pt;}
.x1f{left:241.448933pt;}
.x6{left:246.027067pt;}
.x32{left:247.059067pt;}
.x2a{left:251.248533pt;}
.x1e{left:253.249333pt;}
.x1{left:269.020933pt;}
.x10{left:270.023067pt;}
.x3b{left:272.213467pt;}
.x20{left:294.368933pt;}
.x21{left:299.776933pt;}
.x30{left:303.802000pt;}
.xe{left:309.052533pt;}
.x35{left:312.499067pt;}
.x13{left:319.436800pt;}
.x12{left:326.412800pt;}
.x23{left:349.720933pt;}
.xd{left:353.131733pt;}
.x22{left:354.832933pt;}
.x27{left:398.256933pt;}
.x25{left:403.960933pt;}
.x24{left:408.816933pt;}
.x26{left:411.192933pt;}
}




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