
    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_052bb58758567ec21767ab0b.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_eee02b2c84323d98eaf50acc.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_0c8bf4a1ef89280f0ff0c6d3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_8f6e427f56c13f133f21ed7d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.946777;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_d1920a95d4edec7772816a06.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_0afd09cd8b553920e0360598.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938965;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_4dcc38d206e3bd72af0e1130.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.866699;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_6193fc93719873dbca485474.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;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_b561caea7f5c8130c15a7d7d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.921387;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_f5ce10c409b1ee0548ab27c4.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.063477;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_57c0475c288a14347832fc0d.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.172363;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_97edbfce5b8917c9c16df639.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.800781;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:fff;src:url('chunks/assets/font_daf09c9e79f0e6dcf5428f00.woff2')format("woff");}.fff{font-family:fff;line-height:1.201172;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);}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.vc{vertical-align:-16.680000px;}
.v5{vertical-align:-12.960000px;}
.v2{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:2.880000px;}
.v9{vertical-align:5.760000px;}
.v8{vertical-align:7.200000px;}
.v4{vertical-align:12.960000px;}
.v7{vertical-align:15.840000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.940000px;}
.va{vertical-align:27.540000px;}
.vb{vertical-align:39.600000px;}
.ls3a{letter-spacing:-0.810000px;}
.ls14{letter-spacing:-0.774000px;}
.lsa{letter-spacing:-0.720000px;}
.ls44{letter-spacing:-0.541200px;}
.ls39{letter-spacing:-0.385800px;}
.ls5{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.334200px;}
.ls38{letter-spacing:-0.324000px;}
.ls46{letter-spacing:-0.305400px;}
.ls35{letter-spacing:-0.299400px;}
.ls20{letter-spacing:-0.272400px;}
.lse{letter-spacing:-0.220800px;}
.ls17{letter-spacing:-0.219000px;}
.ls47{letter-spacing:-0.152400px;}
.ls19{letter-spacing:-0.089400px;}
.ls34{letter-spacing:-0.081600px;}
.ls37{letter-spacing:-0.072000px;}
.ls10{letter-spacing:-0.054720px;}
.lsf{letter-spacing:-0.051840px;}
.ls7{letter-spacing:-0.028800px;}
.lsb{letter-spacing:-0.027360px;}
.ls0{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.000006px;}
.ls6{letter-spacing:0.027360px;}
.ls33{letter-spacing:0.054720px;}
.ls36{letter-spacing:0.072000px;}
.ls42{letter-spacing:0.109200px;}
.ls45{letter-spacing:0.109440px;}
.ls2{letter-spacing:0.119520px;}
.ls27{letter-spacing:0.120960px;}
.ls1e{letter-spacing:0.138000px;}
.ls13{letter-spacing:0.144000px;}
.ls1d{letter-spacing:0.174240px;}
.ls43{letter-spacing:0.178800px;}
.ls4{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.284400px;}
.ls3{letter-spacing:0.287280px;}
.ls49{letter-spacing:0.334200px;}
.ls3d{letter-spacing:0.345600px;}
.ls1{letter-spacing:0.360000px;}
.ls32{letter-spacing:0.720000px;}
.ls15{letter-spacing:1.440000px;}
.ls11{letter-spacing:2.520000px;}
.ls2e{letter-spacing:2.536560px;}
.ls23{letter-spacing:3.029040px;}
.ls3c{letter-spacing:3.081600px;}
.ls12{letter-spacing:3.240000px;}
.ls2d{letter-spacing:3.261600px;}
.ls48{letter-spacing:3.600000px;}
.ls3f{letter-spacing:3.801600px;}
.ls31{letter-spacing:4.050000px;}
.ls18{letter-spacing:4.347360px;}
.ls2c{letter-spacing:4.694400px;}
.ls1c{letter-spacing:5.760000px;}
.ls3b{letter-spacing:8.820000px;}
.ls1a{letter-spacing:10.051200px;}
.ls28{letter-spacing:10.200960px;}
.ls1b{letter-spacing:10.771200px;}
.ls2a{letter-spacing:10.920960px;}
.ls24{letter-spacing:13.829040px;}
.ls16{letter-spacing:14.400000px;}
.ls25{letter-spacing:14.598720px;}
.ls22{letter-spacing:16.709040px;}
.ls30{letter-spacing:19.096560px;}
.ls2f{letter-spacing:19.816560px;}
.lsd{letter-spacing:20.880000px;}
.ls21{letter-spacing:21.974400px;}
.lsc{letter-spacing:42.865920px;}
.ls3e{letter-spacing:71.481600px;}
.ls26{letter-spacing:91.995840px;}
.ls29{letter-spacing:92.115840px;}
.ls2b{letter-spacing:92.175840px;}
.ls41{letter-spacing:119.145600px;}
.ls40{letter-spacing:389.325600px;}
.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;}
}
.ws3a{word-spacing:-66.240000px;}
.ws3{word-spacing:-24.227280px;}
.wsd{word-spacing:-18.144000px;}
.ws10{word-spacing:-18.000000px;}
.ws36{word-spacing:-16.560000px;}
.ws39{word-spacing:-16.407600px;}
.ws37{word-spacing:-16.254600px;}
.ws40{word-spacing:-16.174200px;}
.ws8{word-spacing:-15.840000px;}
.wsc{word-spacing:-15.788160px;}
.wse{word-spacing:-15.621000px;}
.ws9{word-spacing:-15.505800px;}
.ws2f{word-spacing:-15.454200px;}
.ws2{word-spacing:-15.300000px;}
.ws2b{word-spacing:-15.120000px;}
.ws1{word-spacing:-14.580000px;}
.ws19{word-spacing:-14.572800px;}
.ws26{word-spacing:-14.544000px;}
.ws1b{word-spacing:-14.520960px;}
.ws4{word-spacing:-14.247360px;}
.ws5{word-spacing:-14.220000px;}
.ws20{word-spacing:-14.212800px;}
.wsa{word-spacing:-14.192640px;}
.ws30{word-spacing:-14.165280px;}
.ws32{word-spacing:-14.118000px;}
.ws12{word-spacing:-14.077200px;}
.ws31{word-spacing:-14.048400px;}
.wsb{word-spacing:-13.999200px;}
.ws18{word-spacing:-13.939206px;}
.ws15{word-spacing:-13.939200px;}
.ws6{word-spacing:-13.860000px;}
.ws28{word-spacing:-13.639800px;}
.ws3c{word-spacing:-13.538304px;}
.ws3d{word-spacing:-13.505760px;}
.ws34{word-spacing:-13.398000px;}
.ws35{word-spacing:-13.219200px;}
.ws38{word-spacing:-12.060000px;}
.ws21{word-spacing:-10.612800px;}
.ws11{word-spacing:-10.440000px;}
.wsf{word-spacing:-10.350600px;}
.ws13{word-spacing:-9.979200px;}
.ws3b{word-spacing:-9.630000px;}
.ws2d{word-spacing:-9.072000px;}
.ws2c{word-spacing:-9.000000px;}
.ws2e{word-spacing:-8.928000px;}
.ws17{word-spacing:-3.783600px;}
.ws14{word-spacing:-3.063600px;}
.ws1e{word-spacing:-2.810880px;}
.ws23{word-spacing:-2.090880px;}
.ws7{word-spacing:-0.056880px;}
.ws0{word-spacing:0.000000px;}
.ws1d{word-spacing:0.025920px;}
.ws1f{word-spacing:0.145920px;}
.ws16{word-spacing:2.757360px;}
.ws29{word-spacing:2.810880px;}
.ws2a{word-spacing:3.530880px;}
.ws1a{word-spacing:3.625920px;}
.ws1c{word-spacing:6.096240px;}
.ws33{word-spacing:53.930880px;}
.ws3f{word-spacing:133.934976px;}
.ws22{word-spacing:307.776240px;}
.ws24{word-spacing:355.296240px;}
.ws27{word-spacing:382.116240px;}
.ws25{word-spacing:382.656240px;}
.ws3e{word-spacing:675.563520px;}
._1f{margin-left:-14.822880px;}
._1b{margin-left:-7.059600px;}
._10{margin-left:-5.100480px;}
._b{margin-left:-3.692160px;}
._7{margin-left:-2.643840px;}
._1{margin-left:-1.430880px;}
._0{width:1.015920px;}
._2{width:2.811600px;}
._a{width:4.296240px;}
._4{width:5.412480px;}
._3{width:6.427440px;}
._e{width:7.603200px;}
._f{width:8.824800px;}
._11{width:9.929760px;}
._6{width:11.205360px;}
._5{width:12.286080px;}
._12{width:14.065920px;}
._8{width:16.153920px;}
._9{width:17.421120px;}
._c{width:18.506880px;}
._15{width:20.021760px;}
._17{width:21.141120px;}
._19{width:22.213920px;}
._1a{width:23.346480px;}
._25{width:24.482400px;}
._21{width:27.308160px;}
._22{width:28.395840px;}
._23{width:35.735040px;}
._24{width:36.938880px;}
._1e{width:67.200000px;}
._16{width:69.120000px;}
._26{width:71.660160px;}
._27{width:72.783360px;}
._1d{width:90.208320px;}
._14{width:98.467920px;}
._13{width:99.720000px;}
._18{width:128.312160px;}
._20{width:135.273600px;}
._1c{width:175.881600px;}
._d{width:192.088320px;}
.fc5{color:rgb(255,0,0);}
.fc4{color:rgb(0,176,240);}
.fc8{color:rgb(75,172,198);}
.fc3{color:rgb(0,0,255);}
.fc2{color:transparent;}
.fc7{color:rgb(34,34,34);}
.fc6{color:rgb(0,176,80);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:36.000000px;}
.fsc{font-size:38.880000px;}
.fsd{font-size:41.760000px;}
.fs4{font-size:42.000000px;}
.fse{font-size:45.360000px;}
.fs7{font-size:48.240000px;}
.fs8{font-size:56.880000px;}
.fs5{font-size:59.760000px;}
.fs10{font-size:59.904000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs9{font-size:63.360000px;}
.fsb{font-size:66.240000px;}
.fsf{font-size:66.786636px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:95.760000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y190{bottom:3.600000px;}
.y192{bottom:3.780000px;}
.y2b{bottom:3.960000px;}
.y1d0{bottom:4.500000px;}
.y210{bottom:5.040000px;}
.y20a{bottom:5.220000px;}
.y208{bottom:5.580000px;}
.y216{bottom:5.760000px;}
.y20f{bottom:6.660000px;}
.y1b7{bottom:6.840000px;}
.y1bc{bottom:7.020000px;}
.y23a{bottom:7.485000px;}
.y207{bottom:7.560000px;}
.y20d{bottom:7.740000px;}
.y1c2{bottom:10.260000px;}
.y1ba{bottom:13.140000px;}
.y205{bottom:21.420000px;}
.y1b9{bottom:22.680000px;}
.y2a{bottom:23.940000px;}
.y238{bottom:26.385000px;}
.y1e7{bottom:27.000000px;}
.y24{bottom:34.200000px;}
.y29{bottom:41.220000px;}
.y1c9{bottom:41.580000px;}
.y1c6{bottom:41.610000px;}
.y5a{bottom:45.180000px;}
.y8d{bottom:45.900000px;}
.y236{bottom:52.125000px;}
.y28{bottom:58.500000px;}
.y1c8{bottom:60.660000px;}
.y1c5{bottom:60.690000px;}
.y59{bottom:62.460000px;}
.y8c{bottom:65.880000px;}
.y5{bottom:66.525004px;}
.y27{bottom:75.600000px;}
.y1c4{bottom:79.590000px;}
.y58{bottom:79.740000px;}
.y8b{bottom:83.160000px;}
.y230{bottom:87.840000px;}
.y26{bottom:92.880000px;}
.y57{bottom:97.020000px;}
.y4{bottom:97.125005px;}
.y8a{bottom:100.440000px;}
.y25{bottom:110.160000px;}
.y56{bottom:114.120000px;}
.y89{bottom:117.720000px;}
.y231{bottom:123.195000px;}
.y55{bottom:131.400000px;}
.y88{bottom:134.820000px;}
.y21{bottom:139.264499px;}
.y237{bottom:145.875000px;}
.y54{bottom:148.680000px;}
.y87{bottom:152.100000px;}
.y232{bottom:158.505000px;}
.y111{bottom:165.810000px;}
.y162{bottom:165.990000px;}
.y1b2{bottom:167.610000px;}
.yb2{bottom:169.230000px;}
.y53{bottom:170.670000px;}
.y110{bottom:171.030000px;}
.y24d{bottom:171.210000px;}
.y85{bottom:171.930000px;}
.yb1{bottom:174.450000px;}
.y221{bottom:174.630000px;}
.y133{bottom:175.350000px;}
.y84{bottom:177.150000px;}
.y1d5{bottom:178.050000px;}
.y132{bottom:180.570000px;}
.y21c{bottom:180.750000px;}
.y1f7{bottom:182.190000px;}
.y161{bottom:183.270000px;}
.y28d{bottom:184.350000px;}
.yb0{bottom:185.610000px;}
.y17d{bottom:185.790000px;}
.y52{bottom:187.230000px;}
.y10f{bottom:188.130000px;}
.yda{bottom:188.490000px;}
.y187{bottom:189.030000px;}
.yaf{bottom:190.830000px;}
.y17c{bottom:191.010000px;}
.yd9{bottom:193.710000px;}
.y233{bottom:193.860000px;}
.y26c{bottom:194.250000px;}
.y83{bottom:194.430000px;}
.y1d4{bottom:195.510000px;}
.y18{bottom:196.933500px;}
.y220{bottom:197.130000px;}
.y131{bottom:197.850000px;}
.y1f6{bottom:198.570000px;}
.y82{bottom:199.650000px;}
.y160{bottom:201.270000px;}
.yee{bottom:201.990000px;}
.yae{bottom:202.890000px;}
.y51{bottom:203.790000px;}
.y10e{bottom:204.510000px;}
.y15f{bottom:206.490000px;}
.y152{bottom:208.110000px;}
.y17b{bottom:209.010000px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.yd8{bottom:210.990000px;}
.y22e{bottom:212.070000px;}
.y197{bottom:213.330000px;}
.y130{bottom:214.410000px;}
.yd7{bottom:216.210000px;}
.y26b{bottom:216.750000px;}
.y81{bottom:216.930000px;}
.y21b{bottom:218.010000px;}
.yed{bottom:218.370000px;}
.y15e{bottom:218.550000px;}
.y1d3{bottom:218.730000px;}
.y12f{bottom:219.630000px;}
.y10d{bottom:221.070000px;}
.y28c{bottom:221.250000px;}
.y1f5{bottom:221.790000px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y1b1{bottom:223.770000px;}
.y151{bottom:224.670000px;}
.y10c{bottom:226.290000px;}
.y1b0{bottom:227.010000px;}
.y149{bottom:227.550000px;}
.y50{bottom:228.990000px;}
.y186{bottom:229.170000px;}
.y150{bottom:229.890000px;}
.y196{bottom:231.330000px;}
.y12e{bottom:231.690000px;}
.y80{bottom:233.490000px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.yec{bottom:234.750000px;}
.y15d{bottom:235.110000px;}
.y22d{bottom:236.010000px;}
.y17a{bottom:238.170000px;}
.y7f{bottom:238.710000px;}
.y26a{bottom:239.250000px;}
.yeb{bottom:239.970000px;}
.y15c{bottom:240.330000px;}
.y21a{bottom:240.870000px;}
.y14f{bottom:241.950000px;}
.y21f{bottom:242.130000px;}
.y10b{bottom:243.570000px;}
.y148{bottom:243.930000px;}
.y4f{bottom:245.370000px;}
.y1f4{bottom:248.430000px;}
.y147{bottom:249.150000px;}
.y7e{bottom:250.770000px;}
.y185{bottom:251.670000px;}
.yea{bottom:252.030000px;}
.yad{bottom:256.170000px;}
.y195{bottom:257.790000px;}
.y15b{bottom:258.330000px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y22c{bottom:260.130000px;}
.y179{bottom:260.670000px;}
.y10a{bottom:260.850000px;}
.y146{bottom:261.210000px;}
.y4e{bottom:261.750000px;}
.y219{bottom:263.010000px;}
.y234{bottom:264.525000px;}
.y21e{bottom:264.630000px;}
.y1d2{bottom:265.170000px;}
.y1f3{bottom:271.650000px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y184{bottom:274.170000px;}
.y194{bottom:277.410000px;}
.y109{bottom:277.950000px;}
.y4d{bottom:278.130000px;}
.yac{bottom:278.670000px;}
.ye8{bottom:279.210000px;}
.y108{bottom:283.170000px;}
.y12c{bottom:283.710000px;}
.y1af{bottom:284.070000px;}
.y269{bottom:284.250000px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y218{bottom:285.870000px;}
.ye9{bottom:286.050000px;}
.yd6{bottom:287.130000px;}
.y1d1{bottom:288.390000px;}
.y12d{bottom:290.550000px;}
.y1f2{bottom:294.870000px;}
.y28b{bottom:295.230000px;}
.y4c{bottom:295.410000px;}
.y145{bottom:296.130000px;}
.y183{bottom:296.670000px;}
.y193{bottom:297.210000px;}
.y235{bottom:299.850000px;}
.y7d{bottom:300.630000px;}
.yab{bottom:301.170000px;}
.y107{bottom:304.950000px;}
.y12b{bottom:305.670000px;}
.y24c{bottom:306.210000px;}
.y268{bottom:306.750000px;}
.y22b{bottom:308.010000px;}
.y1ae{bottom:308.190000px;}
.y217{bottom:308.730000px;}
.y21d{bottom:309.630000px;}
.yd4{bottom:310.170000px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y1cf{bottom:311.790000px;}
.y191{bottom:316.830000px;}
.yd5{bottom:317.010000px;}
.y1f1{bottom:318.090000px;}
.y144{bottom:318.630000px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y7c{bottom:323.130000px;}
.yaa{bottom:323.670000px;}
.y106{bottom:327.630000px;}
.y12a{bottom:328.170000px;}
.y24b{bottom:328.710000px;}
.y182{bottom:329.250000px;}
.y215{bottom:331.590000px;}
.yd3{bottom:332.130000px;}
.y28a{bottom:333.210000px;}
.y18f{bottom:336.630000px;}
.y4b{bottom:336.990000px;}
.y143{bottom:341.130000px;}
.y1f0{bottom:341.490000px;}
.y7b{bottom:345.630000px;}
.ya9{bottom:346.170000px;}
.yf{bottom:348.133500px;}
.y105{bottom:350.130000px;}
.y178{bottom:350.670000px;}
.y128{bottom:351.210000px;}
.y267{bottom:351.750000px;}
.yd2{bottom:354.630000px;}
.y289{bottom:355.710000px;}
.y22a{bottom:356.070000px;}
.y1ad{bottom:356.250000px;}
.y1ce{bottom:357.690000px;}
.y129{bottom:358.050000px;}
.y142{bottom:363.630000px;}
.y1ef{bottom:364.710000px;}
.y7a{bottom:368.130000px;}
.ya8{bottom:368.670000px;}
.y181{bottom:369.750000px;}
.y104{bottom:372.630000px;}
.y127{bottom:373.170000px;}
.y24a{bottom:373.710000px;}
.y266{bottom:374.250000px;}
.y4a{bottom:376.230000px;}
.yd1{bottom:377.130000px;}
.y214{bottom:377.490000px;}
.y288{bottom:378.210000px;}
.y18e{bottom:378.750000px;}
.y229{bottom:380.010000px;}
.y1ac{bottom:380.190000px;}
.y141{bottom:386.130000px;}
.ye{bottom:386.785499px;}
.y1ee{bottom:387.975000px;}
.y79{bottom:390.675000px;}
.ya7{bottom:391.215000px;}
.y103{bottom:395.175000px;}
.y126{bottom:395.715000px;}
.y249{bottom:396.255000px;}
.y15a{bottom:396.435000px;}
.y265{bottom:396.795000px;}
.yd0{bottom:399.675000px;}
.y213{bottom:400.395000px;}
.y287{bottom:400.755000px;}
.y49{bottom:401.655000px;}
.y1ab{bottom:404.175000px;}
.y1cd{bottom:405.795000px;}
.yd{bottom:408.044999px;}
.y140{bottom:408.675000px;}
.y1ed{bottom:411.195000px;}
.y78{bottom:413.175000px;}
.ya6{bottom:413.715000px;}
.ye6{bottom:414.255000px;}
.y102{bottom:417.675000px;}
.y48{bottom:418.215000px;}
.y248{bottom:418.755000px;}
.y264{bottom:419.295000px;}
.ye7{bottom:421.095000px;}
.ycf{bottom:422.175000px;}
.y286{bottom:423.255000px;}
.y212{bottom:423.435000px;}
.y180{bottom:427.755000px;}
.y228{bottom:428.115000px;}
.y1aa{bottom:428.295000px;}
.y1cc{bottom:429.735000px;}
.y13f{bottom:431.175000px;}
.y1ec{bottom:434.415000px;}
.y47{bottom:434.775000px;}
.y77{bottom:435.675000px;}
.ya5{bottom:436.215000px;}
.y101{bottom:440.175000px;}
.y125{bottom:440.715000px;}
.y176{bottom:441.255000px;}
.y263{bottom:441.795000px;}
.yce{bottom:444.675000px;}
.y211{bottom:445.395000px;}
.y285{bottom:445.755000px;}
.y177{bottom:448.095000px;}
.y46{bottom:451.335000px;}
.y227{bottom:452.055000px;}
.y1a9{bottom:452.235000px;}
.y13d{bottom:454.215000px;}
.y1cb{bottom:455.835000px;}
.y1eb{bottom:457.635000px;}
.y76{bottom:458.175000px;}
.ya4{bottom:458.715000px;}
.y13e{bottom:461.055000px;}
.y100{bottom:462.675000px;}
.y124{bottom:463.215000px;}
.y247{bottom:463.755000px;}
.y262{bottom:464.295000px;}
.ycd{bottom:467.175000px;}
.y45{bottom:467.715000px;}
.y284{bottom:468.255000px;}
.y20e{bottom:468.435000px;}
.y1a8{bottom:476.175000px;}
.y13c{bottom:477.795000px;}
.y75{bottom:480.675000px;}
.y1ea{bottom:481.035000px;}
.ye5{bottom:481.215000px;}
.ya2{bottom:481.755000px;}
.y1ca{bottom:482.115000px;}
.y44{bottom:484.275000px;}
.yff{bottom:485.175000px;}
.y123{bottom:485.715000px;}
.y246{bottom:486.255000px;}
.y261{bottom:486.795000px;}
.ya3{bottom:488.595000px;}
.ycc{bottom:489.675000px;}
.y283{bottom:490.755000px;}
.y20c{bottom:491.115000px;}
.y226{bottom:500.115000px;}
.y1a7{bottom:500.295000px;}
.y43{bottom:500.835000px;}
.y13b{bottom:501.735000px;}
.yc{bottom:502.864502px;}
.y74{bottom:503.175000px;}
.ye4{bottom:503.715000px;}
.ya0{bottom:504.255000px;}
.yfe{bottom:507.675000px;}
.y122{bottom:508.215000px;}
.y1c7{bottom:508.395000px;}
.y245{bottom:508.755000px;}
.y260{bottom:509.295000px;}
.ya1{bottom:511.095000px;}
.ycb{bottom:512.175000px;}
.y282{bottom:513.255000px;}
.y20b{bottom:514.155000px;}
.y42{bottom:517.215000px;}
.yb{bottom:520.864502px;}
.y225{bottom:524.055000px;}
.y1a6{bottom:524.235000px;}
.y13a{bottom:525.675000px;}
.y72{bottom:526.215000px;}
.y1e9{bottom:527.475000px;}
.yfd{bottom:530.175000px;}
.y121{bottom:530.715000px;}
.y244{bottom:531.255000px;}
.y25f{bottom:531.795000px;}
.y73{bottom:533.055000px;}
.y41{bottom:533.775000px;}
.yca{bottom:534.675000px;}
.y281{bottom:535.755000px;}
.y209{bottom:537.015000px;}
.ya{bottom:538.864499px;}
.y71{bottom:548.175000px;}
.y9f{bottom:548.715000px;}
.y14d{bottom:549.255000px;}
.y139{bottom:549.795000px;}
.y40{bottom:550.335000px;}
.y1e8{bottom:550.695000px;}
.yfc{bottom:552.675000px;}
.y120{bottom:553.215000px;}
.y243{bottom:553.755000px;}
.y25e{bottom:554.295000px;}
.y14e{bottom:556.095000px;}
.y9{bottom:556.864499px;}
.y159{bottom:557.175000px;}
.yc8{bottom:557.715000px;}
.y280{bottom:558.255000px;}
.y206{bottom:559.155000px;}
.yc9{bottom:564.555000px;}
.y3f{bottom:566.715000px;}
.y70{bottom:570.675000px;}
.y9e{bottom:571.215000px;}
.y224{bottom:572.115000px;}
.y1a5{bottom:572.295000px;}
.y138{bottom:573.735000px;}
.y1e6{bottom:573.915000px;}
.yfb{bottom:575.175000px;}
.y11f{bottom:575.715000px;}
.y242{bottom:576.255000px;}
.y25d{bottom:576.795000px;}
.yc7{bottom:579.675000px;}
.y27f{bottom:580.755000px;}
.y204{bottom:582.735000px;}
.y3e{bottom:583.275000px;}
.y1c3{bottom:585.075000px;}
.y6f{bottom:593.175000px;}
.y9d{bottom:593.715000px;}
.y14b{bottom:594.255000px;}
.y1a4{bottom:596.235000px;}
.yfa{bottom:597.675000px;}
.y11e{bottom:598.215000px;}
.y241{bottom:598.755000px;}
.y25c{bottom:599.295000px;}
.y3d{bottom:599.835000px;}
.y14c{bottom:601.095000px;}
.yc6{bottom:602.175000px;}
.y27e{bottom:603.255000px;}
.y223{bottom:606.135000px;}
.y6e{bottom:615.675000px;}
.y3c{bottom:616.215000px;}
.yf9{bottom:620.205000px;}
.y11d{bottom:620.745000px;}
.y240{bottom:621.285000px;}
.y137{bottom:621.825000px;}
.y1e5{bottom:624.165000px;}
.yc5{bottom:624.705000px;}
.y27d{bottom:625.785000px;}
.y3b{bottom:632.805000px;}
.y6d{bottom:638.205000px;}
.y9c{bottom:638.745000px;}
.y222{bottom:641.985000px;}
.yf8{bottom:642.705000px;}
.y11c{bottom:643.245000px;}
.y23f{bottom:643.785000px;}
.y239{bottom:643.860000px;}
.y22f{bottom:644.040000px;}
.y1a3{bottom:644.325000px;}
.y8{bottom:645.510000px;}
.y136{bottom:645.765000px;}
.yc4{bottom:647.205000px;}
.y27c{bottom:648.285000px;}
.y3a{bottom:649.365000px;}
.y6b{bottom:661.245000px;}
.y1e4{bottom:664.125000px;}
.yf7{bottom:665.205000px;}
.y39{bottom:665.745000px;}
.y23e{bottom:666.285000px;}
.y7{bottom:666.771000px;}
.y25b{bottom:666.825000px;}
.y6c{bottom:668.085000px;}
.y1a2{bottom:668.265000px;}
.yc3{bottom:669.705000px;}
.y134{bottom:670.245000px;}
.y27b{bottom:670.785000px;}
.y175{bottom:675.825000px;}
.y135{bottom:677.085000px;}
.y1c1{bottom:680.685000px;}
.y38{bottom:682.305000px;}
.y6a{bottom:683.205000px;}
.y9b{bottom:683.745000px;}
.y203{bottom:683.925000px;}
.y1e2{bottom:686.625000px;}
.y18c{bottom:688.785000px;}
.y25a{bottom:689.325000px;}
.y1e3{bottom:691.845000px;}
.yc2{bottom:692.205000px;}
.y157{bottom:692.745000px;}
.y27a{bottom:693.285000px;}
.y18d{bottom:695.625000px;}
.yf6{bottom:697.785000px;}
.y11b{bottom:698.325000px;}
.y37{bottom:698.505000px;}
.y158{bottom:699.585000px;}
.y69{bottom:705.705000px;}
.y9a{bottom:706.245000px;}
.y1c0{bottom:706.965000px;}
.y202{bottom:707.865000px;}
.y1e1{bottom:708.585000px;}
.y18b{bottom:710.745000px;}
.y23d{bottom:711.285000px;}
.y259{bottom:711.825000px;}
.y36{bottom:714.525000px;}
.yc1{bottom:714.705000px;}
.y174{bottom:715.245000px;}
.y279{bottom:715.785000px;}
.y1a1{bottom:716.325000px;}
.y6{bottom:726.298500px;}
.y68{bottom:728.205000px;}
.ye3{bottom:728.745000px;}
.y1e0{bottom:731.085000px;}
.y201{bottom:731.805000px;}
.y18a{bottom:733.245000px;}
.y23c{bottom:733.785000px;}
.y258{bottom:734.325000px;}
.y35{bottom:735.225000px;}
.yc0{bottom:737.205000px;}
.yf4{bottom:737.745000px;}
.y278{bottom:738.285000px;}
.y99{bottom:738.825000px;}
.y1a0{bottom:740.265000px;}
.yf5{bottom:744.585000px;}
.y67{bottom:750.705000px;}
.ye2{bottom:751.245000px;}
.y3{bottom:752.599495px;}
.y1df{bottom:753.585000px;}
.y34{bottom:755.925000px;}
.y188{bottom:756.285000px;}
.y257{bottom:756.825000px;}
.y1bf{bottom:759.525000px;}
.ybf{bottom:759.705000px;}
.y173{bottom:760.245000px;}
.y277{bottom:760.785000px;}
.y189{bottom:763.125000px;}
.y19f{bottom:764.205000px;}
.y66{bottom:773.205000px;}
.ye1{bottom:773.745000px;}
.y1de{bottom:776.085000px;}
.y33{bottom:777.165000px;}
.y98{bottom:778.245000px;}
.y11a{bottom:778.785000px;}
.y256{bottom:779.325000px;}
.y200{bottom:779.865000px;}
.ybe{bottom:782.205000px;}
.yf2{bottom:782.745000px;}
.y276{bottom:783.285000px;}
.y172{bottom:784.005000px;}
.y1be{bottom:785.625000px;}
.y19e{bottom:788.325000px;}
.yf3{bottom:789.585000px;}
.y65{bottom:795.705000px;}
.ye0{bottom:796.245000px;}
.y32{bottom:799.665000px;}
.y97{bottom:800.745000px;}
.y119{bottom:801.285000px;}
.y255{bottom:801.825000px;}
.y1ff{bottom:803.805000px;}
.ybd{bottom:804.705000px;}
.y171{bottom:805.245000px;}
.y275{bottom:805.785000px;}
.y1bd{bottom:811.905000px;}
.y19d{bottom:812.265000px;}
.y1dd{bottom:816.405000px;}
.y64{bottom:818.205000px;}
.ydf{bottom:818.745000px;}
.y31{bottom:822.165000px;}
.y96{bottom:823.245000px;}
.y118{bottom:823.785000px;}
.y254{bottom:824.325000px;}
.ybc{bottom:827.205000px;}
.y170{bottom:827.745000px;}
.y1fe{bottom:827.925000px;}
.y274{bottom:828.285000px;}
.y1bb{bottom:838.185000px;}
.y1dc{bottom:840.525000px;}
.y63{bottom:840.705000px;}
.yde{bottom:841.245000px;}
.y30{bottom:844.665000px;}
.y95{bottom:845.745000px;}
.y117{bottom:846.285000px;}
.y253{bottom:846.825000px;}
.ybb{bottom:849.750000px;}
.y16f{bottom:850.290000px;}
.y273{bottom:850.830000px;}
.y1fd{bottom:851.910000px;}
.y23b{bottom:855.330000px;}
.y156{bottom:859.830000px;}
.y1db{bottom:860.730000px;}
.y61{bottom:863.790000px;}
.y1b8{bottom:864.510000px;}
.y2f{bottom:867.210000px;}
.y94{bottom:868.290000px;}
.y116{bottom:868.830000px;}
.y252{bottom:869.370000px;}
.y62{bottom:870.630000px;}
.yba{bottom:872.250000px;}
.y16e{bottom:872.790000px;}
.y272{bottom:873.330000px;}
.y1fc{bottom:875.850000px;}
.y17f{bottom:877.830000px;}
.y2{bottom:879.369000px;}
.y1da{bottom:880.890000px;}
.y60{bottom:885.750000px;}
.ydd{bottom:886.290000px;}
.y19c{bottom:887.010000px;}
.y2e{bottom:889.710000px;}
.y93{bottom:890.790000px;}
.y115{bottom:891.330000px;}
.y251{bottom:891.870000px;}
.yb9{bottom:894.750000px;}
.yf0{bottom:895.290000px;}
.y271{bottom:895.830000px;}
.y14a{bottom:896.370000px;}
.y1fb{bottom:899.970000px;}
.y155{bottom:900.330000px;}
.y1d9{bottom:900.870000px;}
.yf1{bottom:902.130000px;}
.y1b6{bottom:903.210000px;}
.y5f{bottom:908.250000px;}
.ydc{bottom:908.790000px;}
.y19b{bottom:911.130000px;}
.y2d{bottom:912.930000px;}
.y92{bottom:913.290000px;}
.y114{bottom:913.830000px;}
.y250{bottom:914.370000px;}
.yb8{bottom:917.250000px;}
.y16d{bottom:917.790000px;}
.y270{bottom:918.330000px;}
.y1d8{bottom:922.110000px;}
.y1fa{bottom:923.910000px;}
.y17e{bottom:924.630000px;}
.y1b5{bottom:929.490000px;}
.y5e{bottom:930.750000px;}
.y19a{bottom:935.070000px;}
.y91{bottom:935.790000px;}
.y113{bottom:936.330000px;}
.y24f{bottom:936.870000px;}
.yef{bottom:939.750000px;}
.yb6{bottom:940.290000px;}
.y2c{bottom:940.650000px;}
.y26f{bottom:940.830000px;}
.ydb{bottom:941.370000px;}
.y16c{bottom:942.270000px;}
.y1d7{bottom:944.610000px;}
.yb7{bottom:947.130000px;}
.y1f9{bottom:947.850000px;}
.y5d{bottom:953.250000px;}
.y1b4{bottom:955.770000px;}
.y90{bottom:958.290000px;}
.y112{bottom:958.830000px;}
.y199{bottom:959.010000px;}
.y24e{bottom:959.370000px;}
.yb5{bottom:962.250000px;}
.y26e{bottom:963.330000px;}
.y1d6{bottom:965.670000px;}
.y1{bottom:966.726000px;}
.y5c{bottom:975.750000px;}
.y16b{bottom:977.370000px;}
.y169{bottom:978.450000px;}
.y8f{bottom:980.790000px;}
.y1f8{bottom:981.870000px;}
.y167{bottom:982.590000px;}
.y198{bottom:983.130000px;}
.yb4{bottom:984.750000px;}
.y153{bottom:985.290000px;}
.y26d{bottom:985.830000px;}
.y168{bottom:989.250000px;}
.y16a{bottom:991.050000px;}
.y154{bottom:992.130000px;}
.y166{bottom:1000.050000px;}
.y164{bottom:1000.590000px;}
.y8e{bottom:1003.290000px;}
.y163{bottom:1004.010000px;}
.y1b3{bottom:1004.370000px;}
.yb3{bottom:1007.250000px;}
.y5b{bottom:1008.330000px;}
.y165{bottom:1010.670000px;}
.y86{bottom:1026.330000px;}
.y23{bottom:1029.210000px;}
.y22{bottom:1046.310000px;}
.h29{height:18.900000px;}
.h2a{height:19.080000px;}
.h36{height:19.116000px;}
.h3e{height:21.960000px;}
.h3c{height:22.140000px;}
.h3f{height:22.176000px;}
.h35{height:22.500000px;}
.h39{height:22.536000px;}
.h3b{height:22.860000px;}
.h3d{height:23.040000px;}
.h2e{height:25.380000px;}
.h2f{height:25.560000px;}
.h31{height:25.596000px;}
.h14{height:26.033203px;}
.h17{height:28.115859px;}
.h37{height:30.198516px;}
.h7{height:32.130000px;}
.h13{height:34.884492px;}
.h18{height:35.261367px;}
.h30{height:37.980000px;}
.h3a{height:38.016000px;}
.h1d{height:38.671172px;}
.h22{height:40.655391px;}
.h11{height:41.132461px;}
.h9{height:43.215117px;}
.h38{height:45.036000px;}
.h12{height:45.818438px;}
.h6{height:45.900000px;}
.h16{height:46.127812px;}
.h19{height:46.313437px;}
.h15{height:46.736719px;}
.h28{height:47.901094px;}
.h3{height:48.195000px;}
.he{height:50.800781px;}
.h1a{height:51.078516px;}
.hb{height:52.066406px;}
.h10{height:52.628906px;}
.h1b{height:53.398125px;}
.h27{height:53.481486px;}
.h34{height:53.958516px;}
.h2{height:55.080000px;}
.h1f{height:55.825312px;}
.h2c{height:56.278125px;}
.hf{height:57.434766px;}
.h24{height:58.705313px;}
.h1e{height:59.439023px;}
.h41{height:59.582250px;}
.h42{height:61.189805px;}
.h2b{height:62.424492px;}
.h1c{height:66.358125px;}
.hc{height:67.565039px;}
.hd{height:69.248320px;}
.h20{height:69.505312px;}
.h23{height:71.665312px;}
.h21{height:72.385312px;}
.h25{height:75.265313px;}
.h33{height:75.960000px;}
.h26{height:76.705312px;}
.h5{height:78.030000px;}
.h2d{height:92.998125px;}
.h32{height:94.896000px;}
.h4{height:119.055004px;}
.ha{height:124.236000px;}
.h40{height:337.860000px;}
.h43{height:338.040000px;}
.h8{height:1188.000000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w19{width:41.580000px;}
.wd{width:84.096000px;}
.we{width:84.600000px;}
.w18{width:94.500000px;}
.w16{width:94.716000px;}
.w17{width:116.496000px;}
.w1a{width:137.196000px;}
.w12{width:140.436000px;}
.w8{width:141.156000px;}
.w11{width:142.776000px;}
.w13{width:145.116000px;}
.wb{width:150.330000px;}
.w10{width:151.950000px;}
.w14{width:169.050000px;}
.w7{width:181.110000px;}
.w15{width:190.650000px;}
.wc{width:209.190000px;}
.w9{width:235.470000px;}
.wa{width:360.435000px;}
.wf{width:439.485000px;}
.w5{width:594.825000px;}
.w1b{width:608.040000px;}
.w1c{width:608.220000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.w6{width:917.999973px;}
.w4{width:917.999986px;}
.w3{width:918.000000px;}
.x0{left:0.000000px;}
.x66{left:7.740000px;}
.x72{left:10.260000px;}
.x6d{left:13.860000px;}
.x7d{left:16.560000px;}
.x61{left:17.640000px;}
.x7f{left:20.520000px;}
.x7c{left:24.660000px;}
.x6b{left:25.920000px;}
.x60{left:27.180000px;}
.x80{left:30.960000px;}
.x7b{left:32.760000px;}
.x5b{left:34.380000px;}
.x6e{left:37.800000px;}
.x67{left:39.960000px;}
.x5f{left:42.120000px;}
.x81{left:44.280000px;}
.x5d{left:46.260000px;}
.x7e{left:47.385000px;}
.x91{left:49.710000px;}
.x86{left:52.230000px;}
.x5e{left:54.000000px;}
.x59{left:62.100000px;}
.x85{left:63.210000px;}
.x84{left:78.450000px;}
.x68{left:84.600000px;}
.x1{left:102.045000px;}
.x87{left:105.015000px;}
.x2{left:106.297500px;}
.x88{left:131.325000px;}
.x57{left:157.169986px;}
.x5{left:161.669986px;}
.x6{left:164.370000px;}
.x1f{left:166.169986px;}
.x48{left:167.609986px;}
.x13{left:170.309986px;}
.x47{left:171.389986px;}
.xa{left:172.469986px;}
.x2f{left:174.269986px;}
.x35{left:176.069986px;}
.x58{left:179.490000px;}
.x19{left:183.269986px;}
.x1e{left:189.389986px;}
.x36{left:193.529973px;}
.x49{left:199.469986px;}
.x4{left:203.484001px;}
.x37{left:209.189986px;}
.x62{left:210.989986px;}
.x78{left:214.770000px;}
.x44{left:222.509973px;}
.x69{left:229.349986px;}
.x27{left:233.309973px;}
.x45{left:234.749986px;}
.x89{left:236.550000px;}
.x28{left:239.429986px;}
.x77{left:243.929986px;}
.x6a{left:249.509986px;}
.x20{left:259.094986px;}
.x8a{left:262.875000px;}
.x64{left:267.014986px;}
.x76{left:270.434986px;}
.x4c{left:273.314986px;}
.x54{left:274.574973px;}
.x65{left:278.895000px;}
.x3c{left:283.754973px;}
.x8{left:286.095000px;}
.x8b{left:289.185000px;}
.x3d{left:295.994986px;}
.x7{left:297.435000px;}
.x25{left:299.054973px;}
.x26{left:305.174986px;}
.x38{left:308.234973px;}
.x14{left:309.494986px;}
.x79{left:310.575000px;}
.x8c{left:315.510000px;}
.x2b{left:316.514973px;}
.x82{left:317.594986px;}
.x39{left:320.474986px;}
.x2c{left:322.634986px;}
.x6f{left:324.974986px;}
.x4f{left:330.734986px;}
.xe{left:339.554986px;}
.x10{left:342.614986px;}
.x50{left:346.574986px;}
.x17{left:350.714973px;}
.x46{left:355.034986px;}
.x18{left:356.834986px;}
.x5a{left:361.335000px;}
.x8d{left:368.130000px;}
.xd{left:372.854986px;}
.x31{left:375.014973px;}
.x12{left:377.714986px;}
.x11{left:382.754986px;}
.x32{left:387.254986px;}
.x70{left:392.475000px;}
.xf{left:395.354986px;}
.x63{left:400.754986px;}
.x30{left:408.134973px;}
.x2d{left:421.274973px;}
.xc{left:423.794986px;}
.xb{left:427.784986px;}
.x51{left:429.404973px;}
.x2e{left:434.444986px;}
.x4d{left:435.524986px;}
.x52{left:441.644986px;}
.x15{left:447.764986px;}
.x3{left:454.959000px;}
.x6c{left:459.465000px;}
.x3a{left:472.604973px;}
.x3b{left:484.844986px;}
.x9{left:492.420000px;}
.x8e{left:499.680000px;}
.x5c{left:503.205000px;}
.x1c{left:506.984973px;}
.x42{left:511.844973px;}
.x1d{left:515.264986px;}
.x43{left:524.084986px;}
.x8f{left:525.990000px;}
.x3e{left:532.184973px;}
.x73{left:533.805000px;}
.x29{left:535.064973px;}
.x71{left:536.145000px;}
.x2a{left:541.184986px;}
.x3f{left:544.424986px;}
.x23{left:551.804973px;}
.x24{left:557.924986px;}
.x7a{left:566.205000px;}
.x90{left:578.595000px;}
.x4e{left:581.864986px;}
.x74{left:631.769973px;}
.x55{left:632.849973px;}
.x75{left:642.209986px;}
.x4b{left:644.009986px;}
.x56{left:645.089986px;}
.x33{left:648.689973px;}
.x16{left:654.089986px;}
.x34{left:660.929986px;}
.x21{left:705.389973px;}
.x22{left:714.209986px;}
.x40{left:716.189973px;}
.x4a{left:720.869986px;}
.x41{left:728.429986px;}
.x1a{left:750.389973px;}
.x1b{left:756.509986px;}
.x83{left:771.479986px;}
.x53{left:782.819986px;}
@media print{
.vc{vertical-align:-14.826667pt;}
.v5{vertical-align:-11.520000pt;}
.v2{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:2.560000pt;}
.v9{vertical-align:5.120000pt;}
.v8{vertical-align:6.400000pt;}
.v4{vertical-align:11.520000pt;}
.v7{vertical-align:14.080000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.280000pt;}
.va{vertical-align:24.480000pt;}
.vb{vertical-align:35.200000pt;}
.ls3a{letter-spacing:-0.720000pt;}
.ls14{letter-spacing:-0.688000pt;}
.lsa{letter-spacing:-0.640000pt;}
.ls44{letter-spacing:-0.481067pt;}
.ls39{letter-spacing:-0.342933pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.297067pt;}
.ls38{letter-spacing:-0.288000pt;}
.ls46{letter-spacing:-0.271467pt;}
.ls35{letter-spacing:-0.266133pt;}
.ls20{letter-spacing:-0.242133pt;}
.lse{letter-spacing:-0.196267pt;}
.ls17{letter-spacing:-0.194667pt;}
.ls47{letter-spacing:-0.135467pt;}
.ls19{letter-spacing:-0.079467pt;}
.ls34{letter-spacing:-0.072533pt;}
.ls37{letter-spacing:-0.064000pt;}
.ls10{letter-spacing:-0.048640pt;}
.lsf{letter-spacing:-0.046080pt;}
.ls7{letter-spacing:-0.025600pt;}
.lsb{letter-spacing:-0.024320pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.000005pt;}
.ls6{letter-spacing:0.024320pt;}
.ls33{letter-spacing:0.048640pt;}
.ls36{letter-spacing:0.064000pt;}
.ls42{letter-spacing:0.097067pt;}
.ls45{letter-spacing:0.097280pt;}
.ls2{letter-spacing:0.106240pt;}
.ls27{letter-spacing:0.107520pt;}
.ls1e{letter-spacing:0.122667pt;}
.ls13{letter-spacing:0.128000pt;}
.ls1d{letter-spacing:0.154880pt;}
.ls43{letter-spacing:0.158933pt;}
.ls4{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.252800pt;}
.ls3{letter-spacing:0.255360pt;}
.ls49{letter-spacing:0.297067pt;}
.ls3d{letter-spacing:0.307200pt;}
.ls1{letter-spacing:0.320000pt;}
.ls32{letter-spacing:0.640000pt;}
.ls15{letter-spacing:1.280000pt;}
.ls11{letter-spacing:2.240000pt;}
.ls2e{letter-spacing:2.254720pt;}
.ls23{letter-spacing:2.692480pt;}
.ls3c{letter-spacing:2.739200pt;}
.ls12{letter-spacing:2.880000pt;}
.ls2d{letter-spacing:2.899200pt;}
.ls48{letter-spacing:3.200000pt;}
.ls3f{letter-spacing:3.379200pt;}
.ls31{letter-spacing:3.600000pt;}
.ls18{letter-spacing:3.864320pt;}
.ls2c{letter-spacing:4.172800pt;}
.ls1c{letter-spacing:5.120000pt;}
.ls3b{letter-spacing:7.840000pt;}
.ls1a{letter-spacing:8.934400pt;}
.ls28{letter-spacing:9.067520pt;}
.ls1b{letter-spacing:9.574400pt;}
.ls2a{letter-spacing:9.707520pt;}
.ls24{letter-spacing:12.292480pt;}
.ls16{letter-spacing:12.800000pt;}
.ls25{letter-spacing:12.976640pt;}
.ls22{letter-spacing:14.852480pt;}
.ls30{letter-spacing:16.974720pt;}
.ls2f{letter-spacing:17.614720pt;}
.lsd{letter-spacing:18.560000pt;}
.ls21{letter-spacing:19.532800pt;}
.lsc{letter-spacing:38.103040pt;}
.ls3e{letter-spacing:63.539200pt;}
.ls26{letter-spacing:81.774080pt;}
.ls29{letter-spacing:81.880747pt;}
.ls2b{letter-spacing:81.934080pt;}
.ls41{letter-spacing:105.907200pt;}
.ls40{letter-spacing:346.067200pt;}
.ws3a{word-spacing:-58.880000pt;}
.ws3{word-spacing:-21.535360pt;}
.wsd{word-spacing:-16.128000pt;}
.ws10{word-spacing:-16.000000pt;}
.ws36{word-spacing:-14.720000pt;}
.ws39{word-spacing:-14.584533pt;}
.ws37{word-spacing:-14.448533pt;}
.ws40{word-spacing:-14.377067pt;}
.ws8{word-spacing:-14.080000pt;}
.wsc{word-spacing:-14.033920pt;}
.wse{word-spacing:-13.885333pt;}
.ws9{word-spacing:-13.782933pt;}
.ws2f{word-spacing:-13.737067pt;}
.ws2{word-spacing:-13.600000pt;}
.ws2b{word-spacing:-13.440000pt;}
.ws1{word-spacing:-12.960000pt;}
.ws19{word-spacing:-12.953600pt;}
.ws26{word-spacing:-12.928000pt;}
.ws1b{word-spacing:-12.907520pt;}
.ws4{word-spacing:-12.664320pt;}
.ws5{word-spacing:-12.640000pt;}
.ws20{word-spacing:-12.633600pt;}
.wsa{word-spacing:-12.615680pt;}
.ws30{word-spacing:-12.591360pt;}
.ws32{word-spacing:-12.549333pt;}
.ws12{word-spacing:-12.513067pt;}
.ws31{word-spacing:-12.487467pt;}
.wsb{word-spacing:-12.443733pt;}
.ws18{word-spacing:-12.390405pt;}
.ws15{word-spacing:-12.390400pt;}
.ws6{word-spacing:-12.320000pt;}
.ws28{word-spacing:-12.124267pt;}
.ws3c{word-spacing:-12.034048pt;}
.ws3d{word-spacing:-12.005120pt;}
.ws34{word-spacing:-11.909333pt;}
.ws35{word-spacing:-11.750400pt;}
.ws38{word-spacing:-10.720000pt;}
.ws21{word-spacing:-9.433600pt;}
.ws11{word-spacing:-9.280000pt;}
.wsf{word-spacing:-9.200533pt;}
.ws13{word-spacing:-8.870400pt;}
.ws3b{word-spacing:-8.560000pt;}
.ws2d{word-spacing:-8.064000pt;}
.ws2c{word-spacing:-8.000000pt;}
.ws2e{word-spacing:-7.936000pt;}
.ws17{word-spacing:-3.363200pt;}
.ws14{word-spacing:-2.723200pt;}
.ws1e{word-spacing:-2.498560pt;}
.ws23{word-spacing:-1.858560pt;}
.ws7{word-spacing:-0.050560pt;}
.ws0{word-spacing:0.000000pt;}
.ws1d{word-spacing:0.023040pt;}
.ws1f{word-spacing:0.129707pt;}
.ws16{word-spacing:2.450987pt;}
.ws29{word-spacing:2.498560pt;}
.ws2a{word-spacing:3.138560pt;}
.ws1a{word-spacing:3.223040pt;}
.ws1c{word-spacing:5.418880pt;}
.ws33{word-spacing:47.938560pt;}
.ws3f{word-spacing:119.053312pt;}
.ws22{word-spacing:273.578880pt;}
.ws24{word-spacing:315.818880pt;}
.ws27{word-spacing:339.658880pt;}
.ws25{word-spacing:340.138880pt;}
.ws3e{word-spacing:600.500907pt;}
._1f{margin-left:-13.175893pt;}
._1b{margin-left:-6.275200pt;}
._10{margin-left:-4.533760pt;}
._b{margin-left:-3.281920pt;}
._7{margin-left:-2.350080pt;}
._1{margin-left:-1.271893pt;}
._0{width:0.903040pt;}
._2{width:2.499200pt;}
._a{width:3.818880pt;}
._4{width:4.811093pt;}
._3{width:5.713280pt;}
._e{width:6.758400pt;}
._f{width:7.844267pt;}
._11{width:8.826453pt;}
._6{width:9.960320pt;}
._5{width:10.920960pt;}
._12{width:12.503040pt;}
._8{width:14.359040pt;}
._9{width:15.485440pt;}
._c{width:16.450560pt;}
._15{width:17.797120pt;}
._17{width:18.792107pt;}
._19{width:19.745707pt;}
._1a{width:20.752427pt;}
._25{width:21.762133pt;}
._21{width:24.273920pt;}
._22{width:25.240747pt;}
._23{width:31.764480pt;}
._24{width:32.834560pt;}
._1e{width:59.733333pt;}
._16{width:61.440000pt;}
._26{width:63.697920pt;}
._27{width:64.696320pt;}
._1d{width:80.185173pt;}
._14{width:87.527040pt;}
._13{width:88.640000pt;}
._18{width:114.055253pt;}
._20{width:120.243200pt;}
._1c{width:156.339200pt;}
._d{width:170.745173pt;}
.fsa{font-size:32.000000pt;}
.fsc{font-size:34.560000pt;}
.fsd{font-size:37.120000pt;}
.fs4{font-size:37.333333pt;}
.fse{font-size:40.320000pt;}
.fs7{font-size:42.880000pt;}
.fs8{font-size:50.560000pt;}
.fs5{font-size:53.120000pt;}
.fs10{font-size:53.248000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs9{font-size:56.320000pt;}
.fsb{font-size:58.880000pt;}
.fsf{font-size:59.365899pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:85.120000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y190{bottom:3.200000pt;}
.y192{bottom:3.360000pt;}
.y2b{bottom:3.520000pt;}
.y1d0{bottom:4.000000pt;}
.y210{bottom:4.480000pt;}
.y20a{bottom:4.640000pt;}
.y208{bottom:4.960000pt;}
.y216{bottom:5.120000pt;}
.y20f{bottom:5.920000pt;}
.y1b7{bottom:6.080000pt;}
.y1bc{bottom:6.240000pt;}
.y23a{bottom:6.653333pt;}
.y207{bottom:6.720000pt;}
.y20d{bottom:6.880000pt;}
.y1c2{bottom:9.120000pt;}
.y1ba{bottom:11.680000pt;}
.y205{bottom:19.040000pt;}
.y1b9{bottom:20.160000pt;}
.y2a{bottom:21.280000pt;}
.y238{bottom:23.453333pt;}
.y1e7{bottom:24.000000pt;}
.y24{bottom:30.400000pt;}
.y29{bottom:36.640000pt;}
.y1c9{bottom:36.960000pt;}
.y1c6{bottom:36.986667pt;}
.y5a{bottom:40.160000pt;}
.y8d{bottom:40.800000pt;}
.y236{bottom:46.333333pt;}
.y28{bottom:52.000000pt;}
.y1c8{bottom:53.920000pt;}
.y1c5{bottom:53.946667pt;}
.y59{bottom:55.520000pt;}
.y8c{bottom:58.560000pt;}
.y5{bottom:59.133337pt;}
.y27{bottom:67.200000pt;}
.y1c4{bottom:70.746667pt;}
.y58{bottom:70.880000pt;}
.y8b{bottom:73.920000pt;}
.y230{bottom:78.080000pt;}
.y26{bottom:82.560000pt;}
.y57{bottom:86.240000pt;}
.y4{bottom:86.333337pt;}
.y8a{bottom:89.280000pt;}
.y25{bottom:97.920000pt;}
.y56{bottom:101.440000pt;}
.y89{bottom:104.640000pt;}
.y231{bottom:109.506667pt;}
.y55{bottom:116.800000pt;}
.y88{bottom:119.840000pt;}
.y21{bottom:123.790666pt;}
.y237{bottom:129.666667pt;}
.y54{bottom:132.160000pt;}
.y87{bottom:135.200000pt;}
.y232{bottom:140.893333pt;}
.y111{bottom:147.386667pt;}
.y162{bottom:147.546667pt;}
.y1b2{bottom:148.986667pt;}
.yb2{bottom:150.426667pt;}
.y53{bottom:151.706667pt;}
.y110{bottom:152.026667pt;}
.y24d{bottom:152.186667pt;}
.y85{bottom:152.826667pt;}
.yb1{bottom:155.066667pt;}
.y221{bottom:155.226667pt;}
.y133{bottom:155.866667pt;}
.y84{bottom:157.466667pt;}
.y1d5{bottom:158.266667pt;}
.y132{bottom:160.506667pt;}
.y21c{bottom:160.666667pt;}
.y1f7{bottom:161.946667pt;}
.y161{bottom:162.906667pt;}
.y28d{bottom:163.866667pt;}
.yb0{bottom:164.986667pt;}
.y17d{bottom:165.146667pt;}
.y52{bottom:166.426667pt;}
.y10f{bottom:167.226667pt;}
.yda{bottom:167.546667pt;}
.y187{bottom:168.026667pt;}
.yaf{bottom:169.626667pt;}
.y17c{bottom:169.786667pt;}
.yd9{bottom:172.186667pt;}
.y233{bottom:172.320000pt;}
.y26c{bottom:172.666667pt;}
.y83{bottom:172.826667pt;}
.y1d4{bottom:173.786667pt;}
.y18{bottom:175.052000pt;}
.y220{bottom:175.226667pt;}
.y131{bottom:175.866667pt;}
.y1f6{bottom:176.506667pt;}
.y82{bottom:177.466667pt;}
.y160{bottom:178.906667pt;}
.yee{bottom:179.546667pt;}
.yae{bottom:180.346667pt;}
.y51{bottom:181.146667pt;}
.y10e{bottom:181.786667pt;}
.y15f{bottom:183.546667pt;}
.y152{bottom:184.986667pt;}
.y17b{bottom:185.786667pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.yd8{bottom:187.546667pt;}
.y22e{bottom:188.506667pt;}
.y197{bottom:189.626667pt;}
.y130{bottom:190.586667pt;}
.yd7{bottom:192.186667pt;}
.y26b{bottom:192.666667pt;}
.y81{bottom:192.826667pt;}
.y21b{bottom:193.786667pt;}
.yed{bottom:194.106667pt;}
.y15e{bottom:194.266667pt;}
.y1d3{bottom:194.426667pt;}
.y12f{bottom:195.226667pt;}
.y10d{bottom:196.506667pt;}
.y28c{bottom:196.666667pt;}
.y1f5{bottom:197.146667pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y1b1{bottom:198.906667pt;}
.y151{bottom:199.706667pt;}
.y10c{bottom:201.146667pt;}
.y1b0{bottom:201.786667pt;}
.y149{bottom:202.266667pt;}
.y50{bottom:203.546667pt;}
.y186{bottom:203.706667pt;}
.y150{bottom:204.346667pt;}
.y196{bottom:205.626667pt;}
.y12e{bottom:205.946667pt;}
.y80{bottom:207.546667pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.yec{bottom:208.666667pt;}
.y15d{bottom:208.986667pt;}
.y22d{bottom:209.786667pt;}
.y17a{bottom:211.706667pt;}
.y7f{bottom:212.186667pt;}
.y26a{bottom:212.666667pt;}
.yeb{bottom:213.306667pt;}
.y15c{bottom:213.626667pt;}
.y21a{bottom:214.106667pt;}
.y14f{bottom:215.066667pt;}
.y21f{bottom:215.226667pt;}
.y10b{bottom:216.506667pt;}
.y148{bottom:216.826667pt;}
.y4f{bottom:218.106667pt;}
.y1f4{bottom:220.826667pt;}
.y147{bottom:221.466667pt;}
.y7e{bottom:222.906667pt;}
.y185{bottom:223.706667pt;}
.yea{bottom:224.026667pt;}
.yad{bottom:227.706667pt;}
.y195{bottom:229.146667pt;}
.y15b{bottom:229.626667pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y22c{bottom:231.226667pt;}
.y179{bottom:231.706667pt;}
.y10a{bottom:231.866667pt;}
.y146{bottom:232.186667pt;}
.y4e{bottom:232.666667pt;}
.y219{bottom:233.786667pt;}
.y234{bottom:235.133333pt;}
.y21e{bottom:235.226667pt;}
.y1d2{bottom:235.706667pt;}
.y1f3{bottom:241.466667pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y184{bottom:243.706667pt;}
.y194{bottom:246.586667pt;}
.y109{bottom:247.066667pt;}
.y4d{bottom:247.226667pt;}
.yac{bottom:247.706667pt;}
.ye8{bottom:248.186667pt;}
.y108{bottom:251.706667pt;}
.y12c{bottom:252.186667pt;}
.y1af{bottom:252.506667pt;}
.y269{bottom:252.666667pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y218{bottom:254.106667pt;}
.ye9{bottom:254.266667pt;}
.yd6{bottom:255.226667pt;}
.y1d1{bottom:256.346667pt;}
.y12d{bottom:258.266667pt;}
.y1f2{bottom:262.106667pt;}
.y28b{bottom:262.426667pt;}
.y4c{bottom:262.586667pt;}
.y145{bottom:263.226667pt;}
.y183{bottom:263.706667pt;}
.y193{bottom:264.186667pt;}
.y235{bottom:266.533333pt;}
.y7d{bottom:267.226667pt;}
.yab{bottom:267.706667pt;}
.y107{bottom:271.066667pt;}
.y12b{bottom:271.706667pt;}
.y24c{bottom:272.186667pt;}
.y268{bottom:272.666667pt;}
.y22b{bottom:273.786667pt;}
.y1ae{bottom:273.946667pt;}
.y217{bottom:274.426667pt;}
.y21d{bottom:275.226667pt;}
.yd4{bottom:275.706667pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y1cf{bottom:277.146667pt;}
.y191{bottom:281.626667pt;}
.yd5{bottom:281.786667pt;}
.y1f1{bottom:282.746667pt;}
.y144{bottom:283.226667pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y7c{bottom:287.226667pt;}
.yaa{bottom:287.706667pt;}
.y106{bottom:291.226667pt;}
.y12a{bottom:291.706667pt;}
.y24b{bottom:292.186667pt;}
.y182{bottom:292.666667pt;}
.y215{bottom:294.746667pt;}
.yd3{bottom:295.226667pt;}
.y28a{bottom:296.186667pt;}
.y18f{bottom:299.226667pt;}
.y4b{bottom:299.546667pt;}
.y143{bottom:303.226667pt;}
.y1f0{bottom:303.546667pt;}
.y7b{bottom:307.226667pt;}
.ya9{bottom:307.706667pt;}
.yf{bottom:309.452000pt;}
.y105{bottom:311.226667pt;}
.y178{bottom:311.706667pt;}
.y128{bottom:312.186667pt;}
.y267{bottom:312.666667pt;}
.yd2{bottom:315.226667pt;}
.y289{bottom:316.186667pt;}
.y22a{bottom:316.506667pt;}
.y1ad{bottom:316.666667pt;}
.y1ce{bottom:317.946667pt;}
.y129{bottom:318.266667pt;}
.y142{bottom:323.226667pt;}
.y1ef{bottom:324.186667pt;}
.y7a{bottom:327.226667pt;}
.ya8{bottom:327.706667pt;}
.y181{bottom:328.666667pt;}
.y104{bottom:331.226667pt;}
.y127{bottom:331.706667pt;}
.y24a{bottom:332.186667pt;}
.y266{bottom:332.666667pt;}
.y4a{bottom:334.426667pt;}
.yd1{bottom:335.226667pt;}
.y214{bottom:335.546667pt;}
.y288{bottom:336.186667pt;}
.y18e{bottom:336.666667pt;}
.y229{bottom:337.786667pt;}
.y1ac{bottom:337.946667pt;}
.y141{bottom:343.226667pt;}
.ye{bottom:343.809333pt;}
.y1ee{bottom:344.866667pt;}
.y79{bottom:347.266667pt;}
.ya7{bottom:347.746667pt;}
.y103{bottom:351.266667pt;}
.y126{bottom:351.746667pt;}
.y249{bottom:352.226667pt;}
.y15a{bottom:352.386667pt;}
.y265{bottom:352.706667pt;}
.yd0{bottom:355.266667pt;}
.y213{bottom:355.906667pt;}
.y287{bottom:356.226667pt;}
.y49{bottom:357.026667pt;}
.y1ab{bottom:359.266667pt;}
.y1cd{bottom:360.706667pt;}
.yd{bottom:362.706666pt;}
.y140{bottom:363.266667pt;}
.y1ed{bottom:365.506667pt;}
.y78{bottom:367.266667pt;}
.ya6{bottom:367.746667pt;}
.ye6{bottom:368.226667pt;}
.y102{bottom:371.266667pt;}
.y48{bottom:371.746667pt;}
.y248{bottom:372.226667pt;}
.y264{bottom:372.706667pt;}
.ye7{bottom:374.306667pt;}
.ycf{bottom:375.266667pt;}
.y286{bottom:376.226667pt;}
.y212{bottom:376.386667pt;}
.y180{bottom:380.226667pt;}
.y228{bottom:380.546667pt;}
.y1aa{bottom:380.706667pt;}
.y1cc{bottom:381.986667pt;}
.y13f{bottom:383.266667pt;}
.y1ec{bottom:386.146667pt;}
.y47{bottom:386.466667pt;}
.y77{bottom:387.266667pt;}
.ya5{bottom:387.746667pt;}
.y101{bottom:391.266667pt;}
.y125{bottom:391.746667pt;}
.y176{bottom:392.226667pt;}
.y263{bottom:392.706667pt;}
.yce{bottom:395.266667pt;}
.y211{bottom:395.906667pt;}
.y285{bottom:396.226667pt;}
.y177{bottom:398.306667pt;}
.y46{bottom:401.186667pt;}
.y227{bottom:401.826667pt;}
.y1a9{bottom:401.986667pt;}
.y13d{bottom:403.746667pt;}
.y1cb{bottom:405.186667pt;}
.y1eb{bottom:406.786667pt;}
.y76{bottom:407.266667pt;}
.ya4{bottom:407.746667pt;}
.y13e{bottom:409.826667pt;}
.y100{bottom:411.266667pt;}
.y124{bottom:411.746667pt;}
.y247{bottom:412.226667pt;}
.y262{bottom:412.706667pt;}
.ycd{bottom:415.266667pt;}
.y45{bottom:415.746667pt;}
.y284{bottom:416.226667pt;}
.y20e{bottom:416.386667pt;}
.y1a8{bottom:423.266667pt;}
.y13c{bottom:424.706667pt;}
.y75{bottom:427.266667pt;}
.y1ea{bottom:427.586667pt;}
.ye5{bottom:427.746667pt;}
.ya2{bottom:428.226667pt;}
.y1ca{bottom:428.546667pt;}
.y44{bottom:430.466667pt;}
.yff{bottom:431.266667pt;}
.y123{bottom:431.746667pt;}
.y246{bottom:432.226667pt;}
.y261{bottom:432.706667pt;}
.ya3{bottom:434.306667pt;}
.ycc{bottom:435.266667pt;}
.y283{bottom:436.226667pt;}
.y20c{bottom:436.546667pt;}
.y226{bottom:444.546667pt;}
.y1a7{bottom:444.706667pt;}
.y43{bottom:445.186667pt;}
.y13b{bottom:445.986667pt;}
.yc{bottom:446.990669pt;}
.y74{bottom:447.266667pt;}
.ye4{bottom:447.746667pt;}
.ya0{bottom:448.226667pt;}
.yfe{bottom:451.266667pt;}
.y122{bottom:451.746667pt;}
.y1c7{bottom:451.906667pt;}
.y245{bottom:452.226667pt;}
.y260{bottom:452.706667pt;}
.ya1{bottom:454.306667pt;}
.ycb{bottom:455.266667pt;}
.y282{bottom:456.226667pt;}
.y20b{bottom:457.026667pt;}
.y42{bottom:459.746667pt;}
.yb{bottom:462.990669pt;}
.y225{bottom:465.826667pt;}
.y1a6{bottom:465.986667pt;}
.y13a{bottom:467.266667pt;}
.y72{bottom:467.746667pt;}
.y1e9{bottom:468.866667pt;}
.yfd{bottom:471.266667pt;}
.y121{bottom:471.746667pt;}
.y244{bottom:472.226667pt;}
.y25f{bottom:472.706667pt;}
.y73{bottom:473.826667pt;}
.y41{bottom:474.466667pt;}
.yca{bottom:475.266667pt;}
.y281{bottom:476.226667pt;}
.y209{bottom:477.346667pt;}
.ya{bottom:478.990666pt;}
.y71{bottom:487.266667pt;}
.y9f{bottom:487.746667pt;}
.y14d{bottom:488.226667pt;}
.y139{bottom:488.706667pt;}
.y40{bottom:489.186667pt;}
.y1e8{bottom:489.506667pt;}
.yfc{bottom:491.266667pt;}
.y120{bottom:491.746667pt;}
.y243{bottom:492.226667pt;}
.y25e{bottom:492.706667pt;}
.y14e{bottom:494.306667pt;}
.y9{bottom:494.990666pt;}
.y159{bottom:495.266667pt;}
.yc8{bottom:495.746667pt;}
.y280{bottom:496.226667pt;}
.y206{bottom:497.026667pt;}
.yc9{bottom:501.826667pt;}
.y3f{bottom:503.746667pt;}
.y70{bottom:507.266667pt;}
.y9e{bottom:507.746667pt;}
.y224{bottom:508.546667pt;}
.y1a5{bottom:508.706667pt;}
.y138{bottom:509.986667pt;}
.y1e6{bottom:510.146667pt;}
.yfb{bottom:511.266667pt;}
.y11f{bottom:511.746667pt;}
.y242{bottom:512.226667pt;}
.y25d{bottom:512.706667pt;}
.yc7{bottom:515.266667pt;}
.y27f{bottom:516.226667pt;}
.y204{bottom:517.986667pt;}
.y3e{bottom:518.466667pt;}
.y1c3{bottom:520.066667pt;}
.y6f{bottom:527.266667pt;}
.y9d{bottom:527.746667pt;}
.y14b{bottom:528.226667pt;}
.y1a4{bottom:529.986667pt;}
.yfa{bottom:531.266667pt;}
.y11e{bottom:531.746667pt;}
.y241{bottom:532.226667pt;}
.y25c{bottom:532.706667pt;}
.y3d{bottom:533.186667pt;}
.y14c{bottom:534.306667pt;}
.yc6{bottom:535.266667pt;}
.y27e{bottom:536.226667pt;}
.y223{bottom:538.786667pt;}
.y6e{bottom:547.266667pt;}
.y3c{bottom:547.746667pt;}
.yf9{bottom:551.293333pt;}
.y11d{bottom:551.773333pt;}
.y240{bottom:552.253333pt;}
.y137{bottom:552.733333pt;}
.y1e5{bottom:554.813333pt;}
.yc5{bottom:555.293333pt;}
.y27d{bottom:556.253333pt;}
.y3b{bottom:562.493333pt;}
.y6d{bottom:567.293333pt;}
.y9c{bottom:567.773333pt;}
.y222{bottom:570.653333pt;}
.yf8{bottom:571.293333pt;}
.y11c{bottom:571.773333pt;}
.y23f{bottom:572.253333pt;}
.y239{bottom:572.320000pt;}
.y22f{bottom:572.480000pt;}
.y1a3{bottom:572.733333pt;}
.y8{bottom:573.786667pt;}
.y136{bottom:574.013333pt;}
.yc4{bottom:575.293333pt;}
.y27c{bottom:576.253333pt;}
.y3a{bottom:577.213333pt;}
.y6b{bottom:587.773333pt;}
.y1e4{bottom:590.333333pt;}
.yf7{bottom:591.293333pt;}
.y39{bottom:591.773333pt;}
.y23e{bottom:592.253333pt;}
.y7{bottom:592.685334pt;}
.y25b{bottom:592.733333pt;}
.y6c{bottom:593.853333pt;}
.y1a2{bottom:594.013333pt;}
.yc3{bottom:595.293333pt;}
.y134{bottom:595.773333pt;}
.y27b{bottom:596.253333pt;}
.y175{bottom:600.733333pt;}
.y135{bottom:601.853333pt;}
.y1c1{bottom:605.053333pt;}
.y38{bottom:606.493333pt;}
.y6a{bottom:607.293333pt;}
.y9b{bottom:607.773333pt;}
.y203{bottom:607.933333pt;}
.y1e2{bottom:610.333333pt;}
.y18c{bottom:612.253333pt;}
.y25a{bottom:612.733333pt;}
.y1e3{bottom:614.973333pt;}
.yc2{bottom:615.293333pt;}
.y157{bottom:615.773333pt;}
.y27a{bottom:616.253333pt;}
.y18d{bottom:618.333333pt;}
.yf6{bottom:620.253333pt;}
.y11b{bottom:620.733333pt;}
.y37{bottom:620.893333pt;}
.y158{bottom:621.853333pt;}
.y69{bottom:627.293333pt;}
.y9a{bottom:627.773333pt;}
.y1c0{bottom:628.413333pt;}
.y202{bottom:629.213333pt;}
.y1e1{bottom:629.853333pt;}
.y18b{bottom:631.773333pt;}
.y23d{bottom:632.253333pt;}
.y259{bottom:632.733333pt;}
.y36{bottom:635.133333pt;}
.yc1{bottom:635.293333pt;}
.y174{bottom:635.773333pt;}
.y279{bottom:636.253333pt;}
.y1a1{bottom:636.733333pt;}
.y6{bottom:645.598667pt;}
.y68{bottom:647.293333pt;}
.ye3{bottom:647.773333pt;}
.y1e0{bottom:649.853333pt;}
.y201{bottom:650.493333pt;}
.y18a{bottom:651.773333pt;}
.y23c{bottom:652.253333pt;}
.y258{bottom:652.733333pt;}
.y35{bottom:653.533333pt;}
.yc0{bottom:655.293333pt;}
.yf4{bottom:655.773333pt;}
.y278{bottom:656.253333pt;}
.y99{bottom:656.733333pt;}
.y1a0{bottom:658.013333pt;}
.yf5{bottom:661.853333pt;}
.y67{bottom:667.293333pt;}
.ye2{bottom:667.773333pt;}
.y3{bottom:668.977329pt;}
.y1df{bottom:669.853333pt;}
.y34{bottom:671.933333pt;}
.y188{bottom:672.253333pt;}
.y257{bottom:672.733333pt;}
.y1bf{bottom:675.133333pt;}
.ybf{bottom:675.293333pt;}
.y173{bottom:675.773333pt;}
.y277{bottom:676.253333pt;}
.y189{bottom:678.333333pt;}
.y19f{bottom:679.293333pt;}
.y66{bottom:687.293333pt;}
.ye1{bottom:687.773333pt;}
.y1de{bottom:689.853333pt;}
.y33{bottom:690.813333pt;}
.y98{bottom:691.773333pt;}
.y11a{bottom:692.253333pt;}
.y256{bottom:692.733333pt;}
.y200{bottom:693.213333pt;}
.ybe{bottom:695.293333pt;}
.yf2{bottom:695.773333pt;}
.y276{bottom:696.253333pt;}
.y172{bottom:696.893333pt;}
.y1be{bottom:698.333333pt;}
.y19e{bottom:700.733333pt;}
.yf3{bottom:701.853333pt;}
.y65{bottom:707.293333pt;}
.ye0{bottom:707.773333pt;}
.y32{bottom:710.813333pt;}
.y97{bottom:711.773333pt;}
.y119{bottom:712.253333pt;}
.y255{bottom:712.733333pt;}
.y1ff{bottom:714.493333pt;}
.ybd{bottom:715.293333pt;}
.y171{bottom:715.773333pt;}
.y275{bottom:716.253333pt;}
.y1bd{bottom:721.693333pt;}
.y19d{bottom:722.013333pt;}
.y1dd{bottom:725.693333pt;}
.y64{bottom:727.293333pt;}
.ydf{bottom:727.773333pt;}
.y31{bottom:730.813333pt;}
.y96{bottom:731.773333pt;}
.y118{bottom:732.253333pt;}
.y254{bottom:732.733333pt;}
.ybc{bottom:735.293333pt;}
.y170{bottom:735.773333pt;}
.y1fe{bottom:735.933333pt;}
.y274{bottom:736.253333pt;}
.y1bb{bottom:745.053333pt;}
.y1dc{bottom:747.133333pt;}
.y63{bottom:747.293333pt;}
.yde{bottom:747.773333pt;}
.y30{bottom:750.813333pt;}
.y95{bottom:751.773333pt;}
.y117{bottom:752.253333pt;}
.y253{bottom:752.733333pt;}
.ybb{bottom:755.333333pt;}
.y16f{bottom:755.813333pt;}
.y273{bottom:756.293333pt;}
.y1fd{bottom:757.253333pt;}
.y23b{bottom:760.293333pt;}
.y156{bottom:764.293333pt;}
.y1db{bottom:765.093333pt;}
.y61{bottom:767.813333pt;}
.y1b8{bottom:768.453333pt;}
.y2f{bottom:770.853333pt;}
.y94{bottom:771.813333pt;}
.y116{bottom:772.293333pt;}
.y252{bottom:772.773333pt;}
.y62{bottom:773.893333pt;}
.yba{bottom:775.333333pt;}
.y16e{bottom:775.813333pt;}
.y272{bottom:776.293333pt;}
.y1fc{bottom:778.533333pt;}
.y17f{bottom:780.293333pt;}
.y2{bottom:781.661334pt;}
.y1da{bottom:783.013333pt;}
.y60{bottom:787.333333pt;}
.ydd{bottom:787.813333pt;}
.y19c{bottom:788.453333pt;}
.y2e{bottom:790.853333pt;}
.y93{bottom:791.813333pt;}
.y115{bottom:792.293333pt;}
.y251{bottom:792.773333pt;}
.yb9{bottom:795.333333pt;}
.yf0{bottom:795.813333pt;}
.y271{bottom:796.293333pt;}
.y14a{bottom:796.773333pt;}
.y1fb{bottom:799.973333pt;}
.y155{bottom:800.293333pt;}
.y1d9{bottom:800.773333pt;}
.yf1{bottom:801.893333pt;}
.y1b6{bottom:802.853333pt;}
.y5f{bottom:807.333333pt;}
.ydc{bottom:807.813333pt;}
.y19b{bottom:809.893333pt;}
.y2d{bottom:811.493333pt;}
.y92{bottom:811.813333pt;}
.y114{bottom:812.293333pt;}
.y250{bottom:812.773333pt;}
.yb8{bottom:815.333333pt;}
.y16d{bottom:815.813333pt;}
.y270{bottom:816.293333pt;}
.y1d8{bottom:819.653333pt;}
.y1fa{bottom:821.253333pt;}
.y17e{bottom:821.893333pt;}
.y1b5{bottom:826.213333pt;}
.y5e{bottom:827.333333pt;}
.y19a{bottom:831.173333pt;}
.y91{bottom:831.813333pt;}
.y113{bottom:832.293333pt;}
.y24f{bottom:832.773333pt;}
.yef{bottom:835.333333pt;}
.yb6{bottom:835.813333pt;}
.y2c{bottom:836.133333pt;}
.y26f{bottom:836.293333pt;}
.ydb{bottom:836.773333pt;}
.y16c{bottom:837.573333pt;}
.y1d7{bottom:839.653333pt;}
.yb7{bottom:841.893333pt;}
.y1f9{bottom:842.533333pt;}
.y5d{bottom:847.333333pt;}
.y1b4{bottom:849.573333pt;}
.y90{bottom:851.813333pt;}
.y112{bottom:852.293333pt;}
.y199{bottom:852.453333pt;}
.y24e{bottom:852.773333pt;}
.yb5{bottom:855.333333pt;}
.y26e{bottom:856.293333pt;}
.y1d6{bottom:858.373333pt;}
.y1{bottom:859.312000pt;}
.y5c{bottom:867.333333pt;}
.y16b{bottom:868.773333pt;}
.y169{bottom:869.733333pt;}
.y8f{bottom:871.813333pt;}
.y1f8{bottom:872.773333pt;}
.y167{bottom:873.413333pt;}
.y198{bottom:873.893333pt;}
.yb4{bottom:875.333333pt;}
.y153{bottom:875.813333pt;}
.y26d{bottom:876.293333pt;}
.y168{bottom:879.333333pt;}
.y16a{bottom:880.933333pt;}
.y154{bottom:881.893333pt;}
.y166{bottom:888.933333pt;}
.y164{bottom:889.413333pt;}
.y8e{bottom:891.813333pt;}
.y163{bottom:892.453333pt;}
.y1b3{bottom:892.773333pt;}
.yb3{bottom:895.333333pt;}
.y5b{bottom:896.293333pt;}
.y165{bottom:898.373333pt;}
.y86{bottom:912.293333pt;}
.y23{bottom:914.853333pt;}
.y22{bottom:930.053333pt;}
.h29{height:16.800000pt;}
.h2a{height:16.960000pt;}
.h36{height:16.992000pt;}
.h3e{height:19.520000pt;}
.h3c{height:19.680000pt;}
.h3f{height:19.712000pt;}
.h35{height:20.000000pt;}
.h39{height:20.032000pt;}
.h3b{height:20.320000pt;}
.h3d{height:20.480000pt;}
.h2e{height:22.560000pt;}
.h2f{height:22.720000pt;}
.h31{height:22.752000pt;}
.h14{height:23.140625pt;}
.h17{height:24.991875pt;}
.h37{height:26.843125pt;}
.h7{height:28.560000pt;}
.h13{height:31.008437pt;}
.h18{height:31.343437pt;}
.h30{height:33.760000pt;}
.h3a{height:33.792000pt;}
.h1d{height:34.374375pt;}
.h22{height:36.138125pt;}
.h11{height:36.562188pt;}
.h9{height:38.413438pt;}
.h38{height:40.032000pt;}
.h12{height:40.727500pt;}
.h6{height:40.800000pt;}
.h16{height:41.002500pt;}
.h19{height:41.167500pt;}
.h15{height:41.543750pt;}
.h28{height:42.578750pt;}
.h3{height:42.840000pt;}
.he{height:45.156250pt;}
.h1a{height:45.403125pt;}
.hb{height:46.281250pt;}
.h10{height:46.781250pt;}
.h1b{height:47.465000pt;}
.h27{height:47.539099pt;}
.h34{height:47.963125pt;}
.h2{height:48.960000pt;}
.h1f{height:49.622500pt;}
.h2c{height:50.025000pt;}
.hf{height:51.053125pt;}
.h24{height:52.182500pt;}
.h1e{height:52.834688pt;}
.h41{height:52.962000pt;}
.h42{height:54.390938pt;}
.h2b{height:55.488438pt;}
.h1c{height:58.985000pt;}
.hc{height:60.057813pt;}
.hd{height:61.554062pt;}
.h20{height:61.782500pt;}
.h23{height:63.702500pt;}
.h21{height:64.342500pt;}
.h25{height:66.902500pt;}
.h33{height:67.520000pt;}
.h26{height:68.182500pt;}
.h5{height:69.360000pt;}
.h2d{height:82.665000pt;}
.h32{height:84.352000pt;}
.h4{height:105.826671pt;}
.ha{height:110.432000pt;}
.h40{height:300.320000pt;}
.h43{height:300.480000pt;}
.h8{height:1056.000000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w19{width:36.960000pt;}
.wd{width:74.752000pt;}
.we{width:75.200000pt;}
.w18{width:84.000000pt;}
.w16{width:84.192000pt;}
.w17{width:103.552000pt;}
.w1a{width:121.952000pt;}
.w12{width:124.832000pt;}
.w8{width:125.472000pt;}
.w11{width:126.912000pt;}
.w13{width:128.992000pt;}
.wb{width:133.626667pt;}
.w10{width:135.066667pt;}
.w14{width:150.266667pt;}
.w7{width:160.986667pt;}
.w15{width:169.466667pt;}
.wc{width:185.946667pt;}
.w9{width:209.306667pt;}
.wa{width:320.386667pt;}
.wf{width:390.653333pt;}
.w5{width:528.733333pt;}
.w1b{width:540.480000pt;}
.w1c{width:540.640000pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.w6{width:815.999976pt;}
.w4{width:815.999988pt;}
.w3{width:816.000000pt;}
.x0{left:0.000000pt;}
.x66{left:6.880000pt;}
.x72{left:9.120000pt;}
.x6d{left:12.320000pt;}
.x7d{left:14.720000pt;}
.x61{left:15.680000pt;}
.x7f{left:18.240000pt;}
.x7c{left:21.920000pt;}
.x6b{left:23.040000pt;}
.x60{left:24.160000pt;}
.x80{left:27.520000pt;}
.x7b{left:29.120000pt;}
.x5b{left:30.560000pt;}
.x6e{left:33.600000pt;}
.x67{left:35.520000pt;}
.x5f{left:37.440000pt;}
.x81{left:39.360000pt;}
.x5d{left:41.120000pt;}
.x7e{left:42.120000pt;}
.x91{left:44.186667pt;}
.x86{left:46.426667pt;}
.x5e{left:48.000000pt;}
.x59{left:55.200000pt;}
.x85{left:56.186667pt;}
.x84{left:69.733333pt;}
.x68{left:75.200000pt;}
.x1{left:90.706667pt;}
.x87{left:93.346667pt;}
.x2{left:94.486667pt;}
.x88{left:116.733333pt;}
.x57{left:139.706655pt;}
.x5{left:143.706655pt;}
.x6{left:146.106667pt;}
.x1f{left:147.706655pt;}
.x48{left:148.986655pt;}
.x13{left:151.386655pt;}
.x47{left:152.346655pt;}
.xa{left:153.306655pt;}
.x2f{left:154.906655pt;}
.x35{left:156.506655pt;}
.x58{left:159.546667pt;}
.x19{left:162.906655pt;}
.x1e{left:168.346655pt;}
.x36{left:172.026642pt;}
.x49{left:177.306655pt;}
.x4{left:180.874667pt;}
.x37{left:185.946655pt;}
.x62{left:187.546655pt;}
.x78{left:190.906667pt;}
.x44{left:197.786642pt;}
.x69{left:203.866655pt;}
.x27{left:207.386642pt;}
.x45{left:208.666655pt;}
.x89{left:210.266667pt;}
.x28{left:212.826655pt;}
.x77{left:216.826655pt;}
.x6a{left:221.786655pt;}
.x20{left:230.306655pt;}
.x8a{left:233.666667pt;}
.x64{left:237.346655pt;}
.x76{left:240.386655pt;}
.x4c{left:242.946655pt;}
.x54{left:244.066642pt;}
.x65{left:247.906667pt;}
.x3c{left:252.226642pt;}
.x8{left:254.306667pt;}
.x8b{left:257.053333pt;}
.x3d{left:263.106655pt;}
.x7{left:264.386667pt;}
.x25{left:265.826642pt;}
.x26{left:271.266655pt;}
.x38{left:273.986642pt;}
.x14{left:275.106655pt;}
.x79{left:276.066667pt;}
.x8c{left:280.453333pt;}
.x2b{left:281.346642pt;}
.x82{left:282.306655pt;}
.x39{left:284.866655pt;}
.x2c{left:286.786655pt;}
.x6f{left:288.866655pt;}
.x4f{left:293.986655pt;}
.xe{left:301.826655pt;}
.x10{left:304.546655pt;}
.x50{left:308.066655pt;}
.x17{left:311.746642pt;}
.x46{left:315.586655pt;}
.x18{left:317.186655pt;}
.x5a{left:321.186667pt;}
.x8d{left:327.226667pt;}
.xd{left:331.426655pt;}
.x31{left:333.346642pt;}
.x12{left:335.746655pt;}
.x11{left:340.226655pt;}
.x32{left:344.226655pt;}
.x70{left:348.866667pt;}
.xf{left:351.426655pt;}
.x63{left:356.226655pt;}
.x30{left:362.786642pt;}
.x2d{left:374.466642pt;}
.xc{left:376.706655pt;}
.xb{left:380.253321pt;}
.x51{left:381.693309pt;}
.x2e{left:386.173321pt;}
.x4d{left:387.133321pt;}
.x52{left:392.573321pt;}
.x15{left:398.013321pt;}
.x3{left:404.408000pt;}
.x6c{left:408.413333pt;}
.x3a{left:420.093309pt;}
.x3b{left:430.973321pt;}
.x9{left:437.706667pt;}
.x8e{left:444.160000pt;}
.x5c{left:447.293333pt;}
.x1c{left:450.653309pt;}
.x42{left:454.973309pt;}
.x1d{left:458.013321pt;}
.x43{left:465.853321pt;}
.x8f{left:467.546667pt;}
.x3e{left:473.053309pt;}
.x73{left:474.493333pt;}
.x29{left:475.613309pt;}
.x71{left:476.573333pt;}
.x2a{left:481.053321pt;}
.x3f{left:483.933321pt;}
.x23{left:490.493309pt;}
.x24{left:495.933321pt;}
.x7a{left:503.293333pt;}
.x90{left:514.306667pt;}
.x4e{left:517.213321pt;}
.x74{left:561.573309pt;}
.x55{left:562.533309pt;}
.x75{left:570.853321pt;}
.x4b{left:572.453321pt;}
.x56{left:573.413321pt;}
.x33{left:576.613309pt;}
.x16{left:581.413321pt;}
.x34{left:587.493321pt;}
.x21{left:627.013309pt;}
.x22{left:634.853321pt;}
.x40{left:636.613309pt;}
.x4a{left:640.773321pt;}
.x41{left:647.493321pt;}
.x1a{left:667.013309pt;}
.x1b{left:672.453321pt;}
.x83{left:685.759988pt;}
.x53{left:695.839988pt;}
}




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