
    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_aa1bba6593c3e3d424dde01d.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_1456da162c2a80617aa2096d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.005371;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_cfeff53cbe0cc5c816c4f9b5.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.005371;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_3b1e5ef285c340e6ca06bfc3.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.090000;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_4aaa161e85777156da9c1b3e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.004000;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_f6cc86efd78e0221a6258fe8.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.027000;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_9b2b0b250d4c6c8afbeda851.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.027000;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_538f3173a8268214c7ae1b37.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_ea0e43fd38e439e05b566e94.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.003000;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_b1a120f9b9921e87b826bf5d.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.734000;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_c85f91070b809a3ef2523e86.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.883000;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;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.000000,-0.281268,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.281268,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.281268,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.281268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281268,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.281286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281286,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);}
.v3{vertical-align:-11.905800px;}
.v1{vertical-align:-9.201499px;}
.v2{vertical-align:-7.824000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:24.149310px;}
.ls1{letter-spacing:-0.839976px;}
.ls2b{letter-spacing:-0.419988px;}
.ls0{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.027959px;}
.ls12{letter-spacing:0.028662px;}
.ls17{letter-spacing:0.035594px;}
.ls1e{letter-spacing:0.046200px;}
.ls23{letter-spacing:0.046444px;}
.ls1d{letter-spacing:0.046796px;}
.ls20{letter-spacing:0.048304px;}
.ls22{letter-spacing:0.049056px;}
.lsd{letter-spacing:0.049248px;}
.ls27{letter-spacing:0.049380px;}
.ls15{letter-spacing:0.049552px;}
.ls26{letter-spacing:0.050792px;}
.ls8{letter-spacing:0.052200px;}
.ls24{letter-spacing:0.052444px;}
.ls28{letter-spacing:0.054519px;}
.ls16{letter-spacing:0.055248px;}
.ls29{letter-spacing:0.064173px;}
.ls1c{letter-spacing:0.082859px;}
.ls5{letter-spacing:0.085944px;}
.ls1a{letter-spacing:0.154163px;}
.ls9{letter-spacing:2.781342px;}
.ls1f{letter-spacing:2.787342px;}
.ls2{letter-spacing:2.830641px;}
.ls10{letter-spacing:2.836641px;}
.ls13{letter-spacing:3.117342px;}
.lse{letter-spacing:3.123342px;}
.lsf{letter-spacing:3.172641px;}
.lsa{letter-spacing:3.178641px;}
.ls14{letter-spacing:11.071970px;}
.lsb{letter-spacing:11.179068px;}
.ls7{letter-spacing:11.408566px;}
.lsc{letter-spacing:11.413666px;}
.ls11{letter-spacing:11.520764px;}
.ls19{letter-spacing:14.056641px;}
.ls1b{letter-spacing:14.131934px;}
.ls4{letter-spacing:14.137034px;}
.ls3{letter-spacing:14.239032px;}
.ls2a{letter-spacing:14.322517px;}
.ls18{letter-spacing:14.328517px;}
.ls6{letter-spacing:14.349342px;}
.ls21{letter-spacing:14.398641px;}
.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;}
}
.ws1{word-spacing:-13.986000px;}
.ws5{word-spacing:-12.749850px;}
.ws7{word-spacing:-12.494853px;}
.ws11{word-spacing:-11.249850px;}
.ws60{word-spacing:-10.667695px;}
.ws61{word-spacing:-10.499700px;}
.ws16{word-spacing:-10.289706px;}
.ws62{word-spacing:-10.079712px;}
.ws63{word-spacing:-9.869718px;}
.ws4{word-spacing:-9.750150px;}
.ws3{word-spacing:-9.659724px;}
.ws46{word-spacing:-9.449730px;}
.wsd{word-spacing:-8.924850px;}
.wsf{word-spacing:-8.746353px;}
.ws0{word-spacing:0.000000px;}
.ws2{word-spacing:4.438800px;}
.ws5f{word-spacing:4.444200px;}
.wsb{word-spacing:5.352805px;}
.wsc{word-spacing:5.688805px;}
.wsa{word-spacing:5.694805px;}
.ws9{word-spacing:8.412805px;}
.ws6{word-spacing:17.115399px;}
.ws1d{word-spacing:56.106000px;}
.ws26{word-spacing:95.839200px;}
.ws2a{word-spacing:99.187200px;}
.ws22{word-spacing:106.477200px;}
.ws4a{word-spacing:108.268556px;}
.ws24{word-spacing:109.393200px;}
.ws21{word-spacing:109.645200px;}
.ws23{word-spacing:116.683200px;}
.ws57{word-spacing:118.757917px;}
.ws25{word-spacing:119.851200px;}
.ws58{word-spacing:120.152898px;}
.ws27{word-spacing:120.193200px;}
.ws4e{word-spacing:122.290369px;}
.ws50{word-spacing:122.627865px;}
.ws20{word-spacing:124.084800px;}
.ws56{word-spacing:125.278330px;}
.ws5a{word-spacing:126.713810px;}
.ws28{word-spacing:126.993600px;}
.ws51{word-spacing:128.995280px;}
.ws4d{word-spacing:131.344249px;}
.ws3f{word-spacing:132.073626px;}
.ws35{word-spacing:132.880003px;}
.ws29{word-spacing:134.287200px;}
.ws38{word-spacing:135.202537px;}
.ws55{word-spacing:135.214197px;}
.ws4f{word-spacing:135.556193px;}
.ws34{word-spacing:136.155910px;}
.ws36{word-spacing:136.491900px;}
.ws40{word-spacing:142.346533px;}
.ws39{word-spacing:142.522928px;}
.ws4b{word-spacing:144.245577px;}
.ws52{word-spacing:144.587572px;}
.ws37{word-spacing:144.744664px;}
.ws33{word-spacing:144.786663px;}
.ws3d{word-spacing:146.987400px;}
.ws5b{word-spacing:147.040039px;}
.ws54{word-spacing:148.142525px;}
.ws3b{word-spacing:148.402760px;}
.ws4c{word-spacing:148.457521px;}
.ws1f{word-spacing:152.161200px;}
.ws1a{word-spacing:153.281456px;}
.ws3e{word-spacing:156.651324px;}
.ws3a{word-spacing:156.987315px;}
.ws59{word-spacing:157.173904px;}
.ws53{word-spacing:161.043853px;}
.ws41{word-spacing:168.851976px;}
.ws3c{word-spacing:172.463872px;}
.ws2f{word-spacing:173.648238px;}
.ws32{word-spacing:184.706523px;}
.ws5d{word-spacing:199.774836px;}
.ws43{word-spacing:208.473643px;}
.ws1e{word-spacing:209.638800px;}
.ws49{word-spacing:226.265983px;}
.ws5c{word-spacing:236.449347px;}
.ws31{word-spacing:238.397788px;}
.ws18{word-spacing:240.935787px;}
.ws1c{word-spacing:240.958287px;}
.ws17{word-spacing:241.295783px;}
.ws42{word-spacing:243.047056px;}
.ws5e{word-spacing:243.293756px;}
.ws2d{word-spacing:243.895431px;}
.ws48{word-spacing:246.954395px;}
.ws45{word-spacing:249.426673px;}
.ws44{word-spacing:249.430873px;}
.ws1b{word-spacing:253.864115px;}
.ws19{word-spacing:254.543606px;}
.ws30{word-spacing:261.438330px;}
.ws2e{word-spacing:268.342933px;}
.ws2c{word-spacing:371.773378px;}
.ws2b{word-spacing:400.613954px;}
.ws15{word-spacing:460.955854px;}
.ws13{word-spacing:487.127505px;}
.ws14{word-spacing:506.171251px;}
.ws12{word-spacing:512.952661px;}
.ws10{word-spacing:524.176933px;}
.ws8{word-spacing:656.076805px;}
.wse{word-spacing:748.260805px;}
.ws47{word-spacing:843.269979px;}
._0{margin-left:-3.726000px;}
._1{margin-left:-2.160000px;}
._2{margin-left:-1.080000px;}
._9{width:1.038000px;}
._8{width:2.106000px;}
._a{width:3.175200px;}
._7{width:4.195800px;}
._3{width:5.205557px;}
._4{width:6.350347px;}
._5{width:7.945753px;}
._6{width:9.026947px;}
._d{width:10.158603px;}
._f{width:11.332067px;}
._e{width:14.055435px;}
._b{width:15.136622px;}
._c{width:16.161710px;}
._14{width:17.222497px;}
._15{width:18.441383px;}
._11{width:19.752068px;}
._10{width:20.777156px;}
._12{width:22.011341px;}
._16{width:23.643322px;}
._13{width:29.181857px;}
._64{width:78.919200px;}
._65{width:85.096800px;}
._66{width:91.497600px;}
._61{width:94.478400px;}
._7f{width:96.598800px;}
._6a{width:103.582800px;}
._67{width:106.290000px;}
._62{width:108.306000px;}
._60{width:109.360800px;}
._68{width:113.248800px;}
._63{width:115.603200px;}
._70{width:118.206000px;}
._81{width:119.505600px;}
._7b{width:122.353200px;}
._69{width:123.501600px;}
._79{width:124.819200px;}
._77{width:126.500400px;}
._6e{width:128.847600px;}
._b3{width:129.985267px;}
._72{width:132.735600px;}
._78{width:134.013600px;}
._80{width:135.277200px;}
._73{width:136.335600px;}
._b4{width:138.572749px;}
._7a{width:139.806000px;}
._b6{width:141.162822px;}
._5f{width:142.819200px;}
._5d{width:145.004400px;}
._b9{width:146.077052px;}
._a0{width:147.155468px;}
._50{width:148.897848px;}
._6f{width:150.706800px;}
._4e{width:151.983312px;}
._76{width:153.990000px;}
._9e{width:155.286363px;}
._b5{width:156.365981px;}
._5e{width:157.946400px;}
._a6{width:159.085899px;}
._9d{width:160.144111px;}
._71{width:161.168400px;}
._ba{width:162.393835px;}
._6d{width:163.555200px;}
._ae{width:165.265278px;}
._9b{width:166.298448px;}
._7e{width:167.338800px;}
._74{width:168.458400px;}
._af{width:169.473558px;}
._a4{width:170.805620px;}
._a1{width:172.288652px;}
._7c{width:173.635200px;}
._b8{width:175.552642px;}
._4d{width:177.719672px;}
._ab{width:179.729665px;}
._b0{width:180.817912px;}
._75{width:182.970000px;}
._57{width:185.165289px;}
._a5{width:187.045856px;}
._6b{width:189.979200px;}
._7d{width:191.815200px;}
._a7{width:194.353647px;}
._96{width:196.499786px;}
._4f{width:197.770573px;}
._ad{width:204.063769px;}
._b7{width:206.650745px;}
._a3{width:207.864661px;}
._aa{width:210.552584px;}
._bb{width:212.055173px;}
._6c{width:217.710000px;}
._5b{width:220.805798px;}
._ac{width:229.216851px;}
._59{width:231.559670px;}
._9f{width:235.407474px;}
._a2{width:237.486414px;}
._b1{width:243.284756px;}
._a8{width:246.831147px;}
._b2{width:248.626185px;}
._97{width:249.758464px;}
._9c{width:251.619011px;}
._4c{width:253.278320px;}
._85{width:254.950476px;}
._86{width:256.150681px;}
._91{width:258.926802px;}
._99{width:261.144339px;}
._98{width:263.193523px;}
._52{width:265.113965px;}
._54{width:266.130952px;}
._88{width:267.285137px;}
._90{width:269.670095px;}
._51{width:270.833389px;}
._3b{width:277.353550px;}
._3a{width:279.502212px;}
._5c{width:282.936568px;}
._53{width:284.181969px;}
._8c{width:290.413302px;}
._9a{width:293.029827px;}
._46{width:296.270565px;}
._55{width:298.428779px;}
._84{width:305.642067px;}
._58{width:309.613872px;}
._29{width:310.743357px;}
._36{width:311.922341px;}
._a9{width:317.498328px;}
._38{width:319.333742px;}
._43{width:322.944353px;}
._8e{width:325.893888px;}
._2e{width:327.838629px;}
._23{width:329.224610px;}
._32{width:335.340029px;}
._27{width:336.726010px;}
._21{width:338.089492px;}
._56{width:341.000953px;}
._83{width:342.069966px;}
._2b{width:346.013886px;}
._1f{width:347.399868px;}
._30{width:353.537786px;}
._25{width:354.923768px;}
._92{width:358.358961px;}
._19{width:361.664678px;}
._1b{width:363.761650px;}
._34{width:365.035133px;}
._94{width:372.344561px;}
._8d{width:374.906488px;}
._1d{width:376.577479px;}
._95{width:386.212565px;}
._8f{width:391.832004px;}
._8a{width:394.393931px;}
._40{width:397.994451px;}
._93{width:406.153595px;}
._8b{width:408.715522px;}
._48{width:413.943996px;}
._82{width:419.563721px;}
._87{width:421.357161px;}
._2d{width:425.441343px;}
._5a{width:427.962294px;}
._3f{width:435.748948px;}
._42{width:437.375184px;}
._89{width:449.244364px;}
._31{width:486.699026px;}
._2f{width:487.941009px;}
._2c{width:501.040335px;}
._3e{width:511.301183px;}
._44{width:517.421101px;}
._49{width:519.833069px;}
._3d{width:524.474265px;}
._3c{width:543.250757px;}
._45{width:620.258230px;}
._22{width:622.122963px;}
._2a{width:623.488202px;}
._47{width:643.041426px;}
._39{width:663.874490px;}
._4a{width:667.971094px;}
._41{width:678.095959px;}
._4b{width:689.390808px;}
._26{width:713.035250px;}
._24{width:714.277234px;}
._20{width:727.376559px;}
._18{width:731.180766px;}
._1a{width:735.113714px;}
._28{width:746.217808px;}
._17{width:827.123569px;}
._35{width:838.482820px;}
._1e{width:849.824427px;}
._37{width:860.861022px;}
._1c{width:900.745748px;}
._33{width:997.047206px;}
.fc2{color:rgb(0,0,128);}
.fc1{color:rgb(163,92,81);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs12{font-size:27.996600px;}
.fs13{font-size:29.994600px;}
.fsf{font-size:35.699400px;}
.fsb{font-size:35.995200px;}
.fs11{font-size:36.000000px;}
.fse{font-size:39.000600px;}
.fsd{font-size:41.998800px;}
.fs4{font-size:42.000000px;}
.fs10{font-size:44.999400px;}
.fs7{font-size:48.000000px;}
.fsc{font-size:50.999400px;}
.fs5{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs9{font-size:71.999400px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:90.000000px;}
.fsa{font-size:101.999400px;}
.fs2{font-size:102.000000px;}
.fs8{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y5f{bottom:42.179400px;}
.ya7{bottom:42.187021px;}
.y5{bottom:66.525004px;}
.y24{bottom:67.597501px;}
.y22f{bottom:72.287585px;}
.yf7{bottom:76.540482px;}
.y2b3{bottom:77.052009px;}
.ya6{bottom:77.054674px;}
.y75{bottom:78.577194px;}
.y1ce{bottom:82.573200px;}
.y1cd{bottom:82.574400px;}
.y1f6{bottom:82.575269px;}
.y1cb{bottom:84.018750px;}
.y23{bottom:84.097501px;}
.y22e{bottom:85.808049px;}
.y10b{bottom:86.062514px;}
.y2f7{bottom:86.833756px;}
.y380{bottom:87.601202px;}
.y1a8{bottom:88.953741px;}
.y339{bottom:90.235659px;}
.y18b{bottom:90.399529px;}
.y74{bottom:91.333315px;}
.yf6{bottom:94.568770px;}
.y2b2{bottom:95.080297px;}
.y1f1{bottom:95.080857px;}
.y25c{bottom:95.081842px;}
.ya5{bottom:95.082962px;}
.y4{bottom:97.125005px;}
.y144{bottom:97.200810px;}
.y22d{bottom:99.244515px;}
.y2f6{bottom:100.270222px;}
.y37f{bottom:101.121665px;}
.y14e{bottom:102.728899px;}
.y338{bottom:103.756123px;}
.y73{bottom:104.088461px;}
.y10a{bottom:104.090801px;}
.y1a7{bottom:106.982029px;}
.y118{bottom:107.064908px;}
.y18a{bottom:108.427817px;}
.yf5{bottom:112.597058px;}
.y22c{bottom:112.766029px;}
.y2b1{bottom:113.108585px;}
.y1f0{bottom:113.109145px;}
.y25b{bottom:113.110129px;}
.ya4{bottom:113.111250px;}
.y2f5{bottom:113.790686px;}
.y37e{bottom:114.643179px;}
.y143{bottom:115.059434px;}
.y1f7{bottom:115.398300px;}
.y72{bottom:116.844583px;}
.y337{bottom:117.277636px;}
.y14d{bottom:120.757187px;}
.y109{bottom:122.119089px;}
.y1f8{bottom:123.307050px;}
.y1a6{bottom:125.010317px;}
.y117{bottom:125.093196px;}
.y22b{bottom:126.286492px;}
.y189{bottom:126.370681px;}
.y2f4{bottom:127.312200px;}
.y37d{bottom:128.079645px;}
.y71{bottom:129.600704px;}
.yf4{bottom:130.539922px;}
.y336{bottom:130.798100px;}
.y2b0{bottom:131.051449px;}
.y1ef{bottom:131.052009px;}
.y25a{bottom:131.052993px;}
.ya3{bottom:131.054114px;}
.y142{bottom:132.835775px;}
.y14c{bottom:138.784636px;}
.y22{bottom:139.264499px;}
.y22a{bottom:139.808006px;}
.yc6{bottom:140.061741px;}
.y108{bottom:140.061953px;}
.y2f3{bottom:140.832663px;}
.y37c{bottom:141.600109px;}
.y70{bottom:142.355850px;}
.y1a5{bottom:142.953181px;}
.y116{bottom:143.036060px;}
.y335{bottom:144.234566px;}
.y188{bottom:144.398969px;}
.y1cc{bottom:147.798300px;}
.y28c{bottom:148.310079px;}
.y2af{bottom:149.079736px;}
.y1ee{bottom:149.080297px;}
.y259{bottom:149.081281px;}
.ya2{bottom:149.082402px;}
.y2f2{bottom:154.269129px;}
.y37b{bottom:155.121622px;}
.y14b{bottom:156.728987px;}
.y334{bottom:157.756080px;}
.yc5{bottom:158.090029px;}
.y107{bottom:158.090241px;}
.y229{bottom:159.451895px;}
.y1a4{bottom:160.981469px;}
.y115{bottom:161.064348px;}
.y141{bottom:161.069043px;}
.y28b{bottom:161.831593px;}
.y187{bottom:162.427257px;}
.yf3{bottom:166.596498px;}
.y2ae{bottom:167.108024px;}
.y1ed{bottom:167.108585px;}
.y258{bottom:167.109569px;}
.ya1{bottom:167.110690px;}
.y2f1{bottom:167.790643px;}
.y37a{bottom:168.643136px;}
.y333{bottom:171.276543px;}
.y14a{bottom:174.757487px;}
.y28a{bottom:175.268059px;}
.y228{bottom:175.949023px;}
.yc4{bottom:176.032893px;}
.y106{bottom:176.033105px;}
.y114{bottom:179.092636px;}
.y140{bottom:179.097331px;}
.y186{bottom:180.370121px;}
.y2f0{bottom:181.311107px;}
.y379{bottom:182.078552px;}
.yf2{bottom:184.539362px;}
.y332{bottom:184.798057px;}
.y1ec{bottom:185.051449px;}
.y257{bottom:185.052433px;}
.y230{bottom:185.053554px;}
.y289{bottom:188.788523px;}
.y227{bottom:192.532249px;}
.y149{bottom:192.784850px;}
.yc3{bottom:194.061181px;}
.y105{bottom:194.061393px;}
.y2ef{bottom:194.832620px;}
.y378{bottom:195.600066px;}
.y19{bottom:196.933500px;}
.y1a3{bottom:196.952621px;}
.y113{bottom:197.035500px;}
.y13f{bottom:197.040194px;}
.y331{bottom:198.234523px;}
.y185{bottom:198.398408px;}
.y288{bottom:202.310036px;}
.yf1{bottom:202.567650px;}
.y2ad{bottom:203.079176px;}
.y1eb{bottom:203.079736px;}
.ya0{bottom:203.081842px;}
.y1f5{bottom:207.496500px;}
.y2ee{bottom:208.269087px;}
.y377{bottom:209.120530px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y330{bottom:211.754987px;}
.y226{bottom:211.920995px;}
.yc2{bottom:212.089469px;}
.y104{bottom:212.089681px;}
.y1a2{bottom:214.980908px;}
.y112{bottom:215.064000px;}
.y13e{bottom:215.068482px;}
.y287{bottom:215.830500px;}
.y184{bottom:216.426696px;}
.yf0{bottom:220.595938px;}
.y2ac{bottom:221.107464px;}
.y1ea{bottom:221.108024px;}
.y256{bottom:221.109009px;}
.y9f{bottom:221.110129px;}
.y2ed{bottom:221.789550px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y376{bottom:222.642043px;}
.y32f{bottom:225.276501px;}
.y225{bottom:228.418124px;}
.y148{bottom:228.756002px;}
.yc1{bottom:230.032333px;}
.y103{bottom:230.032545px;}
.y1a1{bottom:233.009196px;}
.y13d{bottom:233.096770px;}
.y183{bottom:234.369560px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y2ec{bottom:235.311064px;}
.y286{bottom:235.559946px;}
.y375{bottom:236.078509px;}
.y38{bottom:236.926501px;}
.y5c{bottom:238.451408px;}
.yef{bottom:238.538801px;}
.y32e{bottom:238.796964px;}
.y1e9{bottom:239.050888px;}
.y2ab{bottom:239.051603px;}
.y255{bottom:239.051873px;}
.y9e{bottom:239.052993px;}
.y224{bottom:247.806870px;}
.yc0{bottom:248.060621px;}
.y102{bottom:248.060833px;}
.y2eb{bottom:248.831528px;}
.y285{bottom:248.995642px;}
.y374{bottom:249.598973px;}
.y1a0{bottom:250.952060px;}
.y111{bottom:251.037199px;}
.y13c{bottom:251.039634px;}
.y32d{bottom:252.233430px;}
.y182{bottom:252.397848px;}
.y5b{bottom:256.479696px;}
.yee{bottom:256.567089px;}
.y2aa{bottom:257.078616px;}
.y1e8{bottom:257.079176px;}
.y254{bottom:257.080161px;}
.y9d{bottom:257.081281px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y147{bottom:260.815500px;}
.y2ea{bottom:262.267994px;}
.y373{bottom:263.120487px;}
.y223{bottom:264.303999px;}
.y32c{bottom:265.754944px;}
.ybf{bottom:266.088908px;}
.y101{bottom:266.089121px;}
.y284{bottom:268.979876px;}
.y19f{bottom:268.980348px;}
.y110{bottom:269.065487px;}
.y13b{bottom:269.067922px;}
.y181{bottom:270.426136px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y5a{bottom:274.422560px;}
.yed{bottom:274.595377px;}
.y2a9{bottom:275.106904px;}
.y1e7{bottom:275.107464px;}
.y253{bottom:275.108449px;}
.y9c{bottom:275.109569px;}
.y2e9{bottom:275.789507px;}
.y372{bottom:276.642000px;}
.y146{bottom:278.589000px;}
.y32b{bottom:279.275408px;}
.y222{bottom:280.802177px;}
.y283{bottom:282.415572px;}
.ybe{bottom:284.031772px;}
.y100{bottom:284.033259px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y19e{bottom:287.008636px;}
.y10f{bottom:287.092500px;}
.y13a{bottom:287.096210px;}
.y180{bottom:288.369000px;}
.y2e8{bottom:289.309971px;}
.y371{bottom:290.077416px;}
.y59{bottom:292.450848px;}
.yec{bottom:292.538241px;}
.y32a{bottom:292.796921px;}
.y2a8{bottom:293.051043px;}
.y1e6{bottom:293.051603px;}
.y9b{bottom:293.052433px;}
.y252{bottom:293.052587px;}
.y282{bottom:295.936766px;}
.y145{bottom:296.446500px;}
.y221{bottom:300.531114px;}
.y37{bottom:301.276501px;}
.ybd{bottom:302.060060px;}
.yff{bottom:302.060272px;}
.y2e7{bottom:302.831485px;}
.y370{bottom:303.598930px;}
.y19d{bottom:304.951500px;}
.y10e{bottom:305.035500px;}
.y139{bottom:305.039074px;}
.y329{bottom:306.233387px;}
.y17f{bottom:306.398250px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y58{bottom:310.479136px;}
.yeb{bottom:310.566529px;}
.y1e5{bottom:311.078616px;}
.y2a7{bottom:311.079331px;}
.y251{bottom:311.079600px;}
.y9a{bottom:311.080721px;}
.y281{bottom:315.921000px;}
.y27f{bottom:315.922409px;}
.y2e6{bottom:316.267951px;}
.y36f{bottom:317.119394px;}
.y1f9{bottom:317.367000px;}
.y328{bottom:319.753851px;}
.ybc{bottom:320.088348px;}
.yfe{bottom:320.088560px;}
.y220{bottom:320.259000px;}
.y21e{bottom:320.266780px;}
.y280{bottom:320.853000px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y138{bottom:323.067362px;}
.y21f{bottom:324.936000px;}
.y1fa{bottom:325.191000px;}
.y57{bottom:328.422000px;}
.yea{bottom:328.594817px;}
.y2a6{bottom:329.106343px;}
.y1e4{bottom:329.106904px;}
.y250{bottom:329.107888px;}
.y99{bottom:329.109009px;}
.y2e5{bottom:329.788414px;}
.y36e{bottom:330.640907px;}
.y327{bottom:333.275365px;}
.y27e{bottom:335.821143px;}
.ybb{bottom:338.032487px;}
.yfd{bottom:338.032699px;}
.y21d{bottom:339.995717px;}
.y137{bottom:341.095650px;}
.y10d{bottom:341.100243px;}
.y17e{bottom:342.369000px;}
.y2e4{bottom:343.309928px;}
.y36d{bottom:344.077374px;}
.y56{bottom:346.450050px;}
.y326{bottom:346.795828px;}
.y176{bottom:346.875960px;}
.y2a5{bottom:347.050482px;}
.y98{bottom:347.051873px;}
.y24f{bottom:347.052027px;}
.y10{bottom:348.133500px;}
.y1ca{bottom:353.508000px;}
.y27d{bottom:355.721003px;}
.yba{bottom:356.059500px;}
.yfc{bottom:356.060987px;}
.y2e3{bottom:356.830392px;}
.y36c{bottom:357.597837px;}
.y136{bottom:359.038514px;}
.y21c{bottom:359.724653px;}
.y325{bottom:360.232295px;}
.y175{bottom:360.312781px;}
.ye9{bottom:364.565969px;}
.y2a4{bottom:365.078770px;}
.y1e3{bottom:365.079331px;}
.y97{bottom:365.080161px;}
.y36{bottom:365.626501px;}
.y2e2{bottom:370.266858px;}
.y36b{bottom:371.119351px;}
.y1c9{bottom:373.153359px;}
.y324{bottom:373.753808px;}
.yb9{bottom:374.088000px;}
.y27c{bottom:375.705236px;}
.y135{bottom:377.066801px;}
.y17d{bottom:378.425408px;}
.y21b{bottom:379.453589px;}
.y174{bottom:380.297014px;}
.ye8{bottom:382.594257px;}
.y1e2{bottom:383.106343px;}
.y2a3{bottom:383.107058px;}
.y96{bottom:383.108449px;}
.y24e{bottom:383.108603px;}
.y2e1{bottom:383.788372px;}
.y36a{bottom:384.640865px;}
.yf{bottom:386.785499px;}
.y323{bottom:387.274272px;}
.y55{bottom:389.565000px;}
.yfb{bottom:392.031000px;}
.y1c8{bottom:393.137593px;}
.y173{bottom:393.732710px;}
.y134{bottom:395.095089px;}
.y27b{bottom:395.603971px;}
.y17c{bottom:396.368272px;}
.y2e0{bottom:397.308835px;}
.y369{bottom:398.076281px;}
.y21a{bottom:399.182526px;}
.ye7{bottom:400.537121px;}
.y322{bottom:400.795786px;}
.y2a2{bottom:401.049922px;}
.y1e1{bottom:401.050482px;}
.y24d{bottom:401.051467px;}
.y95{bottom:401.052587px;}
.ye{bottom:408.044999px;}
.yb8{bottom:410.060272px;}
.y2df{bottom:410.830349px;}
.y368{bottom:411.597794px;}
.y1c7{bottom:413.036328px;}
.y133{bottom:413.037953px;}
.y172{bottom:413.716944px;}
.y321{bottom:414.232252px;}
.y17b{bottom:414.396560px;}
.y27a{bottom:415.502706px;}
.ye6{bottom:418.565408px;}
.y219{bottom:418.911462px;}
.y2a1{bottom:419.078210px;}
.y1e0{bottom:419.078770px;}
.y10c{bottom:419.079600px;}
.y24c{bottom:419.079755px;}
.y54{bottom:420.264000px;}
.y2de{bottom:424.266815px;}
.y367{bottom:425.118258px;}
.y171{bottom:427.153764px;}
.y320{bottom:427.752715px;}
.yb7{bottom:428.088560px;}
.yfa{bottom:428.093744px;}
.y132{bottom:431.066241px;}
.y17a{bottom:432.424848px;}
.y35{bottom:432.907500px;}
.y1c6{bottom:433.020561px;}
.y279{bottom:435.486939px;}
.ye5{bottom:436.593696px;}
.y2a0{bottom:437.106498px;}
.y1df{bottom:437.107058px;}
.y94{bottom:437.107888px;}
.y24b{bottom:437.108043px;}
.y2dd{bottom:437.787279px;}
.y366{bottom:438.639772px;}
.y218{bottom:438.640398px;}
.y31f{bottom:441.274229px;}
.yb6{bottom:446.032699px;}
.y1c5{bottom:446.457382px;}
.y170{bottom:447.137998px;}
.y131{bottom:449.094529px;}
.yf9{bottom:449.099122px;}
.y179{bottom:450.368987px;}
.y53{bottom:451.051500px;}
.y2dc{bottom:451.308792px;}
.y365{bottom:452.076238px;}
.ye4{bottom:454.536560px;}
.y31e{bottom:454.794693px;}
.y29f{bottom:455.049362px;}
.y1de{bottom:455.049922px;}
.y24a{bottom:455.050907px;}
.y93{bottom:455.052027px;}
.y278{bottom:455.386799px;}
.y217{bottom:458.369335px;}
.yb5{bottom:464.060987px;}
.y2db{bottom:464.829256px;}
.y364{bottom:465.596701px;}
.y1c4{bottom:466.441616px;}
.y16f{bottom:467.036733px;}
.y130{bottom:467.037393px;}
.y31d{bottom:468.231159px;}
.y178{bottom:468.396000px;}
.y52{bottom:472.056000px;}
.ye3{bottom:472.564848px;}
.y29e{bottom:473.077650px;}
.y1dd{bottom:473.078210px;}
.y249{bottom:473.079194px;}
.y92{bottom:473.080315px;}
.y277{bottom:475.371033px;}
.y216{bottom:478.098271px;}
.y2da{bottom:478.265722px;}
.y363{bottom:479.118215px;}
.y1c3{bottom:479.877311px;}
.y16e{bottom:480.557927px;}
.y31c{bottom:481.752672px;}
.yb4{bottom:482.088000px;}
.yd{bottom:484.864502px;}
.y177{bottom:486.424500px;}
.ye2{bottom:490.593136px;}
.y29d{bottom:491.105938px;}
.y1dc{bottom:491.106498px;}
.y248{bottom:491.107482px;}
.y91{bottom:491.108603px;}
.y2d9{bottom:491.787236px;}
.y362{bottom:492.639729px;}
.y51{bottom:493.060500px;}
.y1c2{bottom:493.398506px;}
.y16d{bottom:494.079122px;}
.y34{bottom:494.326501px;}
.y276{bottom:495.269767px;}
.y31b{bottom:495.273136px;}
.y215{bottom:497.827207px;}
.yb3{bottom:500.031000px;}
.yc{bottom:502.864502px;}
.y12f{bottom:503.093969px;}
.y2d8{bottom:505.307699px;}
.y361{bottom:506.075145px;}
.ye1{bottom:508.536000px;}
.y31a{bottom:508.794650px;}
.y29c{bottom:509.048801px;}
.y1db{bottom:509.049362px;}
.y247{bottom:509.050346px;}
.y90{bottom:509.051467px;}
.y1c1{bottom:513.382740px;}
.y16c{bottom:513.978982px;}
.y50{bottom:514.065000px;}
.y275{bottom:515.169627px;}
.y214{bottom:517.556143px;}
.y2d7{bottom:518.829213px;}
.y360{bottom:519.596659px;}
.yb{bottom:520.864502px;}
.y12e{bottom:521.036833px;}
.y319{bottom:522.231116px;}
.ye0{bottom:526.564500px;}
.y1c0{bottom:526.819561px;}
.y29b{bottom:527.077089px;}
.y1da{bottom:527.077650px;}
.y246{bottom:527.078634px;}
.y8f{bottom:527.079755px;}
.y16b{bottom:527.500176px;}
.y2d6{bottom:532.265679px;}
.y35f{bottom:533.117122px;}
.y4f{bottom:535.069500px;}
.y274{bottom:535.153860px;}
.y19c{bottom:535.407000px;}
.y318{bottom:535.751580px;}
.yb2{bottom:536.093899px;}
.y213{bottom:537.285080px;}
.ya{bottom:538.864499px;}
.y12d{bottom:539.065121px;}
.y1bf{bottom:540.340755px;}
.y29a{bottom:545.105377px;}
.y1d9{bottom:545.105938px;}
.y245{bottom:545.106922px;}
.y8e{bottom:545.108043px;}
.y35e{bottom:546.638636px;}
.y16a{bottom:547.398911px;}
.y317{bottom:549.273093px;}
.yb1{bottom:554.036763px;}
.y273{bottom:555.052595px;}
.y19b{bottom:555.137683px;}
.y4e{bottom:556.074000px;}
.y9{bottom:556.864499px;}
.y212{bottom:557.014016px;}
.y12c{bottom:557.093408px;}
.y2d5{bottom:559.307657px;}
.y35d{bottom:560.075102px;}
.y1be{bottom:560.239490px;}
.y169{bottom:560.920106px;}
.y33{bottom:561.607500px;}
.ydf{bottom:562.536199px;}
.y316{bottom:562.793557px;}
.y299{bottom:563.048241px;}
.y1d8{bottom:563.048801px;}
.y244{bottom:563.049786px;}
.y8d{bottom:563.050907px;}
.yb0{bottom:572.065051px;}
.y2d4{bottom:572.828120px;}
.y35c{bottom:573.595566px;}
.y1bd{bottom:573.760685px;}
.y272{bottom:574.952455px;}
.y12b{bottom:575.036272px;}
.y19a{bottom:575.036418px;}
.y315{bottom:576.230023px;}
.y211{bottom:576.742952px;}
.y4d{bottom:577.078500px;}
.yde{bottom:580.564487px;}
.y168{bottom:580.819966px;}
.y298{bottom:581.076529px;}
.y1d7{bottom:581.077089px;}
.y8c{bottom:581.079194px;}
.y2d3{bottom:586.264586px;}
.y35b{bottom:587.117079px;}
.y1bc{bottom:587.281879px;}
.y314{bottom:589.751537px;}
.yaf{bottom:590.093338px;}
.y12a{bottom:593.064560px;}
.y167{bottom:594.341160px;}
.y271{bottom:594.936688px;}
.y199{bottom:595.020651px;}
.y32{bottom:595.957501px;}
.y210{bottom:596.386841px;}
.y4c{bottom:598.083000px;}
.ydd{bottom:598.591500px;}
.y297{bottom:599.104817px;}
.y1d6{bottom:599.105377px;}
.y243{bottom:599.106362px;}
.y8b{bottom:599.107482px;}
.y2d2{bottom:599.786100px;}
.y35a{bottom:600.638593px;}
.y313{bottom:603.272000px;}
.y1bb{bottom:607.181739px;}
.yae{bottom:608.036202px;}
.y31{bottom:610.957501px;}
.y129{bottom:611.092848px;}
.y2d1{bottom:613.306564px;}
.y359{bottom:614.074009px;}
.y166{bottom:614.239895px;}
.y270{bottom:614.835423px;}
.y198{bottom:614.920511px;}
.y20f{bottom:616.115777px;}
.ydc{bottom:616.536000px;}
.y312{bottom:616.793514px;}
.y296{bottom:617.047681px;}
.y242{bottom:617.049226px;}
.yf8{bottom:617.050346px;}
.y4b{bottom:619.003500px;}
.y1ba{bottom:620.702934px;}
.y30{bottom:625.957500px;}
.y2d0{bottom:626.828077px;}
.y358{bottom:627.595523px;}
.y165{bottom:627.761090px;}
.y197{bottom:628.441706px;}
.y128{bottom:629.036987px;}
.y311{bottom:630.229980px;}
.y1b9{bottom:634.224128px;}
.y26f{bottom:634.819656px;}
.y295{bottom:635.075969px;}
.y1d5{bottom:635.076529px;}
.y241{bottom:635.077514px;}
.y8a{bottom:635.078634px;}
.y20e{bottom:635.844714px;}
.y4a{bottom:640.008000px;}
.y357{bottom:641.115987px;}
.y310{bottom:643.750444px;}
.yad{bottom:644.092778px;}
.y8{bottom:645.510000px;}
.y127{bottom:647.064000px;}
.y164{bottom:647.745323px;}
.y196{bottom:648.340440px;}
.ydb{bottom:652.592621px;}
.y1d4{bottom:653.104817px;}
.y240{bottom:653.105801px;}
.y89{bottom:653.106922px;}
.y2cf{bottom:653.785007px;}
.y1b8{bottom:654.122863px;}
.y356{bottom:654.637500px;}
.y26e{bottom:654.718391px;}
.y20d{bottom:655.573650px;}
.y30f{bottom:657.271957px;}
.y49{bottom:661.012500px;}
.yac{bottom:662.035642px;}
.y126{bottom:665.092500px;}
.y7{bottom:666.771000px;}
.y2ce{bottom:667.306521px;}
.y163{bottom:667.644058px;}
.y355{bottom:668.073966px;}
.y6f{bottom:668.147365px;}
.y195{bottom:668.240300px;}
.yda{bottom:670.536759px;}
.y30e{bottom:670.792421px;}
.y294{bottom:671.047121px;}
.y1d3{bottom:671.047681px;}
.y23f{bottom:671.048665px;}
.y88{bottom:671.049786px;}
.y26d{bottom:674.618251px;}
.y20c{bottom:675.302586px;}
.y2cd{bottom:680.826984px;}
.y6e{bottom:680.902400px;}
.y162{bottom:681.165253px;}
.y354{bottom:681.594430px;}
.y48{bottom:682.017000px;}
.y30d{bottom:684.228887px;}
.yab{bottom:684.571002px;}
.y1b7{bottom:687.543918px;}
.y194{bottom:688.224533px;}
.yd9{bottom:688.563772px;}
.y293{bottom:689.075408px;}
.y1d2{bottom:689.075969px;}
.y23e{bottom:689.076953px;}
.y87{bottom:689.078074px;}
.y26c{bottom:694.602484px;}
.y20b{bottom:695.031523px;}
.y353{bottom:695.115944px;}
.y30c{bottom:697.750401px;}
.y161{bottom:701.065112px;}
.y125{bottom:701.067203px;}
.yaa{bottom:702.599290px;}
.y47{bottom:703.021500px;}
.y6d{bottom:706.414571px;}
.yd8{bottom:706.592060px;}
.y292{bottom:707.103696px;}
.y1d1{bottom:707.104257px;}
.y23d{bottom:707.105241px;}
.y86{bottom:707.106362px;}
.y2f{bottom:707.317498px;}
.y1b6{bottom:707.528151px;}
.y193{bottom:708.123268px;}
.y352{bottom:708.637457px;}
.y2cc{bottom:710.760579px;}
.y30b{bottom:711.270865px;}
.y26b{bottom:714.501219px;}
.y160{bottom:714.586307px;}
.y20a{bottom:714.760459px;}
.y6c{bottom:719.170657px;}
.y1b5{bottom:720.963847px;}
.y192{bottom:721.644463px;}
.y351{bottom:722.072873px;}
.y46{bottom:724.026000px;}
.y2cb{bottom:724.282093px;}
.yd7{bottom:724.536199px;}
.y30a{bottom:724.792378px;}
.y291{bottom:725.046560px;}
.y1d0{bottom:725.047121px;}
.y23c{bottom:725.048105px;}
.y85{bottom:725.049226px;}
.y6{bottom:726.298500px;}
.y6b{bottom:731.925692px;}
.y26a{bottom:734.401079px;}
.y15f{bottom:734.485042px;}
.y209{bottom:734.489395px;}
.y350{bottom:735.594387px;}
.y2e{bottom:737.317498px;}
.y309{bottom:738.228844px;}
.y1b4{bottom:740.948080px;}
.y191{bottom:741.543198px;}
.yd6{bottom:742.564487px;}
.y290{bottom:743.074848px;}
.y1cf{bottom:743.075408px;}
.y23b{bottom:743.076393px;}
.y84{bottom:743.077514px;}
.y6a{bottom:744.681778px;}
.y45{bottom:745.030500px;}
.y15e{bottom:748.006236px;}
.y34f{bottom:749.114851px;}
.y2ca{bottom:751.324070px;}
.y308{bottom:751.749308px;}
.y3{bottom:752.599495px;}
.y208{bottom:754.218332px;}
.y269{bottom:754.385312px;}
.y1b3{bottom:754.469275px;}
.y2d{bottom:755.317498px;}
.yd5{bottom:760.591500px;}
.y28f{bottom:761.103136px;}
.y124{bottom:761.103696px;}
.y23a{bottom:761.104681px;}
.y83{bottom:761.105801px;}
.y190{bottom:761.527431px;}
.y34e{bottom:762.636364px;}
.y2c9{bottom:764.760536px;}
.y307{bottom:765.270822px;}
.y44{bottom:766.035000px;}
.y15d{bottom:767.906096px;}
.y69{bottom:770.192899px;}
.y2c{bottom:773.317498px;}
.y207{bottom:773.947268px;}
.y268{bottom:774.284047px;}
.y1b2{bottom:774.369135px;}
.y34d{bottom:776.072830px;}
.y2c8{bottom:778.281000px;}
.yd4{bottom:778.536000px;}
.y306{bottom:778.790234px;}
.y28e{bottom:779.046000px;}
.y123{bottom:779.046560px;}
.y239{bottom:779.047545px;}
.y82{bottom:779.048665px;}
.y1f2{bottom:781.086000px;}
.y15c{bottom:781.427291px;}
.y68{bottom:782.948985px;}
.y2c7{bottom:782.958000px;}
.y43{bottom:787.039500px;}
.y1b1{bottom:787.890330px;}
.y34c{bottom:789.593294px;}
.y2b{bottom:791.317498px;}
.y2c6{bottom:791.801570px;}
.y305{bottom:792.226702px;}
.y206{bottom:793.676204px;}
.y267{bottom:794.182782px;}
.y18f{bottom:794.948485px;}
.y67{bottom:795.705070px;}
.y28d{bottom:797.074500px;}
.y122{bottom:797.074848px;}
.y238{bottom:797.075833px;}
.y81{bottom:797.076953px;}
.y15b{bottom:801.326025px;}
.y34b{bottom:803.114808px;}
.y2c5{bottom:805.323084px;}
.y304{bottom:805.748215px;}
.y1b0{bottom:807.789064px;}
.y42{bottom:808.044000px;}
.y66{bottom:808.460106px;}
.y205{bottom:813.405140px;}
.y266{bottom:814.167015px;}
.yd3{bottom:814.595029px;}
.y18e{bottom:814.847220px;}
.y121{bottom:815.103136px;}
.ya9{bottom:815.105241px;}
.y34a{bottom:816.636322px;}
.y2c4{bottom:818.758500px;}
.y303{bottom:819.268679px;}
.y65{bottom:821.216191px;}
.y15a{bottom:821.310259px;}
.y2c3{bottom:823.435500px;}
.y1af{bottom:827.688924px;}
.y41{bottom:829.048500px;}
.y349{bottom:830.071738px;}
.y2c2{bottom:832.281023px;}
.yd2{bottom:832.537893px;}
.y302{bottom:832.790193px;}
.y120{bottom:833.046000px;}
.y80{bottom:833.048105px;}
.y237{bottom:833.048259px;}
.y204{bottom:833.134077px;}
.y64{bottom:833.972277px;}
.y265{bottom:834.066875px;}
.y18d{bottom:834.831454px;}
.y159{bottom:841.210119px;}
.y348{bottom:843.593251px;}
.y2a{bottom:843.789002px;}
.y2c1{bottom:845.802536px;}
.y301{bottom:846.226659px;}
.y63{bottom:846.643315px;}
.y1ae{bottom:847.673157px;}
.y40{bottom:850.053000px;}
.yd1{bottom:850.566181px;}
.y11f{bottom:851.074500px;}
.y236{bottom:851.075272px;}
.y7f{bottom:851.076393px;}
.y203{bottom:852.863013px;}
.y264{bottom:854.051108px;}
.y158{bottom:854.731313px;}
.y347{bottom:857.113715px;}
.y2c0{bottom:859.323000px;}
.y62{bottom:859.398350px;}
.y300{bottom:859.747122px;}
.y1ad{bottom:861.194352px;}
.y2bf{bottom:864.000000px;}
.yd0{bottom:868.594469px;}
.y235{bottom:869.103560px;}
.y7e{bottom:869.104681px;}
.y346{bottom:870.635229px;}
.y202{bottom:872.591949px;}
.y2be{bottom:872.758500px;}
.y2ff{bottom:873.268636px;}
.y263{bottom:873.949843px;}
.y157{bottom:874.630048px;}
.y2{bottom:879.369000px;}
.y1ac{bottom:881.093087px;}
.y3e{bottom:883.813500px;}
.y345{bottom:884.071695px;}
.y61{bottom:884.740426px;}
.y2bc{bottom:886.281023px;}
.ycf{bottom:886.537333px;}
.y2fe{bottom:886.789100px;}
.y11e{bottom:887.046772px;}
.y7d{bottom:887.047545px;}
.y234{bottom:887.047699px;}
.y3f{bottom:889.767000px;}
.y2bd{bottom:890.958000px;}
.y201{bottom:892.320886px;}
.y262{bottom:893.849703px;}
.y156{bottom:894.614282px;}
.y344{bottom:897.592158px;}
.y60{bottom:899.706699px;}
.y2bb{bottom:899.802536px;}
.y2fd{bottom:900.225566px;}
.y1ab{bottom:900.992946px;}
.yce{bottom:904.565621px;}
.y11d{bottom:905.075060px;}
.y7c{bottom:905.075833px;}
.y233{bottom:905.075987px;}
.y1f3{bottom:906.604500px;}
.y29{bottom:907.453504px;}
.y155{bottom:908.051102px;}
.y343{bottom:911.113672px;}
.y200{bottom:912.049822px;}
.y3d{bottom:913.069853px;}
.y2ba{bottom:913.323000px;}
.y2fc{bottom:913.747079px;}
.y261{bottom:913.833936px;}
.y18c{bottom:914.514141px;}
.ycd{bottom:922.593908px;}
.y232{bottom:923.103000px;}
.y11c{bottom:923.103348px;}
.y7b{bottom:923.104121px;}
.y342{bottom:924.635186px;}
.y2b8{bottom:926.760536px;}
.y2fb{bottom:927.267543px;}
.y154{bottom:928.035336px;}
.y2b9{bottom:931.435500px;}
.y1ff{bottom:931.778758px;}
.y260{bottom:933.732671px;}
.y1aa{bottom:934.412876px;}
.y341{bottom:938.070602px;}
.y28{bottom:938.953498px;}
.y2b7{bottom:940.281000px;}
.ycc{bottom:940.536772px;}
.y2fa{bottom:940.789057px;}
.y231{bottom:941.046000px;}
.y11b{bottom:941.047487px;}
.y7a{bottom:941.048259px;}
.y3c{bottom:943.088276px;}
.y153{bottom:947.934071px;}
.y1fe{bottom:951.507695px;}
.y340{bottom:951.592116px;}
.y2b5{bottom:953.801798px;}
.y2f9{bottom:954.225523px;}
.y25f{bottom:955.927500px;}
.y2b6{bottom:958.479000px;}
.ycb{bottom:958.565060px;}
.y11a{bottom:959.074500px;}
.y79{bottom:959.075272px;}
.y152{bottom:961.455265px;}
.y33f{bottom:965.112579px;}
.y1{bottom:966.726000px;}
.y2f8{bottom:967.745987px;}
.y2b4{bottom:967.747500px;}
.y1a9{bottom:967.918304px;}
.y27{bottom:970.453498px;}
.y1fd{bottom:971.236631px;}
.y3b{bottom:973.020000px;}
.y1f4{bottom:975.826500px;}
.y25e{bottom:975.827889px;}
.yca{bottom:976.593348px;}
.y119{bottom:977.103000px;}
.y78{bottom:977.103560px;}
.y33e{bottom:978.634093px;}
.y151{bottom:981.354000px;}
.y33d{bottom:992.070559px;}
.y1fc{bottom:993.175754px;}
.yc9{bottom:994.537487px;}
.ya8{bottom:995.047699px;}
.y150{bottom:1001.339064px;}
.y33c{bottom:1005.591023px;}
.y25d{bottom:1007.291969px;}
.y3a{bottom:1007.547475px;}
.yc8{bottom:1012.564500px;}
.y77{bottom:1013.075987px;}
.y33b{bottom:1019.112536px;}
.y14f{bottom:1023.789000px;}
.y39{bottom:1028.551500px;}
.yc7{bottom:1030.591500px;}
.y76{bottom:1031.103000px;}
.y33a{bottom:1032.633000px;}
.y1fb{bottom:1033.483500px;}
.y26{bottom:1035.546001px;}
.y5e{bottom:1112.825680px;}
.y5d{bottom:1127.877000px;}
.y25{bottom:1165.122003px;}
.h2a{height:21.557382px;}
.h2b{height:21.893341px;}
.h29{height:22.873222px;}
.h2c{height:23.455777px;}
.h15{height:27.716304px;}
.h27{height:28.152000px;}
.h26{height:29.412000px;}
.h1d{height:30.030462px;}
.h1c{height:30.498469px;}
.h7{height:32.130000px;}
.h25{height:32.339076px;}
.h1a{height:32.843062px;}
.h1b{height:34.313020px;}
.h24{height:35.189531px;}
.hc{height:36.726562px;}
.h22{height:39.263590px;}
.h19{height:39.269538px;}
.h20{height:39.507236px;}
.h23{height:39.522791px;}
.h21{height:39.524535px;}
.ha{height:41.317383px;}
.h14{height:41.580000px;}
.h1f{height:41.666510px;}
.h1e{height:41.688000px;}
.h18{height:44.118000px;}
.h6{height:45.900000px;}
.hf{height:45.908203px;}
.h17{height:46.200000px;}
.h3{height:48.195000px;}
.h16{height:49.020000px;}
.h2{height:55.080000px;}
.he{height:55.089844px;}
.h28{height:58.462330px;}
.h12{height:58.823510px;}
.hb{height:68.862305px;}
.h5{height:78.030000px;}
.h13{height:78.539538px;}
.hd{height:82.634766px;}
.h4{height:119.055004px;}
.h11{height:1190.250000px;}
.h10{height:1190.551500px;}
.h9{height:1249.500000px;}
.h8{height:1249.560000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.w5{width:914.173500px;}
.w6{width:914.250000px;}
.w3{width:951.480000px;}
.w4{width:951.750000px;}
.x0{left:0.000000px;}
.x10{left:75.004650px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x8{left:145.650000px;}
.x7{left:191.880000px;}
.x9{left:197.700000px;}
.x4{left:203.484001px;}
.x6{left:228.743990px;}
.xa{left:270.255000px;}
.x17{left:276.038942px;}
.x16{left:277.483500px;}
.x1d{left:281.565000px;}
.x13{left:282.754950px;}
.x31{left:286.072500px;}
.x50{left:291.003678px;}
.x15{left:292.534085px;}
.x5{left:293.590494px;}
.x32{left:296.277000px;}
.x1e{left:301.464000px;}
.x14{left:306.395722px;}
.x1f{left:319.832100px;}
.x33{left:330.888000px;}
.x20{left:339.561000px;}
.x34{left:350.276746px;}
.x4e{left:352.912500px;}
.x21{left:359.289000px;}
.x4f{left:366.264000px;}
.x4c{left:367.539281px;}
.x35{left:370.005682px;}
.x4b{left:372.217274px;}
.x4d{left:374.002320px;}
.xb{left:378.085500px;}
.xc{left:383.868000px;}
.x4a{left:385.312500px;}
.x36{left:389.734619px;}
.x12{left:396.198000px;}
.x22{left:398.746800px;}
.x1b{left:402.490314px;}
.x37{left:409.462505px;}
.x19{left:418.307603px;}
.x38{left:429.191441px;}
.x23{left:438.204600px;}
.x39{left:448.920378px;}
.x3{left:454.959000px;}
.x24{left:457.933500px;}
.x3a{left:468.649314px;}
.x25{left:477.662400px;}
.x3b{left:488.378250px;}
.x26{left:497.391300px;}
.x3c{left:508.107186px;}
.xd{left:516.358500px;}
.xe{left:522.141000px;}
.x3d{left:527.836123px;}
.x27{left:536.849100px;}
.x3e{left:547.565059px;}
.x28{left:556.492500px;}
.x52{left:563.211551px;}
.x3f{left:567.293995px;}
.x29{left:576.221400px;}
.x51{left:584.216201px;}
.x40{left:587.022932px;}
.x2a{left:595.950300px;}
.x41{left:606.666820px;}
.x2b{left:615.679200px;}
.x1a{left:622.402382px;}
.x42{left:626.395757px;}
.x2c{left:635.408100px;}
.x43{left:646.124693px;}
.xf{left:649.701000px;}
.x18{left:655.482566px;}
.x2d{left:656.503500px;}
.x44{left:665.853629px;}
.x2e{left:670.023964px;}
.x2f{left:683.460430px;}
.x45{left:685.582566px;}
.x30{left:696.980893px;}
.x46{left:705.311502px;}
.x47{left:725.040438px;}
.x49{left:740.437500px;}
.x48{left:745.109565px;}
.x1c{left:770.108939px;}
.x11{left:776.325000px;}
@media print{
.v3{vertical-align:-10.582933pt;}
.v1{vertical-align:-8.179110pt;}
.v2{vertical-align:-6.954667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:21.466053pt;}
.ls1{letter-spacing:-0.746645pt;}
.ls2b{letter-spacing:-0.373323pt;}
.ls0{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.024853pt;}
.ls12{letter-spacing:0.025477pt;}
.ls17{letter-spacing:0.031640pt;}
.ls1e{letter-spacing:0.041067pt;}
.ls23{letter-spacing:0.041283pt;}
.ls1d{letter-spacing:0.041596pt;}
.ls20{letter-spacing:0.042937pt;}
.ls22{letter-spacing:0.043605pt;}
.lsd{letter-spacing:0.043776pt;}
.ls27{letter-spacing:0.043894pt;}
.ls15{letter-spacing:0.044046pt;}
.ls26{letter-spacing:0.045148pt;}
.ls8{letter-spacing:0.046400pt;}
.ls24{letter-spacing:0.046617pt;}
.ls28{letter-spacing:0.048461pt;}
.ls16{letter-spacing:0.049109pt;}
.ls29{letter-spacing:0.057043pt;}
.ls1c{letter-spacing:0.073653pt;}
.ls5{letter-spacing:0.076394pt;}
.ls1a{letter-spacing:0.137033pt;}
.ls9{letter-spacing:2.472304pt;}
.ls1f{letter-spacing:2.477637pt;}
.ls2{letter-spacing:2.516125pt;}
.ls10{letter-spacing:2.521459pt;}
.ls13{letter-spacing:2.770971pt;}
.lse{letter-spacing:2.776304pt;}
.lsf{letter-spacing:2.820125pt;}
.lsa{letter-spacing:2.825459pt;}
.ls14{letter-spacing:9.841751pt;}
.lsb{letter-spacing:9.936950pt;}
.ls7{letter-spacing:10.140947pt;}
.lsc{letter-spacing:10.145481pt;}
.ls11{letter-spacing:10.240680pt;}
.ls19{letter-spacing:12.494792pt;}
.ls1b{letter-spacing:12.561719pt;}
.ls4{letter-spacing:12.566252pt;}
.ls3{letter-spacing:12.656918pt;}
.ls2a{letter-spacing:12.731126pt;}
.ls18{letter-spacing:12.736459pt;}
.ls6{letter-spacing:12.754971pt;}
.ls21{letter-spacing:12.798792pt;}
.ws1{word-spacing:-12.432000pt;}
.ws5{word-spacing:-11.333200pt;}
.ws7{word-spacing:-11.106536pt;}
.ws11{word-spacing:-9.999867pt;}
.ws60{word-spacing:-9.482396pt;}
.ws61{word-spacing:-9.333067pt;}
.ws16{word-spacing:-9.146405pt;}
.ws62{word-spacing:-8.959744pt;}
.ws63{word-spacing:-8.773083pt;}
.ws4{word-spacing:-8.666800pt;}
.ws3{word-spacing:-8.586421pt;}
.ws46{word-spacing:-8.399760pt;}
.wsd{word-spacing:-7.933200pt;}
.wsf{word-spacing:-7.774536pt;}
.ws0{word-spacing:0.000000pt;}
.ws2{word-spacing:3.945600pt;}
.ws5f{word-spacing:3.950400pt;}
.wsb{word-spacing:4.758049pt;}
.wsc{word-spacing:5.056715pt;}
.wsa{word-spacing:5.062049pt;}
.ws9{word-spacing:7.478049pt;}
.ws6{word-spacing:15.213688pt;}
.ws1d{word-spacing:49.872000pt;}
.ws26{word-spacing:85.190400pt;}
.ws2a{word-spacing:88.166400pt;}
.ws22{word-spacing:94.646400pt;}
.ws4a{word-spacing:96.238717pt;}
.ws24{word-spacing:97.238400pt;}
.ws21{word-spacing:97.462400pt;}
.ws23{word-spacing:103.718400pt;}
.ws57{word-spacing:105.562592pt;}
.ws25{word-spacing:106.534400pt;}
.ws58{word-spacing:106.802576pt;}
.ws27{word-spacing:106.838400pt;}
.ws4e{word-spacing:108.702551pt;}
.ws50{word-spacing:109.002547pt;}
.ws20{word-spacing:110.297600pt;}
.ws56{word-spacing:111.358515pt;}
.ws5a{word-spacing:112.634498pt;}
.ws28{word-spacing:112.883200pt;}
.ws51{word-spacing:114.662471pt;}
.ws4d{word-spacing:116.750443pt;}
.ws3f{word-spacing:117.398779pt;}
.ws35{word-spacing:118.115559pt;}
.ws29{word-spacing:119.366400pt;}
.ws38{word-spacing:120.180033pt;}
.ws55{word-spacing:120.190397pt;}
.ws4f{word-spacing:120.494393pt;}
.ws34{word-spacing:121.027475pt;}
.ws36{word-spacing:121.326133pt;}
.ws40{word-spacing:126.530251pt;}
.ws39{word-spacing:126.687047pt;}
.ws4b{word-spacing:128.218290pt;}
.ws52{word-spacing:128.522286pt;}
.ws37{word-spacing:128.661924pt;}
.ws33{word-spacing:128.699256pt;}
.ws3d{word-spacing:130.655467pt;}
.ws5b{word-spacing:130.702257pt;}
.ws54{word-spacing:131.682244pt;}
.ws3b{word-spacing:131.913564pt;}
.ws4c{word-spacing:131.962240pt;}
.ws1f{word-spacing:135.254400pt;}
.ws1a{word-spacing:136.250183pt;}
.ws3e{word-spacing:139.245621pt;}
.ws3a{word-spacing:139.544280pt;}
.ws59{word-spacing:139.710137pt;}
.ws53{word-spacing:143.150091pt;}
.ws41{word-spacing:150.090645pt;}
.ws3c{word-spacing:153.301220pt;}
.ws2f{word-spacing:154.353990pt;}
.ws32{word-spacing:164.183576pt;}
.ws5d{word-spacing:177.577632pt;}
.ws43{word-spacing:185.309905pt;}
.ws1e{word-spacing:186.345600pt;}
.ws49{word-spacing:201.125318pt;}
.ws5c{word-spacing:210.177198pt;}
.ws31{word-spacing:211.909145pt;}
.ws18{word-spacing:214.165144pt;}
.ws1c{word-spacing:214.185144pt;}
.ws17{word-spacing:214.485140pt;}
.ws42{word-spacing:216.041827pt;}
.ws5e{word-spacing:216.261116pt;}
.ws2d{word-spacing:216.795939pt;}
.ws48{word-spacing:219.515017pt;}
.ws45{word-spacing:221.712599pt;}
.ws44{word-spacing:221.716332pt;}
.ws1b{word-spacing:225.656991pt;}
.ws19{word-spacing:226.260983pt;}
.ws30{word-spacing:232.389627pt;}
.ws2e{word-spacing:238.527051pt;}
.ws2c{word-spacing:330.465225pt;}
.ws2b{word-spacing:356.101292pt;}
.ws15{word-spacing:409.738537pt;}
.ws13{word-spacing:433.002227pt;}
.ws14{word-spacing:449.930001pt;}
.ws12{word-spacing:455.957920pt;}
.ws10{word-spacing:465.935052pt;}
.ws8{word-spacing:583.179382pt;}
.wse{word-spacing:665.120715pt;}
.ws47{word-spacing:749.573315pt;}
._0{margin-left:-3.312000pt;}
._1{margin-left:-1.920000pt;}
._2{margin-left:-0.960000pt;}
._9{width:0.922667pt;}
._8{width:1.872000pt;}
._a{width:2.822400pt;}
._7{width:3.729600pt;}
._3{width:4.627161pt;}
._4{width:5.644753pt;}
._5{width:7.062892pt;}
._6{width:8.023953pt;}
._d{width:9.029869pt;}
._f{width:10.072948pt;}
._e{width:12.493720pt;}
._b{width:13.454775pt;}
._c{width:14.365964pt;}
._14{width:15.308887pt;}
._15{width:16.392340pt;}
._11{width:17.557393pt;}
._10{width:18.468583pt;}
._12{width:19.565636pt;}
._16{width:21.016286pt;}
._13{width:25.939428pt;}
._64{width:70.150400pt;}
._65{width:75.641600pt;}
._66{width:81.331200pt;}
._61{width:83.980800pt;}
._7f{width:85.865600pt;}
._6a{width:92.073600pt;}
._67{width:94.480000pt;}
._62{width:96.272000pt;}
._60{width:97.209600pt;}
._68{width:100.665600pt;}
._63{width:102.758400pt;}
._70{width:105.072000pt;}
._81{width:106.227200pt;}
._7b{width:108.758400pt;}
._69{width:109.779200pt;}
._79{width:110.950400pt;}
._77{width:112.444800pt;}
._6e{width:114.531200pt;}
._b3{width:115.542459pt;}
._72{width:117.987200pt;}
._78{width:119.123200pt;}
._80{width:120.246400pt;}
._73{width:121.187200pt;}
._b4{width:123.175777pt;}
._7a{width:124.272000pt;}
._b6{width:125.478064pt;}
._5f{width:126.950400pt;}
._5d{width:128.892800pt;}
._b9{width:129.846269pt;}
._a0{width:130.804861pt;}
._50{width:132.353643pt;}
._6f{width:133.961600pt;}
._4e{width:135.096277pt;}
._76{width:136.880000pt;}
._9e{width:138.032323pt;}
._b5{width:138.991984pt;}
._5e{width:140.396800pt;}
._a6{width:141.409688pt;}
._9d{width:142.350321pt;}
._71{width:143.260800pt;}
._ba{width:144.350075pt;}
._6d{width:145.382400pt;}
._ae{width:146.902469pt;}
._9b{width:147.820843pt;}
._7e{width:148.745600pt;}
._74{width:149.740800pt;}
._af{width:150.643162pt;}
._a4{width:151.827218pt;}
._a1{width:153.145468pt;}
._7c{width:154.342400pt;}
._b8{width:156.046793pt;}
._4d{width:157.973042pt;}
._ab{width:159.759702pt;}
._b0{width:160.727033pt;}
._75{width:162.640000pt;}
._57{width:164.591368pt;}
._a5{width:166.262983pt;}
._6b{width:168.870400pt;}
._7d{width:170.502400pt;}
._a7{width:172.758797pt;}
._96{width:174.666476pt;}
._4f{width:175.796065pt;}
._ad{width:181.390017pt;}
._b7{width:183.689551pt;}
._a3{width:184.768587pt;}
._aa{width:187.157852pt;}
._bb{width:188.493487pt;}
._6c{width:193.520000pt;}
._5b{width:196.271821pt;}
._ac{width:203.748312pt;}
._59{width:205.830818pt;}
._9f{width:209.251088pt;}
._a2{width:211.099035pt;}
._b1{width:216.253117pt;}
._a8{width:219.405464pt;}
._b2{width:221.001053pt;}
._97{width:222.007523pt;}
._9c{width:223.661343pt;}
._4c{width:225.136285pt;}
._85{width:226.622646pt;}
._86{width:227.689494pt;}
._91{width:230.157157pt;}
._99{width:232.128301pt;}
._98{width:233.949798pt;}
._52{width:235.656858pt;}
._54{width:236.560846pt;}
._88{width:237.586789pt;}
._90{width:239.706751pt;}
._51{width:240.740790pt;}
._3b{width:246.536489pt;}
._3a{width:248.446410pt;}
._5c{width:251.499172pt;}
._53{width:252.606194pt;}
._8c{width:258.145158pt;}
._9a{width:260.470958pt;}
._46{width:263.351613pt;}
._55{width:265.270025pt;}
._84{width:271.681837pt;}
._58{width:275.212330pt;}
._29{width:276.216317pt;}
._36{width:277.264303pt;}
._a9{width:282.220736pt;}
._38{width:283.852215pt;}
._43{width:287.061647pt;}
._8e{width:289.683456pt;}
._2e{width:291.412114pt;}
._23{width:292.644098pt;}
._32{width:298.080026pt;}
._27{width:299.312009pt;}
._21{width:300.523993pt;}
._56{width:303.111958pt;}
._83{width:304.062192pt;}
._2b{width:307.567899pt;}
._1f{width:308.799883pt;}
._30{width:314.255810pt;}
._25{width:315.487793pt;}
._92{width:318.541299pt;}
._19{width:321.479714pt;}
._1b{width:323.343689pt;}
._34{width:324.475674pt;}
._94{width:330.972943pt;}
._8d{width:333.250212pt;}
._1d{width:334.735537pt;}
._95{width:343.300058pt;}
._8f{width:348.295115pt;}
._8a{width:350.572383pt;}
._40{width:353.772845pt;}
._93{width:361.025418pt;}
._8b{width:363.302686pt;}
._48{width:367.950219pt;}
._82{width:372.945530pt;}
._87{width:374.539699pt;}
._2d{width:378.170082pt;}
._5a{width:380.410928pt;}
._3f{width:387.332398pt;}
._42{width:388.777941pt;}
._89{width:399.328324pt;}
._31{width:432.621356pt;}
._2f{width:433.725342pt;}
._2c{width:445.369186pt;}
._3e{width:454.489940pt;}
._44{width:459.929868pt;}
._49{width:462.073839pt;}
._3d{width:466.199346pt;}
._3c{width:482.889561pt;}
._45{width:551.340649pt;}
._22{width:552.998189pt;}
._2a{width:554.211735pt;}
._47{width:571.592379pt;}
._39{width:590.110657pt;}
._4a{width:593.752083pt;}
._41{width:602.751963pt;}
._4b{width:612.791829pt;}
._26{width:633.809111pt;}
._24{width:634.913097pt;}
._20{width:646.556941pt;}
._18{width:649.938459pt;}
._1a{width:653.434412pt;}
._28{width:663.304718pt;}
._17{width:735.220950pt;}
._35{width:745.318062pt;}
._1e{width:755.399490pt;}
._37{width:765.209797pt;}
._1c{width:800.662887pt;}
._33{width:886.264183pt;}
.fs12{font-size:24.885867pt;}
.fs13{font-size:26.661867pt;}
.fsf{font-size:31.732800pt;}
.fsb{font-size:31.995733pt;}
.fs11{font-size:32.000000pt;}
.fse{font-size:34.667200pt;}
.fsd{font-size:37.332267pt;}
.fs4{font-size:37.333333pt;}
.fs10{font-size:39.999467pt;}
.fs7{font-size:42.666667pt;}
.fsc{font-size:45.332800pt;}
.fs5{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs9{font-size:63.999467pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:80.000000pt;}
.fsa{font-size:90.666133pt;}
.fs2{font-size:90.666667pt;}
.fs8{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y5f{bottom:37.492800pt;}
.ya7{bottom:37.499574pt;}
.y5{bottom:59.133337pt;}
.y24{bottom:60.086668pt;}
.y22f{bottom:64.255631pt;}
.yf7{bottom:68.035984pt;}
.y2b3{bottom:68.490675pt;}
.ya6{bottom:68.493044pt;}
.y75{bottom:69.846394pt;}
.y1ce{bottom:73.398400pt;}
.y1cd{bottom:73.399467pt;}
.y1f6{bottom:73.400239pt;}
.y1cb{bottom:74.683333pt;}
.y23{bottom:74.753335pt;}
.y22e{bottom:76.273821pt;}
.y10b{bottom:76.500012pt;}
.y2f7{bottom:77.185561pt;}
.y380{bottom:77.867735pt;}
.y1a8{bottom:79.069992pt;}
.y339{bottom:80.209475pt;}
.y18b{bottom:80.355137pt;}
.y74{bottom:81.185169pt;}
.yf6{bottom:84.061129pt;}
.y2b2{bottom:84.515819pt;}
.y1f1{bottom:84.516317pt;}
.y25c{bottom:84.517192pt;}
.ya5{bottom:84.518189pt;}
.y4{bottom:86.333337pt;}
.y144{bottom:86.400720pt;}
.y22d{bottom:88.217347pt;}
.y2f6{bottom:89.129086pt;}
.y37f{bottom:89.885925pt;}
.y14e{bottom:91.314577pt;}
.y338{bottom:92.227665pt;}
.y73{bottom:92.523077pt;}
.y10a{bottom:92.525157pt;}
.y1a7{bottom:95.095137pt;}
.y118{bottom:95.168808pt;}
.y18a{bottom:96.380282pt;}
.yf5{bottom:100.086274pt;}
.y22c{bottom:100.236470pt;}
.y2b1{bottom:100.540964pt;}
.y1f0{bottom:100.541462pt;}
.y25b{bottom:100.542337pt;}
.ya4{bottom:100.543333pt;}
.y2f5{bottom:101.147276pt;}
.y37e{bottom:101.905048pt;}
.y143{bottom:102.275053pt;}
.y1f7{bottom:102.576267pt;}
.y72{bottom:103.861851pt;}
.y337{bottom:104.246788pt;}
.y14d{bottom:107.339722pt;}
.y109{bottom:108.550302pt;}
.y1f8{bottom:109.606267pt;}
.y1a6{bottom:111.120282pt;}
.y117{bottom:111.193952pt;}
.y22b{bottom:112.254660pt;}
.y189{bottom:112.329494pt;}
.y2f4{bottom:113.166400pt;}
.y37d{bottom:113.848573pt;}
.y71{bottom:115.200626pt;}
.yf4{bottom:116.035486pt;}
.y336{bottom:116.264978pt;}
.y2b0{bottom:116.490176pt;}
.y1ef{bottom:116.490675pt;}
.y25a{bottom:116.491550pt;}
.ya3{bottom:116.492546pt;}
.y142{bottom:118.076244pt;}
.y14c{bottom:123.364121pt;}
.y22{bottom:123.790666pt;}
.y22a{bottom:124.273783pt;}
.yc6{bottom:124.499325pt;}
.y108{bottom:124.499514pt;}
.y2f3{bottom:125.184590pt;}
.y37c{bottom:125.866763pt;}
.y70{bottom:126.538533pt;}
.y1a5{bottom:127.069494pt;}
.y116{bottom:127.143165pt;}
.y335{bottom:128.208503pt;}
.y188{bottom:128.354639pt;}
.y1cc{bottom:131.376267pt;}
.y28c{bottom:131.831182pt;}
.y2af{bottom:132.515321pt;}
.y1ee{bottom:132.515819pt;}
.y259{bottom:132.516694pt;}
.ya2{bottom:132.517691pt;}
.y2f2{bottom:137.128115pt;}
.y37b{bottom:137.885887pt;}
.y14b{bottom:139.314655pt;}
.y334{bottom:140.227626pt;}
.yc5{bottom:140.524470pt;}
.y107{bottom:140.524659pt;}
.y229{bottom:141.735017pt;}
.y1a4{bottom:143.094639pt;}
.y115{bottom:143.168310pt;}
.y141{bottom:143.172482pt;}
.y28b{bottom:143.850305pt;}
.y187{bottom:144.379784pt;}
.yf3{bottom:148.085776pt;}
.y2ae{bottom:148.540466pt;}
.y1ed{bottom:148.540964pt;}
.y258{bottom:148.541839pt;}
.ya1{bottom:148.542835pt;}
.y2f1{bottom:149.147238pt;}
.y37a{bottom:149.905010pt;}
.y333{bottom:152.245816pt;}
.y14a{bottom:155.339989pt;}
.y28a{bottom:155.793830pt;}
.y228{bottom:156.399132pt;}
.yc4{bottom:156.473683pt;}
.y106{bottom:156.473871pt;}
.y114{bottom:159.193454pt;}
.y140{bottom:159.197627pt;}
.y186{bottom:160.328996pt;}
.y2f0{bottom:161.165428pt;}
.y379{bottom:161.847602pt;}
.yf2{bottom:164.034988pt;}
.y332{bottom:164.264940pt;}
.y1ec{bottom:164.490176pt;}
.y257{bottom:164.491052pt;}
.y230{bottom:164.492048pt;}
.y289{bottom:167.812020pt;}
.y227{bottom:171.139777pt;}
.y149{bottom:171.364311pt;}
.yc3{bottom:172.498827pt;}
.y105{bottom:172.499016pt;}
.y2ef{bottom:173.184551pt;}
.y378{bottom:173.866725pt;}
.y19{bottom:175.052000pt;}
.y1a3{bottom:175.068996pt;}
.y113{bottom:175.142667pt;}
.y13f{bottom:175.146840pt;}
.y331{bottom:176.208465pt;}
.y185{bottom:176.354141pt;}
.y288{bottom:179.831143pt;}
.yf1{bottom:180.060133pt;}
.y2ad{bottom:180.514823pt;}
.y1eb{bottom:180.515321pt;}
.ya0{bottom:180.517192pt;}
.y1f5{bottom:184.441333pt;}
.y2ee{bottom:185.128077pt;}
.y377{bottom:185.884915pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y330{bottom:188.226655pt;}
.y226{bottom:188.374218pt;}
.yc2{bottom:188.523972pt;}
.y104{bottom:188.524161pt;}
.y1a2{bottom:191.094141pt;}
.y112{bottom:191.168000pt;}
.y13e{bottom:191.171984pt;}
.y287{bottom:191.849333pt;}
.y184{bottom:192.379286pt;}
.yf0{bottom:196.085278pt;}
.y2ac{bottom:196.539968pt;}
.y1ea{bottom:196.540466pt;}
.y256{bottom:196.541341pt;}
.y9f{bottom:196.542337pt;}
.y2ed{bottom:197.146267pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y376{bottom:197.904038pt;}
.y32f{bottom:200.245778pt;}
.y225{bottom:203.038333pt;}
.y148{bottom:203.338669pt;}
.yc1{bottom:204.473185pt;}
.y103{bottom:204.473373pt;}
.y1a1{bottom:207.119286pt;}
.y13d{bottom:207.197129pt;}
.y183{bottom:208.328498pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y2ec{bottom:209.165390pt;}
.y286{bottom:209.386619pt;}
.y375{bottom:209.847564pt;}
.y38{bottom:210.601334pt;}
.y5c{bottom:211.956808pt;}
.yef{bottom:212.034490pt;}
.y32e{bottom:212.263968pt;}
.y1e9{bottom:212.489678pt;}
.y2ab{bottom:212.490314pt;}
.y255{bottom:212.490554pt;}
.y9e{bottom:212.491550pt;}
.y224{bottom:220.272773pt;}
.yc0{bottom:220.498329pt;}
.y102{bottom:220.498518pt;}
.y2eb{bottom:221.183580pt;}
.y285{bottom:221.329460pt;}
.y374{bottom:221.865754pt;}
.y1a0{bottom:223.068498pt;}
.y111{bottom:223.144177pt;}
.y13c{bottom:223.146341pt;}
.y32d{bottom:224.207494pt;}
.y182{bottom:224.353643pt;}
.y5b{bottom:227.981952pt;}
.yee{bottom:228.059635pt;}
.y2aa{bottom:228.514325pt;}
.y1e8{bottom:228.514823pt;}
.y254{bottom:228.515698pt;}
.y9d{bottom:228.516694pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y147{bottom:231.836000pt;}
.y2ea{bottom:233.127105pt;}
.y373{bottom:233.884877pt;}
.y223{bottom:234.936888pt;}
.y32c{bottom:236.226617pt;}
.ybf{bottom:236.523474pt;}
.y101{bottom:236.523663pt;}
.y284{bottom:239.093223pt;}
.y19f{bottom:239.093643pt;}
.y110{bottom:239.169322pt;}
.y13b{bottom:239.171486pt;}
.y181{bottom:240.378788pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y5a{bottom:243.931165pt;}
.yed{bottom:244.084780pt;}
.y2a9{bottom:244.539470pt;}
.y1e7{bottom:244.539968pt;}
.y253{bottom:244.540843pt;}
.y9c{bottom:244.541839pt;}
.y2e9{bottom:245.146229pt;}
.y372{bottom:245.904000pt;}
.y146{bottom:247.634667pt;}
.y32b{bottom:248.244807pt;}
.y222{bottom:249.601935pt;}
.y283{bottom:251.036064pt;}
.ybe{bottom:252.472687pt;}
.y100{bottom:252.474008pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y19e{bottom:255.118788pt;}
.y10f{bottom:255.193333pt;}
.y13a{bottom:255.196631pt;}
.y180{bottom:256.328000pt;}
.y2e8{bottom:257.164419pt;}
.y371{bottom:257.846592pt;}
.y59{bottom:259.956310pt;}
.yec{bottom:260.033992pt;}
.y32a{bottom:260.263930pt;}
.y2a8{bottom:260.489816pt;}
.y1e6{bottom:260.490314pt;}
.y9b{bottom:260.491052pt;}
.y252{bottom:260.491189pt;}
.y282{bottom:263.054904pt;}
.y145{bottom:263.508000pt;}
.y221{bottom:267.138768pt;}
.y37{bottom:267.801334pt;}
.ybd{bottom:268.497831pt;}
.yff{bottom:268.498020pt;}
.y2e7{bottom:269.183542pt;}
.y370{bottom:269.865716pt;}
.y19d{bottom:271.068000pt;}
.y10e{bottom:271.142667pt;}
.y139{bottom:271.145843pt;}
.y329{bottom:272.207456pt;}
.y17f{bottom:272.354000pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y58{bottom:275.981454pt;}
.yeb{bottom:276.059137pt;}
.y1e5{bottom:276.514325pt;}
.y2a7{bottom:276.514960pt;}
.y251{bottom:276.515200pt;}
.y9a{bottom:276.516196pt;}
.y281{bottom:280.818667pt;}
.y27f{bottom:280.819919pt;}
.y2e6{bottom:281.127067pt;}
.y36f{bottom:281.883906pt;}
.y1f9{bottom:282.104000pt;}
.y328{bottom:284.225645pt;}
.ybc{bottom:284.522976pt;}
.yfe{bottom:284.523165pt;}
.y220{bottom:284.674667pt;}
.y21e{bottom:284.681583pt;}
.y280{bottom:285.202667pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y138{bottom:287.170988pt;}
.y21f{bottom:288.832000pt;}
.y1fa{bottom:289.058667pt;}
.y57{bottom:291.930667pt;}
.yea{bottom:292.084282pt;}
.y2a6{bottom:292.538972pt;}
.y1e4{bottom:292.539470pt;}
.y250{bottom:292.540345pt;}
.y99{bottom:292.541341pt;}
.y2e5{bottom:293.145257pt;}
.y36e{bottom:293.903029pt;}
.y327{bottom:296.244769pt;}
.y27e{bottom:298.507683pt;}
.ybb{bottom:300.473322pt;}
.yfd{bottom:300.473510pt;}
.y21d{bottom:302.218415pt;}
.y137{bottom:303.196133pt;}
.y10d{bottom:303.200216pt;}
.y17e{bottom:304.328000pt;}
.y2e4{bottom:305.164381pt;}
.y36d{bottom:305.846554pt;}
.y56{bottom:307.955600pt;}
.y326{bottom:308.262959pt;}
.y176{bottom:308.334187pt;}
.y2a5{bottom:308.489318pt;}
.y98{bottom:308.490554pt;}
.y24f{bottom:308.490691pt;}
.y10{bottom:309.452000pt;}
.y1ca{bottom:314.229333pt;}
.y27d{bottom:316.196447pt;}
.yba{bottom:316.497333pt;}
.yfc{bottom:316.498655pt;}
.y2e3{bottom:317.182570pt;}
.y36c{bottom:317.864744pt;}
.y136{bottom:319.145345pt;}
.y21c{bottom:319.755247pt;}
.y325{bottom:320.206484pt;}
.y175{bottom:320.278027pt;}
.ye9{bottom:324.058639pt;}
.y2a4{bottom:324.514462pt;}
.y1e3{bottom:324.514960pt;}
.y97{bottom:324.515698pt;}
.y36{bottom:325.001334pt;}
.y2e2{bottom:329.126096pt;}
.y36b{bottom:329.883867pt;}
.y1c9{bottom:331.691875pt;}
.y324{bottom:332.225607pt;}
.yb9{bottom:332.522667pt;}
.y27c{bottom:333.960210pt;}
.y135{bottom:335.170490pt;}
.y17d{bottom:336.378141pt;}
.y21b{bottom:337.292079pt;}
.y174{bottom:338.041790pt;}
.ye8{bottom:340.083784pt;}
.y1e2{bottom:340.538972pt;}
.y2a3{bottom:340.539607pt;}
.y96{bottom:340.540843pt;}
.y24e{bottom:340.540980pt;}
.y2e1{bottom:341.145219pt;}
.y36a{bottom:341.902991pt;}
.yf{bottom:343.809333pt;}
.y323{bottom:344.243797pt;}
.y55{bottom:346.280000pt;}
.yfb{bottom:348.472000pt;}
.y1c8{bottom:349.455638pt;}
.y173{bottom:349.984631pt;}
.y134{bottom:351.195635pt;}
.y27b{bottom:351.647974pt;}
.y17c{bottom:352.327353pt;}
.y2e0{bottom:353.163409pt;}
.y369{bottom:353.845583pt;}
.y21a{bottom:354.828912pt;}
.ye7{bottom:356.032996pt;}
.y322{bottom:356.262921pt;}
.y2a2{bottom:356.488820pt;}
.y1e1{bottom:356.489318pt;}
.y24d{bottom:356.490193pt;}
.y95{bottom:356.491189pt;}
.ye{bottom:362.706666pt;}
.yb8{bottom:364.498020pt;}
.y2df{bottom:365.182532pt;}
.y368{bottom:365.864706pt;}
.y1c7{bottom:367.143402pt;}
.y133{bottom:367.144847pt;}
.y172{bottom:367.748394pt;}
.y321{bottom:368.206446pt;}
.y17b{bottom:368.352498pt;}
.y27a{bottom:369.335738pt;}
.ye6{bottom:372.058141pt;}
.y219{bottom:372.365744pt;}
.y2a1{bottom:372.513964pt;}
.y1e0{bottom:372.514462pt;}
.y10c{bottom:372.515200pt;}
.y24c{bottom:372.515338pt;}
.y54{bottom:373.568000pt;}
.y2de{bottom:377.126058pt;}
.y367{bottom:377.882896pt;}
.y171{bottom:379.692235pt;}
.y320{bottom:380.224636pt;}
.yb7{bottom:380.523165pt;}
.yfa{bottom:380.527773pt;}
.y132{bottom:383.169992pt;}
.y17a{bottom:384.377643pt;}
.y35{bottom:384.806667pt;}
.y1c6{bottom:384.907166pt;}
.y279{bottom:387.099502pt;}
.ye5{bottom:388.083286pt;}
.y2a0{bottom:388.539109pt;}
.y1df{bottom:388.539607pt;}
.y94{bottom:388.540345pt;}
.y24b{bottom:388.540482pt;}
.y2dd{bottom:389.144248pt;}
.y366{bottom:389.902019pt;}
.y218{bottom:389.902576pt;}
.y31f{bottom:392.243759pt;}
.yb6{bottom:396.473510pt;}
.y1c5{bottom:396.851006pt;}
.y170{bottom:397.455998pt;}
.y131{bottom:399.195137pt;}
.yf9{bottom:399.199220pt;}
.y179{bottom:400.327989pt;}
.y53{bottom:400.934667pt;}
.y2dc{bottom:401.163371pt;}
.y365{bottom:401.845545pt;}
.ye4{bottom:404.032498pt;}
.y31e{bottom:404.261949pt;}
.y29f{bottom:404.488322pt;}
.y1de{bottom:404.488820pt;}
.y24a{bottom:404.489695pt;}
.y93{bottom:404.490691pt;}
.y278{bottom:404.788266pt;}
.y217{bottom:407.439409pt;}
.yb5{bottom:412.498655pt;}
.y2db{bottom:413.181561pt;}
.y364{bottom:413.863735pt;}
.y1c4{bottom:414.614769pt;}
.y16f{bottom:415.143762pt;}
.y130{bottom:415.144349pt;}
.y31d{bottom:416.205475pt;}
.y178{bottom:416.352000pt;}
.y52{bottom:419.605333pt;}
.ye3{bottom:420.057643pt;}
.y29e{bottom:420.513466pt;}
.y1dd{bottom:420.513964pt;}
.y249{bottom:420.514840pt;}
.y92{bottom:420.515836pt;}
.y277{bottom:422.552029pt;}
.y216{bottom:424.976241pt;}
.y2da{bottom:425.125086pt;}
.y363{bottom:425.882858pt;}
.y1c3{bottom:426.557610pt;}
.y16e{bottom:427.162602pt;}
.y31c{bottom:428.224598pt;}
.yb4{bottom:428.522667pt;}
.yd{bottom:430.990669pt;}
.y177{bottom:432.377333pt;}
.ye2{bottom:436.082788pt;}
.y29d{bottom:436.538611pt;}
.y1dc{bottom:436.539109pt;}
.y248{bottom:436.539984pt;}
.y91{bottom:436.540980pt;}
.y2d9{bottom:437.144210pt;}
.y362{bottom:437.901981pt;}
.y51{bottom:438.276000pt;}
.y1c2{bottom:438.576450pt;}
.y16d{bottom:439.181442pt;}
.y34{bottom:439.401334pt;}
.y276{bottom:440.239793pt;}
.y31b{bottom:440.242788pt;}
.y215{bottom:442.513073pt;}
.yb3{bottom:444.472000pt;}
.yc{bottom:446.990669pt;}
.y12f{bottom:447.194639pt;}
.y2d8{bottom:449.162400pt;}
.y361{bottom:449.844573pt;}
.ye1{bottom:452.032000pt;}
.y31a{bottom:452.261911pt;}
.y29c{bottom:452.487824pt;}
.y1db{bottom:452.488322pt;}
.y247{bottom:452.489197pt;}
.y90{bottom:452.490193pt;}
.y1c1{bottom:456.340213pt;}
.y16c{bottom:456.870206pt;}
.y50{bottom:456.946667pt;}
.y275{bottom:457.928557pt;}
.y214{bottom:460.049905pt;}
.y2d7{bottom:461.181523pt;}
.y360{bottom:461.863697pt;}
.yb{bottom:462.990669pt;}
.y12e{bottom:463.143851pt;}
.y319{bottom:464.205436pt;}
.ye0{bottom:468.057333pt;}
.y1c0{bottom:468.284054pt;}
.y29b{bottom:468.512968pt;}
.y1da{bottom:468.513466pt;}
.y246{bottom:468.514341pt;}
.y8f{bottom:468.515338pt;}
.y16b{bottom:468.889046pt;}
.y2d6{bottom:473.125048pt;}
.y35f{bottom:473.881886pt;}
.y4f{bottom:475.617333pt;}
.y274{bottom:475.692320pt;}
.y19c{bottom:475.917333pt;}
.y318{bottom:476.223626pt;}
.yb2{bottom:476.527910pt;}
.y213{bottom:477.586738pt;}
.ya{bottom:478.990666pt;}
.y12d{bottom:479.168996pt;}
.y1bf{bottom:480.302894pt;}
.y29a{bottom:484.538113pt;}
.y1d9{bottom:484.538611pt;}
.y245{bottom:484.539486pt;}
.y8e{bottom:484.540482pt;}
.y35e{bottom:485.901010pt;}
.y16a{bottom:486.576810pt;}
.y317{bottom:488.242750pt;}
.yb1{bottom:492.477122pt;}
.y273{bottom:493.380085pt;}
.y19b{bottom:493.455718pt;}
.y4e{bottom:494.288000pt;}
.y9{bottom:494.990666pt;}
.y212{bottom:495.123570pt;}
.y12c{bottom:495.194141pt;}
.y2d5{bottom:497.162361pt;}
.y35d{bottom:497.844535pt;}
.y1be{bottom:497.990658pt;}
.y169{bottom:498.595650pt;}
.y33{bottom:499.206667pt;}
.ydf{bottom:500.032177pt;}
.y316{bottom:500.260940pt;}
.y299{bottom:500.487325pt;}
.y1d8{bottom:500.487824pt;}
.y244{bottom:500.488699pt;}
.y8d{bottom:500.489695pt;}
.yb0{bottom:508.502267pt;}
.y2d4{bottom:509.180551pt;}
.y35c{bottom:509.862725pt;}
.y1bd{bottom:510.009497pt;}
.y272{bottom:511.068849pt;}
.y12b{bottom:511.143353pt;}
.y19a{bottom:511.143482pt;}
.y315{bottom:512.204465pt;}
.y211{bottom:512.660402pt;}
.y4d{bottom:512.958667pt;}
.yde{bottom:516.057322pt;}
.y168{bottom:516.284414pt;}
.y298{bottom:516.512470pt;}
.y1d7{bottom:516.512968pt;}
.y8c{bottom:516.514840pt;}
.y2d3{bottom:521.124077pt;}
.y35b{bottom:521.881848pt;}
.y1bc{bottom:522.028337pt;}
.y314{bottom:524.223588pt;}
.yaf{bottom:524.527412pt;}
.y12a{bottom:527.168498pt;}
.y167{bottom:528.303254pt;}
.y271{bottom:528.832612pt;}
.y199{bottom:528.907245pt;}
.y32{bottom:529.740001pt;}
.y210{bottom:530.121637pt;}
.y4c{bottom:531.629333pt;}
.ydd{bottom:532.081333pt;}
.y297{bottom:532.537615pt;}
.y1d6{bottom:532.538113pt;}
.y243{bottom:532.538988pt;}
.y8b{bottom:532.539984pt;}
.y2d2{bottom:533.143200pt;}
.y35a{bottom:533.900972pt;}
.y313{bottom:536.241778pt;}
.y1bb{bottom:539.717101pt;}
.yae{bottom:540.476624pt;}
.y31{bottom:543.073335pt;}
.y129{bottom:543.193643pt;}
.y2d1{bottom:545.161390pt;}
.y359{bottom:545.843564pt;}
.y166{bottom:545.991018pt;}
.y270{bottom:546.520376pt;}
.y198{bottom:546.596010pt;}
.y20f{bottom:547.658469pt;}
.ydc{bottom:548.032000pt;}
.y312{bottom:548.260901pt;}
.y296{bottom:548.486827pt;}
.y242{bottom:548.488201pt;}
.yf8{bottom:548.489197pt;}
.y4b{bottom:550.225333pt;}
.y1ba{bottom:551.735941pt;}
.y30{bottom:556.406667pt;}
.y2d0{bottom:557.180513pt;}
.y358{bottom:557.862687pt;}
.y165{bottom:558.009857pt;}
.y197{bottom:558.614849pt;}
.y128{bottom:559.143989pt;}
.y311{bottom:560.204427pt;}
.y1b9{bottom:563.754781pt;}
.y26f{bottom:564.284139pt;}
.y295{bottom:564.511972pt;}
.y1d5{bottom:564.512470pt;}
.y241{bottom:564.513345pt;}
.y8a{bottom:564.514341pt;}
.y20e{bottom:565.195301pt;}
.y4a{bottom:568.896000pt;}
.y357{bottom:569.880877pt;}
.y310{bottom:572.222617pt;}
.yad{bottom:572.526914pt;}
.y8{bottom:573.786667pt;}
.y127{bottom:575.168000pt;}
.y164{bottom:575.773621pt;}
.y196{bottom:576.302614pt;}
.ydb{bottom:580.082329pt;}
.y1d4{bottom:580.537615pt;}
.y240{bottom:580.538490pt;}
.y89{bottom:580.539486pt;}
.y2cf{bottom:581.142229pt;}
.y1b8{bottom:581.442545pt;}
.y356{bottom:581.900000pt;}
.y26e{bottom:581.971903pt;}
.y20d{bottom:582.732133pt;}
.y30f{bottom:584.241740pt;}
.y49{bottom:587.566667pt;}
.yac{bottom:588.476126pt;}
.y126{bottom:591.193333pt;}
.y7{bottom:592.685334pt;}
.y2ce{bottom:593.161352pt;}
.y163{bottom:593.461385pt;}
.y355{bottom:593.843526pt;}
.y6f{bottom:593.908769pt;}
.y195{bottom:593.991378pt;}
.yda{bottom:596.032675pt;}
.y30e{bottom:596.259930pt;}
.y294{bottom:596.486329pt;}
.y1d3{bottom:596.486827pt;}
.y23f{bottom:596.487703pt;}
.y88{bottom:596.488699pt;}
.y26d{bottom:599.660667pt;}
.y20c{bottom:600.268966pt;}
.y2cd{bottom:605.179542pt;}
.y6e{bottom:605.246578pt;}
.y162{bottom:605.480225pt;}
.y354{bottom:605.861716pt;}
.y48{bottom:606.237333pt;}
.y30d{bottom:608.203455pt;}
.yab{bottom:608.507557pt;}
.y1b7{bottom:611.150149pt;}
.y194{bottom:611.755141pt;}
.yd9{bottom:612.056687pt;}
.y293{bottom:612.511474pt;}
.y1d2{bottom:612.511972pt;}
.y23e{bottom:612.512847pt;}
.y87{bottom:612.513843pt;}
.y26c{bottom:617.424431pt;}
.y20b{bottom:617.805798pt;}
.y353{bottom:617.880839pt;}
.y30c{bottom:620.222579pt;}
.y161{bottom:623.168989pt;}
.y125{bottom:623.170847pt;}
.yaa{bottom:624.532702pt;}
.y47{bottom:624.908000pt;}
.y6d{bottom:627.924063pt;}
.yd8{bottom:628.081831pt;}
.y292{bottom:628.536619pt;}
.y1d1{bottom:628.537117pt;}
.y23d{bottom:628.537992pt;}
.y86{bottom:628.538988pt;}
.y2f{bottom:628.726665pt;}
.y1b6{bottom:628.913912pt;}
.y193{bottom:629.442905pt;}
.y352{bottom:629.899962pt;}
.y2cc{bottom:631.787182pt;}
.y30b{bottom:632.240769pt;}
.y26b{bottom:635.112195pt;}
.y160{bottom:635.187828pt;}
.y20a{bottom:635.342630pt;}
.y6c{bottom:639.262806pt;}
.y1b5{bottom:640.856753pt;}
.y192{bottom:641.461745pt;}
.y351{bottom:641.842554pt;}
.y46{bottom:643.578667pt;}
.y2cb{bottom:643.806305pt;}
.yd7{bottom:644.032177pt;}
.y30a{bottom:644.259892pt;}
.y291{bottom:644.485831pt;}
.y1d0{bottom:644.486329pt;}
.y23c{bottom:644.487205pt;}
.y85{bottom:644.488201pt;}
.y6{bottom:645.598667pt;}
.y6b{bottom:650.600615pt;}
.y26a{bottom:652.800959pt;}
.y15f{bottom:652.875593pt;}
.y209{bottom:652.879462pt;}
.y350{bottom:653.861677pt;}
.y2e{bottom:655.393332pt;}
.y309{bottom:656.203417pt;}
.y1b4{bottom:658.620516pt;}
.y191{bottom:659.149509pt;}
.yd6{bottom:660.057322pt;}
.y290{bottom:660.510976pt;}
.y1cf{bottom:660.511474pt;}
.y23b{bottom:660.512349pt;}
.y84{bottom:660.513345pt;}
.y6a{bottom:661.939358pt;}
.y45{bottom:662.249333pt;}
.y15e{bottom:664.894432pt;}
.y34f{bottom:665.879867pt;}
.y2ca{bottom:667.843618pt;}
.y308{bottom:668.221607pt;}
.y3{bottom:668.977329pt;}
.y208{bottom:670.416295pt;}
.y269{bottom:670.564722pt;}
.y1b3{bottom:670.639356pt;}
.y2d{bottom:671.393332pt;}
.yd5{bottom:676.081333pt;}
.y28f{bottom:676.536121pt;}
.y124{bottom:676.536619pt;}
.y23a{bottom:676.537494pt;}
.y83{bottom:676.538490pt;}
.y190{bottom:676.913272pt;}
.y34e{bottom:677.898991pt;}
.y2c9{bottom:679.787143pt;}
.y307{bottom:680.240730pt;}
.y44{bottom:680.920000pt;}
.y15d{bottom:682.583196pt;}
.y69{bottom:684.615910pt;}
.y2c{bottom:687.393332pt;}
.y207{bottom:687.953127pt;}
.y268{bottom:688.252486pt;}
.y1b2{bottom:688.328120pt;}
.y34d{bottom:689.842516pt;}
.y2c8{bottom:691.805333pt;}
.yd4{bottom:692.032000pt;}
.y306{bottom:692.257986pt;}
.y28e{bottom:692.485333pt;}
.y123{bottom:692.485831pt;}
.y239{bottom:692.486706pt;}
.y82{bottom:692.487703pt;}
.y1f2{bottom:694.298667pt;}
.y15c{bottom:694.602036pt;}
.y68{bottom:695.954653pt;}
.y2c7{bottom:695.962667pt;}
.y43{bottom:699.590667pt;}
.y1b1{bottom:700.346960pt;}
.y34c{bottom:701.860706pt;}
.y2b{bottom:703.393332pt;}
.y2c6{bottom:703.823618pt;}
.y305{bottom:704.201512pt;}
.y206{bottom:705.489959pt;}
.y267{bottom:705.940250pt;}
.y18f{bottom:706.620876pt;}
.y67{bottom:707.293396pt;}
.y28d{bottom:708.510667pt;}
.y122{bottom:708.510976pt;}
.y238{bottom:708.511851pt;}
.y81{bottom:708.512847pt;}
.y15b{bottom:712.289800pt;}
.y34b{bottom:713.879829pt;}
.y2c5{bottom:715.842741pt;}
.y304{bottom:716.220636pt;}
.y1b0{bottom:718.034724pt;}
.y42{bottom:718.261333pt;}
.y66{bottom:718.631205pt;}
.y205{bottom:723.026791pt;}
.y266{bottom:723.704013pt;}
.yd3{bottom:724.084470pt;}
.y18e{bottom:724.308640pt;}
.y121{bottom:724.536121pt;}
.ya9{bottom:724.537992pt;}
.y34a{bottom:725.898952pt;}
.y2c4{bottom:727.785333pt;}
.y303{bottom:728.238826pt;}
.y65{bottom:729.969948pt;}
.y15a{bottom:730.053564pt;}
.y2c3{bottom:731.942667pt;}
.y1af{bottom:735.723488pt;}
.y41{bottom:736.932000pt;}
.y349{bottom:737.841545pt;}
.y2c2{bottom:739.805353pt;}
.yd2{bottom:740.033683pt;}
.y302{bottom:740.257949pt;}
.y120{bottom:740.485333pt;}
.y80{bottom:740.487205pt;}
.y237{bottom:740.487342pt;}
.y204{bottom:740.563624pt;}
.y64{bottom:741.308690pt;}
.y265{bottom:741.392778pt;}
.y18d{bottom:742.072403pt;}
.y159{bottom:747.742328pt;}
.y348{bottom:749.860668pt;}
.y2a{bottom:750.034669pt;}
.y2c1{bottom:751.824477pt;}
.y301{bottom:752.201474pt;}
.y63{bottom:752.571835pt;}
.y1ae{bottom:753.487251pt;}
.y40{bottom:755.602667pt;}
.yd1{bottom:756.058827pt;}
.y11f{bottom:756.510667pt;}
.y236{bottom:756.511353pt;}
.y7f{bottom:756.512349pt;}
.y203{bottom:758.100456pt;}
.y264{bottom:759.156541pt;}
.y158{bottom:759.761167pt;}
.y347{bottom:761.878858pt;}
.y2c0{bottom:763.842667pt;}
.y62{bottom:763.909645pt;}
.y300{bottom:764.219664pt;}
.y1ad{bottom:765.506091pt;}
.y2bf{bottom:768.000000pt;}
.yd0{bottom:772.083972pt;}
.y235{bottom:772.536498pt;}
.y7e{bottom:772.537494pt;}
.y346{bottom:773.897981pt;}
.y202{bottom:775.637288pt;}
.y2be{bottom:775.785333pt;}
.y2ff{bottom:776.238788pt;}
.y263{bottom:776.844305pt;}
.y157{bottom:777.448932pt;}
.y2{bottom:781.661334pt;}
.y1ac{bottom:783.193855pt;}
.y3e{bottom:785.612000pt;}
.y345{bottom:785.841506pt;}
.y61{bottom:786.435934pt;}
.y2bc{bottom:787.805353pt;}
.ycf{bottom:788.033185pt;}
.y2fe{bottom:788.256977pt;}
.y11e{bottom:788.486020pt;}
.y7d{bottom:788.486706pt;}
.y234{bottom:788.486844pt;}
.y3f{bottom:790.904000pt;}
.y2bd{bottom:791.962667pt;}
.y201{bottom:793.174121pt;}
.y262{bottom:794.533069pt;}
.y156{bottom:795.212695pt;}
.y344{bottom:797.859696pt;}
.y60{bottom:799.739288pt;}
.y2bb{bottom:799.824477pt;}
.y2fd{bottom:800.200503pt;}
.y1ab{bottom:800.882619pt;}
.yce{bottom:804.058329pt;}
.y11d{bottom:804.511165pt;}
.y7c{bottom:804.511851pt;}
.y233{bottom:804.511989pt;}
.y1f3{bottom:805.870667pt;}
.y29{bottom:806.625337pt;}
.y155{bottom:807.156535pt;}
.y343{bottom:809.878820pt;}
.y200{bottom:810.710953pt;}
.y3d{bottom:811.617647pt;}
.y2ba{bottom:811.842667pt;}
.y2fc{bottom:812.219626pt;}
.y261{bottom:812.296832pt;}
.y18c{bottom:812.901459pt;}
.ycd{bottom:820.083474pt;}
.y232{bottom:820.536000pt;}
.y11c{bottom:820.536310pt;}
.y7b{bottom:820.536996pt;}
.y342{bottom:821.897943pt;}
.y2b8{bottom:823.787143pt;}
.y2fb{bottom:824.237816pt;}
.y154{bottom:824.920299pt;}
.y2b9{bottom:827.942667pt;}
.y1ff{bottom:828.247785pt;}
.y260{bottom:829.984596pt;}
.y1aa{bottom:830.589223pt;}
.y341{bottom:833.840535pt;}
.y28{bottom:834.625331pt;}
.y2b7{bottom:835.805333pt;}
.ycc{bottom:836.032687pt;}
.y2fa{bottom:836.256939pt;}
.y231{bottom:836.485333pt;}
.y11b{bottom:836.486655pt;}
.y7a{bottom:836.487342pt;}
.y3c{bottom:838.300690pt;}
.y153{bottom:842.608063pt;}
.y1fe{bottom:845.784617pt;}
.y340{bottom:845.859658pt;}
.y2b5{bottom:847.823821pt;}
.y2f9{bottom:848.200465pt;}
.y25f{bottom:849.713333pt;}
.y2b6{bottom:851.981333pt;}
.ycb{bottom:852.057831pt;}
.y11a{bottom:852.510667pt;}
.y79{bottom:852.511353pt;}
.y152{bottom:854.626903pt;}
.y33f{bottom:857.877848pt;}
.y1{bottom:859.312000pt;}
.y2f8{bottom:860.218655pt;}
.y2b4{bottom:860.220000pt;}
.y1a9{bottom:860.371826pt;}
.y27{bottom:862.625331pt;}
.y1fd{bottom:863.321450pt;}
.y3b{bottom:864.906667pt;}
.y1f4{bottom:867.401333pt;}
.y25e{bottom:867.402568pt;}
.yca{bottom:868.082976pt;}
.y119{bottom:868.536000pt;}
.y78{bottom:868.536498pt;}
.y33e{bottom:869.896971pt;}
.y151{bottom:872.314667pt;}
.y33d{bottom:881.840497pt;}
.y1fc{bottom:882.822892pt;}
.yc9{bottom:884.033322pt;}
.ya8{bottom:884.486844pt;}
.y150{bottom:890.079168pt;}
.y33c{bottom:893.858687pt;}
.y25d{bottom:895.370639pt;}
.y3a{bottom:895.597756pt;}
.yc8{bottom:900.057333pt;}
.y77{bottom:900.511989pt;}
.y33b{bottom:905.877810pt;}
.y14f{bottom:910.034667pt;}
.y39{bottom:914.268000pt;}
.yc7{bottom:916.081333pt;}
.y76{bottom:916.536000pt;}
.y33a{bottom:917.896000pt;}
.y1fb{bottom:918.652000pt;}
.y26{bottom:920.485335pt;}
.y5e{bottom:989.178382pt;}
.y5d{bottom:1002.557333pt;}
.y25{bottom:1035.664002pt;}
.h2a{height:19.162117pt;}
.h2b{height:19.460748pt;}
.h29{height:20.331753pt;}
.h2c{height:20.849580pt;}
.h15{height:24.636715pt;}
.h27{height:25.024000pt;}
.h26{height:26.144000pt;}
.h1d{height:26.693744pt;}
.h1c{height:27.109750pt;}
.h7{height:28.560000pt;}
.h25{height:28.745845pt;}
.h1a{height:29.193833pt;}
.h1b{height:30.500462pt;}
.h24{height:31.279583pt;}
.hc{height:32.645833pt;}
.h22{height:34.900969pt;}
.h19{height:34.906256pt;}
.h20{height:35.117543pt;}
.h23{height:35.131369pt;}
.h21{height:35.132920pt;}
.ha{height:36.726562pt;}
.h14{height:36.960000pt;}
.h1f{height:37.036898pt;}
.h1e{height:37.056000pt;}
.h18{height:39.216000pt;}
.h6{height:40.800000pt;}
.hf{height:40.807292pt;}
.h17{height:41.066667pt;}
.h3{height:42.840000pt;}
.h16{height:43.573333pt;}
.h2{height:48.960000pt;}
.he{height:48.968750pt;}
.h28{height:51.966515pt;}
.h12{height:52.287564pt;}
.hb{height:61.210938pt;}
.h5{height:69.360000pt;}
.h13{height:69.812923pt;}
.hd{height:73.453125pt;}
.h4{height:105.826671pt;}
.h11{height:1058.000000pt;}
.h10{height:1058.268000pt;}
.h9{height:1110.666667pt;}
.h8{height:1110.720000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.w5{width:812.598667pt;}
.w6{width:812.666667pt;}
.w3{width:845.760000pt;}
.w4{width:846.000000pt;}
.x0{left:0.000000pt;}
.x10{left:66.670800pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x8{left:129.466667pt;}
.x7{left:170.560000pt;}
.x9{left:175.733333pt;}
.x4{left:180.874667pt;}
.x6{left:203.327991pt;}
.xa{left:240.226667pt;}
.x17{left:245.367948pt;}
.x16{left:246.652000pt;}
.x1d{left:250.280000pt;}
.x13{left:251.337733pt;}
.x31{left:254.286667pt;}
.x50{left:258.669936pt;}
.x15{left:260.030298pt;}
.x5{left:260.969328pt;}
.x32{left:263.357333pt;}
.x1e{left:267.968000pt;}
.x14{left:272.351753pt;}
.x1f{left:284.295200pt;}
.x33{left:294.122667pt;}
.x20{left:301.832000pt;}
.x34{left:311.357108pt;}
.x4e{left:313.700000pt;}
.x21{left:319.368000pt;}
.x4f{left:325.568000pt;}
.x4c{left:326.701583pt;}
.x35{left:328.893940pt;}
.x4b{left:330.859799pt;}
.x4d{left:332.446507pt;}
.xb{left:336.076000pt;}
.xc{left:341.216000pt;}
.x4a{left:342.500000pt;}
.x36{left:346.430772pt;}
.x12{left:352.176000pt;}
.x22{left:354.441600pt;}
.x1b{left:357.769168pt;}
.x37{left:363.966671pt;}
.x19{left:371.828980pt;}
.x38{left:381.503503pt;}
.x23{left:389.515200pt;}
.x39{left:399.040336pt;}
.x3{left:404.408000pt;}
.x24{left:407.052000pt;}
.x3a{left:416.577168pt;}
.x25{left:424.588800pt;}
.x3b{left:434.114000pt;}
.x26{left:442.125600pt;}
.x3c{left:451.650832pt;}
.xd{left:458.985333pt;}
.xe{left:464.125333pt;}
.x3d{left:469.187665pt;}
.x27{left:477.199200pt;}
.x3e{left:486.724497pt;}
.x28{left:494.660000pt;}
.x52{left:500.632489pt;}
.x3f{left:504.261329pt;}
.x29{left:512.196800pt;}
.x51{left:519.303289pt;}
.x40{left:521.798161pt;}
.x2a{left:529.733600pt;}
.x41{left:539.259396pt;}
.x2b{left:547.270400pt;}
.x1a{left:553.246562pt;}
.x42{left:556.796228pt;}
.x2c{left:564.807200pt;}
.x43{left:574.333060pt;}
.xf{left:577.512000pt;}
.x18{left:582.651169pt;}
.x2d{left:583.558667pt;}
.x44{left:591.869893pt;}
.x2e{left:595.576857pt;}
.x2f{left:607.520382pt;}
.x45{left:609.406725pt;}
.x30{left:619.538572pt;}
.x46{left:626.943557pt;}
.x47{left:644.480389pt;}
.x49{left:658.166667pt;}
.x48{left:662.319613pt;}
.x1c{left:684.541279pt;}
.x11{left:690.066667pt;}
}




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