
    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_eacc7338302a9b631100cf4b.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_ae6bdcc82c8d7159e95536f3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_e7151ba35ba4b55504517b0b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_56c5138294519d4ded1a877a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.163086;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_54996ba4040e80605b0b74dc.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_b700a748babaaa7df171dc4c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.767578;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_b429d1b02934099dc6b7b358.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_86532a328555d28698477e2c.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_690b465209cf83f25ccd9eec.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_dee4d1841ed6881bb24e6f1f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.928223;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_784fba852af394953f1a7f44.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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(0.388025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388025,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-27.360000px;}
.v6{vertical-align:-12.964096px;}
.v7{vertical-align:-9.396794px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:5.760000px;}
.v5{vertical-align:23.760000px;}
.v1{vertical-align:27.360000px;}
.ls1a{letter-spacing:-4.104000px;}
.ls19{letter-spacing:-3.960000px;}
.lsb{letter-spacing:-1.440000px;}
.ls1e{letter-spacing:-0.864000px;}
.lsd{letter-spacing:-0.720000px;}
.ls1c{letter-spacing:-0.504000px;}
.ls1b{letter-spacing:-0.360000px;}
.ls12{letter-spacing:-0.288000px;}
.ls2a{letter-spacing:-0.230569px;}
.ls20{letter-spacing:-0.216000px;}
.ls2c{letter-spacing:-0.194461px;}
.ls29{letter-spacing:-0.182715px;}
.ls13{letter-spacing:-0.144000px;}
.ls2b{letter-spacing:-0.119200px;}
.lse{letter-spacing:-0.109200px;}
.ls11{letter-spacing:-0.072000px;}
.ls8{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.028080px;}
.ls25{letter-spacing:0.033759px;}
.ls30{letter-spacing:0.072000px;}
.ls26{letter-spacing:0.087703px;}
.lsc{letter-spacing:0.109200px;}
.ls2d{letter-spacing:0.144000px;}
.ls2f{letter-spacing:0.152640px;}
.ls3{letter-spacing:0.180000px;}
.ls21{letter-spacing:0.181200px;}
.ls15{letter-spacing:0.216000px;}
.ls9{letter-spacing:0.256200px;}
.ls5{letter-spacing:0.262080px;}
.ls1f{letter-spacing:0.288000px;}
.ls2e{letter-spacing:0.336000px;}
.ls2{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.382080px;}
.ls33{letter-spacing:0.432000px;}
.ls23{letter-spacing:0.460080px;}
.ls14{letter-spacing:0.504000px;}
.ls1{letter-spacing:0.540000px;}
.ls22{letter-spacing:0.576000px;}
.ls17{letter-spacing:0.720000px;}
.ls32{letter-spacing:0.936000px;}
.ls18{letter-spacing:1.620000px;}
.ls7{letter-spacing:8.640000px;}
.lsf{letter-spacing:14.400000px;}
.ls4{letter-spacing:15.120000px;}
.ls10{letter-spacing:18.000000px;}
.ls16{letter-spacing:20.880000px;}
.ls28{letter-spacing:25.200000px;}
.ls1d{letter-spacing:26.100000px;}
.ls31{letter-spacing:39.600000px;}
.ls27{letter-spacing:41.040000px;}
.ls24{letter-spacing:165.195125px;}
.ls0{letter-spacing:957.900000px;}
.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;}
}
.wsf{word-spacing:-72.000000px;}
.ws21{word-spacing:-18.936000px;}
.ws1f{word-spacing:-18.720000px;}
.ws13{word-spacing:-18.576000px;}
.wsa{word-spacing:-18.504000px;}
.ws11{word-spacing:-18.288000px;}
.wse{word-spacing:-18.216000px;}
.ws1e{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.928000px;}
.ws9{word-spacing:-17.856000px;}
.ws14{word-spacing:-17.784000px;}
.ws20{word-spacing:-17.712000px;}
.ws4{word-spacing:-16.669200px;}
.ws3{word-spacing:-16.560000px;}
.ws6{word-spacing:-16.450800px;}
.ws5{word-spacing:-15.840000px;}
.ws0{word-spacing:-15.226440px;}
.wsd{word-spacing:-13.896000px;}
.ws2{word-spacing:-12.420000px;}
.ws12{word-spacing:-12.241200px;}
.wsb{word-spacing:-12.060000px;}
.ws10{word-spacing:-11.700000px;}
.ws1d{word-spacing:-8.754263px;}
.ws18{word-spacing:-8.730666px;}
.ws1c{word-spacing:-8.500097px;}
.wsc{word-spacing:-8.100000px;}
.ws1a{word-spacing:-5.899099px;}
.ws15{word-spacing:-0.054000px;}
.ws7{word-spacing:0.000000px;}
.ws1b{word-spacing:4.724499px;}
.ws19{word-spacing:95.842780px;}
.ws17{word-spacing:152.309510px;}
.ws16{word-spacing:165.273606px;}
._3f{margin-left:-1873.716000px;}
._4e{margin-left:-6.130560px;}
._2a{margin-left:-5.051040px;}
._29{margin-left:-4.012320px;}
._9{margin-left:-2.671680px;}
._2{margin-left:-1.440000px;}
._1{width:1.513440px;}
._3{width:2.527200px;}
._c{width:4.229760px;}
._b{width:5.365440px;}
._7{width:7.094400px;}
._6{width:8.158080px;}
._a{width:9.204480px;}
._8{width:10.777440px;}
._12{width:11.808000px;}
._17{width:12.951360px;}
._5{width:13.976640px;}
._4{width:15.235200px;}
._15{width:16.623360px;}
._11{width:19.512000px;}
._e{width:21.245760px;}
._d{width:22.587840px;}
._16{width:24.408000px;}
._13{width:25.632000px;}
._14{width:26.928000px;}
._1f{width:28.800000px;}
._25{width:29.916000px;}
._34{width:31.320000px;}
._24{width:32.760000px;}
._f{width:33.840000px;}
._10{width:34.920000px;}
._27{width:36.576000px;}
._32{width:37.872000px;}
._2f{width:39.312000px;}
._41{width:40.390560px;}
._42{width:41.472000px;}
._49{width:42.624000px;}
._33{width:43.632000px;}
._22{width:45.216000px;}
._23{width:46.260000px;}
._46{width:47.304000px;}
._2e{width:49.032000px;}
._3a{width:50.040000px;}
._37{width:51.048000px;}
._1e{width:52.344000px;}
._18{width:53.712000px;}
._19{width:54.864000px;}
._28{width:56.016000px;}
._2d{width:57.312000px;}
._67{width:58.320000px;}
._30{width:59.830560px;}
._31{width:60.840000px;}
._3e{width:61.866720px;}
._20{width:63.360000px;}
._21{width:64.584000px;}
._43{width:66.672000px;}
._1a{width:67.824000px;}
._1b{width:68.973120px;}
._1c{width:71.280000px;}
._1d{width:72.720000px;}
._47{width:74.160000px;}
._45{width:75.384000px;}
._26{width:77.544000px;}
._3c{width:79.990560px;}
._3d{width:81.408000px;}
._5d{width:84.720000px;}
._3b{width:86.952000px;}
._48{width:88.558560px;}
._5a{width:89.641440px;}
._4a{width:92.355360px;}
._5b{width:95.472000px;}
._5c{width:96.492000px;}
._52{width:97.584000px;}
._63{width:99.936000px;}
._64{width:101.160000px;}
._38{width:104.472000px;}
._39{width:105.732000px;}
._5e{width:106.920000px;}
._5f{width:108.072000px;}
._6c{width:112.104000px;}
._4f{width:118.008000px;}
._62{width:124.584000px;}
._53{width:125.976000px;}
._6f{width:132.408000px;}
._6e{width:133.776000px;}
._51{width:138.048000px;}
._65{width:144.792000px;}
._66{width:145.872000px;}
._6a{width:147.238560px;}
._58{width:148.584000px;}
._50{width:156.024000px;}
._4b{width:161.976000px;}
._40{width:165.195125px;}
._55{width:174.048000px;}
._6b{width:176.184000px;}
._56{width:177.984000px;}
._54{width:180.000000px;}
._4c{width:195.984000px;}
._36{width:197.976000px;}
._4d{width:199.092000px;}
._6d{width:215.604000px;}
._60{width:239.976000px;}
._2c{width:253.776000px;}
._70{width:260.388000px;}
._61{width:261.540000px;}
._44{width:305.712000px;}
._68{width:334.164000px;}
._2b{width:577.776000px;}
._0{width:763.770000px;}
._35{width:828.996000px;}
._69{width:929.088000px;}
._59{width:1296.300000px;}
._57{width:1512.300000px;}
.fc7{color:transparent;}
.fc9{color:rgb(15,27,35);}
.fc6{color:rgb(255,0,0);}
.fc2{color:rgb(255,192,0);}
.fc1{color:rgb(0,112,192);}
.fc8{color:rgb(255,255,255);}
.fc5{color:rgb(48,48,48);}
.fc4{color:rgb(51,51,51);}
.fc3{color:rgb(46,46,46);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:22.447898px;}
.fsd{font-size:23.596395px;}
.fsb{font-size:26.102207px;}
.fs9{font-size:38.631266px;}
.fsc{font-size:38.735675px;}
.fs7{font-size:41.760000px;}
.fs8{font-size:43.329664px;}
.fs6{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs4{font-size:90.000000px;}
.y1f0{bottom:-430.455000px;}
.y146{bottom:-2.670000px;}
.y140{bottom:-0.285000px;}
.y0{bottom:0.000000px;}
.y13e{bottom:2.415000px;}
.y142{bottom:3.855000px;}
.y10d{bottom:3.960000px;}
.y1bf{bottom:4.860000px;}
.y148{bottom:6.480000px;}
.y13c{bottom:6.555000px;}
.y24f{bottom:7.380000px;}
.y14a{bottom:7.560000px;}
.y1d3{bottom:7.920000px;}
.y144{bottom:8.130000px;}
.y187{bottom:8.280000px;}
.y1c6{bottom:8.460000px;}
.y1bc{bottom:9.225000px;}
.yf5{bottom:9.720000px;}
.y198{bottom:10.440000px;}
.y14d{bottom:10.980000px;}
.ydf{bottom:12.060000px;}
.y180{bottom:12.750000px;}
.ye7{bottom:13.140000px;}
.y151{bottom:13.822130px;}
.ye0{bottom:14.040000px;}
.y10e{bottom:14.220000px;}
.y10b{bottom:14.940000px;}
.yee{bottom:15.300000px;}
.y115{bottom:15.840000px;}
.y185{bottom:16.200000px;}
.y17e{bottom:16.350000px;}
.y17c{bottom:16.530000px;}
.y1b1{bottom:16.920000px;}
.y183{bottom:17.100000px;}
.y1a0{bottom:18.540000px;}
.y1b4{bottom:21.060000px;}
.ydd{bottom:23.040000px;}
.y11a{bottom:24.660000px;}
.y1d2{bottom:28.620000px;}
.y1c5{bottom:29.160000px;}
.y1bb{bottom:29.925000px;}
.yf4{bottom:30.450000px;}
.y197{bottom:31.140000px;}
.ye6{bottom:33.840000px;}
.y10a{bottom:35.640000px;}
.yed{bottom:36.000000px;}
.y114{bottom:36.540000px;}
.y169{bottom:37.392503px;}
.y15f{bottom:37.476247px;}
.y164{bottom:37.476248px;}
.y161{bottom:37.476253px;}
.y15d{bottom:37.478423px;}
.y153{bottom:37.554553px;}
.y158{bottom:37.554555px;}
.y155{bottom:37.554560px;}
.y1b0{bottom:37.620000px;}
.y182{bottom:37.800000px;}
.y19f{bottom:39.240000px;}
.ydc{bottom:43.740000px;}
.y18a{bottom:45.360000px;}
.y1c9{bottom:45.390000px;}
.y117{bottom:45.405000px;}
.y1ce{bottom:47.340000px;}
.y1c2{bottom:47.520000px;}
.y1b7{bottom:48.105000px;}
.yf0{bottom:48.270000px;}
.y193{bottom:48.600000px;}
.y1d1{bottom:49.320000px;}
.ye2{bottom:49.860000px;}
.y1ba{bottom:50.625000px;}
.ye9{bottom:50.940000px;}
.y18f{bottom:51.120000px;}
.yf3{bottom:51.150000px;}
.y110{bottom:51.300000px;}
.y196{bottom:51.840000px;}
.y19b{bottom:52.560000px;}
.ye5{bottom:54.585000px;}
.yec{bottom:56.700000px;}
.y113{bottom:57.240000px;}
.y3{bottom:58.356000px;}
.y19e{bottom:59.940000px;}
.y18c{bottom:66.060000px;}
.y1cb{bottom:66.090000px;}
.y119{bottom:66.105000px;}
.y1d0{bottom:70.020000px;}
.y1c4{bottom:70.560000px;}
.y1b9{bottom:71.325000px;}
.yf2{bottom:71.850000px;}
.y195{bottom:72.540000px;}
.ye4{bottom:75.285000px;}
.yeb{bottom:77.400000px;}
.y112{bottom:77.940000px;}
.y2{bottom:78.516000px;}
.y167{bottom:78.764398px;}
.y19d{bottom:80.640000px;}
.y18b{bottom:86.760000px;}
.y1ca{bottom:86.790000px;}
.y118{bottom:86.805000px;}
.y166{bottom:90.379884px;}
.y1cf{bottom:90.720000px;}
.y1c3{bottom:91.260000px;}
.y1b8{bottom:92.025000px;}
.yf1{bottom:92.550000px;}
.y194{bottom:93.240000px;}
.ye3{bottom:95.985000px;}
.yea{bottom:98.100000px;}
.y190{bottom:98.145000px;}
.y111{bottom:98.640000px;}
.y19c{bottom:101.340000px;}
.y16b{bottom:105.362573px;}
.y1e2{bottom:105.876000px;}
.y1dd{bottom:109.116000px;}
.y27f{bottom:111.456000px;}
.ycb{bottom:111.816000px;}
.y95{bottom:117.396000px;}
.y28f{bottom:117.756000px;}
.yba{bottom:119.196000px;}
.y208{bottom:120.816000px;}
.y72{bottom:120.996000px;}
.y230{bottom:122.976000px;}
.y2b6{bottom:123.516000px;}
.y165{bottom:124.788018px;}
.y162{bottom:124.788025px;}
.y106{bottom:125.316000px;}
.y1ab{bottom:126.216000px;}
.yd8{bottom:126.756000px;}
.y24d{bottom:127.116000px;}
.y1e1{bottom:129.816000px;}
.y27e{bottom:132.156000px;}
.y2e{bottom:132.876000px;}
.yca{bottom:135.576000px;}
.y17a{bottom:137.916000px;}
.y28e{bottom:138.456000px;}
.y94{bottom:141.156000px;}
.y207{bottom:141.336000px;}
.yb9{bottom:142.956000px;}
.y2b5{bottom:144.216000px;}
.y71{bottom:144.756000px;}
.y1aa{bottom:148.356000px;}
.y131{bottom:148.716000px;}
.y105{bottom:149.076000px;}
.yd7{bottom:150.510000px;}
.y24c{bottom:150.870000px;}
.y2d{bottom:151.770000px;}
.y27d{bottom:152.850000px;}
.y150{bottom:152.978433px;}
.y57{bottom:153.570000px;}
.y1df{bottom:156.630000px;}
.y28d{bottom:159.150000px;}
.yc9{bottom:159.330000px;}
.y13a{bottom:161.670000px;}
.y22f{bottom:161.850000px;}
.y206{bottom:162.030000px;}
.y1dc{bottom:163.470000px;}
.y93{bottom:164.910000px;}
.yb8{bottom:166.710000px;}
.y70{bottom:168.510000px;}
.y1a9{bottom:170.490000px;}
.y2c{bottom:170.670000px;}
.y104{bottom:172.830000px;}
.y27c{bottom:173.550000px;}
.yd6{bottom:174.270000px;}
.y24b{bottom:174.810000px;}
.y56{bottom:177.330000px;}
.y28c{bottom:179.850000px;}
.y1db{bottom:180.570000px;}
.y205{bottom:182.730000px;}
.yc8{bottom:183.090000px;}
.y2b4{bottom:185.610000px;}
.y92{bottom:188.670000px;}
.y2b{bottom:189.750000px;}
.yb7{bottom:190.650000px;}
.y179{bottom:191.730000px;}
.y6f{bottom:192.270000px;}
.y1a8{bottom:192.450000px;}
.y27b{bottom:194.250000px;}
.y130{bottom:194.790000px;}
.y139{bottom:196.410000px;}
.y103{bottom:196.770000px;}
.yd5{bottom:198.210000px;}
.y24a{bottom:198.570000px;}
.y22e{bottom:200.550000px;}
.y55{bottom:201.090000px;}
.y204{bottom:203.430000px;}
.y1da{bottom:204.330000px;}
.y143{bottom:205.740000px;}
.y2b3{bottom:206.310000px;}
.yc7{bottom:207.030000px;}
.y2a{bottom:208.650000px;}
.y15b{bottom:211.447353px;}
.y91{bottom:212.610000px;}
.yb6{bottom:214.410000px;}
.y1a7{bottom:214.590000px;}
.y27a{bottom:214.950000px;}
.y145{bottom:215.100000px;}
.y6e{bottom:216.210000px;}
.y102{bottom:220.530000px;}
.y28b{bottom:221.250000px;}
.yd4{bottom:221.970000px;}
.y249{bottom:222.330000px;}
.y15a{bottom:223.062840px;}
.y203{bottom:224.130000px;}
.y54{bottom:225.030000px;}
.y2b2{bottom:227.010000px;}
.y29{bottom:227.730000px;}
.y1de{bottom:228.090000px;}
.y16a{bottom:228.326806px;}
.yc6{bottom:230.790000px;}
.y1d9{bottom:234.930000px;}
.y279{bottom:235.650000px;}
.y90{bottom:236.370000px;}
.y1a6{bottom:236.730000px;}
.y178{bottom:237.810000px;}
.yb5{bottom:238.170000px;}
.y22d{bottom:239.430000px;}
.y6d{bottom:239.970000px;}
.y12f{bottom:240.870000px;}
.y28a{bottom:241.950000px;}
.y101{bottom:244.290000px;}
.y202{bottom:244.830000px;}
.yd3{bottom:245.730000px;}
.y248{bottom:246.090000px;}
.y28{bottom:246.630000px;}
.y2b1{bottom:247.710000px;}
.y53{bottom:248.790000px;}
.y1d8{bottom:251.850000px;}
.yc5{bottom:254.550000px;}
.y278{bottom:256.350000px;}
.y159{bottom:257.463360px;}
.y156{bottom:257.463368px;}
.y1a5{bottom:258.690000px;}
.y8f{bottom:260.130000px;}
.y177{bottom:261.570000px;}
.yb4{bottom:261.930000px;}
.y289{bottom:262.650000px;}
.y6c{bottom:263.730000px;}
.y201{bottom:265.530000px;}
.y27{bottom:265.710000px;}
.y100{bottom:268.050000px;}
.y2b0{bottom:268.410000px;}
.y247{bottom:270.030000px;}
.y52{bottom:272.550000px;}
.y1d7{bottom:275.790000px;}
.y277{bottom:277.050000px;}
.yc4{bottom:278.310000px;}
.yd2{bottom:278.490000px;}
.y1a4{bottom:280.830000px;}
.y288{bottom:283.350000px;}
.y8e{bottom:283.890000px;}
.y26{bottom:284.610000px;}
.y176{bottom:285.330000px;}
.yb3{bottom:285.870000px;}
.y200{bottom:286.230000px;}
.y12e{bottom:286.770000px;}
.y6b{bottom:287.490000px;}
.y2af{bottom:289.155000px;}
.yff{bottom:292.035000px;}
.y246{bottom:293.835000px;}
.y51{bottom:296.355000px;}
.y276{bottom:297.795000px;}
.y1ee{bottom:299.055000px;}
.yc3{bottom:302.295000px;}
.yd1{bottom:302.475000px;}
.y23c{bottom:302.655000px;}
.y1a3{bottom:303.015000px;}
.y25{bottom:303.555000px;}
.y287{bottom:304.095000px;}
.y1ff{bottom:306.975000px;}
.y8d{bottom:307.875000px;}
.y175{bottom:309.135000px;}
.yb2{bottom:309.675000px;}
.y2ae{bottom:309.855000px;}
.y12d{bottom:310.755000px;}
.y6a{bottom:311.475000px;}
.y1d6{bottom:314.535000px;}
.y22c{bottom:317.055000px;}
.y245{bottom:317.595000px;}
.y275{bottom:318.495000px;}
.y50{bottom:320.295000px;}
.y1a2{bottom:320.475000px;}
.y226{bottom:320.835000px;}
.y24{bottom:322.635000px;}
.y286{bottom:324.795000px;}
.y141{bottom:325.440000px;}
.yc2{bottom:326.055000px;}
.yd0{bottom:326.235000px;}
.y23b{bottom:326.415000px;}
.y1fe{bottom:327.675000px;}
.y2ad{bottom:330.555000px;}
.y8c{bottom:331.635000px;}
.y174{bottom:332.895000px;}
.yb1{bottom:333.435000px;}
.y12c{bottom:334.515000px;}
.y69{bottom:335.235000px;}
.y1d5{bottom:336.675000px;}
.yfe{bottom:337.935000px;}
.y274{bottom:339.195000px;}
.y244{bottom:341.355000px;}
.y23{bottom:341.535000px;}
.y4f{bottom:344.055000px;}
.y285{bottom:345.495000px;}
.y1fd{bottom:348.375000px;}
.yc1{bottom:349.815000px;}
.ycf{bottom:349.995000px;}
.y23a{bottom:350.175000px;}
.y2ac{bottom:351.255000px;}
.y22b{bottom:351.975000px;}
.y8b{bottom:355.395000px;}
.y173{bottom:356.835000px;}
.yb0{bottom:357.195000px;}
.y12b{bottom:358.275000px;}
.y68{bottom:358.995000px;}
.y273{bottom:359.895000px;}
.yfd{bottom:360.075000px;}
.y1d4{bottom:360.435000px;}
.y22{bottom:360.615000px;}
.y225{bottom:362.235000px;}
.y243{bottom:365.295000px;}
.y284{bottom:366.195000px;}
.y4e{bottom:367.815000px;}
.y1fc{bottom:369.075000px;}
.y13b{bottom:369.180000px;}
.y2ab{bottom:371.955000px;}
.yc0{bottom:373.575000px;}
.yce{bottom:373.755000px;}
.y239{bottom:373.935000px;}
.y13f{bottom:376.200000px;}
.y1ed{bottom:376.635000px;}
.y1cd{bottom:377.895000px;}
.y8a{bottom:379.155000px;}
.y21{bottom:379.515000px;}
.y172{bottom:380.595000px;}
.yaf{bottom:381.135000px;}
.y12a{bottom:382.035000px;}
.yfc{bottom:382.215000px;}
.y67{bottom:382.755000px;}
.y224{bottom:382.935000px;}
.y283{bottom:386.895000px;}
.y242{bottom:389.055000px;}
.y1fb{bottom:389.775000px;}
.y4d{bottom:391.575000px;}
.y2aa{bottom:392.655000px;}
.ybf{bottom:397.335000px;}
.ycd{bottom:397.695000px;}
.y238{bottom:397.875000px;}
.y20{bottom:398.415000px;}
.y272{bottom:401.295000px;}
.y89{bottom:403.095000px;}
.y223{bottom:403.635000px;}
.yfb{bottom:404.175000px;}
.y171{bottom:404.355000px;}
.yae{bottom:404.895000px;}
.y129{bottom:405.975000px;}
.y66{bottom:406.695000px;}
.y282{bottom:407.595000px;}
.y1fa{bottom:410.475000px;}
.y241{bottom:412.815000px;}
.y2a9{bottom:413.355000px;}
.y4c{bottom:415.335000px;}
.y1ec{bottom:415.515000px;}
.y1f{bottom:417.495000px;}
.ybe{bottom:421.275000px;}
.ycc{bottom:421.455000px;}
.y237{bottom:421.635000px;}
.y271{bottom:421.995000px;}
.y1a1{bottom:423.975000px;}
.y222{bottom:424.335000px;}
.yfa{bottom:426.315000px;}
.y88{bottom:426.855000px;}
.y170{bottom:428.115000px;}
.y281{bottom:428.295000px;}
.yad{bottom:428.655000px;}
.y128{bottom:429.735000px;}
.y65{bottom:430.455000px;}
.y1f9{bottom:431.175000px;}
.y13d{bottom:431.280000px;}
.y2a8{bottom:434.055000px;}
.y1e{bottom:436.395000px;}
.y240{bottom:436.575000px;}
.y4b{bottom:439.275000px;}
.y19a{bottom:444.675000px;}
.ybd{bottom:445.035000px;}
.y236{bottom:445.395000px;}
.y270{bottom:445.755000px;}
.yf9{bottom:448.455000px;}
.y280{bottom:448.995000px;}
.y87{bottom:450.615000px;}
.y1f8{bottom:451.875000px;}
.yac{bottom:452.415000px;}
.y127{bottom:453.495000px;}
.y64{bottom:454.215000px;}
.y2a7{bottom:454.755000px;}
.y1d{bottom:455.475000px;}
.y23f{bottom:460.335000px;}
.y4a{bottom:463.035000px;}
.y221{bottom:465.735000px;}
.y235{bottom:469.155000px;}
.y26f{bottom:469.695000px;}
.yf8{bottom:470.415000px;}
.y1f7{bottom:472.575000px;}
.y16f{bottom:474.195000px;}
.y1c{bottom:474.375000px;}
.y2a6{bottom:475.455000px;}
.yab{bottom:476.355000px;}
.y126{bottom:477.255000px;}
.y63{bottom:477.975000px;}
.y23e{bottom:484.275000px;}
.y1cc{bottom:485.355000px;}
.y220{bottom:486.435000px;}
.y49{bottom:486.795000px;}
.yf7{bottom:492.555000px;}
.y1eb{bottom:493.095000px;}
.y1b{bottom:493.275000px;}
.y16e{bottom:494.895000px;}
.y2a5{bottom:496.155000px;}
.yaa{bottom:500.115000px;}
.y125{bottom:501.195000px;}
.y62{bottom:501.915000px;}
.y86{bottom:505.155000px;}
.y1c8{bottom:506.055000px;}
.y21f{bottom:507.135000px;}
.y23d{bottom:508.035000px;}
.y26e{bottom:508.395000px;}
.y48{bottom:510.555000px;}
.y1a{bottom:512.355000px;}
.y1f6{bottom:513.975000px;}
.yf6{bottom:514.695000px;}
.y2a4{bottom:516.855000px;}
.y16d{bottom:517.035000px;}
.y85{bottom:522.075000px;}
.ya9{bottom:523.875000px;}
.y124{bottom:524.955000px;}
.y61{bottom:525.675000px;}
.y21e{bottom:527.835000px;}
.y1ea{bottom:531.795000px;}
.yef{bottom:532.155000px;}
.y267{bottom:533.955000px;}
.y47{bottom:534.495000px;}
.y1f5{bottom:534.675000px;}
.y19{bottom:535.575000px;}
.y26d{bottom:536.655000px;}
.y2a3{bottom:537.555000px;}
.y16c{bottom:537.735000px;}
.y138{bottom:538.095000px;}
.y84{bottom:545.835000px;}
.ya8{bottom:547.665000px;}
.y21d{bottom:548.565000px;}
.y123{bottom:548.745000px;}
.y60{bottom:549.465000px;}
.y266{bottom:557.745000px;}
.y46{bottom:558.285000px;}
.y1f4{bottom:559.185000px;}
.y199{bottom:562.785000px;}
.y21c{bottom:569.265000px;}
.y83{bottom:569.625000px;}
.y1e9{bottom:570.705000px;}
.ya7{bottom:571.605000px;}
.y14f{bottom:572.494875px;}
.y122{bottom:572.505000px;}
.y5f{bottom:573.225000px;}
.y26c{bottom:575.385000px;}
.y137{bottom:576.825000px;}
.y2a2{bottom:578.985000px;}
.y265{bottom:581.685000px;}
.y45{bottom:582.045000px;}
.y192{bottom:583.485000px;}
.y18{bottom:584.745000px;}
.y21b{bottom:589.965000px;}
.y82{bottom:593.565000px;}
.ya6{bottom:595.365000px;}
.y121{bottom:596.265000px;}
.y5e{bottom:596.985000px;}
.y2a1{bottom:599.685000px;}
.y136{bottom:600.765000px;}
.y1f3{bottom:604.365000px;}
.y264{bottom:605.445000px;}
.y44{bottom:605.805000px;}
.y17{bottom:608.505000px;}
.y234{bottom:609.405000px;}
.y1c7{bottom:609.585000px;}
.y21a{bottom:610.665000px;}
.y26b{bottom:614.265000px;}
.y81{bottom:617.325000px;}
.ya5{bottom:619.125000px;}
.y120{bottom:620.205000px;}
.y2a0{bottom:620.385000px;}
.y5d{bottom:620.925000px;}
.y22a{bottom:622.725000px;}
.y168{bottom:625.482244px;}
.y263{bottom:629.205000px;}
.y43{bottom:629.745000px;}
.y1c1{bottom:630.285000px;}
.y219{bottom:631.365000px;}
.y16{bottom:632.265000px;}
.y135{bottom:635.505000px;}
.y26a{bottom:638.025000px;}
.y29f{bottom:641.085000px;}
.ye8{bottom:641.445000px;}
.ya4{bottom:642.885000px;}
.y1f2{bottom:643.245000px;}
.y5c{bottom:644.685000px;}
.y250{bottom:646.305000px;}
.y1e8{bottom:648.285000px;}
.y24e{bottom:649.365000px;}
.y218{bottom:652.065000px;}
.y262{bottom:652.965000px;}
.y42{bottom:653.505000px;}
.y11f{bottom:654.225000px;}
.y80{bottom:656.025000px;}
.y163{bottom:659.806646px;}
.y160{bottom:659.806651px;}
.y15e{bottom:659.806661px;}
.y229{bottom:661.605000px;}
.y269{bottom:661.785000px;}
.y15{bottom:663.045000px;}
.ya3{bottom:666.645000px;}
.y5b{bottom:668.445000px;}
.y217{bottom:672.765000px;}
.y11e{bottom:676.365000px;}
.y41{bottom:677.265000px;}
.y1f1{bottom:677.985000px;}
.y14{bottom:679.965000px;}
.y29e{bottom:682.485000px;}
.y233{bottom:683.205000px;}
.y1e7{bottom:687.165000px;}
.ya2{bottom:690.585000px;}
.y261{bottom:691.845000px;}
.y5a{bottom:692.205000px;}
.y191{bottom:693.465000px;}
.y14c{bottom:694.365000px;}
.y11d{bottom:698.325000px;}
.y228{bottom:700.305000px;}
.y268{bottom:700.665000px;}
.y40{bottom:701.025000px;}
.y29d{bottom:703.185000px;}
.y13{bottom:710.565000px;}
.y18e{bottom:714.165000px;}
.ya1{bottom:714.345000px;}
.y260{bottom:715.605000px;}
.y59{bottom:716.145000px;}
.y7f{bottom:718.665000px;}
.y11c{bottom:720.465000px;}
.y29c{bottom:723.885000px;}
.y3f{bottom:724.965000px;}
.y1e6{bottom:725.865000px;}
.y12{bottom:734.325000px;}
.y216{bottom:734.865000px;}
.y227{bottom:735.225000px;}
.y11b{bottom:737.925000px;}
.ya0{bottom:738.105000px;}
.y1c0{bottom:738.285000px;}
.y25f{bottom:739.365000px;}
.y58{bottom:739.905000px;}
.y7e{bottom:742.425000px;}
.y29b{bottom:744.585000px;}
.ybc{bottom:748.725000px;}
.y11{bottom:751.425000px;}
.y215{bottom:755.565000px;}
.ye1{bottom:756.285000px;}
.y15c{bottom:758.079279px;}
.y1be{bottom:758.805000px;}
.y25e{bottom:763.305000px;}
.y3e{bottom:763.665000px;}
.y1e5{bottom:764.745000px;}
.y29a{bottom:765.285000px;}
.y7d{bottom:766.365000px;}
.y116{bottom:767.625000px;}
.y9f{bottom:770.865000px;}
.ybb{bottom:772.485000px;}
.y214{bottom:776.265000px;}
.y1bd{bottom:781.125000px;}
.y10{bottom:782.025000px;}
.y1e4{bottom:784.545000px;}
.y299{bottom:785.985000px;}
.y25d{bottom:787.065000px;}
.y3d{bottom:787.425000px;}
.y7c{bottom:790.125000px;}
.y157{bottom:792.403682px;}
.y154{bottom:792.403686px;}
.y152{bottom:792.403696px;}
.y9e{bottom:794.805000px;}
.y1e0{bottom:796.245000px;}
.y213{bottom:796.965000px;}
.yf{bottom:798.945000px;}
.y1b6{bottom:801.825000px;}
.y298{bottom:806.685000px;}
.y25c{bottom:810.870000px;}
.y3c{bottom:811.410000px;}
.y7b{bottom:813.930000px;}
.y212{bottom:817.710000px;}
.y297{bottom:827.430000px;}
.y18d{bottom:829.050000px;}
.ye{bottom:829.590000px;}
.y9d{bottom:833.550000px;}
.y25b{bottom:834.630000px;}
.y3b{bottom:835.170000px;}
.y7a{bottom:837.690000px;}
.y211{bottom:838.410000px;}
.yd{bottom:846.690000px;}
.y296{bottom:848.130000px;}
.y189{bottom:849.750000px;}
.y9c{bottom:857.310000px;}
.y25a{bottom:858.570000px;}
.y3a{bottom:858.930000px;}
.y210{bottom:859.110000px;}
.y133{bottom:860.550000px;}
.y134{bottom:860.730000px;}
.y79{bottom:861.630000px;}
.y295{bottom:868.830000px;}
.ydb{bottom:869.730000px;}
.y10f{bottom:871.170000px;}
.yc{bottom:877.290000px;}
.y9b{bottom:881.250000px;}
.y14e{bottom:881.970000px;}
.y259{bottom:882.330000px;}
.y39{bottom:882.690000px;}
.y232{bottom:883.230000px;}
.y20f{bottom:883.410000px;}
.y78{bottom:885.390000px;}
.y17b{bottom:887.940000px;}
.y294{bottom:889.530000px;}
.y17d{bottom:892.980000px;}
.yb{bottom:894.210000px;}
.yde{bottom:901.410000px;}
.y9a{bottom:905.010000px;}
.y258{bottom:906.090000px;}
.y38{bottom:906.630000px;}
.y77{bottom:909.150000px;}
.y293{bottom:910.230000px;}
.y1b5{bottom:910.590000px;}
.y14b{bottom:913.830000px;}
.ya{bottom:917.970000px;}
.y231{bottom:922.110000px;}
.y20e{bottom:927.150000px;}
.y99{bottom:928.770000px;}
.y257{bottom:929.850000px;}
.y37{bottom:930.390000px;}
.y292{bottom:930.930000px;}
.y1b3{bottom:931.290000px;}
.y76{bottom:932.910000px;}
.y9{bottom:942.990000px;}
.yda{bottom:948.210000px;}
.y291{bottom:951.630000px;}
.y98{bottom:952.530000px;}
.y188{bottom:953.250000px;}
.y256{bottom:953.790000px;}
.y36{bottom:954.150000px;}
.y75{bottom:956.850000px;}
.y20d{bottom:968.550000px;}
.y1af{bottom:969.810000px;}
.y8{bottom:970.710000px;}
.y290{bottom:972.330000px;}
.y186{bottom:973.950000px;}
.y97{bottom:976.470000px;}
.y255{bottom:977.550000px;}
.y35{bottom:977.910000px;}
.y109{bottom:987.270000px;}
.y1b2{bottom:991.230000px;}
.y20c{bottom:993.030000px;}
.yd9{bottom:994.290000px;}
.y74{bottom:995.550000px;}
.y7{bottom:998.430000px;}
.y96{bottom:1000.410000px;}
.y254{bottom:1001.310000px;}
.y34{bottom:1001.850000px;}
.y181{bottom:1004.190000px;}
.y20b{bottom:1013.730000px;}
.y17f{bottom:1017.000000px;}
.y10c{bottom:1018.950000px;}
.y253{bottom:1025.070000px;}
.y33{bottom:1025.610000px;}
.y184{bottom:1025.790000px;}
.y1ae{bottom:1030.290000px;}
.y1e3{bottom:1032.450000px;}
.y73{bottom:1034.430000px;}
.y6{bottom:1046.130000px;}
.y252{bottom:1049.010000px;}
.y32{bottom:1049.370000px;}
.y1ad{bottom:1052.430000px;}
.y20a{bottom:1055.130000px;}
.y108{bottom:1057.650000px;}
.y5{bottom:1066.500000px;}
.y147{bottom:1067.220000px;}
.y149{bottom:1069.740000px;}
.y251{bottom:1072.800000px;}
.y31{bottom:1073.160000px;}
.y1ac{bottom:1074.420000px;}
.y209{bottom:1075.860000px;}
.y132{bottom:1090.260000px;}
.y4{bottom:1092.240000px;}
.y107{bottom:1096.560000px;}
.y30{bottom:1096.920000px;}
.y1{bottom:1117.260000px;}
.y2f{bottom:1137.600000px;}
.y1ef{bottom:1188.000000px;}
.h45{height:-193.725000px;}
.h1f{height:14.040000px;}
.h1a{height:15.300000px;}
.h1c{height:16.380000px;}
.h1d{height:16.560000px;}
.h42{height:20.520000px;}
.h13{height:20.700000px;}
.h20{height:22.140000px;}
.h41{height:22.320000px;}
.h2a{height:22.984981px;}
.h22{height:23.220000px;}
.h18{height:23.400000px;}
.h46{height:24.120000px;}
.h31{height:24.160957px;}
.h23{height:26.640000px;}
.h36{height:27.000000px;}
.h47{height:27.180000px;}
.h33{height:28.124618px;}
.h34{height:28.200631px;}
.hd{height:28.800000px;}
.h39{height:29.520000px;}
.h17{height:29.700000px;}
.h35{height:30.600000px;}
.he{height:30.780000px;}
.h14{height:30.960000px;}
.h25{height:31.545180px;}
.h38{height:32.940000px;}
.h3f{height:37.800000px;}
.h2b{height:38.423774px;}
.h32{height:38.527622px;}
.h27{height:39.555550px;}
.h2e{height:39.662456px;}
.h7{height:47.344922px;}
.ha{height:52.066406px;}
.h12{height:52.380000px;}
.h1e{height:52.998047px;}
.h3e{height:54.360000px;}
.h1b{height:54.421875px;}
.h37{height:54.540000px;}
.h19{height:58.651172px;}
.hc{height:60.480000px;}
.h9{height:64.978594px;}
.h2{height:65.884219px;}
.h4{height:66.757500px;}
.h21{height:67.824844px;}
.hb{height:70.628906px;}
.h1{height:70.664062px;}
.h26{height:71.259029px;}
.h29{height:71.259030px;}
.h28{height:71.259035px;}
.h8{height:72.562500px;}
.h6{height:74.704922px;}
.h2c{height:81.569401px;}
.h2d{height:81.699911px;}
.h30{height:81.699912px;}
.h2f{height:81.699918px;}
.h5{height:84.898125px;}
.h3{height:90.703125px;}
.h3a{height:103.500000px;}
.h16{height:103.536000px;}
.h44{height:107.460000px;}
.h43{height:108.000000px;}
.h40{height:108.756000px;}
.h11{height:109.296000px;}
.h3c{height:109.980000px;}
.hf{height:112.716000px;}
.h10{height:114.840000px;}
.h3b{height:114.876000px;}
.h15{height:115.380000px;}
.h3d{height:118.116000px;}
.h24{height:291.170159px;}
.h0{height:1188.000000px;}
.w2d{width:-91.260000px;}
.w10{width:38.160000px;}
.w1d{width:42.120000px;}
.w1e{width:46.620000px;}
.w18{width:55.300530px;}
.w1b{width:55.503096px;}
.w2f{width:58.320000px;}
.w15{width:65.736000px;}
.w1a{width:70.492983px;}
.w14{width:74.916000px;}
.w28{width:78.156000px;}
.w21{width:78.876000px;}
.w6{width:79.056000px;}
.w16{width:86.076000px;}
.w3{width:88.596000px;}
.w1f{width:89.820000px;}
.w11{width:90.000000px;}
.w13{width:92.196000px;}
.wa{width:94.356000px;}
.w2e{width:100.116000px;}
.w2b{width:107.496000px;}
.w7{width:108.540000px;}
.we{width:109.440000px;}
.w12{width:115.020000px;}
.wd{width:116.316000px;}
.w25{width:125.100000px;}
.w24{width:125.136000px;}
.w20{width:126.396000px;}
.w27{width:126.720000px;}
.w5{width:129.240000px;}
.wc{width:138.240000px;}
.w2{width:138.780000px;}
.w9{width:139.860000px;}
.w2a{width:143.676000px;}
.w23{width:150.150000px;}
.w1c{width:150.709133px;}
.w19{width:150.911698px;}
.wb{width:167.430000px;}
.w22{width:182.880000px;}
.w29{width:184.320000px;}
.w4{width:221.250000px;}
.w8{width:316.830000px;}
.wf{width:363.990000px;}
.w2c{width:376.275000px;}
.w26{width:400.395000px;}
.w17{width:602.633963px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x74{left:-157.170000px;}
.x0{left:0.000000px;}
.x4f{left:6.245787px;}
.x4e{left:8.963548px;}
.x43{left:11.016000px;}
.x1c{left:13.500000px;}
.x46{left:14.790000px;}
.x33{left:16.380000px;}
.x30{left:18.180000px;}
.x5a{left:19.707486px;}
.x2c{left:20.925000px;}
.x23{left:22.005000px;}
.x19{left:23.040000px;}
.x68{left:24.840000px;}
.x32{left:25.920000px;}
.x64{left:28.260000px;}
.x1f{left:29.520000px;}
.x28{left:30.780000px;}
.x27{left:32.940000px;}
.x45{left:34.416000px;}
.x1a{left:35.820000px;}
.x2d{left:37.080000px;}
.x3a{left:38.160000px;}
.x25{left:39.240000px;}
.x35{left:40.500000px;}
.x3d{left:41.580000px;}
.x3c{left:42.660000px;}
.x67{left:43.920000px;}
.x3b{left:45.000000px;}
.x2f{left:46.080000px;}
.x21{left:49.140000px;}
.x3e{left:50.580000px;}
.x69{left:52.200000px;}
.x37{left:53.640000px;}
.x4d{left:54.751413px;}
.x66{left:56.550000px;}
.x2a{left:60.120000px;}
.x4b{left:61.200000px;}
.x2e{left:62.280000px;}
.x6f{left:63.354000px;}
.x2b{left:64.620000px;}
.x1e{left:67.320000px;}
.x29{left:69.660000px;}
.x71{left:71.850000px;}
.x65{left:77.400000px;}
.x4a{left:85.860000px;}
.x5e{left:88.380000px;}
.x70{left:92.160000px;}
.x18{left:99.936000px;}
.x3{left:108.035986px;}
.x7{left:111.275986px;}
.x9{left:126.395986px;}
.x26{left:127.620000px;}
.x42{left:129.240000px;}
.x1{left:131.615986px;}
.x7a{left:144.035986px;}
.xb{left:146.555986px;}
.x6e{left:149.790000px;}
.x39{left:151.200000px;}
.x13{left:155.189986px;}
.x10{left:157.889986px;}
.x17{left:162.029986px;}
.xe{left:167.609986px;}
.x11{left:170.669986px;}
.x12{left:188.669986px;}
.x5{left:198.749986px;}
.x5c{left:210.420000px;}
.x5f{left:214.770000px;}
.x48{left:219.810000px;}
.x15{left:226.829986px;}
.x41{left:236.880000px;}
.x1b{left:238.710000px;}
.x31{left:239.790000px;}
.x6{left:266.069986px;}
.x14{left:272.549986px;}
.x60{left:293.655000px;}
.x5d{left:298.980000px;}
.x6a{left:304.815000px;}
.x44{left:322.920000px;}
.x1d{left:327.315000px;}
.x58{left:330.072417px;}
.x47{left:332.280000px;}
.x34{left:334.155000px;}
.xf{left:362.414986px;}
.xa{left:371.774986px;}
.x78{left:380.234986px;}
.xc{left:382.214986px;}
.x8{left:389.774986px;}
.x59{left:400.970530px;}
.x52{left:406.000915px;}
.x77{left:410.474986px;}
.x53{left:414.521763px;}
.x55{left:417.749748px;}
.x49{left:420.015000px;}
.x50{left:422.780133px;}
.xd{left:453.494986px;}
.x54{left:469.822290px;}
.x2{left:474.374986px;}
.x61{left:476.535000px;}
.x6b{left:489.315000px;}
.x4{left:496.184986px;}
.x36{left:501.585000px;}
.x79{left:507.525000px;}
.x16{left:509.684986px;}
.x57{left:526.899080px;}
.x51{left:531.912584px;}
.x7b{left:545.684986px;}
.x20{left:548.565000px;}
.x3f{left:567.644986px;}
.x56{left:620.328854px;}
.x4c{left:625.604986px;}
.x62{left:626.685000px;}
.x6c{left:632.985000px;}
.x38{left:639.825000px;}
.x40{left:675.104986px;}
.x22{left:677.805000px;}
.x5b{left:710.969986px;}
.x6d{left:740.490000px;}
.x72{left:742.649986px;}
.x63{left:751.830000px;}
.x24{left:756.870000px;}
.x73{left:760.649986px;}
.x75{left:767.849986px;}
.x76{left:769.649986px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v6{vertical-align:-11.523641pt;}
.v7{vertical-align:-8.352706pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:5.120000pt;}
.v5{vertical-align:21.120000pt;}
.v1{vertical-align:24.320000pt;}
.ls1a{letter-spacing:-3.648000pt;}
.ls19{letter-spacing:-3.520000pt;}
.lsb{letter-spacing:-1.280000pt;}
.ls1e{letter-spacing:-0.768000pt;}
.lsd{letter-spacing:-0.640000pt;}
.ls1c{letter-spacing:-0.448000pt;}
.ls1b{letter-spacing:-0.320000pt;}
.ls12{letter-spacing:-0.256000pt;}
.ls2a{letter-spacing:-0.204951pt;}
.ls20{letter-spacing:-0.192000pt;}
.ls2c{letter-spacing:-0.172855pt;}
.ls29{letter-spacing:-0.162414pt;}
.ls13{letter-spacing:-0.128000pt;}
.ls2b{letter-spacing:-0.105956pt;}
.lse{letter-spacing:-0.097067pt;}
.ls11{letter-spacing:-0.064000pt;}
.ls8{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.024960pt;}
.ls25{letter-spacing:0.030008pt;}
.ls30{letter-spacing:0.064000pt;}
.ls26{letter-spacing:0.077959pt;}
.lsc{letter-spacing:0.097067pt;}
.ls2d{letter-spacing:0.128000pt;}
.ls2f{letter-spacing:0.135680pt;}
.ls3{letter-spacing:0.160000pt;}
.ls21{letter-spacing:0.161067pt;}
.ls15{letter-spacing:0.192000pt;}
.ls9{letter-spacing:0.227733pt;}
.ls5{letter-spacing:0.232960pt;}
.ls1f{letter-spacing:0.256000pt;}
.ls2e{letter-spacing:0.298667pt;}
.ls2{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.339627pt;}
.ls33{letter-spacing:0.384000pt;}
.ls23{letter-spacing:0.408960pt;}
.ls14{letter-spacing:0.448000pt;}
.ls1{letter-spacing:0.480000pt;}
.ls22{letter-spacing:0.512000pt;}
.ls17{letter-spacing:0.640000pt;}
.ls32{letter-spacing:0.832000pt;}
.ls18{letter-spacing:1.440000pt;}
.ls7{letter-spacing:7.680000pt;}
.lsf{letter-spacing:12.800000pt;}
.ls4{letter-spacing:13.440000pt;}
.ls10{letter-spacing:16.000000pt;}
.ls16{letter-spacing:18.560000pt;}
.ls28{letter-spacing:22.400000pt;}
.ls1d{letter-spacing:23.200000pt;}
.ls31{letter-spacing:35.200000pt;}
.ls27{letter-spacing:36.480000pt;}
.ls24{letter-spacing:146.840111pt;}
.ls0{letter-spacing:851.466667pt;}
.wsf{word-spacing:-64.000000pt;}
.ws21{word-spacing:-16.832000pt;}
.ws1f{word-spacing:-16.640000pt;}
.ws13{word-spacing:-16.512000pt;}
.wsa{word-spacing:-16.448000pt;}
.ws11{word-spacing:-16.256000pt;}
.wse{word-spacing:-16.192000pt;}
.ws1e{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.936000pt;}
.ws9{word-spacing:-15.872000pt;}
.ws14{word-spacing:-15.808000pt;}
.ws20{word-spacing:-15.744000pt;}
.ws4{word-spacing:-14.817067pt;}
.ws3{word-spacing:-14.720000pt;}
.ws6{word-spacing:-14.622933pt;}
.ws5{word-spacing:-14.080000pt;}
.ws0{word-spacing:-13.534613pt;}
.wsd{word-spacing:-12.352000pt;}
.ws2{word-spacing:-11.040000pt;}
.ws12{word-spacing:-10.881067pt;}
.wsb{word-spacing:-10.720000pt;}
.ws10{word-spacing:-10.400000pt;}
.ws1d{word-spacing:-7.781567pt;}
.ws18{word-spacing:-7.760592pt;}
.ws1c{word-spacing:-7.555641pt;}
.wsc{word-spacing:-7.200000pt;}
.ws1a{word-spacing:-5.243643pt;}
.ws15{word-spacing:-0.048000pt;}
.ws7{word-spacing:0.000000pt;}
.ws1b{word-spacing:4.199555pt;}
.ws19{word-spacing:85.193582pt;}
.ws17{word-spacing:135.386231pt;}
.ws16{word-spacing:146.909872pt;}
._3f{margin-left:-1665.525333pt;}
._4e{margin-left:-5.449387pt;}
._2a{margin-left:-4.489813pt;}
._29{margin-left:-3.566507pt;}
._9{margin-left:-2.374827pt;}
._2{margin-left:-1.280000pt;}
._1{width:1.345280pt;}
._3{width:2.246400pt;}
._c{width:3.759787pt;}
._b{width:4.769280pt;}
._7{width:6.306133pt;}
._6{width:7.251627pt;}
._a{width:8.181760pt;}
._8{width:9.579947pt;}
._12{width:10.496000pt;}
._17{width:11.512320pt;}
._5{width:12.423680pt;}
._4{width:13.542400pt;}
._15{width:14.776320pt;}
._11{width:17.344000pt;}
._e{width:18.885120pt;}
._d{width:20.078080pt;}
._16{width:21.696000pt;}
._13{width:22.784000pt;}
._14{width:23.936000pt;}
._1f{width:25.600000pt;}
._25{width:26.592000pt;}
._34{width:27.840000pt;}
._24{width:29.120000pt;}
._f{width:30.080000pt;}
._10{width:31.040000pt;}
._27{width:32.512000pt;}
._32{width:33.664000pt;}
._2f{width:34.944000pt;}
._41{width:35.902720pt;}
._42{width:36.864000pt;}
._49{width:37.888000pt;}
._33{width:38.784000pt;}
._22{width:40.192000pt;}
._23{width:41.120000pt;}
._46{width:42.048000pt;}
._2e{width:43.584000pt;}
._3a{width:44.480000pt;}
._37{width:45.376000pt;}
._1e{width:46.528000pt;}
._18{width:47.744000pt;}
._19{width:48.768000pt;}
._28{width:49.792000pt;}
._2d{width:50.944000pt;}
._67{width:51.840000pt;}
._30{width:53.182720pt;}
._31{width:54.080000pt;}
._3e{width:54.992640pt;}
._20{width:56.320000pt;}
._21{width:57.408000pt;}
._43{width:59.264000pt;}
._1a{width:60.288000pt;}
._1b{width:61.309440pt;}
._1c{width:63.360000pt;}
._1d{width:64.640000pt;}
._47{width:65.920000pt;}
._45{width:67.008000pt;}
._26{width:68.928000pt;}
._3c{width:71.102720pt;}
._3d{width:72.362667pt;}
._5d{width:75.306667pt;}
._3b{width:77.290667pt;}
._48{width:78.718720pt;}
._5a{width:79.681280pt;}
._4a{width:82.093653pt;}
._5b{width:84.864000pt;}
._5c{width:85.770667pt;}
._52{width:86.741333pt;}
._63{width:88.832000pt;}
._64{width:89.920000pt;}
._38{width:92.864000pt;}
._39{width:93.984000pt;}
._5e{width:95.040000pt;}
._5f{width:96.064000pt;}
._6c{width:99.648000pt;}
._4f{width:104.896000pt;}
._62{width:110.741333pt;}
._53{width:111.978667pt;}
._6f{width:117.696000pt;}
._6e{width:118.912000pt;}
._51{width:122.709333pt;}
._65{width:128.704000pt;}
._66{width:129.664000pt;}
._6a{width:130.878720pt;}
._58{width:132.074667pt;}
._50{width:138.688000pt;}
._4b{width:143.978667pt;}
._40{width:146.840111pt;}
._55{width:154.709333pt;}
._6b{width:156.608000pt;}
._56{width:158.208000pt;}
._54{width:160.000000pt;}
._4c{width:174.208000pt;}
._36{width:175.978667pt;}
._4d{width:176.970667pt;}
._6d{width:191.648000pt;}
._60{width:213.312000pt;}
._2c{width:225.578667pt;}
._70{width:231.456000pt;}
._61{width:232.480000pt;}
._44{width:271.744000pt;}
._68{width:297.034667pt;}
._2b{width:513.578667pt;}
._0{width:678.906667pt;}
._35{width:736.885333pt;}
._69{width:825.856000pt;}
._59{width:1152.266667pt;}
._57{width:1344.266667pt;}
.fsa{font-size:19.953687pt;}
.fsd{font-size:20.974573pt;}
.fsb{font-size:23.201962pt;}
.fs9{font-size:34.338903pt;}
.fsc{font-size:34.431711pt;}
.fs7{font-size:37.120000pt;}
.fs8{font-size:38.515256pt;}
.fs6{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs4{font-size:80.000000pt;}
.y1f0{bottom:-382.626667pt;}
.y146{bottom:-2.373333pt;}
.y140{bottom:-0.253333pt;}
.y0{bottom:0.000000pt;}
.y13e{bottom:2.146667pt;}
.y142{bottom:3.426667pt;}
.y10d{bottom:3.520000pt;}
.y1bf{bottom:4.320000pt;}
.y148{bottom:5.760000pt;}
.y13c{bottom:5.826667pt;}
.y24f{bottom:6.560000pt;}
.y14a{bottom:6.720000pt;}
.y1d3{bottom:7.040000pt;}
.y144{bottom:7.226667pt;}
.y187{bottom:7.360000pt;}
.y1c6{bottom:7.520000pt;}
.y1bc{bottom:8.200000pt;}
.yf5{bottom:8.640000pt;}
.y198{bottom:9.280000pt;}
.y14d{bottom:9.760000pt;}
.ydf{bottom:10.720000pt;}
.y180{bottom:11.333333pt;}
.ye7{bottom:11.680000pt;}
.y151{bottom:12.286338pt;}
.ye0{bottom:12.480000pt;}
.y10e{bottom:12.640000pt;}
.y10b{bottom:13.280000pt;}
.yee{bottom:13.600000pt;}
.y115{bottom:14.080000pt;}
.y185{bottom:14.400000pt;}
.y17e{bottom:14.533333pt;}
.y17c{bottom:14.693333pt;}
.y1b1{bottom:15.040000pt;}
.y183{bottom:15.200000pt;}
.y1a0{bottom:16.480000pt;}
.y1b4{bottom:18.720000pt;}
.ydd{bottom:20.480000pt;}
.y11a{bottom:21.920000pt;}
.y1d2{bottom:25.440000pt;}
.y1c5{bottom:25.920000pt;}
.y1bb{bottom:26.600000pt;}
.yf4{bottom:27.066667pt;}
.y197{bottom:27.680000pt;}
.ye6{bottom:30.080000pt;}
.y10a{bottom:31.680000pt;}
.yed{bottom:32.000000pt;}
.y114{bottom:32.480000pt;}
.y169{bottom:33.237781pt;}
.y15f{bottom:33.312219pt;}
.y164{bottom:33.312220pt;}
.y161{bottom:33.312225pt;}
.y15d{bottom:33.314154pt;}
.y153{bottom:33.381825pt;}
.y158{bottom:33.381826pt;}
.y155{bottom:33.381831pt;}
.y1b0{bottom:33.440000pt;}
.y182{bottom:33.600000pt;}
.y19f{bottom:34.880000pt;}
.ydc{bottom:38.880000pt;}
.y18a{bottom:40.320000pt;}
.y1c9{bottom:40.346667pt;}
.y117{bottom:40.360000pt;}
.y1ce{bottom:42.080000pt;}
.y1c2{bottom:42.240000pt;}
.y1b7{bottom:42.760000pt;}
.yf0{bottom:42.906667pt;}
.y193{bottom:43.200000pt;}
.y1d1{bottom:43.840000pt;}
.ye2{bottom:44.320000pt;}
.y1ba{bottom:45.000000pt;}
.ye9{bottom:45.280000pt;}
.y18f{bottom:45.440000pt;}
.yf3{bottom:45.466667pt;}
.y110{bottom:45.600000pt;}
.y196{bottom:46.080000pt;}
.y19b{bottom:46.720000pt;}
.ye5{bottom:48.520000pt;}
.yec{bottom:50.400000pt;}
.y113{bottom:50.880000pt;}
.y3{bottom:51.872000pt;}
.y19e{bottom:53.280000pt;}
.y18c{bottom:58.720000pt;}
.y1cb{bottom:58.746667pt;}
.y119{bottom:58.760000pt;}
.y1d0{bottom:62.240000pt;}
.y1c4{bottom:62.720000pt;}
.y1b9{bottom:63.400000pt;}
.yf2{bottom:63.866667pt;}
.y195{bottom:64.480000pt;}
.ye4{bottom:66.920000pt;}
.yeb{bottom:68.800000pt;}
.y112{bottom:69.280000pt;}
.y2{bottom:69.792000pt;}
.y167{bottom:70.012798pt;}
.y19d{bottom:71.680000pt;}
.y18b{bottom:77.120000pt;}
.y1ca{bottom:77.146667pt;}
.y118{bottom:77.160000pt;}
.y166{bottom:80.337675pt;}
.y1cf{bottom:80.640000pt;}
.y1c3{bottom:81.120000pt;}
.y1b8{bottom:81.800000pt;}
.yf1{bottom:82.266667pt;}
.y194{bottom:82.880000pt;}
.ye3{bottom:85.320000pt;}
.yea{bottom:87.200000pt;}
.y190{bottom:87.240000pt;}
.y111{bottom:87.680000pt;}
.y19c{bottom:90.080000pt;}
.y16b{bottom:93.655620pt;}
.y1e2{bottom:94.112000pt;}
.y1dd{bottom:96.992000pt;}
.y27f{bottom:99.072000pt;}
.ycb{bottom:99.392000pt;}
.y95{bottom:104.352000pt;}
.y28f{bottom:104.672000pt;}
.yba{bottom:105.952000pt;}
.y208{bottom:107.392000pt;}
.y72{bottom:107.552000pt;}
.y230{bottom:109.312000pt;}
.y2b6{bottom:109.792000pt;}
.y165{bottom:110.922683pt;}
.y162{bottom:110.922689pt;}
.y106{bottom:111.392000pt;}
.y1ab{bottom:112.192000pt;}
.yd8{bottom:112.672000pt;}
.y24d{bottom:112.992000pt;}
.y1e1{bottom:115.392000pt;}
.y27e{bottom:117.472000pt;}
.y2e{bottom:118.112000pt;}
.yca{bottom:120.512000pt;}
.y17a{bottom:122.592000pt;}
.y28e{bottom:123.072000pt;}
.y94{bottom:125.472000pt;}
.y207{bottom:125.632000pt;}
.yb9{bottom:127.072000pt;}
.y2b5{bottom:128.192000pt;}
.y71{bottom:128.672000pt;}
.y1aa{bottom:131.872000pt;}
.y131{bottom:132.192000pt;}
.y105{bottom:132.512000pt;}
.yd7{bottom:133.786667pt;}
.y24c{bottom:134.106667pt;}
.y2d{bottom:134.906667pt;}
.y27d{bottom:135.866667pt;}
.y150{bottom:135.980830pt;}
.y57{bottom:136.506667pt;}
.y1df{bottom:139.226667pt;}
.y28d{bottom:141.466667pt;}
.yc9{bottom:141.626667pt;}
.y13a{bottom:143.706667pt;}
.y22f{bottom:143.866667pt;}
.y206{bottom:144.026667pt;}
.y1dc{bottom:145.306667pt;}
.y93{bottom:146.586667pt;}
.yb8{bottom:148.186667pt;}
.y70{bottom:149.786667pt;}
.y1a9{bottom:151.546667pt;}
.y2c{bottom:151.706667pt;}
.y104{bottom:153.626667pt;}
.y27c{bottom:154.266667pt;}
.yd6{bottom:154.906667pt;}
.y24b{bottom:155.386667pt;}
.y56{bottom:157.626667pt;}
.y28c{bottom:159.866667pt;}
.y1db{bottom:160.506667pt;}
.y205{bottom:162.426667pt;}
.yc8{bottom:162.746667pt;}
.y2b4{bottom:164.986667pt;}
.y92{bottom:167.706667pt;}
.y2b{bottom:168.666667pt;}
.yb7{bottom:169.466667pt;}
.y179{bottom:170.426667pt;}
.y6f{bottom:170.906667pt;}
.y1a8{bottom:171.066667pt;}
.y27b{bottom:172.666667pt;}
.y130{bottom:173.146667pt;}
.y139{bottom:174.586667pt;}
.y103{bottom:174.906667pt;}
.yd5{bottom:176.186667pt;}
.y24a{bottom:176.506667pt;}
.y22e{bottom:178.266667pt;}
.y55{bottom:178.746667pt;}
.y204{bottom:180.826667pt;}
.y1da{bottom:181.626667pt;}
.y143{bottom:182.880000pt;}
.y2b3{bottom:183.386667pt;}
.yc7{bottom:184.026667pt;}
.y2a{bottom:185.466667pt;}
.y15b{bottom:187.953203pt;}
.y91{bottom:188.986667pt;}
.yb6{bottom:190.586667pt;}
.y1a7{bottom:190.746667pt;}
.y27a{bottom:191.066667pt;}
.y145{bottom:191.200000pt;}
.y6e{bottom:192.186667pt;}
.y102{bottom:196.026667pt;}
.y28b{bottom:196.666667pt;}
.yd4{bottom:197.306667pt;}
.y249{bottom:197.626667pt;}
.y15a{bottom:198.278080pt;}
.y203{bottom:199.226667pt;}
.y54{bottom:200.026667pt;}
.y2b2{bottom:201.786667pt;}
.y29{bottom:202.426667pt;}
.y1de{bottom:202.746667pt;}
.y16a{bottom:202.957161pt;}
.yc6{bottom:205.146667pt;}
.y1d9{bottom:208.826667pt;}
.y279{bottom:209.466667pt;}
.y90{bottom:210.106667pt;}
.y1a6{bottom:210.426667pt;}
.y178{bottom:211.386667pt;}
.yb5{bottom:211.706667pt;}
.y22d{bottom:212.826667pt;}
.y6d{bottom:213.306667pt;}
.y12f{bottom:214.106667pt;}
.y28a{bottom:215.066667pt;}
.y101{bottom:217.146667pt;}
.y202{bottom:217.626667pt;}
.yd3{bottom:218.426667pt;}
.y248{bottom:218.746667pt;}
.y28{bottom:219.226667pt;}
.y2b1{bottom:220.186667pt;}
.y53{bottom:221.146667pt;}
.y1d8{bottom:223.866667pt;}
.yc5{bottom:226.266667pt;}
.y278{bottom:227.866667pt;}
.y159{bottom:228.856320pt;}
.y156{bottom:228.856327pt;}
.y1a5{bottom:229.946667pt;}
.y8f{bottom:231.226667pt;}
.y177{bottom:232.506667pt;}
.yb4{bottom:232.826667pt;}
.y289{bottom:233.466667pt;}
.y6c{bottom:234.426667pt;}
.y201{bottom:236.026667pt;}
.y27{bottom:236.186667pt;}
.y100{bottom:238.266667pt;}
.y2b0{bottom:238.586667pt;}
.y247{bottom:240.026667pt;}
.y52{bottom:242.266667pt;}
.y1d7{bottom:245.146667pt;}
.y277{bottom:246.266667pt;}
.yc4{bottom:247.386667pt;}
.yd2{bottom:247.546667pt;}
.y1a4{bottom:249.626667pt;}
.y288{bottom:251.866667pt;}
.y8e{bottom:252.346667pt;}
.y26{bottom:252.986667pt;}
.y176{bottom:253.626667pt;}
.yb3{bottom:254.106667pt;}
.y200{bottom:254.426667pt;}
.y12e{bottom:254.906667pt;}
.y6b{bottom:255.546667pt;}
.y2af{bottom:257.026667pt;}
.yff{bottom:259.586667pt;}
.y246{bottom:261.186667pt;}
.y51{bottom:263.426667pt;}
.y276{bottom:264.706667pt;}
.y1ee{bottom:265.826667pt;}
.yc3{bottom:268.706667pt;}
.yd1{bottom:268.866667pt;}
.y23c{bottom:269.026667pt;}
.y1a3{bottom:269.346667pt;}
.y25{bottom:269.826667pt;}
.y287{bottom:270.306667pt;}
.y1ff{bottom:272.866667pt;}
.y8d{bottom:273.666667pt;}
.y175{bottom:274.786667pt;}
.yb2{bottom:275.266667pt;}
.y2ae{bottom:275.426667pt;}
.y12d{bottom:276.226667pt;}
.y6a{bottom:276.866667pt;}
.y1d6{bottom:279.586667pt;}
.y22c{bottom:281.826667pt;}
.y245{bottom:282.306667pt;}
.y275{bottom:283.106667pt;}
.y50{bottom:284.706667pt;}
.y1a2{bottom:284.866667pt;}
.y226{bottom:285.186667pt;}
.y24{bottom:286.786667pt;}
.y286{bottom:288.706667pt;}
.y141{bottom:289.280000pt;}
.yc2{bottom:289.826667pt;}
.yd0{bottom:289.986667pt;}
.y23b{bottom:290.146667pt;}
.y1fe{bottom:291.266667pt;}
.y2ad{bottom:293.826667pt;}
.y8c{bottom:294.786667pt;}
.y174{bottom:295.906667pt;}
.yb1{bottom:296.386667pt;}
.y12c{bottom:297.346667pt;}
.y69{bottom:297.986667pt;}
.y1d5{bottom:299.266667pt;}
.yfe{bottom:300.386667pt;}
.y274{bottom:301.506667pt;}
.y244{bottom:303.426667pt;}
.y23{bottom:303.586667pt;}
.y4f{bottom:305.826667pt;}
.y285{bottom:307.106667pt;}
.y1fd{bottom:309.666667pt;}
.yc1{bottom:310.946667pt;}
.ycf{bottom:311.106667pt;}
.y23a{bottom:311.266667pt;}
.y2ac{bottom:312.226667pt;}
.y22b{bottom:312.866667pt;}
.y8b{bottom:315.906667pt;}
.y173{bottom:317.186667pt;}
.yb0{bottom:317.506667pt;}
.y12b{bottom:318.466667pt;}
.y68{bottom:319.106667pt;}
.y273{bottom:319.906667pt;}
.yfd{bottom:320.066667pt;}
.y1d4{bottom:320.386667pt;}
.y22{bottom:320.546667pt;}
.y225{bottom:321.986667pt;}
.y243{bottom:324.706667pt;}
.y284{bottom:325.506667pt;}
.y4e{bottom:326.946667pt;}
.y1fc{bottom:328.066667pt;}
.y13b{bottom:328.160000pt;}
.y2ab{bottom:330.626667pt;}
.yc0{bottom:332.066667pt;}
.yce{bottom:332.226667pt;}
.y239{bottom:332.386667pt;}
.y13f{bottom:334.400000pt;}
.y1ed{bottom:334.786667pt;}
.y1cd{bottom:335.906667pt;}
.y8a{bottom:337.026667pt;}
.y21{bottom:337.346667pt;}
.y172{bottom:338.306667pt;}
.yaf{bottom:338.786667pt;}
.y12a{bottom:339.586667pt;}
.yfc{bottom:339.746667pt;}
.y67{bottom:340.226667pt;}
.y224{bottom:340.386667pt;}
.y283{bottom:343.906667pt;}
.y242{bottom:345.826667pt;}
.y1fb{bottom:346.466667pt;}
.y4d{bottom:348.066667pt;}
.y2aa{bottom:349.026667pt;}
.ybf{bottom:353.186667pt;}
.ycd{bottom:353.506667pt;}
.y238{bottom:353.666667pt;}
.y20{bottom:354.146667pt;}
.y272{bottom:356.706667pt;}
.y89{bottom:358.306667pt;}
.y223{bottom:358.786667pt;}
.yfb{bottom:359.266667pt;}
.y171{bottom:359.426667pt;}
.yae{bottom:359.906667pt;}
.y129{bottom:360.866667pt;}
.y66{bottom:361.506667pt;}
.y282{bottom:362.306667pt;}
.y1fa{bottom:364.866667pt;}
.y241{bottom:366.946667pt;}
.y2a9{bottom:367.426667pt;}
.y4c{bottom:369.186667pt;}
.y1ec{bottom:369.346667pt;}
.y1f{bottom:371.106667pt;}
.ybe{bottom:374.466667pt;}
.ycc{bottom:374.626667pt;}
.y237{bottom:374.786667pt;}
.y271{bottom:375.106667pt;}
.y1a1{bottom:376.866667pt;}
.y222{bottom:377.186667pt;}
.yfa{bottom:378.946667pt;}
.y88{bottom:379.426667pt;}
.y170{bottom:380.546667pt;}
.y281{bottom:380.706667pt;}
.yad{bottom:381.026667pt;}
.y128{bottom:381.986667pt;}
.y65{bottom:382.626667pt;}
.y1f9{bottom:383.266667pt;}
.y13d{bottom:383.360000pt;}
.y2a8{bottom:385.826667pt;}
.y1e{bottom:387.906667pt;}
.y240{bottom:388.066667pt;}
.y4b{bottom:390.466667pt;}
.y19a{bottom:395.266667pt;}
.ybd{bottom:395.586667pt;}
.y236{bottom:395.906667pt;}
.y270{bottom:396.226667pt;}
.yf9{bottom:398.626667pt;}
.y280{bottom:399.106667pt;}
.y87{bottom:400.546667pt;}
.y1f8{bottom:401.666667pt;}
.yac{bottom:402.146667pt;}
.y127{bottom:403.106667pt;}
.y64{bottom:403.746667pt;}
.y2a7{bottom:404.226667pt;}
.y1d{bottom:404.866667pt;}
.y23f{bottom:409.186667pt;}
.y4a{bottom:411.586667pt;}
.y221{bottom:413.986667pt;}
.y235{bottom:417.026667pt;}
.y26f{bottom:417.506667pt;}
.yf8{bottom:418.146667pt;}
.y1f7{bottom:420.066667pt;}
.y16f{bottom:421.506667pt;}
.y1c{bottom:421.666667pt;}
.y2a6{bottom:422.626667pt;}
.yab{bottom:423.426667pt;}
.y126{bottom:424.226667pt;}
.y63{bottom:424.866667pt;}
.y23e{bottom:430.466667pt;}
.y1cc{bottom:431.426667pt;}
.y220{bottom:432.386667pt;}
.y49{bottom:432.706667pt;}
.yf7{bottom:437.826667pt;}
.y1eb{bottom:438.306667pt;}
.y1b{bottom:438.466667pt;}
.y16e{bottom:439.906667pt;}
.y2a5{bottom:441.026667pt;}
.yaa{bottom:444.546667pt;}
.y125{bottom:445.506667pt;}
.y62{bottom:446.146667pt;}
.y86{bottom:449.026667pt;}
.y1c8{bottom:449.826667pt;}
.y21f{bottom:450.786667pt;}
.y23d{bottom:451.586667pt;}
.y26e{bottom:451.906667pt;}
.y48{bottom:453.826667pt;}
.y1a{bottom:455.426667pt;}
.y1f6{bottom:456.866667pt;}
.yf6{bottom:457.506667pt;}
.y2a4{bottom:459.426667pt;}
.y16d{bottom:459.586667pt;}
.y85{bottom:464.066667pt;}
.ya9{bottom:465.666667pt;}
.y124{bottom:466.626667pt;}
.y61{bottom:467.266667pt;}
.y21e{bottom:469.186667pt;}
.y1ea{bottom:472.706667pt;}
.yef{bottom:473.026667pt;}
.y267{bottom:474.626667pt;}
.y47{bottom:475.106667pt;}
.y1f5{bottom:475.266667pt;}
.y19{bottom:476.066667pt;}
.y26d{bottom:477.026667pt;}
.y2a3{bottom:477.826667pt;}
.y16c{bottom:477.986667pt;}
.y138{bottom:478.306667pt;}
.y84{bottom:485.186667pt;}
.ya8{bottom:486.813333pt;}
.y21d{bottom:487.613333pt;}
.y123{bottom:487.773333pt;}
.y60{bottom:488.413333pt;}
.y266{bottom:495.773333pt;}
.y46{bottom:496.253333pt;}
.y1f4{bottom:497.053333pt;}
.y199{bottom:500.253333pt;}
.y21c{bottom:506.013333pt;}
.y83{bottom:506.333333pt;}
.y1e9{bottom:507.293333pt;}
.ya7{bottom:508.093333pt;}
.y14f{bottom:508.884334pt;}
.y122{bottom:508.893333pt;}
.y5f{bottom:509.533333pt;}
.y26c{bottom:511.453333pt;}
.y137{bottom:512.733333pt;}
.y2a2{bottom:514.653333pt;}
.y265{bottom:517.053333pt;}
.y45{bottom:517.373333pt;}
.y192{bottom:518.653333pt;}
.y18{bottom:519.773333pt;}
.y21b{bottom:524.413333pt;}
.y82{bottom:527.613333pt;}
.ya6{bottom:529.213333pt;}
.y121{bottom:530.013333pt;}
.y5e{bottom:530.653333pt;}
.y2a1{bottom:533.053333pt;}
.y136{bottom:534.013333pt;}
.y1f3{bottom:537.213333pt;}
.y264{bottom:538.173333pt;}
.y44{bottom:538.493333pt;}
.y17{bottom:540.893333pt;}
.y234{bottom:541.693333pt;}
.y1c7{bottom:541.853333pt;}
.y21a{bottom:542.813333pt;}
.y26b{bottom:546.013333pt;}
.y81{bottom:548.733333pt;}
.ya5{bottom:550.333333pt;}
.y120{bottom:551.293333pt;}
.y2a0{bottom:551.453333pt;}
.y5d{bottom:551.933333pt;}
.y22a{bottom:553.533333pt;}
.y168{bottom:555.984217pt;}
.y263{bottom:559.293333pt;}
.y43{bottom:559.773333pt;}
.y1c1{bottom:560.253333pt;}
.y219{bottom:561.213333pt;}
.y16{bottom:562.013333pt;}
.y135{bottom:564.893333pt;}
.y26a{bottom:567.133333pt;}
.y29f{bottom:569.853333pt;}
.ye8{bottom:570.173333pt;}
.ya4{bottom:571.453333pt;}
.y1f2{bottom:571.773333pt;}
.y5c{bottom:573.053333pt;}
.y250{bottom:574.493333pt;}
.y1e8{bottom:576.253333pt;}
.y24e{bottom:577.213333pt;}
.y218{bottom:579.613333pt;}
.y262{bottom:580.413333pt;}
.y42{bottom:580.893333pt;}
.y11f{bottom:581.533333pt;}
.y80{bottom:583.133333pt;}
.y163{bottom:586.494796pt;}
.y160{bottom:586.494800pt;}
.y15e{bottom:586.494810pt;}
.y229{bottom:588.093333pt;}
.y269{bottom:588.253333pt;}
.y15{bottom:589.373333pt;}
.ya3{bottom:592.573333pt;}
.y5b{bottom:594.173333pt;}
.y217{bottom:598.013333pt;}
.y11e{bottom:601.213333pt;}
.y41{bottom:602.013333pt;}
.y1f1{bottom:602.653333pt;}
.y14{bottom:604.413333pt;}
.y29e{bottom:606.653333pt;}
.y233{bottom:607.293333pt;}
.y1e7{bottom:610.813333pt;}
.ya2{bottom:613.853333pt;}
.y261{bottom:614.973333pt;}
.y5a{bottom:615.293333pt;}
.y191{bottom:616.413333pt;}
.y14c{bottom:617.213333pt;}
.y11d{bottom:620.733333pt;}
.y228{bottom:622.493333pt;}
.y268{bottom:622.813333pt;}
.y40{bottom:623.133333pt;}
.y29d{bottom:625.053333pt;}
.y13{bottom:631.613333pt;}
.y18e{bottom:634.813333pt;}
.ya1{bottom:634.973333pt;}
.y260{bottom:636.093333pt;}
.y59{bottom:636.573333pt;}
.y7f{bottom:638.813333pt;}
.y11c{bottom:640.413333pt;}
.y29c{bottom:643.453333pt;}
.y3f{bottom:644.413333pt;}
.y1e6{bottom:645.213333pt;}
.y12{bottom:652.733333pt;}
.y216{bottom:653.213333pt;}
.y227{bottom:653.533333pt;}
.y11b{bottom:655.933333pt;}
.ya0{bottom:656.093333pt;}
.y1c0{bottom:656.253333pt;}
.y25f{bottom:657.213333pt;}
.y58{bottom:657.693333pt;}
.y7e{bottom:659.933333pt;}
.y29b{bottom:661.853333pt;}
.ybc{bottom:665.533333pt;}
.y11{bottom:667.933333pt;}
.y215{bottom:671.613333pt;}
.ye1{bottom:672.253333pt;}
.y15c{bottom:673.848248pt;}
.y1be{bottom:674.493333pt;}
.y25e{bottom:678.493333pt;}
.y3e{bottom:678.813333pt;}
.y1e5{bottom:679.773333pt;}
.y29a{bottom:680.253333pt;}
.y7d{bottom:681.213333pt;}
.y116{bottom:682.333333pt;}
.y9f{bottom:685.213333pt;}
.ybb{bottom:686.653333pt;}
.y214{bottom:690.013333pt;}
.y1bd{bottom:694.333333pt;}
.y10{bottom:695.133333pt;}
.y1e4{bottom:697.373333pt;}
.y299{bottom:698.653333pt;}
.y25d{bottom:699.613333pt;}
.y3d{bottom:699.933333pt;}
.y7c{bottom:702.333333pt;}
.y157{bottom:704.358828pt;}
.y154{bottom:704.358832pt;}
.y152{bottom:704.358841pt;}
.y9e{bottom:706.493333pt;}
.y1e0{bottom:707.773333pt;}
.y213{bottom:708.413333pt;}
.yf{bottom:710.173333pt;}
.y1b6{bottom:712.733333pt;}
.y298{bottom:717.053333pt;}
.y25c{bottom:720.773333pt;}
.y3c{bottom:721.253333pt;}
.y7b{bottom:723.493333pt;}
.y212{bottom:726.853333pt;}
.y297{bottom:735.493333pt;}
.y18d{bottom:736.933333pt;}
.ye{bottom:737.413333pt;}
.y9d{bottom:740.933333pt;}
.y25b{bottom:741.893333pt;}
.y3b{bottom:742.373333pt;}
.y7a{bottom:744.613333pt;}
.y211{bottom:745.253333pt;}
.yd{bottom:752.613333pt;}
.y296{bottom:753.893333pt;}
.y189{bottom:755.333333pt;}
.y9c{bottom:762.053333pt;}
.y25a{bottom:763.173333pt;}
.y3a{bottom:763.493333pt;}
.y210{bottom:763.653333pt;}
.y133{bottom:764.933333pt;}
.y134{bottom:765.093333pt;}
.y79{bottom:765.893333pt;}
.y295{bottom:772.293333pt;}
.ydb{bottom:773.093333pt;}
.y10f{bottom:774.373333pt;}
.yc{bottom:779.813333pt;}
.y9b{bottom:783.333333pt;}
.y14e{bottom:783.973333pt;}
.y259{bottom:784.293333pt;}
.y39{bottom:784.613333pt;}
.y232{bottom:785.093333pt;}
.y20f{bottom:785.253333pt;}
.y78{bottom:787.013333pt;}
.y17b{bottom:789.280000pt;}
.y294{bottom:790.693333pt;}
.y17d{bottom:793.760000pt;}
.yb{bottom:794.853333pt;}
.yde{bottom:801.253333pt;}
.y9a{bottom:804.453333pt;}
.y258{bottom:805.413333pt;}
.y38{bottom:805.893333pt;}
.y77{bottom:808.133333pt;}
.y293{bottom:809.093333pt;}
.y1b5{bottom:809.413333pt;}
.y14b{bottom:812.293333pt;}
.ya{bottom:815.973333pt;}
.y231{bottom:819.653333pt;}
.y20e{bottom:824.133333pt;}
.y99{bottom:825.573333pt;}
.y257{bottom:826.533333pt;}
.y37{bottom:827.013333pt;}
.y292{bottom:827.493333pt;}
.y1b3{bottom:827.813333pt;}
.y76{bottom:829.253333pt;}
.y9{bottom:838.213333pt;}
.yda{bottom:842.853333pt;}
.y291{bottom:845.893333pt;}
.y98{bottom:846.693333pt;}
.y188{bottom:847.333333pt;}
.y256{bottom:847.813333pt;}
.y36{bottom:848.133333pt;}
.y75{bottom:850.533333pt;}
.y20d{bottom:860.933333pt;}
.y1af{bottom:862.053333pt;}
.y8{bottom:862.853333pt;}
.y290{bottom:864.293333pt;}
.y186{bottom:865.733333pt;}
.y97{bottom:867.973333pt;}
.y255{bottom:868.933333pt;}
.y35{bottom:869.253333pt;}
.y109{bottom:877.573333pt;}
.y1b2{bottom:881.093333pt;}
.y20c{bottom:882.693333pt;}
.yd9{bottom:883.813333pt;}
.y74{bottom:884.933333pt;}
.y7{bottom:887.493333pt;}
.y96{bottom:889.253333pt;}
.y254{bottom:890.053333pt;}
.y34{bottom:890.533333pt;}
.y181{bottom:892.613333pt;}
.y20b{bottom:901.093333pt;}
.y17f{bottom:904.000000pt;}
.y10c{bottom:905.733333pt;}
.y253{bottom:911.173333pt;}
.y33{bottom:911.653333pt;}
.y184{bottom:911.813333pt;}
.y1ae{bottom:915.813333pt;}
.y1e3{bottom:917.733333pt;}
.y73{bottom:919.493333pt;}
.y6{bottom:929.893333pt;}
.y252{bottom:932.453333pt;}
.y32{bottom:932.773333pt;}
.y1ad{bottom:935.493333pt;}
.y20a{bottom:937.893333pt;}
.y108{bottom:940.133333pt;}
.y5{bottom:948.000000pt;}
.y147{bottom:948.640000pt;}
.y149{bottom:950.880000pt;}
.y251{bottom:953.600000pt;}
.y31{bottom:953.920000pt;}
.y1ac{bottom:955.040000pt;}
.y209{bottom:956.320000pt;}
.y132{bottom:969.120000pt;}
.y4{bottom:970.880000pt;}
.y107{bottom:974.720000pt;}
.y30{bottom:975.040000pt;}
.y1{bottom:993.120000pt;}
.y2f{bottom:1011.200000pt;}
.y1ef{bottom:1056.000000pt;}
.h45{height:-172.200000pt;}
.h1f{height:12.480000pt;}
.h1a{height:13.600000pt;}
.h1c{height:14.560000pt;}
.h1d{height:14.720000pt;}
.h42{height:18.240000pt;}
.h13{height:18.400000pt;}
.h20{height:19.680000pt;}
.h41{height:19.840000pt;}
.h2a{height:20.431095pt;}
.h22{height:20.640000pt;}
.h18{height:20.800000pt;}
.h46{height:21.440000pt;}
.h31{height:21.476406pt;}
.h23{height:23.680000pt;}
.h36{height:24.000000pt;}
.h47{height:24.160000pt;}
.h33{height:24.999661pt;}
.h34{height:25.067227pt;}
.hd{height:25.600000pt;}
.h39{height:26.240000pt;}
.h17{height:26.400000pt;}
.h35{height:27.200000pt;}
.he{height:27.360000pt;}
.h14{height:27.520000pt;}
.h25{height:28.040160pt;}
.h38{height:29.280000pt;}
.h3f{height:33.600000pt;}
.h2b{height:34.154466pt;}
.h32{height:34.246775pt;}
.h27{height:35.160488pt;}
.h2e{height:35.255517pt;}
.h7{height:42.084375pt;}
.ha{height:46.281250pt;}
.h12{height:46.560000pt;}
.h1e{height:47.109375pt;}
.h3e{height:48.320000pt;}
.h1b{height:48.375000pt;}
.h37{height:48.480000pt;}
.h19{height:52.134375pt;}
.hc{height:53.760000pt;}
.h9{height:57.758750pt;}
.h2{height:58.563750pt;}
.h4{height:59.340000pt;}
.h21{height:60.288750pt;}
.hb{height:62.781250pt;}
.h1{height:62.812500pt;}
.h26{height:63.341359pt;}
.h29{height:63.341360pt;}
.h28{height:63.341365pt;}
.h8{height:64.500000pt;}
.h6{height:66.404375pt;}
.h2c{height:72.506135pt;}
.h2d{height:72.622144pt;}
.h30{height:72.622144pt;}
.h2f{height:72.622149pt;}
.h5{height:75.465000pt;}
.h3{height:80.625000pt;}
.h3a{height:92.000000pt;}
.h16{height:92.032000pt;}
.h44{height:95.520000pt;}
.h43{height:96.000000pt;}
.h40{height:96.672000pt;}
.h11{height:97.152000pt;}
.h3c{height:97.760000pt;}
.hf{height:100.192000pt;}
.h10{height:102.080000pt;}
.h3b{height:102.112000pt;}
.h15{height:102.560000pt;}
.h3d{height:104.992000pt;}
.h24{height:258.817919pt;}
.h0{height:1056.000000pt;}
.w2d{width:-81.120000pt;}
.w10{width:33.920000pt;}
.w1d{width:37.440000pt;}
.w1e{width:41.440000pt;}
.w18{width:49.156027pt;}
.w1b{width:49.336086pt;}
.w2f{width:51.840000pt;}
.w15{width:58.432000pt;}
.w1a{width:62.660429pt;}
.w14{width:66.592000pt;}
.w28{width:69.472000pt;}
.w21{width:70.112000pt;}
.w6{width:70.272000pt;}
.w16{width:76.512000pt;}
.w3{width:78.752000pt;}
.w1f{width:79.840000pt;}
.w11{width:80.000000pt;}
.w13{width:81.952000pt;}
.wa{width:83.872000pt;}
.w2e{width:88.992000pt;}
.w2b{width:95.552000pt;}
.w7{width:96.480000pt;}
.we{width:97.280000pt;}
.w12{width:102.240000pt;}
.wd{width:103.392000pt;}
.w25{width:111.200000pt;}
.w24{width:111.232000pt;}
.w20{width:112.352000pt;}
.w27{width:112.640000pt;}
.w5{width:114.880000pt;}
.wc{width:122.880000pt;}
.w2{width:123.360000pt;}
.w9{width:124.320000pt;}
.w2a{width:127.712000pt;}
.w23{width:133.466667pt;}
.w1c{width:133.963673pt;}
.w19{width:134.143732pt;}
.wb{width:148.826667pt;}
.w22{width:162.560000pt;}
.w29{width:163.840000pt;}
.w4{width:196.666667pt;}
.w8{width:281.626667pt;}
.wf{width:323.546667pt;}
.w2c{width:334.466667pt;}
.w26{width:355.906667pt;}
.w17{width:535.674634pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x74{left:-139.706667pt;}
.x0{left:0.000000pt;}
.x4f{left:5.551811pt;}
.x4e{left:7.967598pt;}
.x43{left:9.792000pt;}
.x1c{left:12.000000pt;}
.x46{left:13.146667pt;}
.x33{left:14.560000pt;}
.x30{left:16.160000pt;}
.x5a{left:17.517766pt;}
.x2c{left:18.600000pt;}
.x23{left:19.560000pt;}
.x19{left:20.480000pt;}
.x68{left:22.080000pt;}
.x32{left:23.040000pt;}
.x64{left:25.120000pt;}
.x1f{left:26.240000pt;}
.x28{left:27.360000pt;}
.x27{left:29.280000pt;}
.x45{left:30.592000pt;}
.x1a{left:31.840000pt;}
.x2d{left:32.960000pt;}
.x3a{left:33.920000pt;}
.x25{left:34.880000pt;}
.x35{left:36.000000pt;}
.x3d{left:36.960000pt;}
.x3c{left:37.920000pt;}
.x67{left:39.040000pt;}
.x3b{left:40.000000pt;}
.x2f{left:40.960000pt;}
.x21{left:43.680000pt;}
.x3e{left:44.960000pt;}
.x69{left:46.400000pt;}
.x37{left:47.680000pt;}
.x4d{left:48.667923pt;}
.x66{left:50.266667pt;}
.x2a{left:53.440000pt;}
.x4b{left:54.400000pt;}
.x2e{left:55.360000pt;}
.x6f{left:56.314667pt;}
.x2b{left:57.440000pt;}
.x1e{left:59.840000pt;}
.x29{left:61.920000pt;}
.x71{left:63.866667pt;}
.x65{left:68.800000pt;}
.x4a{left:76.320000pt;}
.x5e{left:78.560000pt;}
.x70{left:81.920000pt;}
.x18{left:88.832000pt;}
.x3{left:96.031988pt;}
.x7{left:98.911988pt;}
.x9{left:112.351988pt;}
.x26{left:113.440000pt;}
.x42{left:114.880000pt;}
.x1{left:116.991988pt;}
.x7a{left:128.031988pt;}
.xb{left:130.271988pt;}
.x6e{left:133.146667pt;}
.x39{left:134.400000pt;}
.x13{left:137.946655pt;}
.x10{left:140.346655pt;}
.x17{left:144.026655pt;}
.xe{left:148.986655pt;}
.x11{left:151.706655pt;}
.x12{left:167.706655pt;}
.x5{left:176.666655pt;}
.x5c{left:187.040000pt;}
.x5f{left:190.906667pt;}
.x48{left:195.386667pt;}
.x15{left:201.626655pt;}
.x41{left:210.560000pt;}
.x1b{left:212.186667pt;}
.x31{left:213.146667pt;}
.x6{left:236.506655pt;}
.x14{left:242.266655pt;}
.x60{left:261.026667pt;}
.x5d{left:265.760000pt;}
.x6a{left:270.946667pt;}
.x44{left:287.040000pt;}
.x1d{left:290.946667pt;}
.x58{left:293.397704pt;}
.x47{left:295.360000pt;}
.x34{left:297.026667pt;}
.xf{left:322.146655pt;}
.xa{left:330.466655pt;}
.x78{left:337.986655pt;}
.xc{left:339.746655pt;}
.x8{left:346.466655pt;}
.x59{left:356.418249pt;}
.x52{left:360.889702pt;}
.x77{left:364.866655pt;}
.x53{left:368.463789pt;}
.x55{left:371.333109pt;}
.x49{left:373.346667pt;}
.x50{left:375.804563pt;}
.xd{left:403.106655pt;}
.x54{left:417.619814pt;}
.x2{left:421.666655pt;}
.x61{left:423.586667pt;}
.x6b{left:434.946667pt;}
.x4{left:441.053321pt;}
.x36{left:445.853333pt;}
.x79{left:451.133333pt;}
.x16{left:453.053321pt;}
.x57{left:468.354737pt;}
.x51{left:472.811186pt;}
.x7b{left:485.053321pt;}
.x20{left:487.613333pt;}
.x3f{left:504.573321pt;}
.x56{left:551.403426pt;}
.x4c{left:556.093321pt;}
.x62{left:557.053333pt;}
.x6c{left:562.653333pt;}
.x38{left:568.733333pt;}
.x40{left:600.093321pt;}
.x22{left:602.493333pt;}
.x5b{left:631.973321pt;}
.x6d{left:658.213333pt;}
.x72{left:660.133321pt;}
.x63{left:668.293333pt;}
.x24{left:672.773333pt;}
.x73{left:676.133321pt;}
.x75{left:682.533321pt;}
.x76{left:684.133321pt;}
}




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