
    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_6baf0904851fbcb1a50230c0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_d4230f9642448affed2eb2fe.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.012000;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_c739325468180796d79e3e91.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.018000;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_64d5c778078a1db09049845c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.971000;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_ceed1c95b61fb022b5d6c96f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.018000;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_ff42f508403da0d728c00dda.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.012000;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_9a4c4ce5f602d050b93617d7.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.948000;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_471703c0658aec7fd607707a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.727539;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_d4230f9642448affed2eb2fe.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.012000;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_2e24e4d5e8bfa339be895e51.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.962000;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_d4230f9642448affed2eb2fe.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.012000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.247536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247536,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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-8.614200px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.720000px;}
.ls1{letter-spacing:-0.756000px;}
.ls2{letter-spacing:-0.594000px;}
.ls4{letter-spacing:-0.270000px;}
.ls3{letter-spacing:-0.264000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.wsd2{word-spacing:-19.620000px;}
.ws3{word-spacing:-19.068000px;}
.ws4{word-spacing:-18.228000px;}
.ws1{word-spacing:-14.982000px;}
.ws6{word-spacing:-14.850000px;}
.wsa8{word-spacing:-14.388000px;}
.ws5{word-spacing:-14.322000px;}
.wse7{word-spacing:-13.620000px;}
.ws2{word-spacing:-11.059440px;}
.ws75{word-spacing:-3.498000px;}
.ws45{word-spacing:-3.234000px;}
.wsc5{word-spacing:-2.970000px;}
.ws42{word-spacing:-2.904000px;}
.ws11{word-spacing:-2.838000px;}
.ws35{word-spacing:-2.706000px;}
.ws3c{word-spacing:-2.640000px;}
.ws47{word-spacing:-2.574000px;}
.wsb4{word-spacing:-2.460000px;}
.wsd0{word-spacing:-2.442000px;}
.wsad{word-spacing:-2.340000px;}
.wsd8{word-spacing:-2.280000px;}
.ws88{word-spacing:-2.244000px;}
.ws22{word-spacing:-2.178000px;}
.wsd6{word-spacing:-2.160000px;}
.ws94{word-spacing:-2.112000px;}
.ws3a{word-spacing:-2.046000px;}
.ws7c{word-spacing:-1.980000px;}
.wsf6{word-spacing:-1.920000px;}
.ws2f{word-spacing:-1.914000px;}
.wsf1{word-spacing:-1.860000px;}
.ws83{word-spacing:-1.848000px;}
.wsbc{word-spacing:-1.800000px;}
.ws9{word-spacing:-1.782000px;}
.ws50{word-spacing:-1.584000px;}
.wsde{word-spacing:-1.560000px;}
.ws1c{word-spacing:-1.518000px;}
.wsed{word-spacing:-1.500000px;}
.ws6b{word-spacing:-1.452000px;}
.wsbb{word-spacing:-1.440000px;}
.ws93{word-spacing:-1.386000px;}
.ws97{word-spacing:-1.320000px;}
.wse2{word-spacing:-1.260000px;}
.ws6d{word-spacing:-1.254000px;}
.wsf0{word-spacing:-1.200000px;}
.ws15{word-spacing:-1.188000px;}
.wsa{word-spacing:-1.122000px;}
.ws39{word-spacing:-1.056000px;}
.wsdb{word-spacing:-1.020000px;}
.ws86{word-spacing:-0.990000px;}
.ws1a{word-spacing:-0.924000px;}
.ws9d{word-spacing:-0.900000px;}
.ws10{word-spacing:-0.858000px;}
.wse6{word-spacing:-0.840000px;}
.ws85{word-spacing:-0.792000px;}
.wsae{word-spacing:-0.780000px;}
.ws4f{word-spacing:-0.726000px;}
.ws4b{word-spacing:-0.660000px;}
.ws43{word-spacing:-0.594000px;}
.wsd3{word-spacing:-0.540000px;}
.ws57{word-spacing:-0.528000px;}
.ws7f{word-spacing:-0.462000px;}
.ws69{word-spacing:-0.396000px;}
.wsac{word-spacing:-0.360000px;}
.ws92{word-spacing:-0.330000px;}
.ws9f{word-spacing:-0.300000px;}
.wsa0{word-spacing:-0.240000px;}
.ws98{word-spacing:-0.198000px;}
.wsb{word-spacing:-0.132000px;}
.ws9c{word-spacing:-0.120000px;}
.ws5a{word-spacing:-0.066000px;}
.ws0{word-spacing:0.000000px;}
.ws6a{word-spacing:0.066000px;}
.ws30{word-spacing:0.132000px;}
.ws27{word-spacing:0.198000px;}
.ws33{word-spacing:0.264000px;}
.wse4{word-spacing:0.300000px;}
.ws17{word-spacing:0.330000px;}
.wsee{word-spacing:0.360000px;}
.ws5d{word-spacing:0.396000px;}
.wsbd{word-spacing:0.420000px;}
.ws6f{word-spacing:0.462000px;}
.wsf2{word-spacing:0.480000px;}
.ws99{word-spacing:0.528000px;}
.wsc4{word-spacing:0.540000px;}
.ws1e{word-spacing:0.594000px;}
.wsdc{word-spacing:0.600000px;}
.ws23{word-spacing:0.660000px;}
.wsbe{word-spacing:0.720000px;}
.ws46{word-spacing:0.726000px;}
.ws7{word-spacing:0.756000px;}
.ws8{word-spacing:0.792000px;}
.ws12{word-spacing:0.858000px;}
.wsd9{word-spacing:0.900000px;}
.ws26{word-spacing:0.924000px;}
.wse3{word-spacing:0.960000px;}
.ws32{word-spacing:0.990000px;}
.wsaa{word-spacing:1.056000px;}
.wsf7{word-spacing:1.080000px;}
.ws13{word-spacing:1.122000px;}
.wsd5{word-spacing:1.140000px;}
.ws38{word-spacing:1.188000px;}
.ws73{word-spacing:1.254000px;}
.wsba{word-spacing:1.260000px;}
.ws25{word-spacing:1.320000px;}
.ws66{word-spacing:1.386000px;}
.ws53{word-spacing:1.452000px;}
.ws67{word-spacing:1.518000px;}
.ws77{word-spacing:1.584000px;}
.ws9e{word-spacing:1.620000px;}
.ws76{word-spacing:1.650000px;}
.ws51{word-spacing:1.716000px;}
.wsb9{word-spacing:1.740000px;}
.wsc7{word-spacing:1.782000px;}
.ws64{word-spacing:1.848000px;}
.wsc2{word-spacing:1.860000px;}
.ws61{word-spacing:1.914000px;}
.ws1f{word-spacing:1.980000px;}
.ws68{word-spacing:2.046000px;}
.ws84{word-spacing:2.112000px;}
.ws3b{word-spacing:2.178000px;}
.wsa3{word-spacing:2.220000px;}
.ws20{word-spacing:2.244000px;}
.wsc1{word-spacing:2.280000px;}
.ws48{word-spacing:2.310000px;}
.ws5b{word-spacing:2.376000px;}
.wsea{word-spacing:2.400000px;}
.ws28{word-spacing:2.442000px;}
.ws9b{word-spacing:2.460000px;}
.wscf{word-spacing:2.508000px;}
.ws3e{word-spacing:2.574000px;}
.ws5e{word-spacing:2.640000px;}
.wsc6{word-spacing:2.706000px;}
.wsb8{word-spacing:2.760000px;}
.ws4e{word-spacing:2.772000px;}
.wsf5{word-spacing:2.820000px;}
.ws7a{word-spacing:2.838000px;}
.ws2e{word-spacing:2.904000px;}
.wsdf{word-spacing:2.940000px;}
.ws82{word-spacing:2.970000px;}
.ws9a{word-spacing:3.000000px;}
.ws24{word-spacing:3.036000px;}
.ws96{word-spacing:3.168000px;}
.wsa2{word-spacing:3.180000px;}
.wsa4{word-spacing:3.234000px;}
.ws7b{word-spacing:3.300000px;}
.ws3f{word-spacing:3.366000px;}
.wscc{word-spacing:3.432000px;}
.wsa1{word-spacing:3.480000px;}
.wsef{word-spacing:3.540000px;}
.wsce{word-spacing:3.564000px;}
.ws4d{word-spacing:3.630000px;}
.wse5{word-spacing:3.660000px;}
.wsb5{word-spacing:3.696000px;}
.wse1{word-spacing:3.720000px;}
.wsb2{word-spacing:3.762000px;}
.wsb1{word-spacing:3.828000px;}
.wscb{word-spacing:3.894000px;}
.ws44{word-spacing:3.960000px;}
.ws19{word-spacing:4.026000px;}
.wsc{word-spacing:4.158000px;}
.wsda{word-spacing:4.200000px;}
.ws34{word-spacing:4.224000px;}
.ws63{word-spacing:4.290000px;}
.wse0{word-spacing:4.320000px;}
.ws29{word-spacing:4.356000px;}
.wseb{word-spacing:4.380000px;}
.ws2a{word-spacing:4.399362px;}
.ws87{word-spacing:4.422000px;}
.wsf{word-spacing:4.488000px;}
.ws65{word-spacing:4.554000px;}
.ws40{word-spacing:4.620000px;}
.ws95{word-spacing:4.686000px;}
.ws14{word-spacing:4.752000px;}
.wsf3{word-spacing:4.800000px;}
.ws70{word-spacing:4.818000px;}
.ws8b{word-spacing:4.884000px;}
.wsc3{word-spacing:4.920000px;}
.wsc0{word-spacing:4.950000px;}
.wsca{word-spacing:5.016000px;}
.wsf4{word-spacing:5.040000px;}
.ws21{word-spacing:5.082000px;}
.ws1b{word-spacing:5.148000px;}
.wsc9{word-spacing:5.214000px;}
.ws37{word-spacing:5.280000px;}
.wsab{word-spacing:5.340000px;}
.ws4a{word-spacing:5.346000px;}
.ws41{word-spacing:5.412000px;}
.wsd7{word-spacing:5.460000px;}
.ws2b{word-spacing:5.478000px;}
.ws7d{word-spacing:5.544000px;}
.wsec{word-spacing:5.580000px;}
.ws8a{word-spacing:5.610000px;}
.ws6c{word-spacing:5.676000px;}
.wsd4{word-spacing:5.700000px;}
.ws56{word-spacing:5.742000px;}
.ws7e{word-spacing:5.874000px;}
.ws5c{word-spacing:5.940000px;}
.wsd{word-spacing:6.006000px;}
.ws1d{word-spacing:6.072000px;}
.ws52{word-spacing:6.138000px;}
.ws3d{word-spacing:6.204000px;}
.wsa6{word-spacing:6.270000px;}
.wsc8{word-spacing:6.336000px;}
.ws81{word-spacing:6.402000px;}
.ws2d{word-spacing:6.468000px;}
.ws36{word-spacing:6.534000px;}
.ws80{word-spacing:6.600000px;}
.ws49{word-spacing:6.666000px;}
.ws72{word-spacing:6.732000px;}
.wsd1{word-spacing:6.798000px;}
.ws62{word-spacing:6.864000px;}
.ws58{word-spacing:6.930000px;}
.wse8{word-spacing:6.960000px;}
.ws16{word-spacing:6.996000px;}
.ws8f{word-spacing:7.062000px;}
.wsaf{word-spacing:7.128000px;}
.ws55{word-spacing:7.326000px;}
.ws91{word-spacing:7.392000px;}
.wscd{word-spacing:7.458000px;}
.wsdd{word-spacing:7.500000px;}
.ws18{word-spacing:7.524000px;}
.wsb7{word-spacing:7.656000px;}
.wsb3{word-spacing:7.722000px;}
.wse{word-spacing:7.788000px;}
.wsa9{word-spacing:7.920000px;}
.ws8e{word-spacing:7.986000px;}
.ws79{word-spacing:8.052000px;}
.wsb6{word-spacing:8.118000px;}
.ws59{word-spacing:8.184000px;}
.ws78{word-spacing:8.250000px;}
.ws90{word-spacing:8.316000px;}
.ws4c{word-spacing:8.580000px;}
.ws89{word-spacing:8.646000px;}
.ws60{word-spacing:8.712000px;}
.ws5f{word-spacing:8.778000px;}
.wsbf{word-spacing:8.910000px;}
.ws71{word-spacing:9.174000px;}
.ws54{word-spacing:9.306000px;}
.ws8c{word-spacing:9.570000px;}
.wsa7{word-spacing:9.636000px;}
.wse9{word-spacing:9.720000px;}
.wsb0{word-spacing:10.032000px;}
.ws2c{word-spacing:10.362000px;}
.ws74{word-spacing:10.494000px;}
.ws6e{word-spacing:11.088000px;}
.wsa5{word-spacing:12.210000px;}
.ws8d{word-spacing:13.200000px;}
.ws31{word-spacing:566.524800px;}
._c{margin-left:-49.300800px;}
._a{margin-left:-21.667800px;}
._10{margin-left:-14.480400px;}
._9{margin-left:-10.104600px;}
._f{margin-left:-8.052000px;}
._2{margin-left:-6.078600px;}
._3{margin-left:-4.943400px;}
._5{margin-left:-3.834600px;}
._0{margin-left:-2.574000px;}
._1{margin-left:-1.452000px;}
._4{width:1.188000px;}
._7{width:2.290200px;}
._6{width:3.558600px;}
._d{width:33.711600px;}
._e{width:40.337400px;}
._b{width:73.831200px;}
._8{width:122.827200px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.000000px;}
.fs8{font-size:48.720000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs5{font-size:66.000000px;}
.fsa{font-size:66.657000px;}
.fs0{font-size:72.000000px;}
.fsb{font-size:78.000000px;}
.fs7{font-size:84.000000px;}
.fs9{font-size:90.000000px;}
.fs2{font-size:102.000000px;}
.fs6{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:66.525004px;}
.y4{bottom:97.125005px;}
.y24{bottom:139.264499px;}
.y29{bottom:140.409450px;}
.y28{bottom:160.209450px;}
.y1b{bottom:196.933500px;}
.y31{bottom:209.055300px;}
.y23{bottom:209.518500px;}
.y1a{bottom:209.533503px;}
.y5f{bottom:221.102400px;}
.y22{bottom:222.118502px;}
.y19{bottom:222.133505px;}
.y15f{bottom:222.228900px;}
.y21{bottom:234.718504px;}
.y18{bottom:234.733496px;}
.y28c{bottom:240.921900px;}
.y262{bottom:241.264050px;}
.y15e{bottom:241.728900px;}
.y45{bottom:241.800150px;}
.yea{bottom:243.728550px;}
.y204{bottom:243.730800px;}
.y5e{bottom:243.750300px;}
.yb1{bottom:243.896550px;}
.y1ac{bottom:244.023900px;}
.y12d{bottom:244.058850px;}
.y1ce{bottom:244.077150px;}
.y90{bottom:244.106400px;}
.y10b{bottom:244.260450px;}
.y195{bottom:247.138500px;}
.y177{bottom:247.780200px;}
.y20{bottom:259.918497px;}
.y17{bottom:259.933500px;}
.y28b{bottom:260.741550px;}
.y15d{bottom:261.228900px;}
.y239{bottom:261.397050px;}
.y261{bottom:261.425700px;}
.y44{bottom:264.300150px;}
.ye9{bottom:266.354850px;}
.y203{bottom:266.359350px;}
.y5d{bottom:266.398200px;}
.yb0{bottom:266.690850px;}
.y1ab{bottom:266.945400px;}
.y12c{bottom:267.015600px;}
.y1cd{bottom:267.052200px;}
.y8f{bottom:267.110550px;}
.y10a{bottom:267.418500px;}
.y1f0{bottom:271.534800px;}
.y1f{bottom:272.518500px;}
.y16{bottom:272.533503px;}
.y194{bottom:273.174750px;}
.y28a{bottom:280.561200px;}
.y15c{bottom:280.728900px;}
.y260{bottom:281.587500px;}
.y1e{bottom:285.118502px;}
.y15{bottom:285.133499px;}
.y43{bottom:286.800150px;}
.yd2{bottom:287.236950px;}
.y238{bottom:288.935850px;}
.ye8{bottom:288.981300px;}
.y202{bottom:288.988050px;}
.y5c{bottom:289.046250px;}
.y1aa{bottom:289.866900px;}
.y12b{bottom:289.972200px;}
.y1cc{bottom:290.027100px;}
.y8e{bottom:290.114850px;}
.y109{bottom:290.576550px;}
.y1ef{bottom:294.903600px;}
.y193{bottom:299.210850px;}
.y15b{bottom:300.228900px;}
.y289{bottom:300.380850px;}
.y25f{bottom:301.749150px;}
.yaf{bottom:302.241000px;}
.y42{bottom:309.300150px;}
.yd1{bottom:309.736950px;}
.y1d{bottom:310.318501px;}
.y14{bottom:310.333501px;}
.ye7{bottom:311.607600px;}
.y201{bottom:311.616600px;}
.y5b{bottom:311.694150px;}
.y237{bottom:311.974800px;}
.y1a9{bottom:312.788400px;}
.y12a{bottom:312.928950px;}
.y1cb{bottom:313.002000px;}
.y8d{bottom:313.119000px;}
.y108{bottom:313.734600px;}
.y176{bottom:315.291900px;}
.y1ee{bottom:318.272250px;}
.y15a{bottom:319.729050px;}
.y288{bottom:320.200500px;}
.y25e{bottom:321.910950px;}
.y1c{bottom:322.918500px;}
.y13{bottom:322.933500px;}
.y192{bottom:325.247250px;}
.y41{bottom:331.800150px;}
.yd0{bottom:332.236800px;}
.ye6{bottom:334.233900px;}
.y200{bottom:334.245150px;}
.y5a{bottom:334.342200px;}
.y236{bottom:335.013600px;}
.y1a8{bottom:335.710050px;}
.y129{bottom:335.885550px;}
.y1ca{bottom:335.976900px;}
.y8c{bottom:336.123150px;}
.y107{bottom:336.892650px;}
.y159{bottom:339.229050px;}
.y287{bottom:340.020150px;}
.y1ed{bottom:341.641050px;}
.y25d{bottom:342.072600px;}
.y12{bottom:348.133500px;}
.y191{bottom:351.283350px;}
.y40{bottom:354.300150px;}
.ycf{bottom:354.736800px;}
.ye5{bottom:356.860350px;}
.y1ff{bottom:356.873700px;}
.y59{bottom:356.990100px;}
.y235{bottom:358.052400px;}
.y1a7{bottom:358.631550px;}
.y158{bottom:358.729050px;}
.y128{bottom:358.842150px;}
.y1c9{bottom:358.951950px;}
.y8b{bottom:359.127300px;}
.y286{bottom:359.839800px;}
.yae{bottom:359.950950px;}
.y106{bottom:360.050700px;}
.y25c{bottom:362.234400px;}
.y1ec{bottom:365.009700px;}
.y3f{bottom:376.800150px;}
.ye4{bottom:379.486650px;}
.y1fe{bottom:379.502250px;}
.y58{bottom:379.638150px;}
.y285{bottom:379.659450px;}
.y234{bottom:381.091200px;}
.y1a6{bottom:381.553200px;}
.y127{bottom:381.798750px;}
.y8a{bottom:382.131450px;}
.y25b{bottom:382.396050px;}
.yad{bottom:382.745250px;}
.y105{bottom:383.208900px;}
.y11{bottom:386.785499px;}
.y1eb{bottom:388.378350px;}
.y157{bottom:390.984900px;}
.y190{bottom:398.579400px;}
.y3e{bottom:399.300150px;}
.y284{bottom:399.479100px;}
.ye3{bottom:402.112950px;}
.y1fd{bottom:402.130800px;}
.y57{bottom:402.286050px;}
.y25a{bottom:402.557850px;}
.y1c8{bottom:403.186650px;}
.y233{bottom:404.130150px;}
.y1a5{bottom:404.474700px;}
.y126{bottom:404.755500px;}
.y89{bottom:405.135600px;}
.yac{bottom:405.539550px;}
.y104{bottom:406.366950px;}
.yce{bottom:407.000700px;}
.y10{bottom:408.044999px;}
.y1ea{bottom:411.747150px;}
.y156{bottom:413.484900px;}
.y216{bottom:417.511350px;}
.y283{bottom:419.298750px;}
.y18f{bottom:421.615650px;}
.y3d{bottom:421.800150px;}
.y259{bottom:422.719500px;}
.y1c7{bottom:423.161700px;}
.ye2{bottom:424.739250px;}
.y1fc{bottom:424.759350px;}
.y56{bottom:424.934100px;}
.y232{bottom:427.168950px;}
.y1a4{bottom:427.396200px;}
.y125{bottom:427.712100px;}
.y88{bottom:428.139750px;}
.yab{bottom:428.333850px;}
.ycd{bottom:429.500700px;}
.y103{bottom:429.525000px;}
.y1e9{bottom:435.115800px;}
.y155{bottom:435.984900px;}
.y282{bottom:439.118400px;}
.y258{bottom:442.881300px;}
.y1c6{bottom:443.136600px;}
.y18e{bottom:444.651900px;}
.ye1{bottom:447.365700px;}
.y1fb{bottom:447.388050px;}
.y55{bottom:447.582150px;}
.y231{bottom:450.207750px;}
.y124{bottom:450.668700px;}
.yaa{bottom:451.128150px;}
.y87{bottom:451.144050px;}
.ycc{bottom:452.000700px;}
.y102{bottom:452.683050px;}
.y1e8{bottom:458.484600px;}
.y154{bottom:458.484900px;}
.y281{bottom:458.938050px;}
.y3c{bottom:461.308050px;}
.y257{bottom:463.042950px;}
.yf{bottom:466.864502px;}
.ye0{bottom:469.992000px;}
.y1fa{bottom:470.016600px;}
.y54{bottom:470.230050px;}
.y230{bottom:473.246550px;}
.y123{bottom:473.625450px;}
.ya9{bottom:473.922300px;}
.y86{bottom:474.148200px;}
.ycb{bottom:474.500700px;}
.y215{bottom:475.383750px;}
.y101{bottom:475.841100px;}
.y1c5{bottom:475.867350px;}
.y280{bottom:478.757700px;}
.y1a3{bottom:480.081600px;}
.y18d{bottom:480.444000px;}
.y153{bottom:480.984900px;}
.y1e7{bottom:481.853250px;}
.y256{bottom:483.204600px;}
.y3b{bottom:483.808050px;}
.ye{bottom:484.864502px;}
.ydf{bottom:492.618300px;}
.y1f9{bottom:492.645150px;}
.y53{bottom:492.878100px;}
.y22f{bottom:496.285500px;}
.y122{bottom:496.582050px;}
.ya8{bottom:496.716600px;}
.yca{bottom:497.000700px;}
.y85{bottom:497.152350px;}
.y214{bottom:498.340350px;}
.y27f{bottom:498.577350px;}
.y1c4{bottom:498.842400px;}
.y100{bottom:498.999300px;}
.yd{bottom:502.864502px;}
.y255{bottom:503.366400px;}
.y152{bottom:503.484900px;}
.y1e6{bottom:505.222050px;}
.y3a{bottom:506.308050px;}
.y18c{bottom:506.480250px;}
.yde{bottom:515.244600px;}
.y1f8{bottom:515.273700px;}
.y52{bottom:515.526000px;}
.y27e{bottom:518.397000px;}
.y22e{bottom:519.324300px;}
.ya7{bottom:519.510900px;}
.y121{bottom:519.538650px;}
.y84{bottom:520.156500px;}
.yc{bottom:520.864502px;}
.y213{bottom:521.297100px;}
.y1c3{bottom:521.817300px;}
.yff{bottom:522.157350px;}
.y254{bottom:523.528050px;}
.y151{bottom:525.984900px;}
.y1e5{bottom:528.590850px;}
.y39{bottom:528.808050px;}
.yc9{bottom:532.256550px;}
.y18b{bottom:532.516500px;}
.ydd{bottom:537.871050px;}
.y1f7{bottom:537.902250px;}
.y51{bottom:538.174050px;}
.y27d{bottom:538.216650px;}
.yb{bottom:538.864499px;}
.ya6{bottom:542.305200px;}
.y22d{bottom:542.363100px;}
.y120{bottom:542.495250px;}
.y83{bottom:543.160650px;}
.y253{bottom:543.689850px;}
.y212{bottom:544.253700px;}
.y1c2{bottom:544.792200px;}
.y150{bottom:548.484900px;}
.y38{bottom:551.308050px;}
.y1e4{bottom:551.959500px;}
.yc8{bottom:554.756550px;}
.ya{bottom:556.864499px;}
.y27c{bottom:558.036300px;}
.ydc{bottom:560.497350px;}
.y1f6{bottom:560.530800px;}
.y50{bottom:560.821950px;}
.y252{bottom:563.851500px;}
.ya5{bottom:565.099500px;}
.y22c{bottom:565.402050px;}
.y11f{bottom:565.452000px;}
.y82{bottom:566.164800px;}
.yfe{bottom:566.575200px;}
.y211{bottom:567.210300px;}
.y1c1{bottom:567.767100px;}
.y14f{bottom:570.984900px;}
.y1e3{bottom:575.328300px;}
.yc7{bottom:577.256550px;}
.y27b{bottom:577.855950px;}
.y175{bottom:578.831250px;}
.y18a{bottom:579.812550px;}
.ydb{bottom:583.123650px;}
.y1f5{bottom:583.159350px;}
.y4f{bottom:583.470000px;}
.y251{bottom:584.013300px;}
.ya4{bottom:587.893800px;}
.y11e{bottom:588.408600px;}
.y22b{bottom:588.440850px;}
.y81{bottom:589.168950px;}
.yfd{bottom:589.733250px;}
.y210{bottom:590.167050px;}
.y1c0{bottom:590.742150px;}
.y37{bottom:590.815950px;}
.y14e{bottom:593.484900px;}
.y27a{bottom:597.675600px;}
.yc6{bottom:599.756550px;}
.y174{bottom:601.331250px;}
.y189{bottom:602.848650px;}
.y250{bottom:604.174950px;}
.yda{bottom:605.749950px;}
.y1f4{bottom:605.787900px;}
.y4e{bottom:606.117900px;}
.ya3{bottom:610.687950px;}
.y11d{bottom:611.365200px;}
.y22a{bottom:611.479650px;}
.y80{bottom:612.173100px;}
.yfc{bottom:612.891450px;}
.y20f{bottom:613.123650px;}
.y36{bottom:613.315950px;}
.y1bf{bottom:613.717050px;}
.y14d{bottom:615.984900px;}
.y279{bottom:617.495250px;}
.y1e2{bottom:619.956750px;}
.y13e{bottom:621.507000px;}
.yc5{bottom:622.256550px;}
.y173{bottom:623.831250px;}
.y24f{bottom:624.336750px;}
.y188{bottom:625.884900px;}
.y9{bottom:626.610001px;}
.yd9{bottom:628.376250px;}
.y1f3{bottom:628.416600px;}
.y4d{bottom:628.765950px;}
.ya2{bottom:633.482250px;}
.y11c{bottom:634.321950px;}
.y229{bottom:634.518600px;}
.y7f{bottom:635.177400px;}
.y35{bottom:635.815950px;}
.yfb{bottom:636.049500px;}
.y20e{bottom:636.080250px;}
.y1be{bottom:636.691950px;}
.y278{bottom:637.314900px;}
.y14c{bottom:638.484900px;}
.y1e1{bottom:640.325550px;}
.y24e{bottom:644.498400px;}
.yc4{bottom:644.756550px;}
.y13d{bottom:645.005700px;}
.y8{bottom:645.510000px;}
.y172{bottom:646.331250px;}
.y187{bottom:648.921150px;}
.yd8{bottom:651.002700px;}
.y4c{bottom:651.413850px;}
.ya1{bottom:656.276550px;}
.y277{bottom:657.134550px;}
.y11b{bottom:657.278550px;}
.y228{bottom:657.557400px;}
.y7e{bottom:658.181550px;}
.y34{bottom:658.315950px;}
.y20d{bottom:659.036850px;}
.yfa{bottom:659.207550px;}
.y1bd{bottom:659.666850px;}
.y1e0{bottom:660.694200px;}
.y14b{bottom:660.984900px;}
.y298{bottom:661.579350px;}
.y1f2{bottom:663.801000px;}
.y24d{bottom:664.660200px;}
.y7{bottom:666.771000px;}
.yc3{bottom:667.256550px;}
.y13c{bottom:668.504400px;}
.y171{bottom:668.831250px;}
.y186{bottom:671.957400px;}
.y4b{bottom:674.061900px;}
.y276{bottom:676.954200px;}
.ya0{bottom:679.070850px;}
.y11a{bottom:680.235150px;}
.y227{bottom:680.596200px;}
.y33{bottom:680.815950px;}
.y1df{bottom:681.063000px;}
.y7d{bottom:681.185700px;}
.y20c{bottom:681.993600px;}
.yf9{bottom:682.365600px;}
.y1bc{bottom:682.641750px;}
.y14a{bottom:683.484900px;}
.y297{bottom:684.079350px;}
.y24c{bottom:684.821850px;}
.yd7{bottom:686.384850px;}
.yc2{bottom:689.756550px;}
.y170{bottom:691.331250px;}
.y13b{bottom:692.003100px;}
.y4a{bottom:696.709800px;}
.y275{bottom:696.773700px;}
.y1de{bottom:701.431650px;}
.y9f{bottom:701.865150px;}
.y119{bottom:703.191900px;}
.y226{bottom:703.635000px;}
.y7c{bottom:704.189850px;}
.y20b{bottom:704.950200px;}
.y24b{bottom:704.983650px;}
.y1bb{bottom:705.616800px;}
.y149{bottom:705.984900px;}
.y296{bottom:706.579350px;}
.y185{bottom:707.749500px;}
.yc1{bottom:712.256550px;}
.y16f{bottom:713.831250px;}
.y13a{bottom:715.501800px;}
.y274{bottom:716.593350px;}
.y49{bottom:719.357850px;}
.y32{bottom:720.323850px;}
.y1dd{bottom:721.800450px;}
.yf8{bottom:722.531550px;}
.y9e{bottom:724.659450px;}
.y24a{bottom:725.145300px;}
.y118{bottom:726.148500px;}
.y6{bottom:726.298500px;}
.y225{bottom:726.673950px;}
.y7b{bottom:727.194000px;}
.y20a{bottom:727.906800px;}
.y148{bottom:728.484900px;}
.y1ba{bottom:728.591700px;}
.y184{bottom:733.785750px;}
.yc0{bottom:734.756550px;}
.y16e{bottom:736.331250px;}
.y273{bottom:736.413000px;}
.y139{bottom:739.000500px;}
.y295{bottom:741.835200px;}
.yd6{bottom:743.926950px;}
.y249{bottom:745.307100px;}
.yf7{bottom:745.689750px;}
.y9d{bottom:747.453600px;}
.y117{bottom:749.105100px;}
.y224{bottom:749.712750px;}
.y7a{bottom:750.198150px;}
.y209{bottom:750.863550px;}
.y147{bottom:750.984900px;}
.y1b9{bottom:751.566600px;}
.y3{bottom:752.599495px;}
.y48{bottom:754.761750px;}
.y1dc{bottom:754.925100px;}
.y272{bottom:756.232800px;}
.ybf{bottom:757.256550px;}
.y183{bottom:759.822000px;}
.y138{bottom:762.499200px;}
.y294{bottom:764.335200px;}
.y248{bottom:765.468750px;}
.yd5{bottom:766.553250px;}
.yf6{bottom:768.847800px;}
.y9c{bottom:770.247900px;}
.y16d{bottom:771.587250px;}
.y223{bottom:772.751550px;}
.y79{bottom:773.202450px;}
.y146{bottom:773.484900px;}
.y208{bottom:773.820150px;}
.y1b8{bottom:774.541650px;}
.y271{bottom:776.052300px;}
.y1db{bottom:778.293750px;}
.ybe{bottom:779.756550px;}
.y1a2{bottom:782.261100px;}
.y116{bottom:784.817700px;}
.y247{bottom:785.630550px;}
.y182{bottom:785.858250px;}
.y137{bottom:785.997900px;}
.y293{bottom:786.835200px;}
.y30{bottom:788.065050px;}
.yd4{bottom:789.179700px;}
.yf5{bottom:792.005850px;}
.y9b{bottom:793.042200px;}
.y16c{bottom:794.087250px;}
.y222{bottom:795.790500px;}
.y270{bottom:795.872100px;}
.y145{bottom:795.984900px;}
.y78{bottom:796.206450px;}
.y207{bottom:796.776900px;}
.y1b7{bottom:797.516550px;}
.y1da{bottom:801.662550px;}
.ybd{bottom:802.256550px;}
.y1a1{bottom:805.182750px;}
.y246{bottom:805.792200px;}
.y292{bottom:809.335200px;}
.y136{bottom:809.496600px;}
.y181{bottom:811.894350px;}
.y6a{bottom:812.897700px;}
.yf4{bottom:815.163900px;}
.y26f{bottom:815.691600px;}
.y9a{bottom:815.836500px;}
.y16b{bottom:816.587250px;}
.y144{bottom:818.484900px;}
.y221{bottom:818.829300px;}
.y77{bottom:819.210600px;}
.y206{bottom:819.733500px;}
.y1b6{bottom:820.491450px;}
.yd3{bottom:824.561850px;}
.ybc{bottom:824.756550px;}
.y1d9{bottom:825.031200px;}
.y245{bottom:825.954000px;}
.y1a0{bottom:828.104250px;}
.y2f{bottom:831.825000px;}
.y291{bottom:831.835200px;}
.y135{bottom:832.995300px;}
.y69{bottom:835.397700px;}
.y26e{bottom:835.511400px;}
.y180{bottom:837.930600px;}
.y99{bottom:838.630800px;}
.y16a{bottom:839.087250px;}
.y143{bottom:840.984900px;}
.y220{bottom:841.868100px;}
.y76{bottom:842.214900px;}
.y115{bottom:842.690100px;}
.y1b5{bottom:843.466350px;}
.y244{bottom:846.115650px;}
.ybb{bottom:847.256550px;}
.y19f{bottom:851.025750px;}
.y2e{bottom:852.825000px;}
.yf3{bottom:855.329850px;}
.y26d{bottom:855.330900px;}
.y98{bottom:861.424950px;}
.y169{bottom:861.587250px;}
.y142{bottom:863.484900px;}
.y17f{bottom:863.966850px;}
.y21f{bottom:864.906900px;}
.y75{bottom:865.219050px;}
.y114{bottom:865.646700px;}
.y243{bottom:866.277300px;}
.y1b4{bottom:866.441400px;}
.y290{bottom:867.091200px;}
.y134{bottom:869.249850px;}
.y1d8{bottom:869.659800px;}
.yba{bottom:869.756550px;}
.y19e{bottom:873.947250px;}
.y68{bottom:874.905600px;}
.y26c{bottom:875.150550px;}
.yf2{bottom:878.487900px;}
.y2{bottom:879.369000px;}
.y168{bottom:884.087250px;}
.y97{bottom:884.219250px;}
.y141{bottom:885.984900px;}
.y242{bottom:886.439100px;}
.y21e{bottom:887.945850px;}
.y74{bottom:888.223200px;}
.y113{bottom:888.603450px;}
.y1b3{bottom:889.416300px;}
.y28f{bottom:889.591200px;}
.y17e{bottom:890.002950px;}
.y1d7{bottom:890.028600px;}
.y2d{bottom:890.832750px;}
.yb9{bottom:892.256550px;}
.y26b{bottom:894.970350px;}
.y19d{bottom:896.868750px;}
.y67{bottom:897.405600px;}
.yf1{bottom:901.646100px;}
.y167{bottom:906.587250px;}
.y241{bottom:906.600900px;}
.y96{bottom:907.013550px;}
.y140{bottom:908.484900px;}
.y1d6{bottom:910.397250px;}
.y21d{bottom:910.984650px;}
.y73{bottom:911.227350px;}
.y112{bottom:911.560050px;}
.y28e{bottom:912.091200px;}
.y1b2{bottom:912.391200px;}
.yb8{bottom:914.756550px;}
.y26a{bottom:914.789850px;}
.y17d{bottom:916.039200px;}
.y19c{bottom:919.790400px;}
.y66{bottom:919.905600px;}
.yf0{bottom:924.804150px;}
.y240{bottom:926.762550px;}
.y166{bottom:929.087250px;}
.y95{bottom:929.807850px;}
.y1d5{bottom:930.765900px;}
.y133{bottom:931.264350px;}
.y21c{bottom:934.023450px;}
.y72{bottom:934.231500px;}
.y111{bottom:934.516650px;}
.y269{bottom:934.609500px;}
.yb7{bottom:937.256550px;}
.y17c{bottom:942.075450px;}
.y65{bottom:942.405600px;}
.y19b{bottom:942.711900px;}
.y13f{bottom:943.740750px;}
.y23f{bottom:946.924200px;}
.y28d{bottom:947.347050px;}
.yef{bottom:947.962200px;}
.y2c{bottom:950.048550px;}
.y1d4{bottom:951.134700px;}
.y165{bottom:951.587250px;}
.y94{bottom:952.602150px;}
.y268{bottom:954.429150px;}
.y132{bottom:954.763050px;}
.y1b1{bottom:956.626050px;}
.y21b{bottom:957.062400px;}
.y71{bottom:957.235800px;}
.y110{bottom:957.473400px;}
.yb6{bottom:959.756550px;}
.y64{bottom:964.905600px;}
.y19a{bottom:965.633550px;}
.y1{bottom:966.726000px;}
.y23e{bottom:967.086000px;}
.y17b{bottom:968.111700px;}
.yee{bottom:971.120250px;}
.y1d3{bottom:971.503350px;}
.y267{bottom:974.248800px;}
.y1b0{bottom:976.600950px;}
.y131{bottom:978.261750px;}
.y21a{bottom:980.101200px;}
.y70{bottom:980.239950px;}
.y10f{bottom:980.430000px;}
.yb5{bottom:982.256550px;}
.y2b{bottom:986.048550px;}
.y23d{bottom:987.247800px;}
.y63{bottom:987.405600px;}
.y93{bottom:988.152300px;}
.y199{bottom:988.555050px;}
.y1d2{bottom:991.872150px;}
.y266{bottom:994.068450px;}
.y17a{bottom:994.147950px;}
.yed{bottom:994.278300px;}
.y164{bottom:995.347050px;}
.y1af{bottom:996.575850px;}
.y130{bottom:1001.760450px;}
.y219{bottom:1003.140000px;}
.y205{bottom:1003.243950px;}
.y6f{bottom:1003.244100px;}
.y10e{bottom:1003.386600px;}
.yb4{bottom:1004.756550px;}
.y23c{bottom:1007.409450px;}
.y62{bottom:1009.905600px;}
.y198{bottom:1011.476550px;}
.y1d1{bottom:1012.240950px;}
.y265{bottom:1013.888100px;}
.y163{bottom:1014.847050px;}
.y1ae{bottom:1016.550750px;}
.y179{bottom:1020.184050px;}
.y2a{bottom:1022.048550px;}
.y12f{bottom:1025.259150px;}
.yec{bottom:1025.940450px;}
.y218{bottom:1026.178950px;}
.y6e{bottom:1026.248250px;}
.y10d{bottom:1026.343200px;}
.yb3{bottom:1027.256550px;}
.y23b{bottom:1027.571100px;}
.y1d0{bottom:1032.609600px;}
.y264{bottom:1033.707750px;}
.y162{bottom:1034.347050px;}
.y197{bottom:1034.398200px;}
.y178{bottom:1046.220300px;}
.y12e{bottom:1048.757850px;}
.yeb{bottom:1049.098500px;}
.y217{bottom:1049.217750px;}
.y6d{bottom:1049.252400px;}
.y1ad{bottom:1049.281650px;}
.y10c{bottom:1049.299950px;}
.y61{bottom:1049.413500px;}
.y92{bottom:1049.462250px;}
.y1f1{bottom:1049.628000px;}
.yb2{bottom:1049.756550px;}
.y1cf{bottom:1052.978250px;}
.y263{bottom:1053.527400px;}
.y161{bottom:1053.847050px;}
.y23a{bottom:1067.894550px;}
.y196{bottom:1070.075550px;}
.y60{bottom:1072.137300px;}
.y91{bottom:1072.256550px;}
.y6c{bottom:1072.256700px;}
.y160{bottom:1073.347050px;}
.y27{bottom:1134.703800px;}
.y26{bottom:1154.503950px;}
.y47{bottom:1156.233000px;}
.y46{bottom:1157.307900px;}
.y6b{bottom:1157.323500px;}
.y25{bottom:1174.303950px;}
.h7{height:32.130000px;}
.hf{height:42.949219px;}
.h14{height:45.300000px;}
.h12{height:45.660000px;}
.h6{height:45.900000px;}
.hd{height:47.256000px;}
.h11{height:47.726412px;}
.h3{height:48.195000px;}
.h9{height:49.830000px;}
.ha{height:50.226000px;}
.h2{height:55.080000px;}
.h13{height:55.536000px;}
.he{height:59.052000px;}
.h15{height:63.270000px;}
.h10{height:64.080000px;}
.hc{height:64.795920px;}
.h5{height:78.030000px;}
.hb{height:85.920000px;}
.h4{height:119.055004px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x5{left:144.566850px;}
.xf{left:165.826800px;}
.x13{left:170.078700px;}
.x11{left:182.910450px;}
.x12{left:191.338650px;}
.x16{left:193.011150px;}
.x7{left:195.227100px;}
.x4{left:203.484001px;}
.xc{left:226.971300px;}
.xb{left:231.926700px;}
.xa{left:233.081700px;}
.x9{left:244.909350px;}
.x8{left:253.036500px;}
.x10{left:256.795200px;}
.x6{left:260.235000px;}
.x15{left:264.810750px;}
.xe{left:352.126500px;}
.x3{left:454.959000px;}
.xd{left:735.150900px;}
.x14{left:748.346400px;}
@media print{
.v2{vertical-align:-7.657067pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.640000pt;}
.ls1{letter-spacing:-0.672000pt;}
.ls2{letter-spacing:-0.528000pt;}
.ls4{letter-spacing:-0.240000pt;}
.ls3{letter-spacing:-0.234667pt;}
.ls0{letter-spacing:0.000000pt;}
.wsd2{word-spacing:-17.440000pt;}
.ws3{word-spacing:-16.949333pt;}
.ws4{word-spacing:-16.202667pt;}
.ws1{word-spacing:-13.317333pt;}
.ws6{word-spacing:-13.200000pt;}
.wsa8{word-spacing:-12.789333pt;}
.ws5{word-spacing:-12.730667pt;}
.wse7{word-spacing:-12.106667pt;}
.ws2{word-spacing:-9.830613pt;}
.ws75{word-spacing:-3.109333pt;}
.ws45{word-spacing:-2.874667pt;}
.wsc5{word-spacing:-2.640000pt;}
.ws42{word-spacing:-2.581333pt;}
.ws11{word-spacing:-2.522667pt;}
.ws35{word-spacing:-2.405333pt;}
.ws3c{word-spacing:-2.346667pt;}
.ws47{word-spacing:-2.288000pt;}
.wsb4{word-spacing:-2.186667pt;}
.wsd0{word-spacing:-2.170667pt;}
.wsad{word-spacing:-2.080000pt;}
.wsd8{word-spacing:-2.026667pt;}
.ws88{word-spacing:-1.994667pt;}
.ws22{word-spacing:-1.936000pt;}
.wsd6{word-spacing:-1.920000pt;}
.ws94{word-spacing:-1.877333pt;}
.ws3a{word-spacing:-1.818667pt;}
.ws7c{word-spacing:-1.760000pt;}
.wsf6{word-spacing:-1.706667pt;}
.ws2f{word-spacing:-1.701333pt;}
.wsf1{word-spacing:-1.653333pt;}
.ws83{word-spacing:-1.642667pt;}
.wsbc{word-spacing:-1.600000pt;}
.ws9{word-spacing:-1.584000pt;}
.ws50{word-spacing:-1.408000pt;}
.wsde{word-spacing:-1.386667pt;}
.ws1c{word-spacing:-1.349333pt;}
.wsed{word-spacing:-1.333333pt;}
.ws6b{word-spacing:-1.290667pt;}
.wsbb{word-spacing:-1.280000pt;}
.ws93{word-spacing:-1.232000pt;}
.ws97{word-spacing:-1.173333pt;}
.wse2{word-spacing:-1.120000pt;}
.ws6d{word-spacing:-1.114667pt;}
.wsf0{word-spacing:-1.066667pt;}
.ws15{word-spacing:-1.056000pt;}
.wsa{word-spacing:-0.997333pt;}
.ws39{word-spacing:-0.938667pt;}
.wsdb{word-spacing:-0.906667pt;}
.ws86{word-spacing:-0.880000pt;}
.ws1a{word-spacing:-0.821333pt;}
.ws9d{word-spacing:-0.800000pt;}
.ws10{word-spacing:-0.762667pt;}
.wse6{word-spacing:-0.746667pt;}
.ws85{word-spacing:-0.704000pt;}
.wsae{word-spacing:-0.693333pt;}
.ws4f{word-spacing:-0.645333pt;}
.ws4b{word-spacing:-0.586667pt;}
.ws43{word-spacing:-0.528000pt;}
.wsd3{word-spacing:-0.480000pt;}
.ws57{word-spacing:-0.469333pt;}
.ws7f{word-spacing:-0.410667pt;}
.ws69{word-spacing:-0.352000pt;}
.wsac{word-spacing:-0.320000pt;}
.ws92{word-spacing:-0.293333pt;}
.ws9f{word-spacing:-0.266667pt;}
.wsa0{word-spacing:-0.213333pt;}
.ws98{word-spacing:-0.176000pt;}
.wsb{word-spacing:-0.117333pt;}
.ws9c{word-spacing:-0.106667pt;}
.ws5a{word-spacing:-0.058667pt;}
.ws0{word-spacing:0.000000pt;}
.ws6a{word-spacing:0.058667pt;}
.ws30{word-spacing:0.117333pt;}
.ws27{word-spacing:0.176000pt;}
.ws33{word-spacing:0.234667pt;}
.wse4{word-spacing:0.266667pt;}
.ws17{word-spacing:0.293333pt;}
.wsee{word-spacing:0.320000pt;}
.ws5d{word-spacing:0.352000pt;}
.wsbd{word-spacing:0.373333pt;}
.ws6f{word-spacing:0.410667pt;}
.wsf2{word-spacing:0.426667pt;}
.ws99{word-spacing:0.469333pt;}
.wsc4{word-spacing:0.480000pt;}
.ws1e{word-spacing:0.528000pt;}
.wsdc{word-spacing:0.533333pt;}
.ws23{word-spacing:0.586667pt;}
.wsbe{word-spacing:0.640000pt;}
.ws46{word-spacing:0.645333pt;}
.ws7{word-spacing:0.672000pt;}
.ws8{word-spacing:0.704000pt;}
.ws12{word-spacing:0.762667pt;}
.wsd9{word-spacing:0.800000pt;}
.ws26{word-spacing:0.821333pt;}
.wse3{word-spacing:0.853333pt;}
.ws32{word-spacing:0.880000pt;}
.wsaa{word-spacing:0.938667pt;}
.wsf7{word-spacing:0.960000pt;}
.ws13{word-spacing:0.997333pt;}
.wsd5{word-spacing:1.013333pt;}
.ws38{word-spacing:1.056000pt;}
.ws73{word-spacing:1.114667pt;}
.wsba{word-spacing:1.120000pt;}
.ws25{word-spacing:1.173333pt;}
.ws66{word-spacing:1.232000pt;}
.ws53{word-spacing:1.290667pt;}
.ws67{word-spacing:1.349333pt;}
.ws77{word-spacing:1.408000pt;}
.ws9e{word-spacing:1.440000pt;}
.ws76{word-spacing:1.466667pt;}
.ws51{word-spacing:1.525333pt;}
.wsb9{word-spacing:1.546667pt;}
.wsc7{word-spacing:1.584000pt;}
.ws64{word-spacing:1.642667pt;}
.wsc2{word-spacing:1.653333pt;}
.ws61{word-spacing:1.701333pt;}
.ws1f{word-spacing:1.760000pt;}
.ws68{word-spacing:1.818667pt;}
.ws84{word-spacing:1.877333pt;}
.ws3b{word-spacing:1.936000pt;}
.wsa3{word-spacing:1.973333pt;}
.ws20{word-spacing:1.994667pt;}
.wsc1{word-spacing:2.026667pt;}
.ws48{word-spacing:2.053333pt;}
.ws5b{word-spacing:2.112000pt;}
.wsea{word-spacing:2.133333pt;}
.ws28{word-spacing:2.170667pt;}
.ws9b{word-spacing:2.186667pt;}
.wscf{word-spacing:2.229333pt;}
.ws3e{word-spacing:2.288000pt;}
.ws5e{word-spacing:2.346667pt;}
.wsc6{word-spacing:2.405333pt;}
.wsb8{word-spacing:2.453333pt;}
.ws4e{word-spacing:2.464000pt;}
.wsf5{word-spacing:2.506667pt;}
.ws7a{word-spacing:2.522667pt;}
.ws2e{word-spacing:2.581333pt;}
.wsdf{word-spacing:2.613333pt;}
.ws82{word-spacing:2.640000pt;}
.ws9a{word-spacing:2.666667pt;}
.ws24{word-spacing:2.698667pt;}
.ws96{word-spacing:2.816000pt;}
.wsa2{word-spacing:2.826667pt;}
.wsa4{word-spacing:2.874667pt;}
.ws7b{word-spacing:2.933333pt;}
.ws3f{word-spacing:2.992000pt;}
.wscc{word-spacing:3.050667pt;}
.wsa1{word-spacing:3.093333pt;}
.wsef{word-spacing:3.146667pt;}
.wsce{word-spacing:3.168000pt;}
.ws4d{word-spacing:3.226667pt;}
.wse5{word-spacing:3.253333pt;}
.wsb5{word-spacing:3.285333pt;}
.wse1{word-spacing:3.306667pt;}
.wsb2{word-spacing:3.344000pt;}
.wsb1{word-spacing:3.402667pt;}
.wscb{word-spacing:3.461333pt;}
.ws44{word-spacing:3.520000pt;}
.ws19{word-spacing:3.578667pt;}
.wsc{word-spacing:3.696000pt;}
.wsda{word-spacing:3.733333pt;}
.ws34{word-spacing:3.754667pt;}
.ws63{word-spacing:3.813333pt;}
.wse0{word-spacing:3.840000pt;}
.ws29{word-spacing:3.872000pt;}
.wseb{word-spacing:3.893333pt;}
.ws2a{word-spacing:3.910544pt;}
.ws87{word-spacing:3.930667pt;}
.wsf{word-spacing:3.989333pt;}
.ws65{word-spacing:4.048000pt;}
.ws40{word-spacing:4.106667pt;}
.ws95{word-spacing:4.165333pt;}
.ws14{word-spacing:4.224000pt;}
.wsf3{word-spacing:4.266667pt;}
.ws70{word-spacing:4.282667pt;}
.ws8b{word-spacing:4.341333pt;}
.wsc3{word-spacing:4.373333pt;}
.wsc0{word-spacing:4.400000pt;}
.wsca{word-spacing:4.458667pt;}
.wsf4{word-spacing:4.480000pt;}
.ws21{word-spacing:4.517333pt;}
.ws1b{word-spacing:4.576000pt;}
.wsc9{word-spacing:4.634667pt;}
.ws37{word-spacing:4.693333pt;}
.wsab{word-spacing:4.746667pt;}
.ws4a{word-spacing:4.752000pt;}
.ws41{word-spacing:4.810667pt;}
.wsd7{word-spacing:4.853333pt;}
.ws2b{word-spacing:4.869333pt;}
.ws7d{word-spacing:4.928000pt;}
.wsec{word-spacing:4.960000pt;}
.ws8a{word-spacing:4.986667pt;}
.ws6c{word-spacing:5.045333pt;}
.wsd4{word-spacing:5.066667pt;}
.ws56{word-spacing:5.104000pt;}
.ws7e{word-spacing:5.221333pt;}
.ws5c{word-spacing:5.280000pt;}
.wsd{word-spacing:5.338667pt;}
.ws1d{word-spacing:5.397333pt;}
.ws52{word-spacing:5.456000pt;}
.ws3d{word-spacing:5.514667pt;}
.wsa6{word-spacing:5.573333pt;}
.wsc8{word-spacing:5.632000pt;}
.ws81{word-spacing:5.690667pt;}
.ws2d{word-spacing:5.749333pt;}
.ws36{word-spacing:5.808000pt;}
.ws80{word-spacing:5.866667pt;}
.ws49{word-spacing:5.925333pt;}
.ws72{word-spacing:5.984000pt;}
.wsd1{word-spacing:6.042667pt;}
.ws62{word-spacing:6.101333pt;}
.ws58{word-spacing:6.160000pt;}
.wse8{word-spacing:6.186667pt;}
.ws16{word-spacing:6.218667pt;}
.ws8f{word-spacing:6.277333pt;}
.wsaf{word-spacing:6.336000pt;}
.ws55{word-spacing:6.512000pt;}
.ws91{word-spacing:6.570667pt;}
.wscd{word-spacing:6.629333pt;}
.wsdd{word-spacing:6.666667pt;}
.ws18{word-spacing:6.688000pt;}
.wsb7{word-spacing:6.805333pt;}
.wsb3{word-spacing:6.864000pt;}
.wse{word-spacing:6.922667pt;}
.wsa9{word-spacing:7.040000pt;}
.ws8e{word-spacing:7.098667pt;}
.ws79{word-spacing:7.157333pt;}
.wsb6{word-spacing:7.216000pt;}
.ws59{word-spacing:7.274667pt;}
.ws78{word-spacing:7.333333pt;}
.ws90{word-spacing:7.392000pt;}
.ws4c{word-spacing:7.626667pt;}
.ws89{word-spacing:7.685333pt;}
.ws60{word-spacing:7.744000pt;}
.ws5f{word-spacing:7.802667pt;}
.wsbf{word-spacing:7.920000pt;}
.ws71{word-spacing:8.154667pt;}
.ws54{word-spacing:8.272000pt;}
.ws8c{word-spacing:8.506667pt;}
.wsa7{word-spacing:8.565333pt;}
.wse9{word-spacing:8.640000pt;}
.wsb0{word-spacing:8.917333pt;}
.ws2c{word-spacing:9.210667pt;}
.ws74{word-spacing:9.328000pt;}
.ws6e{word-spacing:9.856000pt;}
.wsa5{word-spacing:10.853333pt;}
.ws8d{word-spacing:11.733333pt;}
.ws31{word-spacing:503.577600pt;}
._c{margin-left:-43.822933pt;}
._a{margin-left:-19.260267pt;}
._10{margin-left:-12.871467pt;}
._9{margin-left:-8.981867pt;}
._f{margin-left:-7.157333pt;}
._2{margin-left:-5.403200pt;}
._3{margin-left:-4.394133pt;}
._5{margin-left:-3.408533pt;}
._0{margin-left:-2.288000pt;}
._1{margin-left:-1.290667pt;}
._4{width:1.056000pt;}
._7{width:2.035733pt;}
._6{width:3.163200pt;}
._d{width:29.965867pt;}
._e{width:35.855467pt;}
._b{width:65.627733pt;}
._8{width:109.179733pt;}
.fs4{font-size:37.333333pt;}
.fs8{font-size:43.306667pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs5{font-size:58.666667pt;}
.fsa{font-size:59.250667pt;}
.fs0{font-size:64.000000pt;}
.fsb{font-size:69.333333pt;}
.fs7{font-size:74.666667pt;}
.fs9{font-size:80.000000pt;}
.fs2{font-size:90.666667pt;}
.fs6{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:59.133337pt;}
.y4{bottom:86.333337pt;}
.y24{bottom:123.790666pt;}
.y29{bottom:124.808400pt;}
.y28{bottom:142.408400pt;}
.y1b{bottom:175.052000pt;}
.y31{bottom:185.826933pt;}
.y23{bottom:186.238666pt;}
.y1a{bottom:186.252002pt;}
.y5f{bottom:196.535467pt;}
.y22{bottom:197.438668pt;}
.y19{bottom:197.452004pt;}
.y15f{bottom:197.536800pt;}
.y21{bottom:208.638670pt;}
.y18{bottom:208.651996pt;}
.y28c{bottom:214.152800pt;}
.y262{bottom:214.456933pt;}
.y15e{bottom:214.870133pt;}
.y45{bottom:214.933467pt;}
.yea{bottom:216.647600pt;}
.y204{bottom:216.649600pt;}
.y5e{bottom:216.666933pt;}
.yb1{bottom:216.796933pt;}
.y1ac{bottom:216.910133pt;}
.y12d{bottom:216.941200pt;}
.y1ce{bottom:216.957467pt;}
.y90{bottom:216.983467pt;}
.y10b{bottom:217.120400pt;}
.y195{bottom:219.678667pt;}
.y177{bottom:220.249067pt;}
.y20{bottom:231.038664pt;}
.y17{bottom:231.052000pt;}
.y28b{bottom:231.770267pt;}
.y15d{bottom:232.203467pt;}
.y239{bottom:232.352933pt;}
.y261{bottom:232.378400pt;}
.y44{bottom:234.933467pt;}
.ye9{bottom:236.759867pt;}
.y203{bottom:236.763867pt;}
.y5d{bottom:236.798400pt;}
.yb0{bottom:237.058533pt;}
.y1ab{bottom:237.284800pt;}
.y12c{bottom:237.347200pt;}
.y1cd{bottom:237.379733pt;}
.y8f{bottom:237.431600pt;}
.y10a{bottom:237.705333pt;}
.y1f0{bottom:241.364267pt;}
.y1f{bottom:242.238666pt;}
.y16{bottom:242.252002pt;}
.y194{bottom:242.822000pt;}
.y28a{bottom:249.387733pt;}
.y15c{bottom:249.536800pt;}
.y260{bottom:250.300000pt;}
.y1e{bottom:253.438668pt;}
.y15{bottom:253.451999pt;}
.y43{bottom:254.933467pt;}
.yd2{bottom:255.321733pt;}
.y238{bottom:256.831867pt;}
.ye8{bottom:256.872267pt;}
.y202{bottom:256.878267pt;}
.y5c{bottom:256.930000pt;}
.y1aa{bottom:257.659467pt;}
.y12b{bottom:257.753067pt;}
.y1cc{bottom:257.801867pt;}
.y8e{bottom:257.879867pt;}
.y109{bottom:258.290267pt;}
.y1ef{bottom:262.136533pt;}
.y193{bottom:265.965200pt;}
.y15b{bottom:266.870133pt;}
.y289{bottom:267.005200pt;}
.y25f{bottom:268.221467pt;}
.yaf{bottom:268.658667pt;}
.y42{bottom:274.933467pt;}
.yd1{bottom:275.321733pt;}
.y1d{bottom:275.838667pt;}
.y14{bottom:275.852001pt;}
.ye7{bottom:276.984533pt;}
.y201{bottom:276.992533pt;}
.y5b{bottom:277.061467pt;}
.y237{bottom:277.310933pt;}
.y1a9{bottom:278.034133pt;}
.y12a{bottom:278.159067pt;}
.y1cb{bottom:278.224000pt;}
.y8d{bottom:278.328000pt;}
.y108{bottom:278.875200pt;}
.y176{bottom:280.259467pt;}
.y1ee{bottom:282.908667pt;}
.y15a{bottom:284.203600pt;}
.y288{bottom:284.622667pt;}
.y25e{bottom:286.143067pt;}
.y1c{bottom:287.038667pt;}
.y13{bottom:287.052000pt;}
.y192{bottom:289.108667pt;}
.y41{bottom:294.933467pt;}
.yd0{bottom:295.321600pt;}
.ye6{bottom:297.096800pt;}
.y200{bottom:297.106800pt;}
.y5a{bottom:297.193067pt;}
.y236{bottom:297.789867pt;}
.y1a8{bottom:298.408933pt;}
.y129{bottom:298.564933pt;}
.y1ca{bottom:298.646133pt;}
.y8c{bottom:298.776133pt;}
.y107{bottom:299.460133pt;}
.y159{bottom:301.536933pt;}
.y287{bottom:302.240133pt;}
.y1ed{bottom:303.680933pt;}
.y25d{bottom:304.064533pt;}
.y12{bottom:309.452000pt;}
.y191{bottom:312.251867pt;}
.y40{bottom:314.933467pt;}
.ycf{bottom:315.321600pt;}
.ye5{bottom:317.209200pt;}
.y1ff{bottom:317.221067pt;}
.y59{bottom:317.324533pt;}
.y235{bottom:318.268800pt;}
.y1a7{bottom:318.783600pt;}
.y158{bottom:318.870267pt;}
.y128{bottom:318.970800pt;}
.y1c9{bottom:319.068400pt;}
.y8b{bottom:319.224267pt;}
.y286{bottom:319.857600pt;}
.yae{bottom:319.956400pt;}
.y106{bottom:320.045067pt;}
.y25c{bottom:321.986133pt;}
.y1ec{bottom:324.453067pt;}
.y3f{bottom:334.933467pt;}
.ye4{bottom:337.321467pt;}
.y1fe{bottom:337.335333pt;}
.y58{bottom:337.456133pt;}
.y285{bottom:337.475067pt;}
.y234{bottom:338.747733pt;}
.y1a6{bottom:339.158400pt;}
.y127{bottom:339.376667pt;}
.y8a{bottom:339.672400pt;}
.y25b{bottom:339.907600pt;}
.yad{bottom:340.218000pt;}
.y105{bottom:340.630133pt;}
.y11{bottom:343.809333pt;}
.y1eb{bottom:345.225200pt;}
.y157{bottom:347.542133pt;}
.y190{bottom:354.292800pt;}
.y3e{bottom:354.933467pt;}
.y284{bottom:355.092533pt;}
.ye3{bottom:357.433733pt;}
.y1fd{bottom:357.449600pt;}
.y57{bottom:357.587600pt;}
.y25a{bottom:357.829200pt;}
.y1c8{bottom:358.388133pt;}
.y233{bottom:359.226800pt;}
.y1a5{bottom:359.533067pt;}
.y126{bottom:359.782667pt;}
.y89{bottom:360.120533pt;}
.yac{bottom:360.479600pt;}
.y104{bottom:361.215067pt;}
.yce{bottom:361.778400pt;}
.y10{bottom:362.706666pt;}
.y1ea{bottom:365.997467pt;}
.y156{bottom:367.542133pt;}
.y216{bottom:371.121200pt;}
.y283{bottom:372.710000pt;}
.y18f{bottom:374.769467pt;}
.y3d{bottom:374.933467pt;}
.y259{bottom:375.750667pt;}
.y1c7{bottom:376.143733pt;}
.ye2{bottom:377.546000pt;}
.y1fc{bottom:377.563867pt;}
.y56{bottom:377.719200pt;}
.y232{bottom:379.705733pt;}
.y1a4{bottom:379.907733pt;}
.y125{bottom:380.188533pt;}
.y88{bottom:380.568667pt;}
.yab{bottom:380.741200pt;}
.ycd{bottom:381.778400pt;}
.y103{bottom:381.800000pt;}
.y1e9{bottom:386.769600pt;}
.y155{bottom:387.542133pt;}
.y282{bottom:390.327467pt;}
.y258{bottom:393.672267pt;}
.y1c6{bottom:393.899200pt;}
.y18e{bottom:395.246133pt;}
.ye1{bottom:397.658400pt;}
.y1fb{bottom:397.678267pt;}
.y55{bottom:397.850800pt;}
.y231{bottom:400.184667pt;}
.y124{bottom:400.594400pt;}
.yaa{bottom:401.002800pt;}
.y87{bottom:401.016933pt;}
.ycc{bottom:401.778400pt;}
.y102{bottom:402.384933pt;}
.y1e8{bottom:407.541867pt;}
.y154{bottom:407.542133pt;}
.y281{bottom:407.944933pt;}
.y3c{bottom:410.051600pt;}
.y257{bottom:411.593733pt;}
.yf{bottom:414.990669pt;}
.ye0{bottom:417.770667pt;}
.y1fa{bottom:417.792533pt;}
.y54{bottom:417.982267pt;}
.y230{bottom:420.663600pt;}
.y123{bottom:421.000400pt;}
.ya9{bottom:421.264267pt;}
.y86{bottom:421.465067pt;}
.ycb{bottom:421.778400pt;}
.y215{bottom:422.563333pt;}
.y101{bottom:422.969867pt;}
.y1c5{bottom:422.993200pt;}
.y280{bottom:425.562400pt;}
.y1a3{bottom:426.739200pt;}
.y18d{bottom:427.061333pt;}
.y153{bottom:427.542133pt;}
.y1e7{bottom:428.314000pt;}
.y256{bottom:429.515200pt;}
.y3b{bottom:430.051600pt;}
.ye{bottom:430.990669pt;}
.ydf{bottom:437.882933pt;}
.y1f9{bottom:437.906800pt;}
.y53{bottom:438.113867pt;}
.y22f{bottom:441.142667pt;}
.y122{bottom:441.406267pt;}
.ya8{bottom:441.525867pt;}
.yca{bottom:441.778400pt;}
.y85{bottom:441.913200pt;}
.y214{bottom:442.969200pt;}
.y27f{bottom:443.179867pt;}
.y1c4{bottom:443.415467pt;}
.y100{bottom:443.554933pt;}
.yd{bottom:446.990669pt;}
.y255{bottom:447.436800pt;}
.y152{bottom:447.542133pt;}
.y1e6{bottom:449.086267pt;}
.y3a{bottom:450.051600pt;}
.y18c{bottom:450.204667pt;}
.yde{bottom:457.995200pt;}
.y1f8{bottom:458.021067pt;}
.y52{bottom:458.245333pt;}
.y27e{bottom:460.797333pt;}
.y22e{bottom:461.621600pt;}
.ya7{bottom:461.787467pt;}
.y121{bottom:461.812133pt;}
.y84{bottom:462.361333pt;}
.yc{bottom:462.990669pt;}
.y213{bottom:463.375200pt;}
.y1c3{bottom:463.837600pt;}
.yff{bottom:464.139867pt;}
.y254{bottom:465.358267pt;}
.y151{bottom:467.542133pt;}
.y1e5{bottom:469.858533pt;}
.y39{bottom:470.051600pt;}
.yc9{bottom:473.116933pt;}
.y18b{bottom:473.348000pt;}
.ydd{bottom:478.107600pt;}
.y1f7{bottom:478.135333pt;}
.y51{bottom:478.376933pt;}
.y27d{bottom:478.414800pt;}
.yb{bottom:478.990666pt;}
.ya6{bottom:482.049067pt;}
.y22d{bottom:482.100533pt;}
.y120{bottom:482.218000pt;}
.y83{bottom:482.809467pt;}
.y253{bottom:483.279867pt;}
.y212{bottom:483.781067pt;}
.y1c2{bottom:484.259733pt;}
.y150{bottom:487.542133pt;}
.y38{bottom:490.051600pt;}
.y1e4{bottom:490.630667pt;}
.yc8{bottom:493.116933pt;}
.ya{bottom:494.990666pt;}
.y27c{bottom:496.032267pt;}
.ydc{bottom:498.219867pt;}
.y1f6{bottom:498.249600pt;}
.y50{bottom:498.508400pt;}
.y252{bottom:501.201333pt;}
.ya5{bottom:502.310667pt;}
.y22c{bottom:502.579600pt;}
.y11f{bottom:502.624000pt;}
.y82{bottom:503.257600pt;}
.yfe{bottom:503.622400pt;}
.y211{bottom:504.186933pt;}
.y1c1{bottom:504.681867pt;}
.y14f{bottom:507.542133pt;}
.y1e3{bottom:511.402933pt;}
.yc7{bottom:513.116933pt;}
.y27b{bottom:513.649733pt;}
.y175{bottom:514.516667pt;}
.y18a{bottom:515.388933pt;}
.ydb{bottom:518.332133pt;}
.y1f5{bottom:518.363867pt;}
.y4f{bottom:518.640000pt;}
.y251{bottom:519.122933pt;}
.ya4{bottom:522.572267pt;}
.y11e{bottom:523.029867pt;}
.y22b{bottom:523.058533pt;}
.y81{bottom:523.705733pt;}
.yfd{bottom:524.207333pt;}
.y210{bottom:524.592933pt;}
.y1c0{bottom:525.104133pt;}
.y37{bottom:525.169733pt;}
.y14e{bottom:527.542133pt;}
.y27a{bottom:531.267200pt;}
.yc6{bottom:533.116933pt;}
.y174{bottom:534.516667pt;}
.y189{bottom:535.865467pt;}
.y250{bottom:537.044400pt;}
.yda{bottom:538.444400pt;}
.y1f4{bottom:538.478133pt;}
.y4e{bottom:538.771467pt;}
.ya3{bottom:542.833733pt;}
.y11d{bottom:543.435733pt;}
.y22a{bottom:543.537467pt;}
.y80{bottom:544.153867pt;}
.yfc{bottom:544.792400pt;}
.y20f{bottom:544.998800pt;}
.y36{bottom:545.169733pt;}
.y1bf{bottom:545.526267pt;}
.y14d{bottom:547.542133pt;}
.y279{bottom:548.884667pt;}
.y1e2{bottom:551.072667pt;}
.y13e{bottom:552.450667pt;}
.yc5{bottom:553.116933pt;}
.y173{bottom:554.516667pt;}
.y24f{bottom:554.966000pt;}
.y188{bottom:556.342133pt;}
.y9{bottom:556.986668pt;}
.yd9{bottom:558.556667pt;}
.y1f3{bottom:558.592533pt;}
.y4d{bottom:558.903067pt;}
.ya2{bottom:563.095333pt;}
.y11c{bottom:563.841733pt;}
.y229{bottom:564.016533pt;}
.y7f{bottom:564.602133pt;}
.y35{bottom:565.169733pt;}
.yfb{bottom:565.377333pt;}
.y20e{bottom:565.404667pt;}
.y1be{bottom:565.948400pt;}
.y278{bottom:566.502133pt;}
.y14c{bottom:567.542133pt;}
.y1e1{bottom:569.178267pt;}
.y24e{bottom:572.887467pt;}
.yc4{bottom:573.116933pt;}
.y13d{bottom:573.338400pt;}
.y8{bottom:573.786667pt;}
.y172{bottom:574.516667pt;}
.y187{bottom:576.818800pt;}
.yd8{bottom:578.669067pt;}
.y4c{bottom:579.034533pt;}
.ya1{bottom:583.356933pt;}
.y277{bottom:584.119600pt;}
.y11b{bottom:584.247600pt;}
.y228{bottom:584.495467pt;}
.y7e{bottom:585.050267pt;}
.y34{bottom:585.169733pt;}
.y20d{bottom:585.810533pt;}
.yfa{bottom:585.962267pt;}
.y1bd{bottom:586.370533pt;}
.y1e0{bottom:587.283733pt;}
.y14b{bottom:587.542133pt;}
.y298{bottom:588.070533pt;}
.y1f2{bottom:590.045333pt;}
.y24d{bottom:590.809067pt;}
.y7{bottom:592.685334pt;}
.yc3{bottom:593.116933pt;}
.y13c{bottom:594.226133pt;}
.y171{bottom:594.516667pt;}
.y186{bottom:597.295467pt;}
.y4b{bottom:599.166133pt;}
.y276{bottom:601.737067pt;}
.ya0{bottom:603.618533pt;}
.y11a{bottom:604.653467pt;}
.y227{bottom:604.974400pt;}
.y33{bottom:605.169733pt;}
.y1df{bottom:605.389333pt;}
.y7d{bottom:605.498400pt;}
.y20c{bottom:606.216533pt;}
.yf9{bottom:606.547200pt;}
.y1bc{bottom:606.792667pt;}
.y14a{bottom:607.542133pt;}
.y297{bottom:608.070533pt;}
.y24c{bottom:608.730533pt;}
.yd7{bottom:610.119867pt;}
.yc2{bottom:613.116933pt;}
.y170{bottom:614.516667pt;}
.y13b{bottom:615.113867pt;}
.y4a{bottom:619.297600pt;}
.y275{bottom:619.354400pt;}
.y1de{bottom:623.494800pt;}
.y9f{bottom:623.880133pt;}
.y119{bottom:625.059467pt;}
.y226{bottom:625.453333pt;}
.y7c{bottom:625.946533pt;}
.y20b{bottom:626.622400pt;}
.y24b{bottom:626.652133pt;}
.y1bb{bottom:627.214933pt;}
.y149{bottom:627.542133pt;}
.y296{bottom:628.070533pt;}
.y185{bottom:629.110667pt;}
.yc1{bottom:633.116933pt;}
.y16f{bottom:634.516667pt;}
.y13a{bottom:636.001600pt;}
.y274{bottom:636.971867pt;}
.y49{bottom:639.429200pt;}
.y32{bottom:640.287867pt;}
.y1dd{bottom:641.600400pt;}
.yf8{bottom:642.250267pt;}
.y9e{bottom:644.141733pt;}
.y24a{bottom:644.573600pt;}
.y118{bottom:645.465333pt;}
.y6{bottom:645.598667pt;}
.y225{bottom:645.932400pt;}
.y7b{bottom:646.394667pt;}
.y20a{bottom:647.028267pt;}
.y148{bottom:647.542133pt;}
.y1ba{bottom:647.637067pt;}
.y184{bottom:652.254000pt;}
.yc0{bottom:653.116933pt;}
.y16e{bottom:654.516667pt;}
.y273{bottom:654.589333pt;}
.y139{bottom:656.889333pt;}
.y295{bottom:659.409067pt;}
.yd6{bottom:661.268400pt;}
.y249{bottom:662.495200pt;}
.yf7{bottom:662.835333pt;}
.y9d{bottom:664.403200pt;}
.y117{bottom:665.871200pt;}
.y224{bottom:666.411333pt;}
.y7a{bottom:666.842800pt;}
.y209{bottom:667.434267pt;}
.y147{bottom:667.542133pt;}
.y1b9{bottom:668.059200pt;}
.y3{bottom:668.977329pt;}
.y48{bottom:670.899333pt;}
.y1dc{bottom:671.044533pt;}
.y272{bottom:672.206933pt;}
.ybf{bottom:673.116933pt;}
.y183{bottom:675.397333pt;}
.y138{bottom:677.777067pt;}
.y294{bottom:679.409067pt;}
.y248{bottom:680.416667pt;}
.yd5{bottom:681.380667pt;}
.yf6{bottom:683.420267pt;}
.y9c{bottom:684.664800pt;}
.y16d{bottom:685.855333pt;}
.y223{bottom:686.890267pt;}
.y79{bottom:687.291067pt;}
.y146{bottom:687.542133pt;}
.y208{bottom:687.840133pt;}
.y1b8{bottom:688.481467pt;}
.y271{bottom:689.824267pt;}
.y1db{bottom:691.816667pt;}
.ybe{bottom:693.116933pt;}
.y1a2{bottom:695.343200pt;}
.y116{bottom:697.615733pt;}
.y247{bottom:698.338267pt;}
.y182{bottom:698.540667pt;}
.y137{bottom:698.664800pt;}
.y293{bottom:699.409067pt;}
.y30{bottom:700.502267pt;}
.yd4{bottom:701.493067pt;}
.yf5{bottom:704.005200pt;}
.y9b{bottom:704.926400pt;}
.y16c{bottom:705.855333pt;}
.y222{bottom:707.369333pt;}
.y270{bottom:707.441867pt;}
.y145{bottom:707.542133pt;}
.y78{bottom:707.739067pt;}
.y207{bottom:708.246133pt;}
.y1b7{bottom:708.903600pt;}
.y1da{bottom:712.588933pt;}
.ybd{bottom:713.116933pt;}
.y1a1{bottom:715.718000pt;}
.y246{bottom:716.259733pt;}
.y292{bottom:719.409067pt;}
.y136{bottom:719.552533pt;}
.y181{bottom:721.683867pt;}
.y6a{bottom:722.575733pt;}
.yf4{bottom:724.590133pt;}
.y26f{bottom:725.059200pt;}
.y9a{bottom:725.188000pt;}
.y16b{bottom:725.855333pt;}
.y144{bottom:727.542133pt;}
.y221{bottom:727.848267pt;}
.y77{bottom:728.187200pt;}
.y206{bottom:728.652000pt;}
.y1b6{bottom:729.325733pt;}
.yd3{bottom:732.943867pt;}
.ybc{bottom:733.116933pt;}
.y1d9{bottom:733.361067pt;}
.y245{bottom:734.181333pt;}
.y1a0{bottom:736.092667pt;}
.y2f{bottom:739.400000pt;}
.y291{bottom:739.409067pt;}
.y135{bottom:740.440267pt;}
.y69{bottom:742.575733pt;}
.y26e{bottom:742.676800pt;}
.y180{bottom:744.827200pt;}
.y99{bottom:745.449600pt;}
.y16a{bottom:745.855333pt;}
.y143{bottom:747.542133pt;}
.y220{bottom:748.327200pt;}
.y76{bottom:748.635467pt;}
.y115{bottom:749.057867pt;}
.y1b5{bottom:749.747867pt;}
.y244{bottom:752.102800pt;}
.ybb{bottom:753.116933pt;}
.y19f{bottom:756.467333pt;}
.y2e{bottom:758.066667pt;}
.yf3{bottom:760.293200pt;}
.y26d{bottom:760.294133pt;}
.y98{bottom:765.711067pt;}
.y169{bottom:765.855333pt;}
.y142{bottom:767.542133pt;}
.y17f{bottom:767.970533pt;}
.y21f{bottom:768.806133pt;}
.y75{bottom:769.083600pt;}
.y114{bottom:769.463733pt;}
.y243{bottom:770.024267pt;}
.y1b4{bottom:770.170133pt;}
.y290{bottom:770.747733pt;}
.y134{bottom:772.666533pt;}
.y1d8{bottom:773.030933pt;}
.yba{bottom:773.116933pt;}
.y19e{bottom:776.842000pt;}
.y68{bottom:777.693867pt;}
.y26c{bottom:777.911600pt;}
.yf2{bottom:780.878133pt;}
.y2{bottom:781.661334pt;}
.y168{bottom:785.855333pt;}
.y97{bottom:785.972667pt;}
.y141{bottom:787.542133pt;}
.y242{bottom:787.945867pt;}
.y21e{bottom:789.285200pt;}
.y74{bottom:789.531733pt;}
.y113{bottom:789.869733pt;}
.y1b3{bottom:790.592267pt;}
.y28f{bottom:790.747733pt;}
.y17e{bottom:791.113733pt;}
.y1d7{bottom:791.136533pt;}
.y2d{bottom:791.851333pt;}
.yb9{bottom:793.116933pt;}
.y26b{bottom:795.529200pt;}
.y19d{bottom:797.216667pt;}
.y67{bottom:797.693867pt;}
.yf1{bottom:801.463200pt;}
.y167{bottom:805.855333pt;}
.y241{bottom:805.867467pt;}
.y96{bottom:806.234267pt;}
.y140{bottom:807.542133pt;}
.y1d6{bottom:809.242000pt;}
.y21d{bottom:809.764133pt;}
.y73{bottom:809.979867pt;}
.y112{bottom:810.275600pt;}
.y28e{bottom:810.747733pt;}
.y1b2{bottom:811.014400pt;}
.yb8{bottom:813.116933pt;}
.y26a{bottom:813.146533pt;}
.y17d{bottom:814.257067pt;}
.y19c{bottom:817.591467pt;}
.y66{bottom:817.693867pt;}
.yf0{bottom:822.048133pt;}
.y240{bottom:823.788933pt;}
.y166{bottom:825.855333pt;}
.y95{bottom:826.495867pt;}
.y1d5{bottom:827.347467pt;}
.y133{bottom:827.790533pt;}
.y21c{bottom:830.243067pt;}
.y72{bottom:830.428000pt;}
.y111{bottom:830.681467pt;}
.y269{bottom:830.764000pt;}
.yb7{bottom:833.116933pt;}
.y17c{bottom:837.400400pt;}
.y65{bottom:837.693867pt;}
.y19b{bottom:837.966133pt;}
.y13f{bottom:838.880667pt;}
.y23f{bottom:841.710400pt;}
.y28d{bottom:842.086267pt;}
.yef{bottom:842.633067pt;}
.y2c{bottom:844.487600pt;}
.y1d4{bottom:845.453067pt;}
.y165{bottom:845.855333pt;}
.y94{bottom:846.757467pt;}
.y268{bottom:848.381467pt;}
.y132{bottom:848.678267pt;}
.y1b1{bottom:850.334267pt;}
.y21b{bottom:850.722133pt;}
.y71{bottom:850.876267pt;}
.y110{bottom:851.087467pt;}
.yb6{bottom:853.116933pt;}
.y64{bottom:857.693867pt;}
.y19a{bottom:858.340933pt;}
.y1{bottom:859.312000pt;}
.y23e{bottom:859.632000pt;}
.y17b{bottom:860.543733pt;}
.yee{bottom:863.218000pt;}
.y1d3{bottom:863.558533pt;}
.y267{bottom:865.998933pt;}
.y1b0{bottom:868.089733pt;}
.y131{bottom:869.566000pt;}
.y21a{bottom:871.201067pt;}
.y70{bottom:871.324400pt;}
.y10f{bottom:871.493333pt;}
.yb5{bottom:873.116933pt;}
.y2b{bottom:876.487600pt;}
.y23d{bottom:877.553600pt;}
.y63{bottom:877.693867pt;}
.y93{bottom:878.357600pt;}
.y199{bottom:878.715600pt;}
.y1d2{bottom:881.664133pt;}
.y266{bottom:883.616400pt;}
.y17a{bottom:883.687067pt;}
.yed{bottom:883.802933pt;}
.y164{bottom:884.752933pt;}
.y1af{bottom:885.845200pt;}
.y130{bottom:890.453733pt;}
.y219{bottom:891.680000pt;}
.y205{bottom:891.772400pt;}
.y6f{bottom:891.772533pt;}
.y10e{bottom:891.899200pt;}
.yb4{bottom:893.116933pt;}
.y23c{bottom:895.475067pt;}
.y62{bottom:897.693867pt;}
.y198{bottom:899.090267pt;}
.y1d1{bottom:899.769733pt;}
.y265{bottom:901.233867pt;}
.y163{bottom:902.086267pt;}
.y1ae{bottom:903.600667pt;}
.y179{bottom:906.830267pt;}
.y2a{bottom:908.487600pt;}
.y12f{bottom:911.341467pt;}
.yec{bottom:911.947067pt;}
.y218{bottom:912.159067pt;}
.y6e{bottom:912.220667pt;}
.y10d{bottom:912.305067pt;}
.yb3{bottom:913.116933pt;}
.y23b{bottom:913.396533pt;}
.y1d0{bottom:917.875200pt;}
.y264{bottom:918.851333pt;}
.y162{bottom:919.419600pt;}
.y197{bottom:919.465067pt;}
.y178{bottom:929.973600pt;}
.y12e{bottom:932.229200pt;}
.yeb{bottom:932.532000pt;}
.y217{bottom:932.638000pt;}
.y6d{bottom:932.668800pt;}
.y1ad{bottom:932.694800pt;}
.y10c{bottom:932.711067pt;}
.y61{bottom:932.812000pt;}
.y92{bottom:932.855333pt;}
.y1f1{bottom:933.002667pt;}
.yb2{bottom:933.116933pt;}
.y1cf{bottom:935.980667pt;}
.y263{bottom:936.468800pt;}
.y161{bottom:936.752933pt;}
.y23a{bottom:949.239600pt;}
.y196{bottom:951.178267pt;}
.y60{bottom:953.010933pt;}
.y91{bottom:953.116933pt;}
.y6c{bottom:953.117067pt;}
.y160{bottom:954.086267pt;}
.y27{bottom:1008.625600pt;}
.y26{bottom:1026.225733pt;}
.y47{bottom:1027.762667pt;}
.y46{bottom:1028.718133pt;}
.y6b{bottom:1028.732000pt;}
.y25{bottom:1043.825733pt;}
.h7{height:28.560000pt;}
.hf{height:38.177083pt;}
.h14{height:40.266667pt;}
.h12{height:40.586667pt;}
.h6{height:40.800000pt;}
.hd{height:42.005333pt;}
.h11{height:42.423477pt;}
.h3{height:42.840000pt;}
.h9{height:44.293333pt;}
.ha{height:44.645333pt;}
.h2{height:48.960000pt;}
.h13{height:49.365333pt;}
.he{height:52.490667pt;}
.h15{height:56.240000pt;}
.h10{height:56.960000pt;}
.hc{height:57.596373pt;}
.h5{height:69.360000pt;}
.hb{height:76.373333pt;}
.h4{height:105.826671pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x5{left:128.503867pt;}
.xf{left:147.401600pt;}
.x13{left:151.181067pt;}
.x11{left:162.587067pt;}
.x12{left:170.078800pt;}
.x16{left:171.565467pt;}
.x7{left:173.535200pt;}
.x4{left:180.874667pt;}
.xc{left:201.752267pt;}
.xb{left:206.157067pt;}
.xa{left:207.183733pt;}
.x9{left:217.697200pt;}
.x8{left:224.921333pt;}
.x10{left:228.262400pt;}
.x6{left:231.320000pt;}
.x15{left:235.387333pt;}
.xe{left:313.001333pt;}
.x3{left:404.408000pt;}
.xd{left:653.467467pt;}
.x14{left:665.196800pt;}
}




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