
    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_2bc23419266dc9ed594bc6ce.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_20f621553b471b2a53ed99a1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.101562;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_ee32a27e215a90a0a8b620f2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_efe4cefe64e465c3b9c656c5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_6664d06116157d54365f5cb3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.960449;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_9e654abb6d06eb28f7163467.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.106934;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_88e9b0d2ae23d2edd2a125d3.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_9f6c060b02cefdbc8c51debe.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.115234;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_ce51762f46fd309638bdac14.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.926758;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284668;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_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.311035;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_791f3bde65648d0cd64b90a8.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.432129;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_95eab9baa1b2d76aec6f1cdb.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.432129;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_97c431a8fce72fc0116d9c93.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.730957;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_d607ab44bfaca72fbd53af9d.woff2')format("woff");}.fff{font-family:fff;line-height:1.432129;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:ff10;src:url('chunks/assets/font_29dc0acc27d12729c6108a64.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.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);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-24.480000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.lsd{letter-spacing:-1.440000px;}
.ls1{letter-spacing:-1.296000px;}
.ls3{letter-spacing:-1.152000px;}
.ls4{letter-spacing:-0.936000px;}
.ls2d{letter-spacing:-0.523377px;}
.ls14{letter-spacing:-0.507000px;}
.ls12{letter-spacing:-0.504000px;}
.ls16{letter-spacing:-0.486600px;}
.ls17{letter-spacing:-0.466800px;}
.lsf{letter-spacing:-0.463800px;}
.ls2c{letter-spacing:-0.392532px;}
.ls18{letter-spacing:-0.382800px;}
.ls29{letter-spacing:-0.310101px;}
.ls28{letter-spacing:-0.217201px;}
.ls2e{letter-spacing:-0.196266px;}
.ls20{letter-spacing:-0.162901px;}
.ls24{letter-spacing:-0.147200px;}
.lsa{letter-spacing:-0.144000px;}
.ls2b{letter-spacing:-0.130844px;}
.ls27{letter-spacing:-0.108601px;}
.ls23{letter-spacing:-0.049067px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.015840px;}
.ls11{letter-spacing:0.020160px;}
.ls26{letter-spacing:0.054300px;}
.ls1c{letter-spacing:0.130844px;}
.ls7{letter-spacing:0.144000px;}
.ls25{letter-spacing:0.147200px;}
.ls19{letter-spacing:0.163555px;}
.ls1b{letter-spacing:0.196266px;}
.ls2a{letter-spacing:0.206734px;}
.lse{letter-spacing:0.216000px;}
.ls21{letter-spacing:0.217201px;}
.ls2{letter-spacing:0.236400px;}
.ls22{letter-spacing:0.245333px;}
.ls1a{letter-spacing:0.261688px;}
.ls6{letter-spacing:0.288000px;}
.ls13{letter-spacing:0.466560px;}
.ls15{letter-spacing:0.486600px;}
.ls5{letter-spacing:0.504000px;}
.lsc{letter-spacing:1.296000px;}
.ls10{letter-spacing:1.440000px;}
.ls9{letter-spacing:1.458000px;}
.lsb{letter-spacing:1.728000px;}
.ls1f{letter-spacing:3.395406px;}
.ls1d{letter-spacing:5.364611px;}
.ls1e{letter-spacing:15.177923px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-39.116400px;}
.ws13{word-spacing:-35.320320px;}
.ws0{word-spacing:-34.704000px;}
.wsa{word-spacing:-21.312000px;}
.wsd{word-spacing:-20.520000px;}
.ws6{word-spacing:-20.304000px;}
.wsb{word-spacing:-20.232000px;}
.ws5{word-spacing:-20.160000px;}
.ws4{word-spacing:-20.016000px;}
.ws11{word-spacing:-19.512000px;}
.ws3{word-spacing:-18.864000px;}
.ws1e{word-spacing:-18.449027px;}
.ws1c{word-spacing:-18.187338px;}
.ws21{word-spacing:-18.056494px;}
.ws20{word-spacing:-17.991072px;}
.ws1f{word-spacing:-17.794806px;}
.ws10{word-spacing:-16.833600px;}
.wsf{word-spacing:-16.813440px;}
.ws14{word-spacing:-16.326840px;}
.ws12{word-spacing:-16.306440px;}
.wsc{word-spacing:-16.272000px;}
.ws9{word-spacing:-14.668560px;}
.ws1d{word-spacing:-14.574731px;}
.wse{word-spacing:-14.506440px;}
.ws16{word-spacing:-13.792283px;}
.ws15{word-spacing:-13.668480px;}
.ws1b{word-spacing:-13.629382px;}
.ws8{word-spacing:-13.226400px;}
.ws7{word-spacing:-13.210560px;}
.ws1a{word-spacing:-12.511973px;}
.ws18{word-spacing:-12.266640px;}
.ws17{word-spacing:-12.217573px;}
.ws19{word-spacing:-12.119440px;}
.ws30{word-spacing:-0.785065px;}
.ws25{word-spacing:-0.490666px;}
.ws31{word-spacing:-0.261688px;}
.ws44{word-spacing:-0.239881px;}
.ws29{word-spacing:-0.147200px;}
.ws2f{word-spacing:-0.130844px;}
.ws26{word-spacing:-0.098133px;}
.ws2{word-spacing:0.000000px;}
.ws2a{word-spacing:0.108601px;}
.ws39{word-spacing:0.130844px;}
.ws28{word-spacing:0.147200px;}
.ws24{word-spacing:0.162901px;}
.ws2b{word-spacing:0.217201px;}
.ws27{word-spacing:0.294399px;}
.ws38{word-spacing:0.523377px;}
.ws36{word-spacing:3.794481px;}
.ws37{word-spacing:4.289726px;}
.ws2e{word-spacing:5.064977px;}
.ws2c{word-spacing:5.102922px;}
.ws2d{word-spacing:6.253697px;}
.ws3c{word-spacing:7.845198px;}
.ws42{word-spacing:8.374026px;}
.ws3b{word-spacing:8.799270px;}
.ws3e{word-spacing:9.028247px;}
.ws3d{word-spacing:9.039151px;}
.ws40{word-spacing:9.088217px;}
.ws41{word-spacing:9.093669px;}
.ws43{word-spacing:9.442587px;}
.ws3f{word-spacing:9.682468px;}
.ws3a{word-spacing:9.835119px;}
.ws35{word-spacing:14.916234px;}
.ws33{word-spacing:14.981656px;}
.ws32{word-spacing:15.308767px;}
.ws34{word-spacing:15.570455px;}
.ws23{word-spacing:332.538000px;}
.ws22{word-spacing:531.300000px;}
._1e{margin-left:-18.636960px;}
._1b{margin-left:-16.112640px;}
._1c{margin-left:-13.908960px;}
._18{margin-left:-12.867360px;}
._1f{margin-left:-10.764960px;}
._1d{margin-left:-9.192000px;}
._11{margin-left:-6.094560px;}
._10{margin-left:-4.152000px;}
._c{margin-left:-2.220000px;}
._0{margin-left:-1.192320px;}
._1{width:1.504320px;}
._2{width:2.575680px;}
._5{width:4.314720px;}
._4{width:5.368320px;}
._3{width:6.660000px;}
._6{width:8.647680px;}
._7{width:10.008000px;}
._b{width:11.162880px;}
._d{width:12.457920px;}
._a{width:13.896000px;}
._9{width:15.192000px;}
._8{width:16.344000px;}
._36{width:17.347680px;}
._15{width:18.367680px;}
._16{width:21.019680px;}
._14{width:22.223040px;}
._13{width:23.304000px;}
._12{width:25.116000px;}
._25{width:26.241120px;}
._20{width:27.360000px;}
._2b{width:28.580640px;}
._26{width:30.187680px;}
._f{width:32.184000px;}
._e{width:33.763680px;}
._28{width:35.107680px;}
._27{width:36.199680px;}
._35{width:37.419360px;}
._31{width:38.887680px;}
._30{width:40.392000px;}
._24{width:41.472000px;}
._22{width:42.696000px;}
._23{width:44.059680px;}
._2d{width:45.768000px;}
._2c{width:46.932000px;}
._2e{width:48.180000px;}
._17{width:51.996000px;}
._37{width:54.931680px;}
._38{width:56.027040px;}
._19{width:57.180000px;}
._29{width:61.683360px;}
._1a{width:63.480000px;}
._39{width:64.711680px;}
._2f{width:65.952000px;}
._2a{width:67.687680px;}
._21{width:75.888000px;}
._33{width:89.253600px;}
._32{width:90.823680px;}
._34{width:91.933920px;}
._3d{width:98.784000px;}
._3c{width:100.296000px;}
._3f{width:102.195360px;}
._3e{width:104.508000px;}
._3a{width:168.888000px;}
._45{width:174.642006px;}
._46{width:192.486000px;}
._44{width:204.558000px;}
._3b{width:248.328000px;}
._43{width:274.194000px;}
._48{width:472.062000px;}
._42{width:483.060000px;}
._41{width:828.927360px;}
._40{width:829.939680px;}
._47{width:1797.222000px;}
.fc7{color:transparent;}
.fc6{color:rgb(5,99,193);}
.fc5{color:rgb(255,0,0);}
.fc3{color:rgb(46,116,181);}
.fc4{color:rgb(31,78,121);}
.fc1{color:rgb(154,0,64);}
.fca{color:rgb(255,255,255);}
.fc9{color:rgb(89,89,89);}
.fc8{color:rgb(0,176,80);}
.fc2{color:rgb(191,191,191);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fsf{font-size:42.000000px;}
.fs7{font-size:47.520000px;}
.fsd{font-size:49.066560px;}
.fse{font-size:51.683443px;}
.fsb{font-size:54.300326px;}
.fs9{font-size:54.720000px;}
.fsa{font-size:54.864000px;}
.fs8{font-size:60.480000px;}
.fsc{font-size:65.422080px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:119.520000px;}
.fs2{font-size:132.480000px;}
.fs1{font-size:144.000000px;}
.fs3{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.y2b2{bottom:1.800000px;}
.y2b8{bottom:3.761770px;}
.y2b0{bottom:3.960000px;}
.y2b6{bottom:4.060258px;}
.y264{bottom:11.520000px;}
.y274{bottom:11.565000px;}
.y245{bottom:11.880000px;}
.y262{bottom:11.910000px;}
.y24a{bottom:11.925000px;}
.y244{bottom:12.240000px;}
.y261{bottom:12.270000px;}
.y249{bottom:12.285000px;}
.y2b5{bottom:17.958361px;}
.y257{bottom:18.000000px;}
.y23f{bottom:18.030000px;}
.y2ae{bottom:22.350000px;}
.y284{bottom:24.840000px;}
.y26c{bottom:25.200000px;}
.y255{bottom:30.960000px;}
.y23d{bottom:30.990000px;}
.y285{bottom:37.845000px;}
.y26d{bottom:38.160000px;}
.y2a2{bottom:38.205000px;}
.y256{bottom:43.920000px;}
.y23e{bottom:43.950000px;}
.y2c5{bottom:49.500000px;}
.y25e{bottom:52.200000px;}
.y259{bottom:52.560000px;}
.y24c{bottom:52.590000px;}
.y242{bottom:52.605000px;}
.y64{bottom:57.240000px;}
.y2a1{bottom:64.125000px;}
.y2c4{bottom:66.000000px;}
.y63{bottom:77.400000px;}
.y25d{bottom:78.120000px;}
.y24b{bottom:78.510000px;}
.y241{bottom:78.525000px;}
.y2c3{bottom:82.500000px;}
.y2c2{bottom:99.000000px;}
.y2a6{bottom:102.525000px;}
.y2a4{bottom:109.836000px;}
.y206{bottom:113.436000px;}
.y1b8{bottom:113.796000px;}
.y111{bottom:114.156000px;}
.y14{bottom:115.596000px;}
.y198{bottom:119.916000px;}
.yfa{bottom:120.276000px;}
.ye6{bottom:120.996000px;}
.y16c{bottom:123.516000px;}
.y48{bottom:124.236000px;}
.y236{bottom:124.956000px;}
.y62{bottom:125.676000px;}
.y31{bottom:128.916000px;}
.y1f7{bottom:131.076000px;}
.y21e{bottom:133.596000px;}
.y2a7{bottom:136.005000px;}
.y82{bottom:136.476000px;}
.y18e{bottom:138.276000px;}
.y2b3{bottom:139.497858px;}
.y1a8{bottom:139.716000px;}
.y29d{bottom:141.516000px;}
.y278{bottom:142.596000px;}
.yb8{bottom:144.756000px;}
.y110{bottom:145.116000px;}
.y1c1{bottom:145.836000px;}
.y2a3{bottom:147.636000px;}
.y1d4{bottom:150.510000px;}
.y197{bottom:150.870000px;}
.y16b{bottom:154.470000px;}
.y13{bottom:155.550000px;}
.y235{bottom:155.910000px;}
.y205{bottom:156.630000px;}
.y138{bottom:157.350000px;}
.y1f6{bottom:162.030000px;}
.y2ad{bottom:162.075000px;}
.y9c{bottom:162.750000px;}
.yf9{bottom:163.110000px;}
.ye5{bottom:163.830000px;}
.y61{bottom:164.190000px;}
.y21d{bottom:164.550000px;}
.y47{bottom:167.070000px;}
.y81{bottom:167.430000px;}
.yd0{bottom:167.790000px;}
.y2a8{bottom:169.455000px;}
.y23a{bottom:169.590000px;}
.y121{bottom:169.950000px;}
.y30{bottom:172.110000px;}
.yb7{bottom:176.070000px;}
.y29c{bottom:179.310000px;}
.y277{bottom:180.390000px;}
.y154{bottom:180.750000px;}
.y1d3{bottom:181.470000px;}
.y196{bottom:182.190000px;}
.y1a7{bottom:182.910000px;}
.y16a{bottom:185.430000px;}
.y234{bottom:186.870000px;}
.y1ea{bottom:187.950000px;}
.y1c0{bottom:188.670000px;}
.y1f5{bottom:192.990000px;}
.y9b{bottom:194.070000px;}
.yf8{bottom:194.430000px;}
.y21c{bottom:195.870000px;}
.ycf{bottom:198.750000px;}
.y266{bottom:199.830000px;}
.y137{bottom:200.190000px;}
.y120{bottom:200.910000px;}
.y2a9{bottom:202.890000px;}
.y60{bottom:203.070000px;}
.y12{bottom:204.150000px;}
.yb6{bottom:207.030000px;}
.y46{bottom:210.315000px;}
.y153{bottom:212.115000px;}
.y1d2{bottom:212.475000px;}
.y239{bottom:212.835000px;}
.y195{bottom:213.195000px;}
.y2f{bottom:215.355000px;}
.y80{bottom:216.435000px;}
.y29b{bottom:217.155000px;}
.y233{bottom:218.235000px;}
.y204{bottom:219.315000px;}
.y1f4{bottom:223.995000px;}
.y9a{bottom:225.075000px;}
.yf7{bottom:225.435000px;}
.y1a6{bottom:225.795000px;}
.y21b{bottom:226.875000px;}
.y1e9{bottom:231.195000px;}
.y18d{bottom:231.915000px;}
.y11f{bottom:232.275000px;}
.y2aa{bottom:236.370000px;}
.y265{bottom:237.675000px;}
.yb5{bottom:238.035000px;}
.y10f{bottom:238.395000px;}
.y5f{bottom:241.635000px;}
.y152{bottom:243.075000px;}
.y136{bottom:243.435000px;}
.y194{bottom:244.155000px;}
.y169{bottom:247.755000px;}
.y232{bottom:249.195000px;}
.ye4{bottom:250.275000px;}
.y25c{bottom:252.435000px;}
.y45{bottom:253.155000px;}
.y1d1{bottom:255.315000px;}
.y11{bottom:255.675000px;}
.y99{bottom:256.035000px;}
.yf6{bottom:256.395000px;}
.y17d{bottom:256.755000px;}
.y21a{bottom:257.835000px;}
.y2e{bottom:258.195000px;}
.y18c{bottom:262.875000px;}
.y11e{bottom:263.235000px;}
.yce{bottom:263.595000px;}
.y1a5{bottom:268.995000px;}
.yb4{bottom:269.355000px;}
.y2ab{bottom:269.820000px;}
.y7f{bottom:272.955000px;}
.y1e8{bottom:274.035000px;}
.y151{bottom:274.395000px;}
.y193{bottom:275.115000px;}
.y168{bottom:278.715000px;}
.y263{bottom:279.075000px;}
.y5e{bottom:279.795000px;}
.y231{bottom:280.155000px;}
.y1b7{bottom:280.875000px;}
.y203{bottom:281.235000px;}
.y1f3{bottom:286.275000px;}
.y135{bottom:286.635000px;}
.y98{bottom:287.355000px;}
.yf5{bottom:287.715000px;}
.y17c{bottom:288.435000px;}
.y219{bottom:288.795000px;}
.y2a0{bottom:291.315000px;}
.ye3{bottom:293.115000px;}
.y18b{bottom:293.835000px;}
.y11d{bottom:294.195000px;}
.y44{bottom:296.355000px;}
.y238{bottom:298.875000px;}
.yb3{bottom:300.315000px;}
.y2d{bottom:301.395000px;}
.y2ac{bottom:303.300000px;}
.y7e{bottom:303.915000px;}
.y150{bottom:305.355000px;}
.ycd{bottom:306.075000px;}
.y192{bottom:306.435000px;}
.y167{bottom:309.675000px;}
.y5d{bottom:310.755000px;}
.y230{bottom:311.115000px;}
.y10{bottom:311.835000px;}
.y202{bottom:312.195000px;}
.y1e7{bottom:317.235000px;}
.y1d0{bottom:317.595000px;}
.y97{bottom:318.315000px;}
.yf4{bottom:319.035000px;}
.y17b{bottom:319.395000px;}
.y218{bottom:320.115000px;}
.y1b6{bottom:324.075000px;}
.y11c{bottom:325.155000px;}
.y134{bottom:329.475000px;}
.y29a{bottom:330.915000px;}
.y10e{bottom:331.275000px;}
.y260{bottom:331.995000px;}
.y7d{bottom:334.905000px;}
.ye2{bottom:336.345000px;}
.y1dc{bottom:337.425000px;}
.y43{bottom:339.585000px;}
.y166{bottom:340.665000px;}
.y237{bottom:342.105000px;}
.y22f{bottom:342.465000px;}
.yb2{bottom:343.185000px;}
.y201{bottom:343.545000px;}
.y2c{bottom:343.905000px;}
.y272{bottom:346.425000px;}
.y1f2{bottom:348.225000px;}
.ycc{bottom:348.945000px;}
.y5c{bottom:349.305000px;}
.yf3{bottom:349.665000px;}
.y17a{bottom:350.385000px;}
.y217{bottom:351.105000px;}
.y29f{bottom:355.065000px;}
.y1b5{bottom:355.425000px;}
.y18a{bottom:356.145000px;}
.y11b{bottom:356.505000px;}
.y25f{bottom:358.665000px;}
.y1e6{bottom:360.105000px;}
.y1a4{bottom:362.265000px;}
.y10d{bottom:362.625000px;}
.y7c{bottom:365.865000px;}
.y14f{bottom:367.305000px;}
.yf{bottom:367.665000px;}
.y1db{bottom:368.385000px;}
.y299{bottom:368.745000px;}
.y165{bottom:371.985000px;}
.y133{bottom:372.705000px;}
.y276{bottom:373.065000px;}
.y22e{bottom:373.425000px;}
.yb1{bottom:374.505000px;}
.y2b{bottom:375.585000px;}
.ye1{bottom:379.185000px;}
.y1f1{bottom:379.545000px;}
.y1cf{bottom:379.905000px;}
.y96{bottom:380.265000px;}
.y29e{bottom:380.985000px;}
.yf2{bottom:381.345000px;}
.y216{bottom:382.065000px;}
.y42{bottom:382.425000px;}
.y295{bottom:383.145000px;}
.y258{bottom:385.305000px;}
.y1b4{bottom:386.385000px;}
.y189{bottom:387.105000px;}
.y11a{bottom:387.465000px;}
.y5b{bottom:387.825000px;}
.y10c{bottom:393.585000px;}
.y14e{bottom:398.625000px;}
.y1da{bottom:399.345000px;}
.y275{bottom:399.705000px;}
.y1e5{bottom:403.305000px;}
.y22d{bottom:404.385000px;}
.yb0{bottom:405.465000px;}
.y164{bottom:405.825000px;}
.y2a{bottom:406.545000px;}
.y7b{bottom:408.705000px;}
.y298{bottom:409.785000px;}
.y1f0{bottom:410.505000px;}
.y1ce{bottom:410.865000px;}
.y1f9{bottom:411.225000px;}
.y95{bottom:411.585000px;}
.y25b{bottom:411.945000px;}
.yf1{bottom:412.305000px;}
.y179{bottom:412.665000px;}
.y215{bottom:413.025000px;}
.y132{bottom:415.545000px;}
.y2a5{bottom:416.160000px;}
.y188{bottom:418.065000px;}
.y119{bottom:418.425000px;}
.ye0{bottom:422.385000px;}
.ye{bottom:423.825000px;}
.y1a3{bottom:424.545000px;}
.y41{bottom:425.625000px;}
.y5a{bottom:426.345000px;}
.y10b{bottom:427.785000px;}
.y163{bottom:428.145000px;}
.y1b3{bottom:429.225000px;}
.y14d{bottom:429.585000px;}
.y1d9{bottom:430.665000px;}
.y22c{bottom:435.345000px;}
.yaf{bottom:436.425000px;}
.y29{bottom:437.865000px;}
.y25a{bottom:438.585000px;}
.y2c1{bottom:438.918098px;}
.y7a{bottom:440.025000px;}
.y1ef{bottom:441.465000px;}
.y1cd{bottom:441.825000px;}
.y94{bottom:442.545000px;}
.y178{bottom:443.625000px;}
.y214{bottom:443.985000px;}
.y1e4{bottom:446.145000px;}
.y118{bottom:449.385000px;}
.y10a{bottom:450.105000px;}
.y273{bottom:452.985000px;}
.yf0{bottom:455.505000px;}
.y131{bottom:458.790000px;}
.y14c{bottom:460.590000px;}
.y1d8{bottom:461.670000px;}
.y297{bottom:463.110000px;}
.y2c0{bottom:464.627612px;}
.y59{bottom:464.910000px;}
.ydf{bottom:465.270000px;}
.y22b{bottom:466.710000px;}
.yae{bottom:467.430000px;}
.y40{bottom:468.150000px;}
.y162{bottom:470.670000px;}
.y79{bottom:471.030000px;}
.y109{bottom:472.470000px;}
.y184{bottom:473.190000px;}
.y93{bottom:473.550000px;}
.y213{bottom:475.350000px;}
.y26e{bottom:479.670000px;}
.y28{bottom:480.390000px;}
.y117{bottom:480.750000px;}
.yd{bottom:481.110000px;}
.y177{bottom:486.150000px;}
.y1a2{bottom:486.510000px;}
.y1e3{bottom:489.390000px;}
.y296{bottom:489.750000px;}
.y14b{bottom:491.550000px;}
.y187{bottom:491.910000px;}
.y1d7{bottom:492.630000px;}
.y108{bottom:494.790000px;}
.y22a{bottom:497.670000px;}
.yef{bottom:498.390000px;}
.yad{bottom:498.750000px;}
.y3f{bottom:499.830000px;}
.y130{bottom:501.630000px;}
.y161{bottom:501.990000px;}
.y78{bottom:502.350000px;}
.y58{bottom:503.430000px;}
.y1cc{bottom:504.150000px;}
.ycb{bottom:504.510000px;}
.y271{bottom:505.950000px;}
.y212{bottom:506.310000px;}
.yde{bottom:508.470000px;}
.y200{bottom:510.270000px;}
.y27{bottom:511.710000px;}
.y92{bottom:516.390000px;}
.y2b1{bottom:516.750000px;}
.y176{bottom:517.830000px;}
.y254{bottom:518.550000px;}
.y2bf{bottom:520.890601px;}
.y1b2{bottom:522.510000px;}
.y229{bottom:528.630000px;}
.yc{bottom:528.990000px;}
.yac{bottom:529.710000px;}
.yee{bottom:530.070000px;}
.y3e{bottom:531.150000px;}
.y186{bottom:532.590000px;}
.y77{bottom:533.310000px;}
.y14a{bottom:534.390000px;}
.y1ee{bottom:534.750000px;}
.y1cb{bottom:535.110000px;}
.y1d6{bottom:535.470000px;}
.yca{bottom:535.830000px;}
.y107{bottom:536.910000px;}
.y211{bottom:537.270000px;}
.y1ff{bottom:541.590000px;}
.y57{bottom:541.950000px;}
.y26{bottom:542.670000px;}
.y294{bottom:543.030000px;}
.y12f{bottom:544.830000px;}
.y91{bottom:547.710000px;}
.y175{bottom:548.790000px;}
.ydd{bottom:551.670000px;}
.y1b1{bottom:553.830000px;}
.y185{bottom:558.510000px;}
.y270{bottom:559.230000px;}
.y228{bottom:559.590000px;}
.yab{bottom:560.670000px;}
.y2af{bottom:563.910000px;}
.y160{bottom:564.270000px;}
.y149{bottom:565.710000px;}
.y1ca{bottom:566.070000px;}
.yc9{bottom:566.790000px;}
.y210{bottom:568.230000px;}
.y106{bottom:568.590000px;}
.y293{bottom:569.670000px;}
.yed{bottom:572.550000px;}
.y1fe{bottom:572.910000px;}
.y3d{bottom:573.270000px;}
.y116{bottom:573.630000px;}
.y25{bottom:573.990000px;}
.y1e2{bottom:575.430000px;}
.y76{bottom:575.790000px;}
.yb{bottom:576.510000px;}
.y2be{bottom:577.317145px;}
.y90{bottom:578.670000px;}
.y174{bottom:579.750000px;}
.y56{bottom:580.830000px;}
.y1b0{bottom:584.820000px;}
.y26f{bottom:585.900000px;}
.y12e{bottom:588.060000px;}
.y227{bottom:590.580000px;}
.yaa{bottom:591.660000px;}
.ydc{bottom:594.540000px;}
.y15f{bottom:595.260000px;}
.y292{bottom:596.340000px;}
.y148{bottom:596.700000px;}
.y1c9{bottom:597.420000px;}
.yc8{bottom:597.780000px;}
.y105{bottom:599.580000px;}
.y1fd{bottom:603.900000px;}
.yec{bottom:604.260000px;}
.y3c{bottom:604.980000px;}
.y2bd{bottom:605.612195px;}
.y253{bottom:606.780000px;}
.y75{bottom:607.500000px;}
.y8f{bottom:609.660000px;}
.y183{bottom:610.020000px;}
.y173{bottom:610.740000px;}
.y26b{bottom:612.540000px;}
.y1af{bottom:615.780000px;}
.y24{bottom:616.500000px;}
.y1e1{bottom:618.660000px;}
.y55{bottom:619.380000px;}
.y226{bottom:621.900000px;}
.ya9{bottom:622.980000px;}
.y15e{bottom:626.220000px;}
.y1ed{bottom:627.660000px;}
.y147{bottom:628.020000px;}
.y1c8{bottom:628.380000px;}
.yc7{bottom:628.740000px;}
.y104{bottom:630.540000px;}
.y12d{bottom:630.900000px;}
.y252{bottom:632.700000px;}
.y1fc{bottom:634.860000px;}
.y3b{bottom:635.940000px;}
.ya{bottom:636.300000px;}
.ydb{bottom:637.740000px;}
.yeb{bottom:638.100000px;}
.y74{bottom:638.460000px;}
.y1f8{bottom:640.620000px;}
.y8e{bottom:640.980000px;}
.y172{bottom:642.060000px;}
.y1ae{bottom:646.740000px;}
.y23{bottom:647.820000px;}
.y291{bottom:649.620000px;}
.y54{bottom:650.340000px;}
.y225{bottom:652.860000px;}
.ya8{bottom:653.940000px;}
.y146{bottom:658.980000px;}
.y1c7{bottom:659.340000px;}
.y1a1{bottom:659.700000px;}
.yea{bottom:660.060000px;}
.y103{bottom:661.500000px;}
.yc6{bottom:662.940000px;}
.y3a{bottom:666.900000px;}
.y73{bottom:669.420000px;}
.y251{bottom:670.500000px;}
.y191{bottom:671.580000px;}
.y8d{bottom:671.940000px;}
.y171{bottom:673.020000px;}
.y12c{bottom:674.100000px;}
.y1fb{bottom:677.700000px;}
.y1ad{bottom:678.060000px;}
.y1bf{bottom:678.420000px;}
.y22{bottom:678.780000px;}
.yda{bottom:680.580000px;}
.y224{bottom:683.820000px;}
.ya7{bottom:684.900000px;}
.yc5{bottom:685.260000px;}
.y53{bottom:688.860000px;}
.y26a{bottom:689.220000px;}
.y145{bottom:689.940000px;}
.y2bc{bottom:690.170233px;}
.y1a0{bottom:691.020000px;}
.y20f{bottom:692.460000px;}
.y102{bottom:692.820000px;}
.y9{bottom:696.060000px;}
.y39{bottom:698.220000px;}
.y72{bottom:700.380000px;}
.y15d{bottom:700.740000px;}
.y1c6{bottom:702.180000px;}
.y8c{bottom:702.900000px;}
.y170{bottom:703.980000px;}
.y1e0{bottom:704.700000px;}
.y1ac{bottom:709.050000px;}
.y21{bottom:710.130000px;}
.y250{bottom:711.570000px;}
.ye9{bottom:714.810000px;}
.ya6{bottom:715.890000px;}
.y12b{bottom:716.610000px;}
.y2bb{bottom:718.465283px;}
.y52{bottom:719.850000px;}
.y144{bottom:720.930000px;}
.y19f{bottom:722.010000px;}
.yd9{bottom:723.810000px;}
.y290{bottom:726.330000px;}
.y269{bottom:727.410000px;}
.yc4{bottom:727.770000px;}
.y71{bottom:731.730000px;}
.y1c5{bottom:733.530000px;}
.y8b{bottom:733.890000px;}
.y182{bottom:734.250000px;}
.y24f{bottom:738.210000px;}
.ye8{bottom:740.010000px;}
.y38{bottom:740.730000px;}
.y20{bottom:741.090000px;}
.y282{bottom:741.810000px;}
.y223{bottom:746.130000px;}
.y16f{bottom:746.850000px;}
.ya5{bottom:747.210000px;}
.y1df{bottom:747.930000px;}
.y1ec{bottom:751.890000px;}
.y143{bottom:752.250000px;}
.y1be{bottom:752.610000px;}
.y115{bottom:752.970000px;}
.y8{bottom:754.770000px;}
.y51{bottom:758.730000px;}
.y12a{bottom:759.810000px;}
.y70{bottom:762.690000px;}
.y15c{bottom:763.050000px;}
.y28f{bottom:764.130000px;}
.y24e{bottom:764.850000px;}
.y8a{bottom:765.210000px;}
.yd8{bottom:766.650000px;}
.y1c4{bottom:767.730000px;}
.y281{bottom:768.450000px;}
.yc3{bottom:770.610000px;}
.ye7{bottom:770.970000px;}
.y37{bottom:772.050000px;}
.y1f{bottom:772.410000px;}
.y2ba{bottom:774.891827px;}
.y222{bottom:777.090000px;}
.ya4{bottom:778.170000px;}
.y28a{bottom:778.530000px;}
.y142{bottom:783.210000px;}
.y19e{bottom:784.290000px;}
.y101{bottom:785.730000px;}
.y1c3{bottom:790.050000px;}
.y1de{bottom:790.770000px;}
.y24d{bottom:791.490000px;}
.y6f{bottom:793.650000px;}
.y15b{bottom:794.010000px;}
.y280{bottom:794.730000px;}
.y114{bottom:795.810000px;}
.y89{bottom:796.170000px;}
.y50{bottom:797.250000px;}
.yc2{bottom:802.290000px;}
.y129{bottom:802.650000px;}
.y36{bottom:803.010000px;}
.y2b9{bottom:803.023321px;}
.y28e{bottom:805.170000px;}
.y221{bottom:808.050000px;}
.ya3{bottom:809.130000px;}
.yd7{bottom:809.850000px;}
.y7{bottom:810.570000px;}
.y1c2{bottom:812.370000px;}
.y141{bottom:814.170000px;}
.y1e{bottom:814.890000px;}
.y19d{bottom:815.250000px;}
.y20e{bottom:816.690000px;}
.y100{bottom:817.050000px;}
.y240{bottom:818.130000px;}
.y27f{bottom:821.370000px;}
.y6e{bottom:824.610000px;}
.y15a{bottom:825.330000px;}
.y1d5{bottom:826.770000px;}
.y88{bottom:827.130000px;}
.y28d{bottom:831.855000px;}
.yc1{bottom:833.295000px;}
.y1dd{bottom:834.015000px;}
.y128{bottom:834.375000px;}
.y35{bottom:834.735000px;}
.y4f{bottom:835.815000px;}
.y181{bottom:839.055000px;}
.ya2{bottom:840.135000px;}
.y248{bottom:844.815000px;}
.y140{bottom:845.175000px;}
.y1d{bottom:846.255000px;}
.yff{bottom:848.055000px;}
.yd6{bottom:853.095000px;}
.y6d{bottom:855.975000px;}
.y159{bottom:856.695000px;}
.y1bd{bottom:857.775000px;}
.y87{bottom:858.135000px;}
.y28c{bottom:858.495000px;}
.yc0{bottom:864.255000px;}
.y127{bottom:865.335000px;}
.y6{bottom:866.775000px;}
.y220{bottom:870.375000px;}
.y247{bottom:871.455000px;}
.y4e{bottom:873.975000px;}
.y27e{bottom:874.695000px;}
.y1ab{bottom:875.775000px;}
.y1eb{bottom:876.135000px;}
.y34{bottom:876.855000px;}
.y19c{bottom:877.215000px;}
.y1c{bottom:877.575000px;}
.y20d{bottom:879.015000px;}
.y180{bottom:879.735000px;}
.yfe{bottom:881.895000px;}
.ya1{bottom:882.975000px;}
.y28b{bottom:885.135000px;}
.y6c{bottom:886.935000px;}
.y13f{bottom:888.015000px;}
.y86{bottom:889.455000px;}
.ybf{bottom:895.215000px;}
.yd5{bottom:895.935000px;}
.y126{bottom:896.295000px;}
.y246{bottom:898.095000px;}
.y1bc{bottom:900.975000px;}
.y21f{bottom:901.335000px;}
.yfd{bottom:904.575000px;}
.y17f{bottom:905.655000px;}
.y1fa{bottom:907.095000px;}
.y1aa{bottom:907.455000px;}
.y19b{bottom:908.535000px;}
.y33{bottom:908.895000px;}
.y20c{bottom:909.975000px;}
.y286{bottom:911.775000px;}
.y4d{bottom:912.495000px;}
.ya0{bottom:914.295000px;}
.y16e{bottom:917.535000px;}
.y13e{bottom:919.335000px;}
.y1b{bottom:920.055000px;}
.y85{bottom:920.415000px;}
.y5{bottom:922.935000px;}
.y243{bottom:924.735000px;}
.yfc{bottom:926.895000px;}
.y125{bottom:927.255000px;}
.y27d{bottom:927.975000px;}
.y6b{bottom:929.415000px;}
.y1bb{bottom:932.295000px;}
.ybe{bottom:938.055000px;}
.y1a9{bottom:938.415000px;}
.yd4{bottom:939.135000px;}
.y19a{bottom:939.495000px;}
.y16d{bottom:939.855000px;}
.y20b{bottom:940.935000px;}
.y17e{bottom:941.655000px;}
.y9f{bottom:948.495000px;}
.y13d{bottom:950.295000px;}
.y158{bottom:950.655000px;}
.y32{bottom:951.015000px;}
.y1a{bottom:951.375000px;}
.y27c{bottom:954.645000px;}
.y6a{bottom:961.125000px;}
.y1ba{bottom:963.285000px;}
.y2b4{bottom:963.307417px;}
.y289{bottom:965.085000px;}
.yfb{bottom:969.045000px;}
.ybd{bottom:969.405000px;}
.y124{bottom:970.125000px;}
.y199{bottom:970.485000px;}
.y9e{bottom:970.845000px;}
.y20a{bottom:972.285000px;}
.y4{bottom:977.685000px;}
.y27b{bottom:981.285000px;}
.y157{bottom:981.645000px;}
.yd3{bottom:982.005000px;}
.y19{bottom:982.365000px;}
.y13c{bottom:984.525000px;}
.y4c{bottom:989.925000px;}
.y288{bottom:991.725000px;}
.y69{bottom:992.085000px;}
.y113{bottom:994.245000px;}
.y1b9{bottom:994.605000px;}
.ybc{bottom:1000.365000px;}
.y123{bottom:1001.445000px;}
.y209{bottom:1003.245000px;}
.y13b{bottom:1006.845000px;}
.y27a{bottom:1007.925000px;}
.y156{bottom:1012.965000px;}
.y9d{bottom:1013.325000px;}
.y18{bottom:1013.685000px;}
.y3{bottom:1018.005000px;}
.y287{bottom:1018.365000px;}
.yd2{bottom:1025.205000px;}
.y112{bottom:1025.565000px;}
.y4b{bottom:1028.445000px;}
.ybb{bottom:1031.685000px;}
.y208{bottom:1034.205000px;}
.y279{bottom:1034.565000px;}
.y68{bottom:1034.925000px;}
.y23c{bottom:1039.605000px;}
.y13a{bottom:1040.685000px;}
.y155{bottom:1044.285000px;}
.y17{bottom:1044.645000px;}
.y283{bottom:1045.005000px;}
.y84{bottom:1056.165000px;}
.yd1{bottom:1056.525000px;}
.y67{bottom:1056.885000px;}
.yba{bottom:1062.645000px;}
.y139{bottom:1063.005000px;}
.y207{bottom:1065.165000px;}
.y23b{bottom:1065.525000px;}
.y4a{bottom:1067.325000px;}
.y2{bottom:1071.645000px;}
.y190{bottom:1075.605000px;}
.y16{bottom:1075.965000px;}
.y2b7{bottom:1078.435550px;}
.y49{bottom:1085.010000px;}
.y122{bottom:1087.170000px;}
.y83{bottom:1087.530000px;}
.y66{bottom:1090.770000px;}
.y268{bottom:1095.810000px;}
.yb9{bottom:1096.890000px;}
.y65{bottom:1113.090000px;}
.y18f{bottom:1118.490000px;}
.y15{bottom:1118.850000px;}
.y1{bottom:1119.210000px;}
.y267{bottom:1121.730000px;}
.h8{height:5.484375px;}
.h22{height:15.047078px;}
.h1a{height:18.000000px;}
.h19{height:20.196000px;}
.h10{height:25.560000px;}
.h12{height:25.596000px;}
.hd{height:25.920000px;}
.he{height:25.956000px;}
.h21{height:36.799920px;}
.h25{height:43.804688px;}
.h9{height:50.613750px;}
.h13{height:51.516000px;}
.h11{height:51.840000px;}
.h16{height:54.426094px;}
.h17{height:54.569320px;}
.h23{height:54.724548px;}
.h18{height:60.155156px;}
.ha{height:63.078750px;}
.hb{height:63.396000px;}
.h20{height:64.208194px;}
.h2{height:65.884219px;}
.h24{height:68.233185px;}
.h7{height:75.093750px;}
.h14{height:77.796000px;}
.h6{height:110.532656px;}
.h4{height:122.518125px;}
.hf{height:132.156000px;}
.hc{height:132.516000px;}
.h3{height:133.171875px;}
.h5{height:143.825625px;}
.h15{height:324.000000px;}
.h1f{height:1063.893865px;}
.h1e{height:1247.250000px;}
.h1d{height:1247.400000px;}
.h1c{height:1257.000000px;}
.h1b{height:1257.120000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w14{width:70.596000px;}
.w13{width:71.676000px;}
.w9{width:108.036000px;}
.wa{width:118.872000px;}
.w11{width:121.356000px;}
.w7{width:122.832000px;}
.we{width:123.192000px;}
.wf{width:123.516000px;}
.w10{width:123.552000px;}
.w8{width:128.556000px;}
.w6{width:132.516000px;}
.wd{width:141.876000px;}
.w3{width:163.470000px;}
.w5{width:163.515000px;}
.w4{width:163.875000px;}
.w1a{width:237.155040px;}
.wb{width:317.985000px;}
.wc{width:318.030000px;}
.w12{width:540.000000px;}
.w19{width:603.697236px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.w15{width:895.320000px;}
.w16{width:895.500000px;}
.w18{width:898.500000px;}
.w17{width:898.560000px;}
.x0{left:0.000000px;}
.x2e{left:7.560000px;}
.x55{left:9.813312px;}
.x34{left:12.960000px;}
.x33{left:16.920000px;}
.x52{left:18.360000px;}
.x46{left:19.440000px;}
.x2b{left:20.880000px;}
.x32{left:23.040000px;}
.x31{left:25.560000px;}
.x30{left:27.360000px;}
.x29{left:28.440000px;}
.x1c{left:29.925000px;}
.x2f{left:31.683000px;}
.x35{left:32.790000px;}
.x2c{left:35.280000px;}
.x25{left:36.750000px;}
.x48{left:37.803000px;}
.x4d{left:39.240000px;}
.x21{left:40.710000px;}
.x4e{left:41.760000px;}
.x15{left:43.596000px;}
.x1d{left:44.640000px;}
.x18{left:45.750000px;}
.x1e{left:46.800000px;}
.x1a{left:48.645000px;}
.x26{left:51.150000px;}
.x20{left:53.685000px;}
.x22{left:55.845000px;}
.x1f{left:56.910000px;}
.x23{left:58.710000px;}
.x24{left:59.805000px;}
.x16{left:63.360000px;}
.x40{left:66.243000px;}
.x37{left:70.590000px;}
.x3d{left:72.003000px;}
.x3b{left:83.523000px;}
.x3a{left:86.073000px;}
.x41{left:88.233000px;}
.x36{left:100.833000px;}
.x3e{left:103.713000px;}
.x38{left:106.953000px;}
.x54{left:111.398810px;}
.x39{left:114.195000px;}
.x45{left:115.995000px;}
.x3c{left:118.155000px;}
.x3f{left:122.475000px;}
.x43{left:124.635000px;}
.x1{left:127.475987px;}
.x53{left:134.632380px;}
.x42{left:140.793000px;}
.x44{left:142.233000px;}
.xe{left:144.071987px;}
.x8{left:155.234987px;}
.xf{left:160.634987px;}
.x11{left:181.514987px;}
.x12{left:208.514987px;}
.xa{left:222.584987px;}
.x27{left:261.465000px;}
.x9{left:262.904987px;}
.x49{left:271.185000px;}
.x4f{left:275.940000px;}
.xc{left:305.429987px;}
.xd{left:315.869987px;}
.x2{left:325.589987px;}
.x17{left:372.390000px;}
.x28{left:385.020000px;}
.x3{left:391.499987px;}
.x4a{left:395.100000px;}
.x13{left:438.299987px;}
.x10{left:442.259987px;}
.x5{left:444.779987px;}
.x7{left:446.579987px;}
.x14{left:469.619987px;}
.x2a{left:514.290000px;}
.x4b{left:519.330000px;}
.x6{left:525.089987px;}
.x19{left:536.610000px;}
.x2d{left:623.055000px;}
.x4{left:627.014987px;}
.x4c{left:643.605000px;}
.x47{left:667.724987px;}
.x50{left:696.165000px;}
.x51{left:697.245000px;}
.x1b{left:701.205000px;}
.xb{left:765.689987px;}
@media print{
.v2{vertical-align:-21.760000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.lsd{letter-spacing:-1.280000pt;}
.ls1{letter-spacing:-1.152000pt;}
.ls3{letter-spacing:-1.024000pt;}
.ls4{letter-spacing:-0.832000pt;}
.ls2d{letter-spacing:-0.465224pt;}
.ls14{letter-spacing:-0.450667pt;}
.ls12{letter-spacing:-0.448000pt;}
.ls16{letter-spacing:-0.432533pt;}
.ls17{letter-spacing:-0.414933pt;}
.lsf{letter-spacing:-0.412267pt;}
.ls2c{letter-spacing:-0.348918pt;}
.ls18{letter-spacing:-0.340267pt;}
.ls29{letter-spacing:-0.275645pt;}
.ls28{letter-spacing:-0.193068pt;}
.ls2e{letter-spacing:-0.174459pt;}
.ls20{letter-spacing:-0.144801pt;}
.ls24{letter-spacing:-0.130844pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls2b{letter-spacing:-0.116306pt;}
.ls27{letter-spacing:-0.096534pt;}
.ls23{letter-spacing:-0.043615pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.014080pt;}
.ls11{letter-spacing:0.017920pt;}
.ls26{letter-spacing:0.048267pt;}
.ls1c{letter-spacing:0.116306pt;}
.ls7{letter-spacing:0.128000pt;}
.ls25{letter-spacing:0.130844pt;}
.ls19{letter-spacing:0.145382pt;}
.ls1b{letter-spacing:0.174459pt;}
.ls2a{letter-spacing:0.183763pt;}
.lse{letter-spacing:0.192000pt;}
.ls21{letter-spacing:0.193068pt;}
.ls2{letter-spacing:0.210133pt;}
.ls22{letter-spacing:0.218074pt;}
.ls1a{letter-spacing:0.232612pt;}
.ls6{letter-spacing:0.256000pt;}
.ls13{letter-spacing:0.414720pt;}
.ls15{letter-spacing:0.432533pt;}
.ls5{letter-spacing:0.448000pt;}
.lsc{letter-spacing:1.152000pt;}
.ls10{letter-spacing:1.280000pt;}
.ls9{letter-spacing:1.296000pt;}
.lsb{letter-spacing:1.536000pt;}
.ls1f{letter-spacing:3.018139pt;}
.ls1d{letter-spacing:4.768543pt;}
.ls1e{letter-spacing:13.491487pt;}
.ws1{word-spacing:-34.770133pt;}
.ws13{word-spacing:-31.395840pt;}
.ws0{word-spacing:-30.848000pt;}
.wsa{word-spacing:-18.944000pt;}
.wsd{word-spacing:-18.240000pt;}
.ws6{word-spacing:-18.048000pt;}
.wsb{word-spacing:-17.984000pt;}
.ws5{word-spacing:-17.920000pt;}
.ws4{word-spacing:-17.792000pt;}
.ws11{word-spacing:-17.344000pt;}
.ws3{word-spacing:-16.768000pt;}
.ws1e{word-spacing:-16.399135pt;}
.ws1c{word-spacing:-16.166523pt;}
.ws21{word-spacing:-16.050217pt;}
.ws20{word-spacing:-15.992064pt;}
.ws1f{word-spacing:-15.817605pt;}
.ws10{word-spacing:-14.963200pt;}
.wsf{word-spacing:-14.945280pt;}
.ws14{word-spacing:-14.512747pt;}
.ws12{word-spacing:-14.494613pt;}
.wsc{word-spacing:-14.464000pt;}
.ws9{word-spacing:-13.038720pt;}
.ws1d{word-spacing:-12.955316pt;}
.wse{word-spacing:-12.894613pt;}
.ws16{word-spacing:-12.259807pt;}
.ws15{word-spacing:-12.149760pt;}
.ws1b{word-spacing:-12.115006pt;}
.ws8{word-spacing:-11.756800pt;}
.ws7{word-spacing:-11.742720pt;}
.ws1a{word-spacing:-11.121754pt;}
.ws18{word-spacing:-10.903680pt;}
.ws17{word-spacing:-10.860065pt;}
.ws19{word-spacing:-10.772836pt;}
.ws30{word-spacing:-0.697836pt;}
.ws25{word-spacing:-0.436147pt;}
.ws31{word-spacing:-0.232612pt;}
.ws44{word-spacing:-0.213228pt;}
.ws29{word-spacing:-0.130844pt;}
.ws2f{word-spacing:-0.116306pt;}
.ws26{word-spacing:-0.087229pt;}
.ws2{word-spacing:0.000000pt;}
.ws2a{word-spacing:0.096534pt;}
.ws39{word-spacing:0.116306pt;}
.ws28{word-spacing:0.130844pt;}
.ws24{word-spacing:0.144801pt;}
.ws2b{word-spacing:0.193068pt;}
.ws27{word-spacing:0.261688pt;}
.ws38{word-spacing:0.465224pt;}
.ws36{word-spacing:3.372872pt;}
.ws37{word-spacing:3.813090pt;}
.ws2e{word-spacing:4.502202pt;}
.ws2c{word-spacing:4.535931pt;}
.ws2d{word-spacing:5.558841pt;}
.ws3c{word-spacing:6.973509pt;}
.ws42{word-spacing:7.443579pt;}
.ws3b{word-spacing:7.821573pt;}
.ws3e{word-spacing:8.025108pt;}
.ws3d{word-spacing:8.034801pt;}
.ws40{word-spacing:8.078415pt;}
.ws41{word-spacing:8.083261pt;}
.ws43{word-spacing:8.393411pt;}
.ws3f{word-spacing:8.606638pt;}
.ws3a{word-spacing:8.742328pt;}
.ws35{word-spacing:13.258875pt;}
.ws33{word-spacing:13.317028pt;}
.ws32{word-spacing:13.607793pt;}
.ws34{word-spacing:13.840404pt;}
.ws23{word-spacing:295.589333pt;}
.ws22{word-spacing:472.266667pt;}
._1e{margin-left:-16.566187pt;}
._1b{margin-left:-14.322347pt;}
._1c{margin-left:-12.363520pt;}
._18{margin-left:-11.437653pt;}
._1f{margin-left:-9.568853pt;}
._1d{margin-left:-8.170667pt;}
._11{margin-left:-5.417387pt;}
._10{margin-left:-3.690667pt;}
._c{margin-left:-1.973333pt;}
._0{margin-left:-1.059840pt;}
._1{width:1.337173pt;}
._2{width:2.289493pt;}
._5{width:3.835307pt;}
._4{width:4.771840pt;}
._3{width:5.920000pt;}
._6{width:7.686827pt;}
._7{width:8.896000pt;}
._b{width:9.922560pt;}
._d{width:11.073707pt;}
._a{width:12.352000pt;}
._9{width:13.504000pt;}
._8{width:14.528000pt;}
._36{width:15.420160pt;}
._15{width:16.326827pt;}
._16{width:18.684160pt;}
._14{width:19.753813pt;}
._13{width:20.714667pt;}
._12{width:22.325333pt;}
._25{width:23.325440pt;}
._20{width:24.320000pt;}
._2b{width:25.405013pt;}
._26{width:26.833493pt;}
._f{width:28.608000pt;}
._e{width:30.012160pt;}
._28{width:31.206827pt;}
._27{width:32.177493pt;}
._35{width:33.261653pt;}
._31{width:34.566827pt;}
._30{width:35.904000pt;}
._24{width:36.864000pt;}
._22{width:37.952000pt;}
._23{width:39.164160pt;}
._2d{width:40.682667pt;}
._2c{width:41.717333pt;}
._2e{width:42.826667pt;}
._17{width:46.218667pt;}
._37{width:48.828160pt;}
._38{width:49.801813pt;}
._19{width:50.826667pt;}
._29{width:54.829653pt;}
._1a{width:56.426667pt;}
._39{width:57.521493pt;}
._2f{width:58.624000pt;}
._2a{width:60.166827pt;}
._21{width:67.456000pt;}
._33{width:79.336533pt;}
._32{width:80.732160pt;}
._34{width:81.719040pt;}
._3d{width:87.808000pt;}
._3c{width:89.152000pt;}
._3f{width:90.840320pt;}
._3e{width:92.896000pt;}
._3a{width:150.122667pt;}
._45{width:155.237339pt;}
._46{width:171.098667pt;}
._44{width:181.829333pt;}
._3b{width:220.736000pt;}
._43{width:243.728000pt;}
._48{width:419.610667pt;}
._42{width:429.386667pt;}
._41{width:736.824320pt;}
._40{width:737.724160pt;}
._47{width:1597.530667pt;}
.fs6{font-size:5.120000pt;}
.fsf{font-size:37.333333pt;}
.fs7{font-size:42.240000pt;}
.fsd{font-size:43.614720pt;}
.fse{font-size:45.940838pt;}
.fsb{font-size:48.266957pt;}
.fs9{font-size:48.640000pt;}
.fsa{font-size:48.768000pt;}
.fs8{font-size:53.760000pt;}
.fsc{font-size:58.152960pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:106.240000pt;}
.fs2{font-size:117.760000pt;}
.fs1{font-size:128.000000pt;}
.fs3{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.y2b2{bottom:1.600000pt;}
.y2b8{bottom:3.343795pt;}
.y2b0{bottom:3.520000pt;}
.y2b6{bottom:3.609118pt;}
.y264{bottom:10.240000pt;}
.y274{bottom:10.280000pt;}
.y245{bottom:10.560000pt;}
.y262{bottom:10.586667pt;}
.y24a{bottom:10.600000pt;}
.y244{bottom:10.880000pt;}
.y261{bottom:10.906667pt;}
.y249{bottom:10.920000pt;}
.y2b5{bottom:15.962988pt;}
.y257{bottom:16.000000pt;}
.y23f{bottom:16.026667pt;}
.y2ae{bottom:19.866667pt;}
.y284{bottom:22.080000pt;}
.y26c{bottom:22.400000pt;}
.y255{bottom:27.520000pt;}
.y23d{bottom:27.546667pt;}
.y285{bottom:33.640000pt;}
.y26d{bottom:33.920000pt;}
.y2a2{bottom:33.960000pt;}
.y256{bottom:39.040000pt;}
.y23e{bottom:39.066667pt;}
.y2c5{bottom:44.000000pt;}
.y25e{bottom:46.400000pt;}
.y259{bottom:46.720000pt;}
.y24c{bottom:46.746667pt;}
.y242{bottom:46.760000pt;}
.y64{bottom:50.880000pt;}
.y2a1{bottom:57.000000pt;}
.y2c4{bottom:58.666667pt;}
.y63{bottom:68.800000pt;}
.y25d{bottom:69.440000pt;}
.y24b{bottom:69.786667pt;}
.y241{bottom:69.800000pt;}
.y2c3{bottom:73.333333pt;}
.y2c2{bottom:88.000000pt;}
.y2a6{bottom:91.133333pt;}
.y2a4{bottom:97.632000pt;}
.y206{bottom:100.832000pt;}
.y1b8{bottom:101.152000pt;}
.y111{bottom:101.472000pt;}
.y14{bottom:102.752000pt;}
.y198{bottom:106.592000pt;}
.yfa{bottom:106.912000pt;}
.ye6{bottom:107.552000pt;}
.y16c{bottom:109.792000pt;}
.y48{bottom:110.432000pt;}
.y236{bottom:111.072000pt;}
.y62{bottom:111.712000pt;}
.y31{bottom:114.592000pt;}
.y1f7{bottom:116.512000pt;}
.y21e{bottom:118.752000pt;}
.y2a7{bottom:120.893333pt;}
.y82{bottom:121.312000pt;}
.y18e{bottom:122.912000pt;}
.y2b3{bottom:123.998096pt;}
.y1a8{bottom:124.192000pt;}
.y29d{bottom:125.792000pt;}
.y278{bottom:126.752000pt;}
.yb8{bottom:128.672000pt;}
.y110{bottom:128.992000pt;}
.y1c1{bottom:129.632000pt;}
.y2a3{bottom:131.232000pt;}
.y1d4{bottom:133.786667pt;}
.y197{bottom:134.106667pt;}
.y16b{bottom:137.306667pt;}
.y13{bottom:138.266667pt;}
.y235{bottom:138.586667pt;}
.y205{bottom:139.226667pt;}
.y138{bottom:139.866667pt;}
.y1f6{bottom:144.026667pt;}
.y2ad{bottom:144.066667pt;}
.y9c{bottom:144.666667pt;}
.yf9{bottom:144.986667pt;}
.ye5{bottom:145.626667pt;}
.y61{bottom:145.946667pt;}
.y21d{bottom:146.266667pt;}
.y47{bottom:148.506667pt;}
.y81{bottom:148.826667pt;}
.yd0{bottom:149.146667pt;}
.y2a8{bottom:150.626667pt;}
.y23a{bottom:150.746667pt;}
.y121{bottom:151.066667pt;}
.y30{bottom:152.986667pt;}
.yb7{bottom:156.506667pt;}
.y29c{bottom:159.386667pt;}
.y277{bottom:160.346667pt;}
.y154{bottom:160.666667pt;}
.y1d3{bottom:161.306667pt;}
.y196{bottom:161.946667pt;}
.y1a7{bottom:162.586667pt;}
.y16a{bottom:164.826667pt;}
.y234{bottom:166.106667pt;}
.y1ea{bottom:167.066667pt;}
.y1c0{bottom:167.706667pt;}
.y1f5{bottom:171.546667pt;}
.y9b{bottom:172.506667pt;}
.yf8{bottom:172.826667pt;}
.y21c{bottom:174.106667pt;}
.ycf{bottom:176.666667pt;}
.y266{bottom:177.626667pt;}
.y137{bottom:177.946667pt;}
.y120{bottom:178.586667pt;}
.y2a9{bottom:180.346667pt;}
.y60{bottom:180.506667pt;}
.y12{bottom:181.466667pt;}
.yb6{bottom:184.026667pt;}
.y46{bottom:186.946667pt;}
.y153{bottom:188.546667pt;}
.y1d2{bottom:188.866667pt;}
.y239{bottom:189.186667pt;}
.y195{bottom:189.506667pt;}
.y2f{bottom:191.426667pt;}
.y80{bottom:192.386667pt;}
.y29b{bottom:193.026667pt;}
.y233{bottom:193.986667pt;}
.y204{bottom:194.946667pt;}
.y1f4{bottom:199.106667pt;}
.y9a{bottom:200.066667pt;}
.yf7{bottom:200.386667pt;}
.y1a6{bottom:200.706667pt;}
.y21b{bottom:201.666667pt;}
.y1e9{bottom:205.506667pt;}
.y18d{bottom:206.146667pt;}
.y11f{bottom:206.466667pt;}
.y2aa{bottom:210.106667pt;}
.y265{bottom:211.266667pt;}
.yb5{bottom:211.586667pt;}
.y10f{bottom:211.906667pt;}
.y5f{bottom:214.786667pt;}
.y152{bottom:216.066667pt;}
.y136{bottom:216.386667pt;}
.y194{bottom:217.026667pt;}
.y169{bottom:220.226667pt;}
.y232{bottom:221.506667pt;}
.ye4{bottom:222.466667pt;}
.y25c{bottom:224.386667pt;}
.y45{bottom:225.026667pt;}
.y1d1{bottom:226.946667pt;}
.y11{bottom:227.266667pt;}
.y99{bottom:227.586667pt;}
.yf6{bottom:227.906667pt;}
.y17d{bottom:228.226667pt;}
.y21a{bottom:229.186667pt;}
.y2e{bottom:229.506667pt;}
.y18c{bottom:233.666667pt;}
.y11e{bottom:233.986667pt;}
.yce{bottom:234.306667pt;}
.y1a5{bottom:239.106667pt;}
.yb4{bottom:239.426667pt;}
.y2ab{bottom:239.840000pt;}
.y7f{bottom:242.626667pt;}
.y1e8{bottom:243.586667pt;}
.y151{bottom:243.906667pt;}
.y193{bottom:244.546667pt;}
.y168{bottom:247.746667pt;}
.y263{bottom:248.066667pt;}
.y5e{bottom:248.706667pt;}
.y231{bottom:249.026667pt;}
.y1b7{bottom:249.666667pt;}
.y203{bottom:249.986667pt;}
.y1f3{bottom:254.466667pt;}
.y135{bottom:254.786667pt;}
.y98{bottom:255.426667pt;}
.yf5{bottom:255.746667pt;}
.y17c{bottom:256.386667pt;}
.y219{bottom:256.706667pt;}
.y2a0{bottom:258.946667pt;}
.ye3{bottom:260.546667pt;}
.y18b{bottom:261.186667pt;}
.y11d{bottom:261.506667pt;}
.y44{bottom:263.426667pt;}
.y238{bottom:265.666667pt;}
.yb3{bottom:266.946667pt;}
.y2d{bottom:267.906667pt;}
.y2ac{bottom:269.600000pt;}
.y7e{bottom:270.146667pt;}
.y150{bottom:271.426667pt;}
.ycd{bottom:272.066667pt;}
.y192{bottom:272.386667pt;}
.y167{bottom:275.266667pt;}
.y5d{bottom:276.226667pt;}
.y230{bottom:276.546667pt;}
.y10{bottom:277.186667pt;}
.y202{bottom:277.506667pt;}
.y1e7{bottom:281.986667pt;}
.y1d0{bottom:282.306667pt;}
.y97{bottom:282.946667pt;}
.yf4{bottom:283.586667pt;}
.y17b{bottom:283.906667pt;}
.y218{bottom:284.546667pt;}
.y1b6{bottom:288.066667pt;}
.y11c{bottom:289.026667pt;}
.y134{bottom:292.866667pt;}
.y29a{bottom:294.146667pt;}
.y10e{bottom:294.466667pt;}
.y260{bottom:295.106667pt;}
.y7d{bottom:297.693333pt;}
.ye2{bottom:298.973333pt;}
.y1dc{bottom:299.933333pt;}
.y43{bottom:301.853333pt;}
.y166{bottom:302.813333pt;}
.y237{bottom:304.093333pt;}
.y22f{bottom:304.413333pt;}
.yb2{bottom:305.053333pt;}
.y201{bottom:305.373333pt;}
.y2c{bottom:305.693333pt;}
.y272{bottom:307.933333pt;}
.y1f2{bottom:309.533333pt;}
.ycc{bottom:310.173333pt;}
.y5c{bottom:310.493333pt;}
.yf3{bottom:310.813333pt;}
.y17a{bottom:311.453333pt;}
.y217{bottom:312.093333pt;}
.y29f{bottom:315.613333pt;}
.y1b5{bottom:315.933333pt;}
.y18a{bottom:316.573333pt;}
.y11b{bottom:316.893333pt;}
.y25f{bottom:318.813333pt;}
.y1e6{bottom:320.093333pt;}
.y1a4{bottom:322.013333pt;}
.y10d{bottom:322.333333pt;}
.y7c{bottom:325.213333pt;}
.y14f{bottom:326.493333pt;}
.yf{bottom:326.813333pt;}
.y1db{bottom:327.453333pt;}
.y299{bottom:327.773333pt;}
.y165{bottom:330.653333pt;}
.y133{bottom:331.293333pt;}
.y276{bottom:331.613333pt;}
.y22e{bottom:331.933333pt;}
.yb1{bottom:332.893333pt;}
.y2b{bottom:333.853333pt;}
.ye1{bottom:337.053333pt;}
.y1f1{bottom:337.373333pt;}
.y1cf{bottom:337.693333pt;}
.y96{bottom:338.013333pt;}
.y29e{bottom:338.653333pt;}
.yf2{bottom:338.973333pt;}
.y216{bottom:339.613333pt;}
.y42{bottom:339.933333pt;}
.y295{bottom:340.573333pt;}
.y258{bottom:342.493333pt;}
.y1b4{bottom:343.453333pt;}
.y189{bottom:344.093333pt;}
.y11a{bottom:344.413333pt;}
.y5b{bottom:344.733333pt;}
.y10c{bottom:349.853333pt;}
.y14e{bottom:354.333333pt;}
.y1da{bottom:354.973333pt;}
.y275{bottom:355.293333pt;}
.y1e5{bottom:358.493333pt;}
.y22d{bottom:359.453333pt;}
.yb0{bottom:360.413333pt;}
.y164{bottom:360.733333pt;}
.y2a{bottom:361.373333pt;}
.y7b{bottom:363.293333pt;}
.y298{bottom:364.253333pt;}
.y1f0{bottom:364.893333pt;}
.y1ce{bottom:365.213333pt;}
.y1f9{bottom:365.533333pt;}
.y95{bottom:365.853333pt;}
.y25b{bottom:366.173333pt;}
.yf1{bottom:366.493333pt;}
.y179{bottom:366.813333pt;}
.y215{bottom:367.133333pt;}
.y132{bottom:369.373333pt;}
.y2a5{bottom:369.920000pt;}
.y188{bottom:371.613333pt;}
.y119{bottom:371.933333pt;}
.ye0{bottom:375.453333pt;}
.ye{bottom:376.733333pt;}
.y1a3{bottom:377.373333pt;}
.y41{bottom:378.333333pt;}
.y5a{bottom:378.973333pt;}
.y10b{bottom:380.253333pt;}
.y163{bottom:380.573333pt;}
.y1b3{bottom:381.533333pt;}
.y14d{bottom:381.853333pt;}
.y1d9{bottom:382.813333pt;}
.y22c{bottom:386.973333pt;}
.yaf{bottom:387.933333pt;}
.y29{bottom:389.213333pt;}
.y25a{bottom:389.853333pt;}
.y2c1{bottom:390.149420pt;}
.y7a{bottom:391.133333pt;}
.y1ef{bottom:392.413333pt;}
.y1cd{bottom:392.733333pt;}
.y94{bottom:393.373333pt;}
.y178{bottom:394.333333pt;}
.y214{bottom:394.653333pt;}
.y1e4{bottom:396.573333pt;}
.y118{bottom:399.453333pt;}
.y10a{bottom:400.093333pt;}
.y273{bottom:402.653333pt;}
.yf0{bottom:404.893333pt;}
.y131{bottom:407.813333pt;}
.y14c{bottom:409.413333pt;}
.y1d8{bottom:410.373333pt;}
.y297{bottom:411.653333pt;}
.y2c0{bottom:413.002322pt;}
.y59{bottom:413.253333pt;}
.ydf{bottom:413.573333pt;}
.y22b{bottom:414.853333pt;}
.yae{bottom:415.493333pt;}
.y40{bottom:416.133333pt;}
.y162{bottom:418.373333pt;}
.y79{bottom:418.693333pt;}
.y109{bottom:419.973333pt;}
.y184{bottom:420.613333pt;}
.y93{bottom:420.933333pt;}
.y213{bottom:422.533333pt;}
.y26e{bottom:426.373333pt;}
.y28{bottom:427.013333pt;}
.y117{bottom:427.333333pt;}
.yd{bottom:427.653333pt;}
.y177{bottom:432.133333pt;}
.y1a2{bottom:432.453333pt;}
.y1e3{bottom:435.013333pt;}
.y296{bottom:435.333333pt;}
.y14b{bottom:436.933333pt;}
.y187{bottom:437.253333pt;}
.y1d7{bottom:437.893333pt;}
.y108{bottom:439.813333pt;}
.y22a{bottom:442.373333pt;}
.yef{bottom:443.013333pt;}
.yad{bottom:443.333333pt;}
.y3f{bottom:444.293333pt;}
.y130{bottom:445.893333pt;}
.y161{bottom:446.213333pt;}
.y78{bottom:446.533333pt;}
.y58{bottom:447.493333pt;}
.y1cc{bottom:448.133333pt;}
.ycb{bottom:448.453333pt;}
.y271{bottom:449.733333pt;}
.y212{bottom:450.053333pt;}
.yde{bottom:451.973333pt;}
.y200{bottom:453.573333pt;}
.y27{bottom:454.853333pt;}
.y92{bottom:459.013333pt;}
.y2b1{bottom:459.333333pt;}
.y176{bottom:460.293333pt;}
.y254{bottom:460.933333pt;}
.y2bf{bottom:463.013868pt;}
.y1b2{bottom:464.453333pt;}
.y229{bottom:469.893333pt;}
.yc{bottom:470.213333pt;}
.yac{bottom:470.853333pt;}
.yee{bottom:471.173333pt;}
.y3e{bottom:472.133333pt;}
.y186{bottom:473.413333pt;}
.y77{bottom:474.053333pt;}
.y14a{bottom:475.013333pt;}
.y1ee{bottom:475.333333pt;}
.y1cb{bottom:475.653333pt;}
.y1d6{bottom:475.973333pt;}
.yca{bottom:476.293333pt;}
.y107{bottom:477.253333pt;}
.y211{bottom:477.573333pt;}
.y1ff{bottom:481.413333pt;}
.y57{bottom:481.733333pt;}
.y26{bottom:482.373333pt;}
.y294{bottom:482.693333pt;}
.y12f{bottom:484.293333pt;}
.y91{bottom:486.853333pt;}
.y175{bottom:487.813333pt;}
.ydd{bottom:490.373333pt;}
.y1b1{bottom:492.293333pt;}
.y185{bottom:496.453333pt;}
.y270{bottom:497.093333pt;}
.y228{bottom:497.413333pt;}
.yab{bottom:498.373333pt;}
.y2af{bottom:501.253333pt;}
.y160{bottom:501.573333pt;}
.y149{bottom:502.853333pt;}
.y1ca{bottom:503.173333pt;}
.yc9{bottom:503.813333pt;}
.y210{bottom:505.093333pt;}
.y106{bottom:505.413333pt;}
.y293{bottom:506.373333pt;}
.yed{bottom:508.933333pt;}
.y1fe{bottom:509.253333pt;}
.y3d{bottom:509.573333pt;}
.y116{bottom:509.893333pt;}
.y25{bottom:510.213333pt;}
.y1e2{bottom:511.493333pt;}
.y76{bottom:511.813333pt;}
.yb{bottom:512.453333pt;}
.y2be{bottom:513.170796pt;}
.y90{bottom:514.373333pt;}
.y174{bottom:515.333333pt;}
.y56{bottom:516.293333pt;}
.y1b0{bottom:519.840000pt;}
.y26f{bottom:520.800000pt;}
.y12e{bottom:522.720000pt;}
.y227{bottom:524.960000pt;}
.yaa{bottom:525.920000pt;}
.ydc{bottom:528.480000pt;}
.y15f{bottom:529.120000pt;}
.y292{bottom:530.080000pt;}
.y148{bottom:530.400000pt;}
.y1c9{bottom:531.040000pt;}
.yc8{bottom:531.360000pt;}
.y105{bottom:532.960000pt;}
.y1fd{bottom:536.800000pt;}
.yec{bottom:537.120000pt;}
.y3c{bottom:537.760000pt;}
.y2bd{bottom:538.321951pt;}
.y253{bottom:539.360000pt;}
.y75{bottom:540.000000pt;}
.y8f{bottom:541.920000pt;}
.y183{bottom:542.240000pt;}
.y173{bottom:542.880000pt;}
.y26b{bottom:544.480000pt;}
.y1af{bottom:547.360000pt;}
.y24{bottom:548.000000pt;}
.y1e1{bottom:549.920000pt;}
.y55{bottom:550.560000pt;}
.y226{bottom:552.800000pt;}
.ya9{bottom:553.760000pt;}
.y15e{bottom:556.640000pt;}
.y1ed{bottom:557.920000pt;}
.y147{bottom:558.240000pt;}
.y1c8{bottom:558.560000pt;}
.yc7{bottom:558.880000pt;}
.y104{bottom:560.480000pt;}
.y12d{bottom:560.800000pt;}
.y252{bottom:562.400000pt;}
.y1fc{bottom:564.320000pt;}
.y3b{bottom:565.280000pt;}
.ya{bottom:565.600000pt;}
.ydb{bottom:566.880000pt;}
.yeb{bottom:567.200000pt;}
.y74{bottom:567.520000pt;}
.y1f8{bottom:569.440000pt;}
.y8e{bottom:569.760000pt;}
.y172{bottom:570.720000pt;}
.y1ae{bottom:574.880000pt;}
.y23{bottom:575.840000pt;}
.y291{bottom:577.440000pt;}
.y54{bottom:578.080000pt;}
.y225{bottom:580.320000pt;}
.ya8{bottom:581.280000pt;}
.y146{bottom:585.760000pt;}
.y1c7{bottom:586.080000pt;}
.y1a1{bottom:586.400000pt;}
.yea{bottom:586.720000pt;}
.y103{bottom:588.000000pt;}
.yc6{bottom:589.280000pt;}
.y3a{bottom:592.800000pt;}
.y73{bottom:595.040000pt;}
.y251{bottom:596.000000pt;}
.y191{bottom:596.960000pt;}
.y8d{bottom:597.280000pt;}
.y171{bottom:598.240000pt;}
.y12c{bottom:599.200000pt;}
.y1fb{bottom:602.400000pt;}
.y1ad{bottom:602.720000pt;}
.y1bf{bottom:603.040000pt;}
.y22{bottom:603.360000pt;}
.yda{bottom:604.960000pt;}
.y224{bottom:607.840000pt;}
.ya7{bottom:608.800000pt;}
.yc5{bottom:609.120000pt;}
.y53{bottom:612.320000pt;}
.y26a{bottom:612.640000pt;}
.y145{bottom:613.280000pt;}
.y2bc{bottom:613.484652pt;}
.y1a0{bottom:614.240000pt;}
.y20f{bottom:615.520000pt;}
.y102{bottom:615.840000pt;}
.y9{bottom:618.720000pt;}
.y39{bottom:620.640000pt;}
.y72{bottom:622.560000pt;}
.y15d{bottom:622.880000pt;}
.y1c6{bottom:624.160000pt;}
.y8c{bottom:624.800000pt;}
.y170{bottom:625.760000pt;}
.y1e0{bottom:626.400000pt;}
.y1ac{bottom:630.266667pt;}
.y21{bottom:631.226667pt;}
.y250{bottom:632.506667pt;}
.ye9{bottom:635.386667pt;}
.ya6{bottom:636.346667pt;}
.y12b{bottom:636.986667pt;}
.y2bb{bottom:638.635807pt;}
.y52{bottom:639.866667pt;}
.y144{bottom:640.826667pt;}
.y19f{bottom:641.786667pt;}
.yd9{bottom:643.386667pt;}
.y290{bottom:645.626667pt;}
.y269{bottom:646.586667pt;}
.yc4{bottom:646.906667pt;}
.y71{bottom:650.426667pt;}
.y1c5{bottom:652.026667pt;}
.y8b{bottom:652.346667pt;}
.y182{bottom:652.666667pt;}
.y24f{bottom:656.186667pt;}
.ye8{bottom:657.786667pt;}
.y38{bottom:658.426667pt;}
.y20{bottom:658.746667pt;}
.y282{bottom:659.386667pt;}
.y223{bottom:663.226667pt;}
.y16f{bottom:663.866667pt;}
.ya5{bottom:664.186667pt;}
.y1df{bottom:664.826667pt;}
.y1ec{bottom:668.346667pt;}
.y143{bottom:668.666667pt;}
.y1be{bottom:668.986667pt;}
.y115{bottom:669.306667pt;}
.y8{bottom:670.906667pt;}
.y51{bottom:674.426667pt;}
.y12a{bottom:675.386667pt;}
.y70{bottom:677.946667pt;}
.y15c{bottom:678.266667pt;}
.y28f{bottom:679.226667pt;}
.y24e{bottom:679.866667pt;}
.y8a{bottom:680.186667pt;}
.yd8{bottom:681.466667pt;}
.y1c4{bottom:682.426667pt;}
.y281{bottom:683.066667pt;}
.yc3{bottom:684.986667pt;}
.ye7{bottom:685.306667pt;}
.y37{bottom:686.266667pt;}
.y1f{bottom:686.586667pt;}
.y2ba{bottom:688.792735pt;}
.y222{bottom:690.746667pt;}
.ya4{bottom:691.706667pt;}
.y28a{bottom:692.026667pt;}
.y142{bottom:696.186667pt;}
.y19e{bottom:697.146667pt;}
.y101{bottom:698.426667pt;}
.y1c3{bottom:702.266667pt;}
.y1de{bottom:702.906667pt;}
.y24d{bottom:703.546667pt;}
.y6f{bottom:705.466667pt;}
.y15b{bottom:705.786667pt;}
.y280{bottom:706.426667pt;}
.y114{bottom:707.386667pt;}
.y89{bottom:707.706667pt;}
.y50{bottom:708.666667pt;}
.yc2{bottom:713.146667pt;}
.y129{bottom:713.466667pt;}
.y36{bottom:713.786667pt;}
.y2b9{bottom:713.798508pt;}
.y28e{bottom:715.706667pt;}
.y221{bottom:718.266667pt;}
.ya3{bottom:719.226667pt;}
.yd7{bottom:719.866667pt;}
.y7{bottom:720.506667pt;}
.y1c2{bottom:722.106667pt;}
.y141{bottom:723.706667pt;}
.y1e{bottom:724.346667pt;}
.y19d{bottom:724.666667pt;}
.y20e{bottom:725.946667pt;}
.y100{bottom:726.266667pt;}
.y240{bottom:727.226667pt;}
.y27f{bottom:730.106667pt;}
.y6e{bottom:732.986667pt;}
.y15a{bottom:733.626667pt;}
.y1d5{bottom:734.906667pt;}
.y88{bottom:735.226667pt;}
.y28d{bottom:739.426667pt;}
.yc1{bottom:740.706667pt;}
.y1dd{bottom:741.346667pt;}
.y128{bottom:741.666667pt;}
.y35{bottom:741.986667pt;}
.y4f{bottom:742.946667pt;}
.y181{bottom:745.826667pt;}
.ya2{bottom:746.786667pt;}
.y248{bottom:750.946667pt;}
.y140{bottom:751.266667pt;}
.y1d{bottom:752.226667pt;}
.yff{bottom:753.826667pt;}
.yd6{bottom:758.306667pt;}
.y6d{bottom:760.866667pt;}
.y159{bottom:761.506667pt;}
.y1bd{bottom:762.466667pt;}
.y87{bottom:762.786667pt;}
.y28c{bottom:763.106667pt;}
.yc0{bottom:768.226667pt;}
.y127{bottom:769.186667pt;}
.y6{bottom:770.466667pt;}
.y220{bottom:773.666667pt;}
.y247{bottom:774.626667pt;}
.y4e{bottom:776.866667pt;}
.y27e{bottom:777.506667pt;}
.y1ab{bottom:778.466667pt;}
.y1eb{bottom:778.786667pt;}
.y34{bottom:779.426667pt;}
.y19c{bottom:779.746667pt;}
.y1c{bottom:780.066667pt;}
.y20d{bottom:781.346667pt;}
.y180{bottom:781.986667pt;}
.yfe{bottom:783.906667pt;}
.ya1{bottom:784.866667pt;}
.y28b{bottom:786.786667pt;}
.y6c{bottom:788.386667pt;}
.y13f{bottom:789.346667pt;}
.y86{bottom:790.626667pt;}
.ybf{bottom:795.746667pt;}
.yd5{bottom:796.386667pt;}
.y126{bottom:796.706667pt;}
.y246{bottom:798.306667pt;}
.y1bc{bottom:800.866667pt;}
.y21f{bottom:801.186667pt;}
.yfd{bottom:804.066667pt;}
.y17f{bottom:805.026667pt;}
.y1fa{bottom:806.306667pt;}
.y1aa{bottom:806.626667pt;}
.y19b{bottom:807.586667pt;}
.y33{bottom:807.906667pt;}
.y20c{bottom:808.866667pt;}
.y286{bottom:810.466667pt;}
.y4d{bottom:811.106667pt;}
.ya0{bottom:812.706667pt;}
.y16e{bottom:815.586667pt;}
.y13e{bottom:817.186667pt;}
.y1b{bottom:817.826667pt;}
.y85{bottom:818.146667pt;}
.y5{bottom:820.386667pt;}
.y243{bottom:821.986667pt;}
.yfc{bottom:823.906667pt;}
.y125{bottom:824.226667pt;}
.y27d{bottom:824.866667pt;}
.y6b{bottom:826.146667pt;}
.y1bb{bottom:828.706667pt;}
.ybe{bottom:833.826667pt;}
.y1a9{bottom:834.146667pt;}
.yd4{bottom:834.786667pt;}
.y19a{bottom:835.106667pt;}
.y16d{bottom:835.426667pt;}
.y20b{bottom:836.386667pt;}
.y17e{bottom:837.026667pt;}
.y9f{bottom:843.106667pt;}
.y13d{bottom:844.706667pt;}
.y158{bottom:845.026667pt;}
.y32{bottom:845.346667pt;}
.y1a{bottom:845.666667pt;}
.y27c{bottom:848.573333pt;}
.y6a{bottom:854.333333pt;}
.y1ba{bottom:856.253333pt;}
.y2b4{bottom:856.273260pt;}
.y289{bottom:857.853333pt;}
.yfb{bottom:861.373333pt;}
.ybd{bottom:861.693333pt;}
.y124{bottom:862.333333pt;}
.y199{bottom:862.653333pt;}
.y9e{bottom:862.973333pt;}
.y20a{bottom:864.253333pt;}
.y4{bottom:869.053333pt;}
.y27b{bottom:872.253333pt;}
.y157{bottom:872.573333pt;}
.yd3{bottom:872.893333pt;}
.y19{bottom:873.213333pt;}
.y13c{bottom:875.133333pt;}
.y4c{bottom:879.933333pt;}
.y288{bottom:881.533333pt;}
.y69{bottom:881.853333pt;}
.y113{bottom:883.773333pt;}
.y1b9{bottom:884.093333pt;}
.ybc{bottom:889.213333pt;}
.y123{bottom:890.173333pt;}
.y209{bottom:891.773333pt;}
.y13b{bottom:894.973333pt;}
.y27a{bottom:895.933333pt;}
.y156{bottom:900.413333pt;}
.y9d{bottom:900.733333pt;}
.y18{bottom:901.053333pt;}
.y3{bottom:904.893333pt;}
.y287{bottom:905.213333pt;}
.yd2{bottom:911.293333pt;}
.y112{bottom:911.613333pt;}
.y4b{bottom:914.173333pt;}
.ybb{bottom:917.053333pt;}
.y208{bottom:919.293333pt;}
.y279{bottom:919.613333pt;}
.y68{bottom:919.933333pt;}
.y23c{bottom:924.093333pt;}
.y13a{bottom:925.053333pt;}
.y155{bottom:928.253333pt;}
.y17{bottom:928.573333pt;}
.y283{bottom:928.893333pt;}
.y84{bottom:938.813333pt;}
.yd1{bottom:939.133333pt;}
.y67{bottom:939.453333pt;}
.yba{bottom:944.573333pt;}
.y139{bottom:944.893333pt;}
.y207{bottom:946.813333pt;}
.y23b{bottom:947.133333pt;}
.y4a{bottom:948.733333pt;}
.y2{bottom:952.573333pt;}
.y190{bottom:956.093333pt;}
.y16{bottom:956.413333pt;}
.y2b7{bottom:958.609378pt;}
.y49{bottom:964.453333pt;}
.y122{bottom:966.373333pt;}
.y83{bottom:966.693333pt;}
.y66{bottom:969.573333pt;}
.y268{bottom:974.053333pt;}
.yb9{bottom:975.013333pt;}
.y65{bottom:989.413333pt;}
.y18f{bottom:994.213333pt;}
.y15{bottom:994.533333pt;}
.y1{bottom:994.853333pt;}
.y267{bottom:997.093333pt;}
.h8{height:4.875000pt;}
.h22{height:13.375181pt;}
.h1a{height:16.000000pt;}
.h19{height:17.952000pt;}
.h10{height:22.720000pt;}
.h12{height:22.752000pt;}
.hd{height:23.040000pt;}
.he{height:23.072000pt;}
.h21{height:32.711040pt;}
.h25{height:38.937500pt;}
.h9{height:44.990000pt;}
.h13{height:45.792000pt;}
.h11{height:46.080000pt;}
.h16{height:48.378750pt;}
.h17{height:48.506062pt;}
.h23{height:48.644042pt;}
.h18{height:53.471250pt;}
.ha{height:56.070000pt;}
.hb{height:56.352000pt;}
.h20{height:57.073950pt;}
.h2{height:58.563750pt;}
.h24{height:60.651720pt;}
.h7{height:66.750000pt;}
.h14{height:69.152000pt;}
.h6{height:98.251250pt;}
.h4{height:108.905000pt;}
.hf{height:117.472000pt;}
.hc{height:117.792000pt;}
.h3{height:118.375000pt;}
.h5{height:127.845000pt;}
.h15{height:288.000000pt;}
.h1f{height:945.683436pt;}
.h1e{height:1108.666667pt;}
.h1d{height:1108.800000pt;}
.h1c{height:1117.333333pt;}
.h1b{height:1117.440000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w14{width:62.752000pt;}
.w13{width:63.712000pt;}
.w9{width:96.032000pt;}
.wa{width:105.664000pt;}
.w11{width:107.872000pt;}
.w7{width:109.184000pt;}
.we{width:109.504000pt;}
.wf{width:109.792000pt;}
.w10{width:109.824000pt;}
.w8{width:114.272000pt;}
.w6{width:117.792000pt;}
.wd{width:126.112000pt;}
.w3{width:145.306667pt;}
.w5{width:145.346667pt;}
.w4{width:145.666667pt;}
.w1a{width:210.804480pt;}
.wb{width:282.653333pt;}
.wc{width:282.693333pt;}
.w12{width:480.000000pt;}
.w19{width:536.619765pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.w15{width:795.840000pt;}
.w16{width:796.000000pt;}
.w18{width:798.666667pt;}
.w17{width:798.720000pt;}
.x0{left:0.000000pt;}
.x2e{left:6.720000pt;}
.x55{left:8.722944pt;}
.x34{left:11.520000pt;}
.x33{left:15.040000pt;}
.x52{left:16.320000pt;}
.x46{left:17.280000pt;}
.x2b{left:18.560000pt;}
.x32{left:20.480000pt;}
.x31{left:22.720000pt;}
.x30{left:24.320000pt;}
.x29{left:25.280000pt;}
.x1c{left:26.600000pt;}
.x2f{left:28.162667pt;}
.x35{left:29.146667pt;}
.x2c{left:31.360000pt;}
.x25{left:32.666667pt;}
.x48{left:33.602667pt;}
.x4d{left:34.880000pt;}
.x21{left:36.186667pt;}
.x4e{left:37.120000pt;}
.x15{left:38.752000pt;}
.x1d{left:39.680000pt;}
.x18{left:40.666667pt;}
.x1e{left:41.600000pt;}
.x1a{left:43.240000pt;}
.x26{left:45.466667pt;}
.x20{left:47.720000pt;}
.x22{left:49.640000pt;}
.x1f{left:50.586667pt;}
.x23{left:52.186667pt;}
.x24{left:53.160000pt;}
.x16{left:56.320000pt;}
.x40{left:58.882667pt;}
.x37{left:62.746667pt;}
.x3d{left:64.002667pt;}
.x3b{left:74.242667pt;}
.x3a{left:76.509333pt;}
.x41{left:78.429333pt;}
.x36{left:89.629333pt;}
.x3e{left:92.189333pt;}
.x38{left:95.069333pt;}
.x54{left:99.021164pt;}
.x39{left:101.506667pt;}
.x45{left:103.106667pt;}
.x3c{left:105.026667pt;}
.x3f{left:108.866667pt;}
.x43{left:110.786667pt;}
.x1{left:113.311988pt;}
.x53{left:119.673227pt;}
.x42{left:125.149333pt;}
.x44{left:126.429333pt;}
.xe{left:128.063988pt;}
.x8{left:137.986655pt;}
.xf{left:142.786655pt;}
.x11{left:161.346655pt;}
.x12{left:185.346655pt;}
.xa{left:197.853322pt;}
.x27{left:232.413333pt;}
.x9{left:233.693322pt;}
.x49{left:241.053333pt;}
.x4f{left:245.280000pt;}
.xc{left:271.493322pt;}
.xd{left:280.773322pt;}
.x2{left:289.413322pt;}
.x17{left:331.013333pt;}
.x28{left:342.240000pt;}
.x3{left:347.999988pt;}
.x4a{left:351.200000pt;}
.x13{left:389.599988pt;}
.x10{left:393.119988pt;}
.x5{left:395.359988pt;}
.x7{left:396.959988pt;}
.x14{left:417.439988pt;}
.x2a{left:457.146667pt;}
.x4b{left:461.626667pt;}
.x6{left:466.746655pt;}
.x19{left:476.986667pt;}
.x2d{left:553.826667pt;}
.x4{left:557.346655pt;}
.x4c{left:572.093333pt;}
.x47{left:593.533322pt;}
.x50{left:618.813333pt;}
.x51{left:619.773333pt;}
.x1b{left:623.293333pt;}
.xb{left:680.613322pt;}
}




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