
    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_c546d61db68f4a9dc05377d4.woff')format("woff");}.ff1{font-family:ff1;line-height:0.986816;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_55407482894a726fb21f4ed5.woff')format("woff");}.ff2{font-family:ff2;line-height:0.856445;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_3758fd8860ce4b154c4a33ed.woff')format("woff");}.ff3{font-family:ff3;line-height:0.975098;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_17dae7c1ef565ebcc472c843.woff')format("woff");}.ff4{font-family:ff4;line-height:0.986816;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_323eb8d58e2157b29e025bf1.woff')format("woff");}.ff5{font-family:ff5;line-height:0.724121;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_d3429c3a0beee31009bda2a8.woff')format("woff");}.ff6{font-family:ff6;line-height:1.092773;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_7d5b59e72eab488bd7e19ad6.woff')format("woff");}.ff7{font-family:ff7;line-height:1.160156;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_f93bf5a7f42938f10aa0de14.woff')format("woff");}.ff8{font-family:ff8;line-height:0.982910;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_dd203b64950d67dfa778b610.woff')format("woff");}.ff9{font-family:ff9;line-height:0.982910;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_dd3d48a82b43075067afe484.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_ab3b0b1745c5cfcc25f1b556.woff')format("woff");}.ffb{font-family:ffb;line-height:0.975098;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_80fea36f27fe322ea380cedf.woff')format("woff");}.ffc{font-family:ffc;line-height:0.764160;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;}
.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);}
.m2{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:36.000000px;}
.ls8{letter-spacing:-4.800000px;}
.ls7{letter-spacing:-3.960000px;}
.ls5{letter-spacing:-1.800000px;}
.ls4{letter-spacing:-1.500000px;}
.ls3{letter-spacing:-1.200000px;}
.ls2{letter-spacing:-0.600000px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:1.330800px;}
.ls0{letter-spacing:17.172000px;}
.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;}
}
.ws0{word-spacing:-18.216000px;}
.ws62{word-spacing:-18.084000px;}
.ws27{word-spacing:-16.440000px;}
.ws1{word-spacing:-14.904000px;}
.ws2{word-spacing:-14.796000px;}
.ws26{word-spacing:-12.480000px;}
.ws70{word-spacing:-9.966000px;}
.ws4c{word-spacing:-9.438000px;}
.ws2c{word-spacing:-9.300000px;}
.ws1d{word-spacing:-5.700000px;}
.ws21{word-spacing:-5.220000px;}
.ws9e{word-spacing:-5.160000px;}
.ws81{word-spacing:-5.082000px;}
.ws56{word-spacing:-5.016000px;}
.ws47{word-spacing:-4.092000px;}
.ws8b{word-spacing:-4.026000px;}
.ws4{word-spacing:-3.828000px;}
.ws85{word-spacing:-3.696000px;}
.ws94{word-spacing:-3.180000px;}
.ws6e{word-spacing:-3.102000px;}
.ws6c{word-spacing:-2.904000px;}
.ws16{word-spacing:-2.574000px;}
.ws1f{word-spacing:-1.680000px;}
.ws35{word-spacing:-1.620000px;}
.ws6f{word-spacing:-1.584000px;}
.ws31{word-spacing:-1.500000px;}
.ws13{word-spacing:-1.188000px;}
.ws75{word-spacing:-0.528000px;}
.ws58{word-spacing:-0.330000px;}
.ws3{word-spacing:0.000000px;}
.ws66{word-spacing:0.396000px;}
.wsc{word-spacing:0.432000px;}
.ws1c{word-spacing:0.600000px;}
.ws73{word-spacing:0.726000px;}
.ws97{word-spacing:0.840000px;}
.ws1e{word-spacing:1.200000px;}
.ws52{word-spacing:1.254000px;}
.ws37{word-spacing:1.260000px;}
.ws49{word-spacing:1.320000px;}
.ws20{word-spacing:1.500000px;}
.ws8{word-spacing:1.716000px;}
.ws23{word-spacing:1.740000px;}
.ws22{word-spacing:1.800000px;}
.ws55{word-spacing:2.046000px;}
.ws71{word-spacing:2.310000px;}
.ws5f{word-spacing:2.376000px;}
.ws80{word-spacing:2.442000px;}
.ws40{word-spacing:2.706000px;}
.ws46{word-spacing:2.772000px;}
.ws7{word-spacing:3.036000px;}
.ws6{word-spacing:3.102000px;}
.ws5d{word-spacing:3.564000px;}
.ws74{word-spacing:3.696000px;}
.ws88{word-spacing:3.894000px;}
.ws3a{word-spacing:3.900000px;}
.ws5{word-spacing:4.158000px;}
.ws78{word-spacing:4.224000px;}
.ws76{word-spacing:4.356000px;}
.ws3c{word-spacing:4.380000px;}
.ws44{word-spacing:4.422000px;}
.ws59{word-spacing:4.620000px;}
.wsb{word-spacing:4.686000px;}
.ws4b{word-spacing:4.752000px;}
.ws32{word-spacing:4.800000px;}
.ws9b{word-spacing:5.040000px;}
.ws9{word-spacing:5.082000px;}
.ws53{word-spacing:5.346000px;}
.ws9f{word-spacing:5.400000px;}
.ws63{word-spacing:5.544000px;}
.ws3d{word-spacing:6.180000px;}
.ws36{word-spacing:6.300000px;}
.ws38{word-spacing:6.720000px;}
.ws7c{word-spacing:6.930000px;}
.ws96{word-spacing:7.080000px;}
.ws79{word-spacing:7.128000px;}
.ws4a{word-spacing:7.326000px;}
.ws41{word-spacing:7.392000px;}
.ws6b{word-spacing:7.458000px;}
.ws2e{word-spacing:7.860000px;}
.ws3b{word-spacing:8.100000px;}
.wsa{word-spacing:8.316000px;}
.ws19{word-spacing:8.514000px;}
.ws45{word-spacing:8.976000px;}
.ws30{word-spacing:9.240000px;}
.ws39{word-spacing:9.360000px;}
.ws3f{word-spacing:10.260000px;}
.ws6d{word-spacing:10.428000px;}
.ws42{word-spacing:10.890000px;}
.ws2a{word-spacing:11.160000px;}
.ws12{word-spacing:11.616000px;}
.ws93{word-spacing:11.640000px;}
.ws6a{word-spacing:12.012000px;}
.ws15{word-spacing:12.540000px;}
.ws64{word-spacing:12.672000px;}
.ws8f{word-spacing:12.780000px;}
.ws72{word-spacing:13.200000px;}
.ws7b{word-spacing:13.266000px;}
.ws18{word-spacing:13.332000px;}
.ws83{word-spacing:13.662000px;}
.ws84{word-spacing:13.794000px;}
.ws51{word-spacing:13.992000px;}
.ws2b{word-spacing:14.760000px;}
.ws60{word-spacing:14.850000px;}
.ws7e{word-spacing:14.916000px;}
.ws7a{word-spacing:15.114000px;}
.ws8e{word-spacing:15.360000px;}
.ws8a{word-spacing:16.038000px;}
.ws48{word-spacing:16.104000px;}
.ws5b{word-spacing:16.236000px;}
.ws4f{word-spacing:16.368000px;}
.ws67{word-spacing:16.566000px;}
.ws98{word-spacing:17.040000px;}
.ws10{word-spacing:17.160000px;}
.ws5a{word-spacing:17.358000px;}
.ws69{word-spacing:17.886000px;}
.ws92{word-spacing:18.960000px;}
.ws82{word-spacing:19.800000px;}
.ws9a{word-spacing:19.920000px;}
.ws14{word-spacing:20.328000px;}
.ws2d{word-spacing:20.580000px;}
.ws2f{word-spacing:20.880000px;}
.ws89{word-spacing:22.440000px;}
.ws1a{word-spacing:25.344000px;}
.ws99{word-spacing:25.860000px;}
.ws68{word-spacing:25.872000px;}
.ws91{word-spacing:26.160000px;}
.ws57{word-spacing:26.202000px;}
.ws50{word-spacing:26.268000px;}
.ws43{word-spacing:26.400000px;}
.ws61{word-spacing:26.994000px;}
.ws3e{word-spacing:27.120000px;}
.ws1b{word-spacing:27.126000px;}
.ws11{word-spacing:27.522000px;}
.ws65{word-spacing:27.654000px;}
.ws9d{word-spacing:29.640000px;}
.ws7f{word-spacing:29.964000px;}
.ws54{word-spacing:31.086000px;}
.ws86{word-spacing:31.812000px;}
.ws4d{word-spacing:32.934000px;}
.ws4e{word-spacing:33.792000px;}
.ws87{word-spacing:34.188000px;}
.ws8d{word-spacing:35.580000px;}
.ws5e{word-spacing:37.224000px;}
.ws17{word-spacing:38.148000px;}
.ws90{word-spacing:38.280000px;}
.ws8c{word-spacing:44.580000px;}
.ws77{word-spacing:46.068000px;}
.ws24{word-spacing:54.180000px;}
.ws95{word-spacing:62.400000px;}
.ws7d{word-spacing:72.996000px;}
.ws9c{word-spacing:73.200000px;}
.ws5c{word-spacing:77.616000px;}
.ws25{word-spacing:101.148000px;}
.wsf{word-spacing:125.106000px;}
.ws29{word-spacing:167.100000px;}
.ws28{word-spacing:250.380000px;}
.ws33{word-spacing:427.740000px;}
.wsd{word-spacing:492.480000px;}
.wse{word-spacing:692.700000px;}
.ws34{word-spacing:901.140000px;}
._11{margin-left:-65.664000px;}
._2a{margin-left:-14.538000px;}
._14{margin-left:-10.032000px;}
._10{margin-left:-8.456283px;}
._c{margin-left:-7.105800px;}
._4{margin-left:-5.904000px;}
._9{margin-left:-4.560600px;}
._0{margin-left:-3.486000px;}
._6{margin-left:-1.632000px;}
._1{width:1.587241px;}
._a{width:3.181200px;}
._b{width:4.463400px;}
._d{width:5.566800px;}
._12{width:6.745200px;}
._15{width:7.933200px;}
._23{width:9.240000px;}
._16{width:10.581600px;}
._e{width:11.734800px;}
._f{width:12.814200px;}
._13{width:14.064600px;}
._35{width:15.090000px;}
._3a{width:16.405200px;}
._22{width:17.778157px;}
._8{width:19.440000px;}
._3c{width:20.447400px;}
._7{width:21.696000px;}
._32{width:23.046000px;}
._5{width:24.576000px;}
._2c{width:26.322000px;}
._3f{width:27.759600px;}
._19{width:28.802400px;}
._1a{width:29.818800px;}
._3b{width:31.944000px;}
._1b{width:33.422400px;}
._40{width:34.577400px;}
._43{width:35.779800px;}
._38{width:37.078800px;}
._39{width:38.082000px;}
._1d{width:40.099800px;}
._1c{width:41.441400px;}
._18{width:42.985800px;}
._45{width:44.030400px;}
._44{width:45.942000px;}
._42{width:47.001000px;}
._41{width:48.421800px;}
._3e{width:50.371200px;}
._3d{width:52.179600px;}
._17{width:63.756000px;}
._20{width:100.500000px;}
._21{width:105.840000px;}
._1e{width:109.632000px;}
._2e{width:134.038800px;}
._2{width:153.107843px;}
._26{width:181.740000px;}
._3{width:183.490826px;}
._28{width:202.872000px;}
._1f{width:213.146283px;}
._2f{width:431.892000px;}
._25{width:509.084759px;}
._34{width:516.384000px;}
._36{width:529.704000px;}
._29{width:585.538800px;}
._31{width:723.072000px;}
._37{width:739.992000px;}
._27{width:790.020000px;}
._33{width:823.284600px;}
._30{width:946.764000px;}
._2b{width:955.284000px;}
._2d{width:992.172000px;}
._24{width:1106.484000px;}
.fc4{color:transparent;}
.fc2{color:rgb(54,108,190);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs2{font-size:62.872800px;}
.fs8{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs7{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.fs0{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y42{bottom:56.880900px;}
.y41{bottom:73.080900px;}
.y3{bottom:81.772500px;}
.y131{bottom:109.611150px;}
.y130{bottom:127.611150px;}
.y344{bottom:134.154900px;}
.y2f1{bottom:134.169900px;}
.y1b3{bottom:135.440400px;}
.y227{bottom:138.641400px;}
.y185{bottom:139.400400px;}
.y1df{bottom:139.515900px;}
.y255{bottom:144.605400px;}
.y288{bottom:146.499900px;}
.y2bb{bottom:146.544900px;}
.y12f{bottom:147.036150px;}
.y20a{bottom:147.287400px;}
.yfb{bottom:147.931500px;}
.y15c{bottom:149.635950px;}
.y310{bottom:152.874900px;}
.y343{bottom:152.904900px;}
.y2f0{bottom:152.919900px;}
.y8c{bottom:157.613550px;}
.y226{bottom:159.645900px;}
.y184{bottom:160.404900px;}
.y1de{bottom:160.520400px;}
.y254{bottom:163.355400px;}
.y12e{bottom:165.036150px;}
.y287{bottom:165.249900px;}
.y2ba{bottom:165.294900px;}
.yfa{bottom:165.931500px;}
.y15b{bottom:167.635950px;}
.y209{bottom:168.291900px;}
.y2c9{bottom:171.624900px;}
.y2ef{bottom:171.669900px;}
.y1b2{bottom:173.456400px;}
.y342{bottom:178.029900px;}
.yc2{bottom:179.859750px;}
.y183{bottom:181.409400px;}
.y1dd{bottom:181.524900px;}
.y253{bottom:182.105400px;}
.y12d{bottom:183.036150px;}
.yf9{bottom:183.931500px;}
.y8b{bottom:187.613550px;}
.y225{bottom:189.147900px;}
.y286{bottom:190.374900px;}
.y2b9{bottom:190.419900px;}
.y1b1{bottom:194.460900px;}
.y341{bottom:196.779900px;}
.y2ee{bottom:196.794900px;}
.y15a{bottom:197.185950px;}
.yc1{bottom:197.859750px;}
.yf8{bottom:201.931500px;}
.y182{bottom:202.413900px;}
.y1dc{bottom:202.529400px;}
.y8a{bottom:205.613550px;}
.y208{bottom:206.307900px;}
.y12c{bottom:206.961150px;}
.y252{bottom:207.230400px;}
.y285{bottom:209.124900px;}
.y2b8{bottom:209.169900px;}
.y224{bottom:210.152400px;}
.y27{bottom:214.979400px;}
.y159{bottom:215.185950px;}
.y1b0{bottom:215.465400px;}
.y340{bottom:215.529900px;}
.y2ed{bottom:215.544900px;}
.y181{bottom:223.418400px;}
.y1db{bottom:223.533900px;}
.y12b{bottom:224.961150px;}
.y251{bottom:225.980400px;}
.y284{bottom:227.874900px;}
.y2b7{bottom:227.919900px;}
.yf7{bottom:229.861500px;}
.y26{bottom:231.179400px;}
.y30f{bottom:234.249900px;}
.y33f{bottom:234.279900px;}
.y2ec{bottom:234.294900px;}
.y1af{bottom:236.469900px;}
.yc0{bottom:236.709750px;}
.ybe{bottom:236.714850px;}
.y89{bottom:237.788550px;}
.y88{bottom:237.793800px;}
.y223{bottom:239.654400px;}
.yf2{bottom:241.861500px;}
.y158{bottom:243.115950px;}
.y207{bottom:244.323900px;}
.y180{bottom:244.422900px;}
.y1da{bottom:244.538400px;}
.y250{bottom:244.730400px;}
.y283{bottom:246.624900px;}
.y2b6{bottom:246.669900px;}
.yf6{bottom:247.861500px;}
.y12a{bottom:250.236150px;}
.y30e{bottom:252.999900px;}
.y2eb{bottom:253.044900px;}
.ybf{bottom:257.334750px;}
.ybd{bottom:257.339850px;}
.y1ae{bottom:257.474400px;}
.y33e{bottom:259.404900px;}
.y157{bottom:261.115950px;}
.y24f{bottom:263.480400px;}
.y206{bottom:265.328400px;}
.y17f{bottom:265.427400px;}
.y1d9{bottom:265.542900px;}
.yf5{bottom:265.861500px;}
.y129{bottom:268.236150px;}
.y222{bottom:269.156400px;}
.y85{bottom:269.974050px;}
.y282{bottom:271.749900px;}
.y2b5{bottom:271.794900px;}
.yf1{bottom:271.861500px;}
.y33d{bottom:278.154900px;}
.y1ad{bottom:278.478900px;}
.y24e{bottom:282.230400px;}
.yf4{bottom:283.861500px;}
.y87{bottom:284.968800px;}
.y128{bottom:286.236150px;}
.y205{bottom:286.332900px;}
.y17e{bottom:286.431900px;}
.y1d8{bottom:286.547400px;}
.y156{bottom:289.045950px;}
.ybc{bottom:289.514850px;}
.yba{bottom:289.530600px;}
.yf0{bottom:289.861500px;}
.y281{bottom:290.499900px;}
.y2b4{bottom:290.544900px;}
.y30d{bottom:296.874900px;}
.y33c{bottom:296.904900px;}
.y2ea{bottom:296.919900px;}
.y1ac{bottom:299.483400px;}
.y25{bottom:300.846000px;}
.yf3{bottom:301.861500px;}
.y86{bottom:302.968800px;}
.y84{bottom:302.974050px;}
.y155{bottom:307.045950px;}
.y204{bottom:307.337400px;}
.y24d{bottom:307.355400px;}
.y17d{bottom:307.436400px;}
.y280{bottom:309.249900px;}
.y2b3{bottom:309.294900px;}
.ybb{bottom:310.139850px;}
.yb9{bottom:310.155600px;}
.y30c{bottom:315.624900px;}
.y33b{bottom:315.654900px;}
.y2e9{bottom:315.669900px;}
.y1ab{bottom:320.487900px;}
.y24{bottom:320.646000px;}
.y1d7{bottom:324.563400px;}
.y24c{bottom:326.105400px;}
.y2c8{bottom:327.999900px;}
.y2b2{bottom:328.044900px;}
.y221{bottom:328.160400px;}
.y203{bottom:328.341900px;}
.y127{bottom:328.386150px;}
.y17c{bottom:328.440900px;}
.yef{bottom:329.791500px;}
.y27f{bottom:334.374900px;}
.y2e8{bottom:334.419900px;}
.y154{bottom:334.975950px;}
.y81{bottom:335.154300px;}
.y83{bottom:337.774050px;}
.y23{bottom:340.446000px;}
.y33a{bottom:340.779900px;}
.y1aa{bottom:341.492400px;}
.yb8{bottom:342.330600px;}
.y24b{bottom:344.855400px;}
.y1d6{bottom:345.567900px;}
.y126{bottom:346.386150px;}
.y2c7{bottom:346.749900px;}
.y2b1{bottom:346.794900px;}
.yee{bottom:347.791500px;}
.y40{bottom:348.291900px;}
.y220{bottom:349.164900px;}
.y17b{bottom:349.445400px;}
.y153{bottom:352.975950px;}
.y27e{bottom:353.124900px;}
.y82{bottom:355.774050px;}
.y80{bottom:355.779300px;}
.y30b{bottom:359.499900px;}
.y339{bottom:359.529900px;}
.y2e7{bottom:359.544900px;}
.y22{bottom:360.246000px;}
.y1a9{bottom:362.496900px;}
.y125{bottom:364.386150px;}
.yed{bottom:365.791500px;}
.y202{bottom:366.357900px;}
.y1d5{bottom:366.572400px;}
.y3f{bottom:368.744400px;}
.y24a{bottom:369.980400px;}
.y21f{bottom:370.169400px;}
.y17a{bottom:370.449900px;}
.y152{bottom:370.975950px;}
.y27d{bottom:371.874900px;}
.y2b0{bottom:371.919900px;}
.y30a{bottom:378.249900px;}
.y338{bottom:378.279900px;}
.y2e6{bottom:378.294900px;}
.y21{bottom:380.046000px;}
.y1a8{bottom:383.501400px;}
.y124{bottom:383.811150px;}
.yb7{bottom:386.505600px;}
.y201{bottom:387.362400px;}
.y1d4{bottom:387.576900px;}
.y7d{bottom:387.959700px;}
.y249{bottom:388.730400px;}
.y3e{bottom:389.196900px;}
.y7f{bottom:390.579300px;}
.y2c6{bottom:390.624900px;}
.y2af{bottom:390.669900px;}
.y179{bottom:391.454400px;}
.yec{bottom:393.721500px;}
.y27c{bottom:396.999900px;}
.y337{bottom:397.029900px;}
.y2e5{bottom:397.044900px;}
.y151{bottom:398.905950px;}
.y21e{bottom:399.671400px;}
.y20{bottom:399.846000px;}
.y123{bottom:401.811150px;}
.yb6{bottom:404.505600px;}
.y248{bottom:407.480400px;}
.y200{bottom:408.366900px;}
.y7e{bottom:408.579300px;}
.y7c{bottom:408.584700px;}
.y2c5{bottom:409.374900px;}
.y2ae{bottom:409.419900px;}
.y3d{bottom:409.649400px;}
.yeb{bottom:411.721500px;}
.y27b{bottom:415.749900px;}
.y336{bottom:415.779900px;}
.y2e4{bottom:415.794900px;}
.ye4{bottom:416.401500px;}
.y150{bottom:416.905950px;}
.y122{bottom:419.811150px;}
.y1a7{bottom:421.517400px;}
.y1d3{bottom:425.592900px;}
.y2ad{bottom:428.169900px;}
.y21d{bottom:429.173400px;}
.y1ff{bottom:429.371400px;}
.y178{bottom:429.470400px;}
.yea{bottom:429.721500px;}
.y3c{bottom:430.101900px;}
.y1f{bottom:432.400500px;}
.y247{bottom:432.605400px;}
.y27a{bottom:434.499900px;}
.y335{bottom:434.529900px;}
.yb4{bottom:436.680600px;}
.y121{bottom:437.811150px;}
.y7a{bottom:440.759700px;}
.y2e3{bottom:440.919900px;}
.y1a6{bottom:442.521900px;}
.ye3{bottom:446.401500px;}
.ye9{bottom:447.721500px;}
.y21c{bottom:450.177900px;}
.y1fe{bottom:450.375900px;}
.y177{bottom:450.474900px;}
.y3b{bottom:450.554400px;}
.y246{bottom:451.355400px;}
.y1e{bottom:452.200500px;}
.y279{bottom:453.249900px;}
.y2ac{bottom:453.294900px;}
.yb3{bottom:454.691100px;}
.y7b{bottom:455.759700px;}
.y120{bottom:455.811150px;}
.yb2{bottom:456.491100px;}
.y334{bottom:459.654900px;}
.y2e2{bottom:459.669900px;}
.y14f{bottom:460.780950px;}
.y1d2{bottom:463.608900px;}
.ye2{bottom:464.401500px;}
.y245{bottom:470.105400px;}
.y21b{bottom:471.182400px;}
.y1fd{bottom:471.380400px;}
.y176{bottom:471.479400px;}
.y2c4{bottom:471.999900px;}
.y1d{bottom:472.000500px;}
.y2ab{bottom:472.044900px;}
.y79{bottom:473.759700px;}
.yb5{bottom:474.480600px;}
.yb1{bottom:474.491100px;}
.y11f{bottom:475.236150px;}
.y278{bottom:478.374900px;}
.y333{bottom:478.404900px;}
.y2e1{bottom:478.419900px;}
.y14e{bottom:478.780950px;}
.y1a5{bottom:480.537900px;}
.y1d1{bottom:484.613400px;}
.y244{bottom:488.855400px;}
.y2c3{bottom:490.749900px;}
.y2aa{bottom:490.794900px;}
.y3a{bottom:491.459400px;}
.y1fc{bottom:492.384900px;}
.y175{bottom:492.483900px;}
.y11e{bottom:493.236150px;}
.ye8{bottom:496.996500px;}
.y277{bottom:497.124900px;}
.y332{bottom:497.154900px;}
.y21a{bottom:500.684400px;}
.y1a4{bottom:501.542400px;}
.y2e0{bottom:503.544900px;}
.y1c{bottom:504.555000px;}
.y1d0{bottom:505.617900px;}
.y78{bottom:505.939800px;}
.yb0{bottom:506.666100px;}
.y14d{bottom:506.710950px;}
.y2a9{bottom:509.544900px;}
.y11d{bottom:511.236150px;}
.y39{bottom:511.911900px;}
.y1fb{bottom:513.389400px;}
.y174{bottom:513.488400px;}
.y243{bottom:513.980400px;}
.ye7{bottom:514.996500px;}
.y276{bottom:515.874900px;}
.y331{bottom:522.279900px;}
.y2df{bottom:522.294900px;}
.y1a3{bottom:522.546900px;}
.y1b{bottom:524.355000px;}
.y14c{bottom:524.710950px;}
.y77{bottom:526.564800px;}
.y76{bottom:526.570200px;}
.y1cf{bottom:526.622400px;}
.y11c{bottom:529.236150px;}
.y219{bottom:530.186400px;}
.y38{bottom:532.364400px;}
.y242{bottom:532.730400px;}
.ye6{bottom:532.996500px;}
.y173{bottom:534.492900px;}
.y275{bottom:534.624900px;}
.y2a8{bottom:534.669900px;}
.yaf{bottom:536.666100px;}
.y309{bottom:540.999900px;}
.y330{bottom:541.029900px;}
.y2de{bottom:541.044900px;}
.y14b{bottom:542.710950px;}
.y1a2{bottom:543.551400px;}
.y1a{bottom:544.155000px;}
.y1ce{bottom:547.626900px;}
.ye5{bottom:550.996500px;}
.y1fa{bottom:551.405400px;}
.y241{bottom:551.480400px;}
.y11b{bottom:552.261150px;}
.y37{bottom:552.816900px;}
.y274{bottom:553.374900px;}
.y2a7{bottom:553.419900px;}
.yae{bottom:554.666100px;}
.y172{bottom:555.497400px;}
.y75{bottom:558.745200px;}
.y218{bottom:559.688400px;}
.y308{bottom:559.749900px;}
.y32f{bottom:559.779900px;}
.y2dd{bottom:559.794900px;}
.y19{bottom:563.955000px;}
.y1a1{bottom:564.555900px;}
.y1cd{bottom:568.631400px;}
.y240{bottom:570.230400px;}
.y11a{bottom:570.261150px;}
.y14a{bottom:570.640950px;}
.y273{bottom:572.124900px;}
.y2a6{bottom:572.169900px;}
.y1f9{bottom:572.409900px;}
.y36{bottom:573.269400px;}
.y171{bottom:576.501900px;}
.y307{bottom:578.499900px;}
.ye1{bottom:578.926500px;}
.y18{bottom:583.755000px;}
.y32e{bottom:584.904900px;}
.y2dc{bottom:584.919900px;}
.y1a0{bottom:585.560400px;}
.yad{bottom:586.841100px;}
.y149{bottom:588.640950px;}
.y23f{bottom:588.980400px;}
.y217{bottom:589.190400px;}
.y1cc{bottom:589.635900px;}
.y2c2{bottom:590.874900px;}
.y2a5{bottom:590.919900px;}
.y1f8{bottom:593.414400px;}
.y35{bottom:593.721900px;}
.y119{bottom:594.786150px;}
.ye0{bottom:596.926500px;}
.y272{bottom:597.249900px;}
.y170{bottom:597.506400px;}
.y17{bottom:603.555000px;}
.y32d{bottom:603.654900px;}
.y2db{bottom:603.669900px;}
.y19f{bottom:606.564900px;}
.yac{bottom:607.466100px;}
.yaa{bottom:607.471350px;}
.y216{bottom:610.194900px;}
.y1cb{bottom:610.640400px;}
.y118{bottom:612.786150px;}
.y23e{bottom:614.105400px;}
.y34{bottom:614.174400px;}
.ydf{bottom:614.926500px;}
.y271{bottom:615.999900px;}
.y2a4{bottom:616.044900px;}
.y148{bottom:616.570950px;}
.y16f{bottom:618.510900px;}
.y306{bottom:622.374900px;}
.y32c{bottom:622.404900px;}
.y2da{bottom:622.419900px;}
.y19e{bottom:627.569400px;}
.yab{bottom:628.091100px;}
.ya9{bottom:628.096350px;}
.y74{bottom:630.275400px;}
.y1f7{bottom:631.430400px;}
.y1ca{bottom:631.644900px;}
.y117{bottom:632.211150px;}
.y23d{bottom:632.855400px;}
.yde{bottom:632.926500px;}
.y147{bottom:634.570950px;}
.y270{bottom:634.749900px;}
.y2a3{bottom:634.794900px;}
.y16{bottom:636.109500px;}
.y16e{bottom:639.515400px;}
.y215{bottom:639.696900px;}
.y305{bottom:641.124900px;}
.y32b{bottom:641.154900px;}
.y2d9{bottom:641.169900px;}
.y19d{bottom:648.573900px;}
.y116{bottom:650.211150px;}
.ydd{bottom:650.926500px;}
.y23c{bottom:651.605400px;}
.y2c1{bottom:653.499900px;}
.y2a2{bottom:653.544900px;}
.y33{bottom:655.079400px;}
.y15{bottom:655.909500px;}
.y26f{bottom:659.874900px;}
.y2d8{bottom:659.919900px;}
.y73{bottom:659.975400px;}
.ya7{bottom:660.271350px;}
.y32a{bottom:666.279900px;}
.y115{bottom:668.211150px;}
.ydc{bottom:668.926500px;}
.y214{bottom:669.198900px;}
.y1f6{bottom:669.446400px;}
.y19c{bottom:669.578400px;}
.y1c9{bottom:669.660900px;}
.y2c0{bottom:672.249900px;}
.ya8{bottom:672.646350px;}
.y14{bottom:675.709500px;}
.y32{bottom:675.828900px;}
.y23b{bottom:676.730400px;}
.y146{bottom:677.170950px;}
.y16d{bottom:677.531400px;}
.y5c{bottom:677.646900px;}
.y26e{bottom:678.624900px;}
.y2a1{bottom:678.669900px;}
.y72{bottom:678.719400px;}
.y329{bottom:685.029900px;}
.y2d7{bottom:685.044900px;}
.y114{bottom:687.636150px;}
.y213{bottom:690.203400px;}
.y1f5{bottom:690.450900px;}
.y1c8{bottom:690.665400px;}
.y2bf{bottom:690.999900px;}
.ya6{bottom:693.271350px;}
.y145{bottom:695.170950px;}
.y23a{bottom:695.480400px;}
.y13{bottom:695.509500px;}
.y5b{bottom:696.390900px;}
.y31{bottom:696.578400px;}
.ydb{bottom:696.844800px;}
.y26d{bottom:697.374900px;}
.y2a0{bottom:697.419900px;}
.y71{bottom:697.463400px;}
.y16c{bottom:698.535900px;}
.y304{bottom:703.749900px;}
.y328{bottom:703.779900px;}
.y2d6{bottom:703.794900px;}
.y113{bottom:705.636150px;}
.y19b{bottom:707.594400px;}
.y212{bottom:711.207900px;}
.y1f4{bottom:711.455400px;}
.y1c7{bottom:711.669900px;}
.y144{bottom:713.170950px;}
.y239{bottom:714.230400px;}
.yda{bottom:714.844800px;}
.y5a{bottom:715.134900px;}
.y12{bottom:715.309500px;}
.y26c{bottom:716.124900px;}
.y29f{bottom:716.169900px;}
.y70{bottom:716.207400px;}
.y30{bottom:717.327900px;}
.y16b{bottom:719.540400px;}
.y303{bottom:722.499900px;}
.y327{bottom:722.529900px;}
.y2d5{bottom:722.544900px;}
.y112{bottom:723.636150px;}
.ya5{bottom:725.451750px;}
.y19a{bottom:728.598900px;}
.y143{bottom:731.170950px;}
.y211{bottom:732.212400px;}
.y1f3{bottom:732.459900px;}
.y1c6{bottom:732.674400px;}
.yd9{bottom:732.844800px;}
.y59{bottom:733.878900px;}
.y26b{bottom:734.874900px;}
.y29e{bottom:734.919900px;}
.y11{bottom:735.109500px;}
.y238{bottom:739.355400px;}
.y16a{bottom:740.544900px;}
.y302{bottom:741.249900px;}
.y326{bottom:741.279900px;}
.y2d4{bottom:741.294900px;}
.y111{bottom:743.061150px;}
.ya4{bottom:746.076750px;}
.ya2{bottom:746.082000px;}
.y199{bottom:749.603400px;}
.yd8{bottom:750.844800px;}
.y6f{bottom:751.962900px;}
.y1f2{bottom:753.464400px;}
.y26a{bottom:753.624900px;}
.y29d{bottom:753.669900px;}
.y1c5{bottom:753.678900px;}
.y237{bottom:758.105400px;}
.y2f{bottom:758.529900px;}
.y142{bottom:759.100950px;}
.y301{bottom:759.999900px;}
.y110{bottom:761.061150px;}
.y169{bottom:761.549400px;}
.y210{bottom:761.714400px;}
.y325{bottom:766.404900px;}
.y2d3{bottom:766.419900px;}
.ya3{bottom:766.701750px;}
.ya1{bottom:766.707000px;}
.yd7{bottom:768.844800px;}
.y58{bottom:769.634400px;}
.y198{bottom:770.607900px;}
.y6e{bottom:770.706900px;}
.y2be{bottom:772.374900px;}
.y1f1{bottom:774.468900px;}
.y1c4{bottom:774.683400px;}
.y236{bottom:776.855400px;}
.y141{bottom:777.100950px;}
.y269{bottom:778.749900px;}
.y29c{bottom:778.794900px;}
.y2e{bottom:778.982400px;}
.y10f{bottom:779.061150px;}
.y168{bottom:782.553900px;}
.yc9{bottom:783.934800px;}
.y300{bottom:785.124900px;}
.y324{bottom:785.154900px;}
.y2d2{bottom:785.169900px;}
.y57{bottom:788.378400px;}
.y6d{bottom:789.450900px;}
.y10{bottom:790.488150px;}
.y20f{bottom:791.216400px;}
.y197{bottom:791.612400px;}
.y1f0{bottom:795.473400px;}
.y235{bottom:795.605400px;}
.y1c3{bottom:795.687900px;}
.yd6{bottom:796.774800px;}
.y10e{bottom:797.061150px;}
.y268{bottom:797.499900px;}
.y29b{bottom:797.544900px;}
.ya0{bottom:798.882000px;}
.yc8{bottom:801.934800px;}
.y2ff{bottom:803.874900px;}
.y323{bottom:803.904900px;}
.y2d1{bottom:803.919900px;}
.y140{bottom:805.030950px;}
.y56{bottom:807.122400px;}
.y167{bottom:807.798900px;}
.y196{bottom:812.616900px;}
.y9d{bottom:814.272750px;}
.yd5{bottom:814.774800px;}
.y267{bottom:816.249900px;}
.y29a{bottom:816.294900px;}
.y1ef{bottom:816.477900px;}
.y10d{bottom:816.486150px;}
.y1c2{bottom:816.692400px;}
.y9f{bottom:816.882000px;}
.y2d{bottom:819.887400px;}
.y20e{bottom:820.718400px;}
.y234{bottom:820.730400px;}
.y2fe{bottom:822.624900px;}
.y322{bottom:822.654900px;}
.y2d0{bottom:822.669900px;}
.y13f{bottom:823.030950px;}
.y6c{bottom:825.206400px;}
.y55{bottom:825.866400px;}
.yc7{bottom:831.934800px;}
.y195{bottom:833.621400px;}
.y10c{bottom:834.486150px;}
.y9e{bottom:834.882000px;}
.y9c{bottom:834.897750px;}
.y266{bottom:834.999900px;}
.y2c{bottom:836.087400px;}
.y1ee{bottom:837.482400px;}
.y1c1{bottom:837.696900px;}
.y233{bottom:839.480400px;}
.yf{bottom:839.586600px;}
.y2fd{bottom:841.374900px;}
.y299{bottom:841.419900px;}
.yd4{bottom:842.704800px;}
.y6b{bottom:843.950400px;}
.y54{bottom:844.610400px;}
.y166{bottom:845.814900px;}
.y321{bottom:847.779900px;}
.yc6{bottom:849.934800px;}
.y20d{bottom:850.220400px;}
.y13e{bottom:850.960950px;}
.y2b{bottom:852.287400px;}
.y265{bottom:853.749900px;}
.y10b{bottom:853.911150px;}
.ye{bottom:853.986600px;}
.y194{bottom:854.625900px;}
.y1c0{bottom:858.701400px;}
.y298{bottom:860.169900px;}
.y6a{bottom:862.694400px;}
.y53{bottom:863.354400px;}
.y232{bottom:864.605400px;}
.y2fc{bottom:866.499900px;}
.y320{bottom:866.529900px;}
.y165{bottom:866.819400px;}
.y9b{bottom:867.072750px;}
.yd{bottom:868.386600px;}
.y2a{bottom:868.487400px;}
.y13d{bottom:868.960950px;}
.yd3{bottom:870.634800px;}
.y10a{bottom:871.911150px;}
.y1ed{bottom:875.498400px;}
.y193{bottom:875.630400px;}
.y264{bottom:878.874900px;}
.y297{bottom:878.919900px;}
.y20c{bottom:879.722400px;}
.y52{bottom:882.098400px;}
.yc{bottom:882.786600px;}
.y231{bottom:883.355400px;}
.y29{bottom:884.687400px;}
.y9a{bottom:885.072750px;}
.y2fb{bottom:885.249900px;}
.y31f{bottom:885.279900px;}
.y2cf{bottom:885.294900px;}
.y164{bottom:885.563400px;}
.yd2{bottom:888.634800px;}
.y109{bottom:889.911150px;}
.y1ec{bottom:896.502900px;}
.y192{bottom:896.634900px;}
.y1bf{bottom:896.717400px;}
.y13c{bottom:896.890950px;}
.yb{bottom:897.186600px;}
.y263{bottom:897.624900px;}
.y69{bottom:898.449900px;}
.y51{bottom:900.842400px;}
.y230{bottom:902.105400px;}
.y2fa{bottom:903.999900px;}
.y31e{bottom:904.029900px;}
.y296{bottom:904.044900px;}
.y28{bottom:905.139900px;}
.y108{bottom:907.911150px;}
.y98{bottom:912.447750px;}
.y13b{bottom:914.890950px;}
.y99{bottom:915.072750px;}
.y262{bottom:916.374900px;}
.yd1{bottom:916.564800px;}
.y68{bottom:917.193900px;}
.y1eb{bottom:917.507400px;}
.y1be{bottom:917.721900px;}
.y50{bottom:919.586400px;}
.y163{bottom:921.318900px;}
.y2f9{bottom:922.749900px;}
.y295{bottom:922.794900px;}
.y107{bottom:925.911150px;}
.y31d{bottom:929.154900px;}
.y22f{bottom:929.304900px;}
.ya{bottom:930.254550px;}
.y97{bottom:933.072750px;}
.yd0{bottom:934.564800px;}
.y191{bottom:934.650900px;}
.y261{bottom:935.124900px;}
.y67{bottom:935.937900px;}
.y4f{bottom:938.330400px;}
.y1ea{bottom:938.511900px;}
.y1bd{bottom:938.726400px;}
.y162{bottom:940.062900px;}
.y294{bottom:941.544900px;}
.y13a{bottom:942.820950px;}
.y106{bottom:945.336150px;}
.y2f8{bottom:947.874900px;}
.y31c{bottom:947.904900px;}
.y2ce{bottom:947.919900px;}
.y9{bottom:948.254550px;}
.ycf{bottom:952.564800px;}
.y66{bottom:954.681900px;}
.y190{bottom:955.655400px;}
.y161{bottom:958.806900px;}
.y1e9{bottom:959.516400px;}
.y1bc{bottom:959.730900px;}
.y260{bottom:960.249900px;}
.y293{bottom:960.294900px;}
.y139{bottom:960.820950px;}
.y105{bottom:963.336150px;}
.y96{bottom:965.247750px;}
.y2f7{bottom:966.624900px;}
.y31b{bottom:966.654900px;}
.y2cd{bottom:966.669900px;}
.y65{bottom:973.425900px;}
.y4e{bottom:974.085900px;}
.y18f{bottom:976.659900px;}
.y138{bottom:978.820950px;}
.y25f{bottom:978.999900px;}
.y1e8{bottom:980.520900px;}
.y1bb{bottom:980.735400px;}
.y104{bottom:982.761150px;}
.y2f6{bottom:985.374900px;}
.y31a{bottom:985.404900px;}
.y292{bottom:985.419900px;}
.y4d{bottom:992.829900px;}
.y160{bottom:994.562400px;}
.y7{bottom:996.736500px;}
.y137{bottom:996.820950px;}
.y95{bottom:997.422750px;}
.y18e{bottom:997.664400px;}
.y2bd{bottom:997.749900px;}
.y103{bottom:1000.761150px;}
.ycd{bottom:1000.939800px;}
.y1e7{bottom:1001.525400px;}
.y1ba{bottom:1001.739900px;}
.y25e{bottom:1004.124900px;}
.y319{bottom:1004.154900px;}
.y291{bottom:1004.169900px;}
.y64{bottom:1009.181400px;}
.y4c{bottom:1011.573900px;}
.y15f{bottom:1013.306400px;}
.y22e{bottom:1014.213900px;}
.yce{bottom:1017.709800px;}
.y18d{bottom:1018.668900px;}
.y102{bottom:1018.761150px;}
.ycc{bottom:1018.939800px;}
.y1e6{bottom:1022.529900px;}
.y1b9{bottom:1022.744400px;}
.y25d{bottom:1022.874900px;}
.y318{bottom:1022.904900px;}
.y290{bottom:1022.919900px;}
.y136{bottom:1024.750950px;}
.y94{bottom:1027.422750px;}
.y63{bottom:1027.925400px;}
.y2f5{bottom:1029.249900px;}
.y2cc{bottom:1029.294900px;}
.y4b{bottom:1030.317900px;}
.y15e{bottom:1032.050400px;}
.y22d{bottom:1035.218400px;}
.ycb{bottom:1036.939800px;}
.y101{bottom:1038.186150px;}
.y18c{bottom:1039.673400px;}
.y25c{bottom:1041.624900px;}
.y28f{bottom:1041.669900px;}
.y348{bottom:1042.746900px;}
.y135{bottom:1042.750950px;}
.y1e5{bottom:1043.534400px;}
.y1b8{bottom:1043.748900px;}
.y93{bottom:1045.422750px;}
.y2f4{bottom:1047.999900px;}
.y317{bottom:1048.029900px;}
.y2cb{bottom:1048.044900px;}
.y4a{bottom:1049.061900px;}
.y15d{bottom:1050.794400px;}
.y6{bottom:1053.546450px;}
.yca{bottom:1054.939800px;}
.y100{bottom:1056.186150px;}
.y25b{bottom:1060.374900px;}
.y18b{bottom:1060.677900px;}
.y347{bottom:1062.546900px;}
.y62{bottom:1063.680900px;}
.y1e4{bottom:1064.538900px;}
.y22c{bottom:1064.720400px;}
.y1b7{bottom:1064.753400px;}
.y2f3{bottom:1066.749900px;}
.y316{bottom:1066.779900px;}
.y28e{bottom:1066.794900px;}
.y49{bottom:1067.805900px;}
.y5{bottom:1069.746450px;}
.y134{bottom:1070.679150px;}
.yff{bottom:1074.186150px;}
.y90{bottom:1078.503000px;}
.y92{bottom:1081.122750px;}
.y18a{bottom:1081.682400px;}
.y20b{bottom:1081.764900px;}
.y346{bottom:1082.346900px;}
.y61{bottom:1082.424900px;}
.yc5{bottom:1082.871150px;}
.y25a{bottom:1085.499900px;}
.y315{bottom:1085.529900px;}
.y28d{bottom:1085.544900px;}
.y22b{bottom:1085.724900px;}
.y48{bottom:1086.549900px;}
.y133{bottom:1091.304150px;}
.yfe{bottom:1092.186150px;}
.y91{bottom:1099.122750px;}
.y8f{bottom:1099.128000px;}
.yc4{bottom:1100.871150px;}
.y60{bottom:1101.168900px;}
.y1e3{bottom:1102.554900px;}
.y189{bottom:1102.686900px;}
.y1b6{bottom:1102.769400px;}
.y259{bottom:1104.249900px;}
.y28c{bottom:1104.294900px;}
.y47{bottom:1105.293900px;}
.y314{bottom:1110.654900px;}
.yfd{bottom:1111.610550px;}
.y22a{bottom:1115.226900px;}
.y5f{bottom:1119.912900px;}
.y258{bottom:1122.999900px;}
.y28b{bottom:1123.044900px;}
.y8{bottom:1123.179750px;}
.y1e2{bottom:1123.559400px;}
.y188{bottom:1123.691400px;}
.y1b5{bottom:1123.773900px;}
.y46{bottom:1124.037900px;}
.y345{bottom:1128.324900px;}
.y2f2{bottom:1129.374900px;}
.y313{bottom:1129.404900px;}
.y2ca{bottom:1129.419900px;}
.y8e{bottom:1131.303000px;}
.yfc{bottom:1132.235550px;}
.y229{bottom:1136.231400px;}
.y5e{bottom:1138.656900px;}
.y257{bottom:1141.749900px;}
.y45{bottom:1142.781900px;}
.y1e1{bottom:1144.563900px;}
.y187{bottom:1144.695900px;}
.y1b4{bottom:1144.778400px;}
.y2bc{bottom:1148.124900px;}
.y312{bottom:1148.154900px;}
.y28a{bottom:1148.169900px;}
.y8d{bottom:1149.303000px;}
.y132{bottom:1159.215900px;}
.y1e0{bottom:1165.568400px;}
.y186{bottom:1165.700400px;}
.y228{bottom:1165.733400px;}
.y44{bottom:1165.782900px;}
.y5d{bottom:1165.914900px;}
.y256{bottom:1166.874900px;}
.y311{bottom:1166.904900px;}
.y289{bottom:1166.919900px;}
.yc3{bottom:1168.782900px;}
.y4{bottom:1172.255700px;}
.y2{bottom:1191.347400px;}
.y43{bottom:1197.407400px;}
.y1{bottom:1207.755900px;}
.ha{height:36.093750px;}
.h5{height:39.972656px;}
.hf{height:40.394531px;}
.he{height:40.605469px;}
.h3{height:44.414062px;}
.h11{height:44.882812px;}
.h13{height:45.117188px;}
.h4{height:47.277398px;}
.h12{height:49.329094px;}
.hd{height:49.371094px;}
.hc{height:49.628906px;}
.h7{height:51.257812px;}
.h8{height:51.445312px;}
.h10{height:53.296875px;}
.h9{height:55.488281px;}
.h15{height:56.589844px;}
.hb{height:77.683594px;}
.h6{height:79.945312px;}
.h14{height:80.882812px;}
.h2{height:90.234375px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:6.094800px;}
.x10{left:8.673300px;}
.xe{left:12.345300px;}
.x13{left:21.025800px;}
.x17{left:23.172300px;}
.xf{left:27.019800px;}
.xd{left:29.098800px;}
.x15{left:35.862300px;}
.x6{left:38.312700px;}
.x16{left:48.579300px;}
.xc{left:53.209800px;}
.x5{left:63.044700px;}
.x11{left:65.508300px;}
.x18{left:66.669300px;}
.x19{left:72.283350px;}
.x1c{left:80.774550px;}
.x32{left:83.284500px;}
.x12{left:84.678300px;}
.x3a{left:90.773550px;}
.x35{left:107.733300px;}
.x2d{left:117.329700px;}
.x1e{left:168.775650px;}
.x2a{left:173.659950px;}
.x2{left:208.546950px;}
.x7{left:211.181100px;}
.x9{left:212.774700px;}
.x2e{left:225.248550px;}
.xb{left:232.786800px;}
.x1d{left:239.905650px;}
.xa{left:242.046600px;}
.x33{left:246.209550px;}
.x25{left:260.008950px;}
.x38{left:295.109400px;}
.x4{left:308.436300px;}
.x24{left:320.623950px;}
.x26{left:327.154200px;}
.x21{left:328.869600px;}
.x27{left:333.371250px;}
.x2b{left:368.075400px;}
.x2f{left:374.048550px;}
.x22{left:405.658950px;}
.x1{left:408.040350px;}
.x28{left:409.933950px;}
.x1a{left:461.545050px;}
.x1b{left:488.539050px;}
.x8{left:679.675800px;}
.x39{left:758.579400px;}
.x34{left:762.824550px;}
.x37{left:773.269200px;}
.x29{left:775.588950px;}
.x23{left:783.463950px;}
.x36{left:784.483200px;}
.x20{left:785.748900px;}
.x1f{left:794.190900px;}
.x30{left:796.253550px;}
.x2c{left:800.565300px;}
.x31{left:802.301100px;}
.x3{left:807.816300px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:32.000000pt;}
.ls8{letter-spacing:-4.266667pt;}
.ls7{letter-spacing:-3.520000pt;}
.ls5{letter-spacing:-1.600000pt;}
.ls4{letter-spacing:-1.333333pt;}
.ls3{letter-spacing:-1.066667pt;}
.ls2{letter-spacing:-0.533333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:1.182933pt;}
.ls0{letter-spacing:15.264000pt;}
.ws0{word-spacing:-16.192000pt;}
.ws62{word-spacing:-16.074667pt;}
.ws27{word-spacing:-14.613333pt;}
.ws1{word-spacing:-13.248000pt;}
.ws2{word-spacing:-13.152000pt;}
.ws26{word-spacing:-11.093333pt;}
.ws70{word-spacing:-8.858667pt;}
.ws4c{word-spacing:-8.389333pt;}
.ws2c{word-spacing:-8.266667pt;}
.ws1d{word-spacing:-5.066667pt;}
.ws21{word-spacing:-4.640000pt;}
.ws9e{word-spacing:-4.586667pt;}
.ws81{word-spacing:-4.517333pt;}
.ws56{word-spacing:-4.458667pt;}
.ws47{word-spacing:-3.637333pt;}
.ws8b{word-spacing:-3.578667pt;}
.ws4{word-spacing:-3.402667pt;}
.ws85{word-spacing:-3.285333pt;}
.ws94{word-spacing:-2.826667pt;}
.ws6e{word-spacing:-2.757333pt;}
.ws6c{word-spacing:-2.581333pt;}
.ws16{word-spacing:-2.288000pt;}
.ws1f{word-spacing:-1.493333pt;}
.ws35{word-spacing:-1.440000pt;}
.ws6f{word-spacing:-1.408000pt;}
.ws31{word-spacing:-1.333333pt;}
.ws13{word-spacing:-1.056000pt;}
.ws75{word-spacing:-0.469333pt;}
.ws58{word-spacing:-0.293333pt;}
.ws3{word-spacing:0.000000pt;}
.ws66{word-spacing:0.352000pt;}
.wsc{word-spacing:0.384000pt;}
.ws1c{word-spacing:0.533333pt;}
.ws73{word-spacing:0.645333pt;}
.ws97{word-spacing:0.746667pt;}
.ws1e{word-spacing:1.066667pt;}
.ws52{word-spacing:1.114667pt;}
.ws37{word-spacing:1.120000pt;}
.ws49{word-spacing:1.173333pt;}
.ws20{word-spacing:1.333333pt;}
.ws8{word-spacing:1.525333pt;}
.ws23{word-spacing:1.546667pt;}
.ws22{word-spacing:1.600000pt;}
.ws55{word-spacing:1.818667pt;}
.ws71{word-spacing:2.053333pt;}
.ws5f{word-spacing:2.112000pt;}
.ws80{word-spacing:2.170667pt;}
.ws40{word-spacing:2.405333pt;}
.ws46{word-spacing:2.464000pt;}
.ws7{word-spacing:2.698667pt;}
.ws6{word-spacing:2.757333pt;}
.ws5d{word-spacing:3.168000pt;}
.ws74{word-spacing:3.285333pt;}
.ws88{word-spacing:3.461333pt;}
.ws3a{word-spacing:3.466667pt;}
.ws5{word-spacing:3.696000pt;}
.ws78{word-spacing:3.754667pt;}
.ws76{word-spacing:3.872000pt;}
.ws3c{word-spacing:3.893333pt;}
.ws44{word-spacing:3.930667pt;}
.ws59{word-spacing:4.106667pt;}
.wsb{word-spacing:4.165333pt;}
.ws4b{word-spacing:4.224000pt;}
.ws32{word-spacing:4.266667pt;}
.ws9b{word-spacing:4.480000pt;}
.ws9{word-spacing:4.517333pt;}
.ws53{word-spacing:4.752000pt;}
.ws9f{word-spacing:4.800000pt;}
.ws63{word-spacing:4.928000pt;}
.ws3d{word-spacing:5.493333pt;}
.ws36{word-spacing:5.600000pt;}
.ws38{word-spacing:5.973333pt;}
.ws7c{word-spacing:6.160000pt;}
.ws96{word-spacing:6.293333pt;}
.ws79{word-spacing:6.336000pt;}
.ws4a{word-spacing:6.512000pt;}
.ws41{word-spacing:6.570667pt;}
.ws6b{word-spacing:6.629333pt;}
.ws2e{word-spacing:6.986667pt;}
.ws3b{word-spacing:7.200000pt;}
.wsa{word-spacing:7.392000pt;}
.ws19{word-spacing:7.568000pt;}
.ws45{word-spacing:7.978667pt;}
.ws30{word-spacing:8.213333pt;}
.ws39{word-spacing:8.320000pt;}
.ws3f{word-spacing:9.120000pt;}
.ws6d{word-spacing:9.269333pt;}
.ws42{word-spacing:9.680000pt;}
.ws2a{word-spacing:9.920000pt;}
.ws12{word-spacing:10.325333pt;}
.ws93{word-spacing:10.346667pt;}
.ws6a{word-spacing:10.677333pt;}
.ws15{word-spacing:11.146667pt;}
.ws64{word-spacing:11.264000pt;}
.ws8f{word-spacing:11.360000pt;}
.ws72{word-spacing:11.733333pt;}
.ws7b{word-spacing:11.792000pt;}
.ws18{word-spacing:11.850667pt;}
.ws83{word-spacing:12.144000pt;}
.ws84{word-spacing:12.261333pt;}
.ws51{word-spacing:12.437333pt;}
.ws2b{word-spacing:13.120000pt;}
.ws60{word-spacing:13.200000pt;}
.ws7e{word-spacing:13.258667pt;}
.ws7a{word-spacing:13.434667pt;}
.ws8e{word-spacing:13.653333pt;}
.ws8a{word-spacing:14.256000pt;}
.ws48{word-spacing:14.314667pt;}
.ws5b{word-spacing:14.432000pt;}
.ws4f{word-spacing:14.549333pt;}
.ws67{word-spacing:14.725333pt;}
.ws98{word-spacing:15.146667pt;}
.ws10{word-spacing:15.253333pt;}
.ws5a{word-spacing:15.429333pt;}
.ws69{word-spacing:15.898667pt;}
.ws92{word-spacing:16.853333pt;}
.ws82{word-spacing:17.600000pt;}
.ws9a{word-spacing:17.706667pt;}
.ws14{word-spacing:18.069333pt;}
.ws2d{word-spacing:18.293333pt;}
.ws2f{word-spacing:18.560000pt;}
.ws89{word-spacing:19.946667pt;}
.ws1a{word-spacing:22.528000pt;}
.ws99{word-spacing:22.986667pt;}
.ws68{word-spacing:22.997333pt;}
.ws91{word-spacing:23.253333pt;}
.ws57{word-spacing:23.290667pt;}
.ws50{word-spacing:23.349333pt;}
.ws43{word-spacing:23.466667pt;}
.ws61{word-spacing:23.994667pt;}
.ws3e{word-spacing:24.106667pt;}
.ws1b{word-spacing:24.112000pt;}
.ws11{word-spacing:24.464000pt;}
.ws65{word-spacing:24.581333pt;}
.ws9d{word-spacing:26.346667pt;}
.ws7f{word-spacing:26.634667pt;}
.ws54{word-spacing:27.632000pt;}
.ws86{word-spacing:28.277333pt;}
.ws4d{word-spacing:29.274667pt;}
.ws4e{word-spacing:30.037333pt;}
.ws87{word-spacing:30.389333pt;}
.ws8d{word-spacing:31.626667pt;}
.ws5e{word-spacing:33.088000pt;}
.ws17{word-spacing:33.909333pt;}
.ws90{word-spacing:34.026667pt;}
.ws8c{word-spacing:39.626667pt;}
.ws77{word-spacing:40.949333pt;}
.ws24{word-spacing:48.160000pt;}
.ws95{word-spacing:55.466667pt;}
.ws7d{word-spacing:64.885333pt;}
.ws9c{word-spacing:65.066667pt;}
.ws5c{word-spacing:68.992000pt;}
.ws25{word-spacing:89.909333pt;}
.wsf{word-spacing:111.205333pt;}
.ws29{word-spacing:148.533333pt;}
.ws28{word-spacing:222.560000pt;}
.ws33{word-spacing:380.213333pt;}
.wsd{word-spacing:437.760000pt;}
.wse{word-spacing:615.733333pt;}
.ws34{word-spacing:801.013333pt;}
._11{margin-left:-58.368000pt;}
._2a{margin-left:-12.922667pt;}
._14{margin-left:-8.917333pt;}
._10{margin-left:-7.516696pt;}
._c{margin-left:-6.316267pt;}
._4{margin-left:-5.248000pt;}
._9{margin-left:-4.053867pt;}
._0{margin-left:-3.098667pt;}
._6{margin-left:-1.450667pt;}
._1{width:1.410881pt;}
._a{width:2.827733pt;}
._b{width:3.967467pt;}
._d{width:4.948267pt;}
._12{width:5.995733pt;}
._15{width:7.051733pt;}
._23{width:8.213333pt;}
._16{width:9.405867pt;}
._e{width:10.430933pt;}
._f{width:11.390400pt;}
._13{width:12.501867pt;}
._35{width:13.413333pt;}
._3a{width:14.582400pt;}
._22{width:15.802807pt;}
._8{width:17.280000pt;}
._3c{width:18.175467pt;}
._7{width:19.285333pt;}
._32{width:20.485333pt;}
._5{width:21.845333pt;}
._2c{width:23.397333pt;}
._3f{width:24.675200pt;}
._19{width:25.602133pt;}
._1a{width:26.505600pt;}
._3b{width:28.394667pt;}
._1b{width:29.708800pt;}
._40{width:30.735467pt;}
._43{width:31.804267pt;}
._38{width:32.958933pt;}
._39{width:33.850667pt;}
._1d{width:35.644267pt;}
._1c{width:36.836800pt;}
._18{width:38.209600pt;}
._45{width:39.138133pt;}
._44{width:40.837333pt;}
._42{width:41.778667pt;}
._41{width:43.041600pt;}
._3e{width:44.774400pt;}
._3d{width:46.381867pt;}
._17{width:56.672000pt;}
._20{width:89.333333pt;}
._21{width:94.080000pt;}
._1e{width:97.450667pt;}
._2e{width:119.145600pt;}
._2{width:136.095860pt;}
._26{width:161.546667pt;}
._3{width:163.102957pt;}
._28{width:180.330667pt;}
._1f{width:189.463363pt;}
._2f{width:383.904000pt;}
._25{width:452.519785pt;}
._34{width:459.008000pt;}
._36{width:470.848000pt;}
._29{width:520.478933pt;}
._31{width:642.730667pt;}
._37{width:657.770667pt;}
._27{width:702.240000pt;}
._33{width:731.808533pt;}
._30{width:841.568000pt;}
._2b{width:849.141333pt;}
._2d{width:881.930667pt;}
._24{width:983.541333pt;}
.fs6{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs2{font-size:55.886933pt;}
.fs8{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs7{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.fs0{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y42{bottom:50.560800pt;}
.y41{bottom:64.960800pt;}
.y3{bottom:72.686667pt;}
.y131{bottom:97.432133pt;}
.y130{bottom:113.432133pt;}
.y344{bottom:119.248800pt;}
.y2f1{bottom:119.262133pt;}
.y1b3{bottom:120.391467pt;}
.y227{bottom:123.236800pt;}
.y185{bottom:123.911467pt;}
.y1df{bottom:124.014133pt;}
.y255{bottom:128.538133pt;}
.y288{bottom:130.222133pt;}
.y2bb{bottom:130.262133pt;}
.y12f{bottom:130.698800pt;}
.y20a{bottom:130.922133pt;}
.yfb{bottom:131.494667pt;}
.y15c{bottom:133.009733pt;}
.y310{bottom:135.888800pt;}
.y343{bottom:135.915467pt;}
.y2f0{bottom:135.928800pt;}
.y8c{bottom:140.100933pt;}
.y226{bottom:141.907467pt;}
.y184{bottom:142.582133pt;}
.y1de{bottom:142.684800pt;}
.y254{bottom:145.204800pt;}
.y12e{bottom:146.698800pt;}
.y287{bottom:146.888800pt;}
.y2ba{bottom:146.928800pt;}
.yfa{bottom:147.494667pt;}
.y15b{bottom:149.009733pt;}
.y209{bottom:149.592800pt;}
.y2c9{bottom:152.555467pt;}
.y2ef{bottom:152.595467pt;}
.y1b2{bottom:154.183467pt;}
.y342{bottom:158.248800pt;}
.yc2{bottom:159.875333pt;}
.y183{bottom:161.252800pt;}
.y1dd{bottom:161.355467pt;}
.y253{bottom:161.871467pt;}
.y12d{bottom:162.698800pt;}
.yf9{bottom:163.494667pt;}
.y8b{bottom:166.767600pt;}
.y225{bottom:168.131467pt;}
.y286{bottom:169.222133pt;}
.y2b9{bottom:169.262133pt;}
.y1b1{bottom:172.854133pt;}
.y341{bottom:174.915467pt;}
.y2ee{bottom:174.928800pt;}
.y15a{bottom:175.276400pt;}
.yc1{bottom:175.875333pt;}
.yf8{bottom:179.494667pt;}
.y182{bottom:179.923467pt;}
.y1dc{bottom:180.026133pt;}
.y8a{bottom:182.767600pt;}
.y208{bottom:183.384800pt;}
.y12c{bottom:183.965467pt;}
.y252{bottom:184.204800pt;}
.y285{bottom:185.888800pt;}
.y2b8{bottom:185.928800pt;}
.y224{bottom:186.802133pt;}
.y27{bottom:191.092800pt;}
.y159{bottom:191.276400pt;}
.y1b0{bottom:191.524800pt;}
.y340{bottom:191.582133pt;}
.y2ed{bottom:191.595467pt;}
.y181{bottom:198.594133pt;}
.y1db{bottom:198.696800pt;}
.y12b{bottom:199.965467pt;}
.y251{bottom:200.871467pt;}
.y284{bottom:202.555467pt;}
.y2b7{bottom:202.595467pt;}
.yf7{bottom:204.321333pt;}
.y26{bottom:205.492800pt;}
.y30f{bottom:208.222133pt;}
.y33f{bottom:208.248800pt;}
.y2ec{bottom:208.262133pt;}
.y1af{bottom:210.195467pt;}
.yc0{bottom:210.408667pt;}
.ybe{bottom:210.413200pt;}
.y89{bottom:211.367600pt;}
.y88{bottom:211.372267pt;}
.y223{bottom:213.026133pt;}
.yf2{bottom:214.988000pt;}
.y158{bottom:216.103067pt;}
.y207{bottom:217.176800pt;}
.y180{bottom:217.264800pt;}
.y1da{bottom:217.367467pt;}
.y250{bottom:217.538133pt;}
.y283{bottom:219.222133pt;}
.y2b6{bottom:219.262133pt;}
.yf6{bottom:220.321333pt;}
.y12a{bottom:222.432133pt;}
.y30e{bottom:224.888800pt;}
.y2eb{bottom:224.928800pt;}
.ybf{bottom:228.742000pt;}
.ybd{bottom:228.746533pt;}
.y1ae{bottom:228.866133pt;}
.y33e{bottom:230.582133pt;}
.y157{bottom:232.103067pt;}
.y24f{bottom:234.204800pt;}
.y206{bottom:235.847467pt;}
.y17f{bottom:235.935467pt;}
.y1d9{bottom:236.038133pt;}
.yf5{bottom:236.321333pt;}
.y129{bottom:238.432133pt;}
.y222{bottom:239.250133pt;}
.y85{bottom:239.976933pt;}
.y282{bottom:241.555467pt;}
.y2b5{bottom:241.595467pt;}
.yf1{bottom:241.654667pt;}
.y33d{bottom:247.248800pt;}
.y1ad{bottom:247.536800pt;}
.y24e{bottom:250.871467pt;}
.yf4{bottom:252.321333pt;}
.y87{bottom:253.305600pt;}
.y128{bottom:254.432133pt;}
.y205{bottom:254.518133pt;}
.y17e{bottom:254.606133pt;}
.y1d8{bottom:254.708800pt;}
.y156{bottom:256.929733pt;}
.ybc{bottom:257.346533pt;}
.yba{bottom:257.360533pt;}
.yf0{bottom:257.654667pt;}
.y281{bottom:258.222133pt;}
.y2b4{bottom:258.262133pt;}
.y30d{bottom:263.888800pt;}
.y33c{bottom:263.915467pt;}
.y2ea{bottom:263.928800pt;}
.y1ac{bottom:266.207467pt;}
.y25{bottom:267.418667pt;}
.yf3{bottom:268.321333pt;}
.y86{bottom:269.305600pt;}
.y84{bottom:269.310267pt;}
.y155{bottom:272.929733pt;}
.y204{bottom:273.188800pt;}
.y24d{bottom:273.204800pt;}
.y17d{bottom:273.276800pt;}
.y280{bottom:274.888800pt;}
.y2b3{bottom:274.928800pt;}
.ybb{bottom:275.679867pt;}
.yb9{bottom:275.693867pt;}
.y30c{bottom:280.555467pt;}
.y33b{bottom:280.582133pt;}
.y2e9{bottom:280.595467pt;}
.y1ab{bottom:284.878133pt;}
.y24{bottom:285.018667pt;}
.y1d7{bottom:288.500800pt;}
.y24c{bottom:289.871467pt;}
.y2c8{bottom:291.555467pt;}
.y2b2{bottom:291.595467pt;}
.y221{bottom:291.698133pt;}
.y203{bottom:291.859467pt;}
.y127{bottom:291.898800pt;}
.y17c{bottom:291.947467pt;}
.yef{bottom:293.148000pt;}
.y27f{bottom:297.222133pt;}
.y2e8{bottom:297.262133pt;}
.y154{bottom:297.756400pt;}
.y81{bottom:297.914933pt;}
.y83{bottom:300.243600pt;}
.y23{bottom:302.618667pt;}
.y33a{bottom:302.915467pt;}
.y1aa{bottom:303.548800pt;}
.yb8{bottom:304.293867pt;}
.y24b{bottom:306.538133pt;}
.y1d6{bottom:307.171467pt;}
.y126{bottom:307.898800pt;}
.y2c7{bottom:308.222133pt;}
.y2b1{bottom:308.262133pt;}
.yee{bottom:309.148000pt;}
.y40{bottom:309.592800pt;}
.y220{bottom:310.368800pt;}
.y17b{bottom:310.618133pt;}
.y153{bottom:313.756400pt;}
.y27e{bottom:313.888800pt;}
.y82{bottom:316.243600pt;}
.y80{bottom:316.248267pt;}
.y30b{bottom:319.555467pt;}
.y339{bottom:319.582133pt;}
.y2e7{bottom:319.595467pt;}
.y22{bottom:320.218667pt;}
.y1a9{bottom:322.219467pt;}
.y125{bottom:323.898800pt;}
.yed{bottom:325.148000pt;}
.y202{bottom:325.651467pt;}
.y1d5{bottom:325.842133pt;}
.y3f{bottom:327.772800pt;}
.y24a{bottom:328.871467pt;}
.y21f{bottom:329.039467pt;}
.y17a{bottom:329.288800pt;}
.y152{bottom:329.756400pt;}
.y27d{bottom:330.555467pt;}
.y2b0{bottom:330.595467pt;}
.y30a{bottom:336.222133pt;}
.y338{bottom:336.248800pt;}
.y2e6{bottom:336.262133pt;}
.y21{bottom:337.818667pt;}
.y1a8{bottom:340.890133pt;}
.y124{bottom:341.165467pt;}
.yb7{bottom:343.560533pt;}
.y201{bottom:344.322133pt;}
.y1d4{bottom:344.512800pt;}
.y7d{bottom:344.853067pt;}
.y249{bottom:345.538133pt;}
.y3e{bottom:345.952800pt;}
.y7f{bottom:347.181600pt;}
.y2c6{bottom:347.222133pt;}
.y2af{bottom:347.262133pt;}
.y179{bottom:347.959467pt;}
.yec{bottom:349.974667pt;}
.y27c{bottom:352.888800pt;}
.y337{bottom:352.915467pt;}
.y2e5{bottom:352.928800pt;}
.y151{bottom:354.583067pt;}
.y21e{bottom:355.263467pt;}
.y20{bottom:355.418667pt;}
.y123{bottom:357.165467pt;}
.yb6{bottom:359.560533pt;}
.y248{bottom:362.204800pt;}
.y200{bottom:362.992800pt;}
.y7e{bottom:363.181600pt;}
.y7c{bottom:363.186400pt;}
.y2c5{bottom:363.888800pt;}
.y2ae{bottom:363.928800pt;}
.y3d{bottom:364.132800pt;}
.yeb{bottom:365.974667pt;}
.y27b{bottom:369.555467pt;}
.y336{bottom:369.582133pt;}
.y2e4{bottom:369.595467pt;}
.ye4{bottom:370.134667pt;}
.y150{bottom:370.583067pt;}
.y122{bottom:373.165467pt;}
.y1a7{bottom:374.682133pt;}
.y1d3{bottom:378.304800pt;}
.y2ad{bottom:380.595467pt;}
.y21d{bottom:381.487467pt;}
.y1ff{bottom:381.663467pt;}
.y178{bottom:381.751467pt;}
.yea{bottom:381.974667pt;}
.y3c{bottom:382.312800pt;}
.y1f{bottom:384.356000pt;}
.y247{bottom:384.538133pt;}
.y27a{bottom:386.222133pt;}
.y335{bottom:386.248800pt;}
.yb4{bottom:388.160533pt;}
.y121{bottom:389.165467pt;}
.y7a{bottom:391.786400pt;}
.y2e3{bottom:391.928800pt;}
.y1a6{bottom:393.352800pt;}
.ye3{bottom:396.801333pt;}
.ye9{bottom:397.974667pt;}
.y21c{bottom:400.158133pt;}
.y1fe{bottom:400.334133pt;}
.y177{bottom:400.422133pt;}
.y3b{bottom:400.492800pt;}
.y246{bottom:401.204800pt;}
.y1e{bottom:401.956000pt;}
.y279{bottom:402.888800pt;}
.y2ac{bottom:402.928800pt;}
.yb3{bottom:404.169867pt;}
.y7b{bottom:405.119733pt;}
.y120{bottom:405.165467pt;}
.yb2{bottom:405.769867pt;}
.y334{bottom:408.582133pt;}
.y2e2{bottom:408.595467pt;}
.y14f{bottom:409.583067pt;}
.y1d2{bottom:412.096800pt;}
.ye2{bottom:412.801333pt;}
.y245{bottom:417.871467pt;}
.y21b{bottom:418.828800pt;}
.y1fd{bottom:419.004800pt;}
.y176{bottom:419.092800pt;}
.y2c4{bottom:419.555467pt;}
.y1d{bottom:419.556000pt;}
.y2ab{bottom:419.595467pt;}
.y79{bottom:421.119733pt;}
.yb5{bottom:421.760533pt;}
.yb1{bottom:421.769867pt;}
.y11f{bottom:422.432133pt;}
.y278{bottom:425.222133pt;}
.y333{bottom:425.248800pt;}
.y2e1{bottom:425.262133pt;}
.y14e{bottom:425.583067pt;}
.y1a5{bottom:427.144800pt;}
.y1d1{bottom:430.767467pt;}
.y244{bottom:434.538133pt;}
.y2c3{bottom:436.222133pt;}
.y2aa{bottom:436.262133pt;}
.y3a{bottom:436.852800pt;}
.y1fc{bottom:437.675467pt;}
.y175{bottom:437.763467pt;}
.y11e{bottom:438.432133pt;}
.ye8{bottom:441.774667pt;}
.y277{bottom:441.888800pt;}
.y332{bottom:441.915467pt;}
.y21a{bottom:445.052800pt;}
.y1a4{bottom:445.815467pt;}
.y2e0{bottom:447.595467pt;}
.y1c{bottom:448.493333pt;}
.y1d0{bottom:449.438133pt;}
.y78{bottom:449.724267pt;}
.yb0{bottom:450.369867pt;}
.y14d{bottom:450.409733pt;}
.y2a9{bottom:452.928800pt;}
.y11d{bottom:454.432133pt;}
.y39{bottom:455.032800pt;}
.y1fb{bottom:456.346133pt;}
.y174{bottom:456.434133pt;}
.y243{bottom:456.871467pt;}
.ye7{bottom:457.774667pt;}
.y276{bottom:458.555467pt;}
.y331{bottom:464.248800pt;}
.y2df{bottom:464.262133pt;}
.y1a3{bottom:464.486133pt;}
.y1b{bottom:466.093333pt;}
.y14c{bottom:466.409733pt;}
.y77{bottom:468.057600pt;}
.y76{bottom:468.062400pt;}
.y1cf{bottom:468.108800pt;}
.y11c{bottom:470.432133pt;}
.y219{bottom:471.276800pt;}
.y38{bottom:473.212800pt;}
.y242{bottom:473.538133pt;}
.ye6{bottom:473.774667pt;}
.y173{bottom:475.104800pt;}
.y275{bottom:475.222133pt;}
.y2a8{bottom:475.262133pt;}
.yaf{bottom:477.036533pt;}
.y309{bottom:480.888800pt;}
.y330{bottom:480.915467pt;}
.y2de{bottom:480.928800pt;}
.y14b{bottom:482.409733pt;}
.y1a2{bottom:483.156800pt;}
.y1a{bottom:483.693333pt;}
.y1ce{bottom:486.779467pt;}
.ye5{bottom:489.774667pt;}
.y1fa{bottom:490.138133pt;}
.y241{bottom:490.204800pt;}
.y11b{bottom:490.898800pt;}
.y37{bottom:491.392800pt;}
.y274{bottom:491.888800pt;}
.y2a7{bottom:491.928800pt;}
.yae{bottom:493.036533pt;}
.y172{bottom:493.775467pt;}
.y75{bottom:496.662400pt;}
.y218{bottom:497.500800pt;}
.y308{bottom:497.555467pt;}
.y32f{bottom:497.582133pt;}
.y2dd{bottom:497.595467pt;}
.y19{bottom:501.293333pt;}
.y1a1{bottom:501.827467pt;}
.y1cd{bottom:505.450133pt;}
.y240{bottom:506.871467pt;}
.y11a{bottom:506.898800pt;}
.y14a{bottom:507.236400pt;}
.y273{bottom:508.555467pt;}
.y2a6{bottom:508.595467pt;}
.y1f9{bottom:508.808800pt;}
.y36{bottom:509.572800pt;}
.y171{bottom:512.446133pt;}
.y307{bottom:514.222133pt;}
.ye1{bottom:514.601333pt;}
.y18{bottom:518.893333pt;}
.y32e{bottom:519.915467pt;}
.y2dc{bottom:519.928800pt;}
.y1a0{bottom:520.498133pt;}
.yad{bottom:521.636533pt;}
.y149{bottom:523.236400pt;}
.y23f{bottom:523.538133pt;}
.y217{bottom:523.724800pt;}
.y1cc{bottom:524.120800pt;}
.y2c2{bottom:525.222133pt;}
.y2a5{bottom:525.262133pt;}
.y1f8{bottom:527.479467pt;}
.y35{bottom:527.752800pt;}
.y119{bottom:528.698800pt;}
.ye0{bottom:530.601333pt;}
.y272{bottom:530.888800pt;}
.y170{bottom:531.116800pt;}
.y17{bottom:536.493333pt;}
.y32d{bottom:536.582133pt;}
.y2db{bottom:536.595467pt;}
.y19f{bottom:539.168800pt;}
.yac{bottom:539.969867pt;}
.yaa{bottom:539.974533pt;}
.y216{bottom:542.395467pt;}
.y1cb{bottom:542.791467pt;}
.y118{bottom:544.698800pt;}
.y23e{bottom:545.871467pt;}
.y34{bottom:545.932800pt;}
.ydf{bottom:546.601333pt;}
.y271{bottom:547.555467pt;}
.y2a4{bottom:547.595467pt;}
.y148{bottom:548.063067pt;}
.y16f{bottom:549.787467pt;}
.y306{bottom:553.222133pt;}
.y32c{bottom:553.248800pt;}
.y2da{bottom:553.262133pt;}
.y19e{bottom:557.839467pt;}
.yab{bottom:558.303200pt;}
.ya9{bottom:558.307867pt;}
.y74{bottom:560.244800pt;}
.y1f7{bottom:561.271467pt;}
.y1ca{bottom:561.462133pt;}
.y117{bottom:561.965467pt;}
.y23d{bottom:562.538133pt;}
.yde{bottom:562.601333pt;}
.y147{bottom:564.063067pt;}
.y270{bottom:564.222133pt;}
.y2a3{bottom:564.262133pt;}
.y16{bottom:565.430667pt;}
.y16e{bottom:568.458133pt;}
.y215{bottom:568.619467pt;}
.y305{bottom:569.888800pt;}
.y32b{bottom:569.915467pt;}
.y2d9{bottom:569.928800pt;}
.y19d{bottom:576.510133pt;}
.y116{bottom:577.965467pt;}
.ydd{bottom:578.601333pt;}
.y23c{bottom:579.204800pt;}
.y2c1{bottom:580.888800pt;}
.y2a2{bottom:580.928800pt;}
.y33{bottom:582.292800pt;}
.y15{bottom:583.030667pt;}
.y26f{bottom:586.555467pt;}
.y2d8{bottom:586.595467pt;}
.y73{bottom:586.644800pt;}
.ya7{bottom:586.907867pt;}
.y32a{bottom:592.248800pt;}
.y115{bottom:593.965467pt;}
.ydc{bottom:594.601333pt;}
.y214{bottom:594.843467pt;}
.y1f6{bottom:595.063467pt;}
.y19c{bottom:595.180800pt;}
.y1c9{bottom:595.254133pt;}
.y2c0{bottom:597.555467pt;}
.ya8{bottom:597.907867pt;}
.y14{bottom:600.630667pt;}
.y32{bottom:600.736800pt;}
.y23b{bottom:601.538133pt;}
.y146{bottom:601.929733pt;}
.y16d{bottom:602.250133pt;}
.y5c{bottom:602.352800pt;}
.y26e{bottom:603.222133pt;}
.y2a1{bottom:603.262133pt;}
.y72{bottom:603.306133pt;}
.y329{bottom:608.915467pt;}
.y2d7{bottom:608.928800pt;}
.y114{bottom:611.232133pt;}
.y213{bottom:613.514133pt;}
.y1f5{bottom:613.734133pt;}
.y1c8{bottom:613.924800pt;}
.y2bf{bottom:614.222133pt;}
.ya6{bottom:616.241200pt;}
.y145{bottom:617.929733pt;}
.y23a{bottom:618.204800pt;}
.y13{bottom:618.230667pt;}
.y5b{bottom:619.014133pt;}
.y31{bottom:619.180800pt;}
.ydb{bottom:619.417600pt;}
.y26d{bottom:619.888800pt;}
.y2a0{bottom:619.928800pt;}
.y71{bottom:619.967467pt;}
.y16c{bottom:620.920800pt;}
.y304{bottom:625.555467pt;}
.y328{bottom:625.582133pt;}
.y2d6{bottom:625.595467pt;}
.y113{bottom:627.232133pt;}
.y19b{bottom:628.972800pt;}
.y212{bottom:632.184800pt;}
.y1f4{bottom:632.404800pt;}
.y1c7{bottom:632.595467pt;}
.y144{bottom:633.929733pt;}
.y239{bottom:634.871467pt;}
.yda{bottom:635.417600pt;}
.y5a{bottom:635.675467pt;}
.y12{bottom:635.830667pt;}
.y26c{bottom:636.555467pt;}
.y29f{bottom:636.595467pt;}
.y70{bottom:636.628800pt;}
.y30{bottom:637.624800pt;}
.y16b{bottom:639.591467pt;}
.y303{bottom:642.222133pt;}
.y327{bottom:642.248800pt;}
.y2d5{bottom:642.262133pt;}
.y112{bottom:643.232133pt;}
.ya5{bottom:644.846000pt;}
.y19a{bottom:647.643467pt;}
.y143{bottom:649.929733pt;}
.y211{bottom:650.855467pt;}
.y1f3{bottom:651.075467pt;}
.y1c6{bottom:651.266133pt;}
.yd9{bottom:651.417600pt;}
.y59{bottom:652.336800pt;}
.y26b{bottom:653.222133pt;}
.y29e{bottom:653.262133pt;}
.y11{bottom:653.430667pt;}
.y238{bottom:657.204800pt;}
.y16a{bottom:658.262133pt;}
.y302{bottom:658.888800pt;}
.y326{bottom:658.915467pt;}
.y2d4{bottom:658.928800pt;}
.y111{bottom:660.498800pt;}
.ya4{bottom:663.179333pt;}
.ya2{bottom:663.184000pt;}
.y199{bottom:666.314133pt;}
.yd8{bottom:667.417600pt;}
.y6f{bottom:668.411467pt;}
.y1f2{bottom:669.746133pt;}
.y26a{bottom:669.888800pt;}
.y29d{bottom:669.928800pt;}
.y1c5{bottom:669.936800pt;}
.y237{bottom:673.871467pt;}
.y2f{bottom:674.248800pt;}
.y142{bottom:674.756400pt;}
.y301{bottom:675.555467pt;}
.y110{bottom:676.498800pt;}
.y169{bottom:676.932800pt;}
.y210{bottom:677.079467pt;}
.y325{bottom:681.248800pt;}
.y2d3{bottom:681.262133pt;}
.ya3{bottom:681.512667pt;}
.ya1{bottom:681.517333pt;}
.yd7{bottom:683.417600pt;}
.y58{bottom:684.119467pt;}
.y198{bottom:684.984800pt;}
.y6e{bottom:685.072800pt;}
.y2be{bottom:686.555467pt;}
.y1f1{bottom:688.416800pt;}
.y1c4{bottom:688.607467pt;}
.y236{bottom:690.538133pt;}
.y141{bottom:690.756400pt;}
.y269{bottom:692.222133pt;}
.y29c{bottom:692.262133pt;}
.y2e{bottom:692.428800pt;}
.y10f{bottom:692.498800pt;}
.y168{bottom:695.603467pt;}
.yc9{bottom:696.830933pt;}
.y300{bottom:697.888800pt;}
.y324{bottom:697.915467pt;}
.y2d2{bottom:697.928800pt;}
.y57{bottom:700.780800pt;}
.y6d{bottom:701.734133pt;}
.y10{bottom:702.656133pt;}
.y20f{bottom:703.303467pt;}
.y197{bottom:703.655467pt;}
.y1f0{bottom:707.087467pt;}
.y235{bottom:707.204800pt;}
.y1c3{bottom:707.278133pt;}
.yd6{bottom:708.244267pt;}
.y10e{bottom:708.498800pt;}
.y268{bottom:708.888800pt;}
.y29b{bottom:708.928800pt;}
.ya0{bottom:710.117333pt;}
.yc8{bottom:712.830933pt;}
.y2ff{bottom:714.555467pt;}
.y323{bottom:714.582133pt;}
.y2d1{bottom:714.595467pt;}
.y140{bottom:715.583067pt;}
.y56{bottom:717.442133pt;}
.y167{bottom:718.043467pt;}
.y196{bottom:722.326133pt;}
.y9d{bottom:723.798000pt;}
.yd5{bottom:724.244267pt;}
.y267{bottom:725.555467pt;}
.y29a{bottom:725.595467pt;}
.y1ef{bottom:725.758133pt;}
.y10d{bottom:725.765467pt;}
.y1c2{bottom:725.948800pt;}
.y9f{bottom:726.117333pt;}
.y2d{bottom:728.788800pt;}
.y20e{bottom:729.527467pt;}
.y234{bottom:729.538133pt;}
.y2fe{bottom:731.222133pt;}
.y322{bottom:731.248800pt;}
.y2d0{bottom:731.262133pt;}
.y13f{bottom:731.583067pt;}
.y6c{bottom:733.516800pt;}
.y55{bottom:734.103467pt;}
.yc7{bottom:739.497600pt;}
.y195{bottom:740.996800pt;}
.y10c{bottom:741.765467pt;}
.y9e{bottom:742.117333pt;}
.y9c{bottom:742.131333pt;}
.y266{bottom:742.222133pt;}
.y2c{bottom:743.188800pt;}
.y1ee{bottom:744.428800pt;}
.y1c1{bottom:744.619467pt;}
.y233{bottom:746.204800pt;}
.yf{bottom:746.299200pt;}
.y2fd{bottom:747.888800pt;}
.y299{bottom:747.928800pt;}
.yd4{bottom:749.070933pt;}
.y6b{bottom:750.178133pt;}
.y54{bottom:750.764800pt;}
.y166{bottom:751.835467pt;}
.y321{bottom:753.582133pt;}
.yc6{bottom:755.497600pt;}
.y20d{bottom:755.751467pt;}
.y13e{bottom:756.409733pt;}
.y2b{bottom:757.588800pt;}
.y265{bottom:758.888800pt;}
.y10b{bottom:759.032133pt;}
.ye{bottom:759.099200pt;}
.y194{bottom:759.667467pt;}
.y1c0{bottom:763.290133pt;}
.y298{bottom:764.595467pt;}
.y6a{bottom:766.839467pt;}
.y53{bottom:767.426133pt;}
.y232{bottom:768.538133pt;}
.y2fc{bottom:770.222133pt;}
.y320{bottom:770.248800pt;}
.y165{bottom:770.506133pt;}
.y9b{bottom:770.731333pt;}
.yd{bottom:771.899200pt;}
.y2a{bottom:771.988800pt;}
.y13d{bottom:772.409733pt;}
.yd3{bottom:773.897600pt;}
.y10a{bottom:775.032133pt;}
.y1ed{bottom:778.220800pt;}
.y193{bottom:778.338133pt;}
.y264{bottom:781.222133pt;}
.y297{bottom:781.262133pt;}
.y20c{bottom:781.975467pt;}
.y52{bottom:784.087467pt;}
.yc{bottom:784.699200pt;}
.y231{bottom:785.204800pt;}
.y29{bottom:786.388800pt;}
.y9a{bottom:786.731333pt;}
.y2fb{bottom:786.888800pt;}
.y31f{bottom:786.915467pt;}
.y2cf{bottom:786.928800pt;}
.y164{bottom:787.167467pt;}
.yd2{bottom:789.897600pt;}
.y109{bottom:791.032133pt;}
.y1ec{bottom:796.891467pt;}
.y192{bottom:797.008800pt;}
.y1bf{bottom:797.082133pt;}
.y13c{bottom:797.236400pt;}
.yb{bottom:797.499200pt;}
.y263{bottom:797.888800pt;}
.y69{bottom:798.622133pt;}
.y51{bottom:800.748800pt;}
.y230{bottom:801.871467pt;}
.y2fa{bottom:803.555467pt;}
.y31e{bottom:803.582133pt;}
.y296{bottom:803.595467pt;}
.y28{bottom:804.568800pt;}
.y108{bottom:807.032133pt;}
.y98{bottom:811.064667pt;}
.y13b{bottom:813.236400pt;}
.y99{bottom:813.398000pt;}
.y262{bottom:814.555467pt;}
.yd1{bottom:814.724267pt;}
.y68{bottom:815.283467pt;}
.y1eb{bottom:815.562133pt;}
.y1be{bottom:815.752800pt;}
.y50{bottom:817.410133pt;}
.y163{bottom:818.950133pt;}
.y2f9{bottom:820.222133pt;}
.y295{bottom:820.262133pt;}
.y107{bottom:823.032133pt;}
.y31d{bottom:825.915467pt;}
.y22f{bottom:826.048800pt;}
.ya{bottom:826.892933pt;}
.y97{bottom:829.398000pt;}
.yd0{bottom:830.724267pt;}
.y191{bottom:830.800800pt;}
.y261{bottom:831.222133pt;}
.y67{bottom:831.944800pt;}
.y4f{bottom:834.071467pt;}
.y1ea{bottom:834.232800pt;}
.y1bd{bottom:834.423467pt;}
.y162{bottom:835.611467pt;}
.y294{bottom:836.928800pt;}
.y13a{bottom:838.063067pt;}
.y106{bottom:840.298800pt;}
.y2f8{bottom:842.555467pt;}
.y31c{bottom:842.582133pt;}
.y2ce{bottom:842.595467pt;}
.y9{bottom:842.892933pt;}
.ycf{bottom:846.724267pt;}
.y66{bottom:848.606133pt;}
.y190{bottom:849.471467pt;}
.y161{bottom:852.272800pt;}
.y1e9{bottom:852.903467pt;}
.y1bc{bottom:853.094133pt;}
.y260{bottom:853.555467pt;}
.y293{bottom:853.595467pt;}
.y139{bottom:854.063067pt;}
.y105{bottom:856.298800pt;}
.y96{bottom:857.998000pt;}
.y2f7{bottom:859.222133pt;}
.y31b{bottom:859.248800pt;}
.y2cd{bottom:859.262133pt;}
.y65{bottom:865.267467pt;}
.y4e{bottom:865.854133pt;}
.y18f{bottom:868.142133pt;}
.y138{bottom:870.063067pt;}
.y25f{bottom:870.222133pt;}
.y1e8{bottom:871.574133pt;}
.y1bb{bottom:871.764800pt;}
.y104{bottom:873.565467pt;}
.y2f6{bottom:875.888800pt;}
.y31a{bottom:875.915467pt;}
.y292{bottom:875.928800pt;}
.y4d{bottom:882.515467pt;}
.y160{bottom:884.055467pt;}
.y7{bottom:885.988000pt;}
.y137{bottom:886.063067pt;}
.y95{bottom:886.598000pt;}
.y18e{bottom:886.812800pt;}
.y2bd{bottom:886.888800pt;}
.y103{bottom:889.565467pt;}
.ycd{bottom:889.724267pt;}
.y1e7{bottom:890.244800pt;}
.y1ba{bottom:890.435467pt;}
.y25e{bottom:892.555467pt;}
.y319{bottom:892.582133pt;}
.y291{bottom:892.595467pt;}
.y64{bottom:897.050133pt;}
.y4c{bottom:899.176800pt;}
.y15f{bottom:900.716800pt;}
.y22e{bottom:901.523467pt;}
.yce{bottom:904.630933pt;}
.y18d{bottom:905.483467pt;}
.y102{bottom:905.565467pt;}
.ycc{bottom:905.724267pt;}
.y1e6{bottom:908.915467pt;}
.y1b9{bottom:909.106133pt;}
.y25d{bottom:909.222133pt;}
.y318{bottom:909.248800pt;}
.y290{bottom:909.262133pt;}
.y136{bottom:910.889733pt;}
.y94{bottom:913.264667pt;}
.y63{bottom:913.711467pt;}
.y2f5{bottom:914.888800pt;}
.y2cc{bottom:914.928800pt;}
.y4b{bottom:915.838133pt;}
.y15e{bottom:917.378133pt;}
.y22d{bottom:920.194133pt;}
.ycb{bottom:921.724267pt;}
.y101{bottom:922.832133pt;}
.y18c{bottom:924.154133pt;}
.y25c{bottom:925.888800pt;}
.y28f{bottom:925.928800pt;}
.y348{bottom:926.886133pt;}
.y135{bottom:926.889733pt;}
.y1e5{bottom:927.586133pt;}
.y1b8{bottom:927.776800pt;}
.y93{bottom:929.264667pt;}
.y2f4{bottom:931.555467pt;}
.y317{bottom:931.582133pt;}
.y2cb{bottom:931.595467pt;}
.y4a{bottom:932.499467pt;}
.y15d{bottom:934.039467pt;}
.y6{bottom:936.485733pt;}
.yca{bottom:937.724267pt;}
.y100{bottom:938.832133pt;}
.y25b{bottom:942.555467pt;}
.y18b{bottom:942.824800pt;}
.y347{bottom:944.486133pt;}
.y62{bottom:945.494133pt;}
.y1e4{bottom:946.256800pt;}
.y22c{bottom:946.418133pt;}
.y1b7{bottom:946.447467pt;}
.y2f3{bottom:948.222133pt;}
.y316{bottom:948.248800pt;}
.y28e{bottom:948.262133pt;}
.y49{bottom:949.160800pt;}
.y5{bottom:950.885733pt;}
.y134{bottom:951.714800pt;}
.yff{bottom:954.832133pt;}
.y90{bottom:958.669333pt;}
.y92{bottom:960.998000pt;}
.y18a{bottom:961.495467pt;}
.y20b{bottom:961.568800pt;}
.y346{bottom:962.086133pt;}
.y61{bottom:962.155467pt;}
.yc5{bottom:962.552133pt;}
.y25a{bottom:964.888800pt;}
.y315{bottom:964.915467pt;}
.y28d{bottom:964.928800pt;}
.y22b{bottom:965.088800pt;}
.y48{bottom:965.822133pt;}
.y133{bottom:970.048133pt;}
.yfe{bottom:970.832133pt;}
.y91{bottom:976.998000pt;}
.y8f{bottom:977.002667pt;}
.yc4{bottom:978.552133pt;}
.y60{bottom:978.816800pt;}
.y1e3{bottom:980.048800pt;}
.y189{bottom:980.166133pt;}
.y1b6{bottom:980.239467pt;}
.y259{bottom:981.555467pt;}
.y28c{bottom:981.595467pt;}
.y47{bottom:982.483467pt;}
.y314{bottom:987.248800pt;}
.yfd{bottom:988.098267pt;}
.y22a{bottom:991.312800pt;}
.y5f{bottom:995.478133pt;}
.y258{bottom:998.222133pt;}
.y28b{bottom:998.262133pt;}
.y8{bottom:998.382000pt;}
.y1e2{bottom:998.719467pt;}
.y188{bottom:998.836800pt;}
.y1b5{bottom:998.910133pt;}
.y46{bottom:999.144800pt;}
.y345{bottom:1002.955467pt;}
.y2f2{bottom:1003.888800pt;}
.y313{bottom:1003.915467pt;}
.y2ca{bottom:1003.928800pt;}
.y8e{bottom:1005.602667pt;}
.yfc{bottom:1006.431600pt;}
.y229{bottom:1009.983467pt;}
.y5e{bottom:1012.139467pt;}
.y257{bottom:1014.888800pt;}
.y45{bottom:1015.806133pt;}
.y1e1{bottom:1017.390133pt;}
.y187{bottom:1017.507467pt;}
.y1b4{bottom:1017.580800pt;}
.y2bc{bottom:1020.555467pt;}
.y312{bottom:1020.582133pt;}
.y28a{bottom:1020.595467pt;}
.y8d{bottom:1021.602667pt;}
.y132{bottom:1030.414133pt;}
.y1e0{bottom:1036.060800pt;}
.y186{bottom:1036.178133pt;}
.y228{bottom:1036.207467pt;}
.y44{bottom:1036.251467pt;}
.y5d{bottom:1036.368800pt;}
.y256{bottom:1037.222133pt;}
.y311{bottom:1037.248800pt;}
.y289{bottom:1037.262133pt;}
.yc3{bottom:1038.918133pt;}
.y4{bottom:1042.005067pt;}
.y2{bottom:1058.975467pt;}
.y43{bottom:1064.362133pt;}
.y1{bottom:1073.560800pt;}
.ha{height:32.083333pt;}
.h5{height:35.531250pt;}
.hf{height:35.906250pt;}
.he{height:36.093750pt;}
.h3{height:39.479167pt;}
.h11{height:39.895833pt;}
.h13{height:40.104167pt;}
.h4{height:42.024354pt;}
.h12{height:43.848083pt;}
.hd{height:43.885417pt;}
.hc{height:44.114583pt;}
.h7{height:45.562500pt;}
.h8{height:45.729167pt;}
.h10{height:47.375000pt;}
.h9{height:49.322917pt;}
.h15{height:50.302083pt;}
.hb{height:69.052083pt;}
.h6{height:71.062500pt;}
.h14{height:71.895833pt;}
.h2{height:80.208333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:5.417600pt;}
.x10{left:7.709600pt;}
.xe{left:10.973600pt;}
.x13{left:18.689600pt;}
.x17{left:20.597600pt;}
.xf{left:24.017600pt;}
.xd{left:25.865600pt;}
.x15{left:31.877600pt;}
.x6{left:34.055733pt;}
.x16{left:43.181600pt;}
.xc{left:47.297600pt;}
.x5{left:56.039733pt;}
.x11{left:58.229600pt;}
.x18{left:59.261600pt;}
.x19{left:64.251867pt;}
.x1c{left:71.799600pt;}
.x32{left:74.030667pt;}
.x12{left:75.269600pt;}
.x3a{left:80.687600pt;}
.x35{left:95.762933pt;}
.x2d{left:104.293067pt;}
.x1e{left:150.022800pt;}
.x2a{left:154.364400pt;}
.x2{left:185.375067pt;}
.x7{left:187.716533pt;}
.x9{left:189.133067pt;}
.x2e{left:200.220933pt;}
.xb{left:206.921600pt;}
.x1d{left:213.249467pt;}
.xa{left:215.152533pt;}
.x33{left:218.852933pt;}
.x25{left:231.119067pt;}
.x38{left:262.319467pt;}
.x4{left:274.165600pt;}
.x24{left:284.999067pt;}
.x26{left:290.803733pt;}
.x21{left:292.328533pt;}
.x27{left:296.330000pt;}
.x2b{left:327.178133pt;}
.x2f{left:332.487600pt;}
.x22{left:360.585733pt;}
.x1{left:362.702533pt;}
.x28{left:364.385733pt;}
.x1a{left:410.262267pt;}
.x1b{left:434.256933pt;}
.x8{left:604.156267pt;}
.x39{left:674.292800pt;}
.x34{left:678.066267pt;}
.x37{left:687.350400pt;}
.x29{left:689.412400pt;}
.x23{left:696.412400pt;}
.x36{left:697.318400pt;}
.x20{left:698.443467pt;}
.x1f{left:705.947467pt;}
.x30{left:707.780933pt;}
.x2c{left:711.613600pt;}
.x31{left:713.156533pt;}
.x3{left:718.058933pt;}
}




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