
    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_389a0df6b9f9e3174f1185c2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.064941;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_54fbf7ad8d05d82fd6971858.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_5930b17a5d3e2048f0d5cc4e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.977539;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_5ee8c55c5b7f27896ce0667c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.729492;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_62ad2b9ac58132875d70f54a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.850586;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_740ba662cbcf039e6b0b468c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.064941;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_731a64eeed0fdc289d89f672.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_cc46f239be58dc27a3eececc.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.982422;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_0819033ae8d220d4b9ed1659.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_decab5df7248302bcb54b3d8.woff2')format("woff");}.ffa{font-family:ffa;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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_eedb42635336ebfbbf9d9e7b.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;}
@font-face{font-family:ffc;src:url('chunks/assets/font_af54d0e03e41cea57512f237.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.056152;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_59336bee4fd6a22321389ec7.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_0ddac469f2ced9a8acea199a.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_ac9619cc356b1b81640f63d5.woff2')format("woff");}.fff{font-family:fff;line-height:0.800293;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_8b7025dd430484eb4a1c123d.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.688477;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:ff11;src:url('chunks/assets/font_dece3e6121640f7fe06e82b9.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.093262;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:ff12;src:url('chunks/assets/font_895bcf94749b6af70976df3e.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.402354;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:ff13;src:url('chunks/assets/font_fb523d73cfce57a86c8888ff.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.934082;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:ff14;src:url('chunks/assets/font_f81751f8eaf9635e448f09a3.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_fb84c524bcdfb1ee6bb5a2c0.woff2')format("woff");}.ff15{font-family:ff15;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;}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls19{letter-spacing:-0.936000px;}
.ls1f{letter-spacing:-0.792000px;}
.ls8{letter-spacing:-0.720000px;}
.ls18{letter-spacing:-0.576000px;}
.ls12{letter-spacing:-0.349200px;}
.ls24{letter-spacing:-0.288000px;}
.ls14{letter-spacing:-0.144000px;}
.ls7{letter-spacing:-0.140400px;}
.lsd{letter-spacing:-0.045360px;}
.ls4{letter-spacing:-0.034560px;}
.ls1{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.081600px;}
.ls13{letter-spacing:0.120000px;}
.ls2{letter-spacing:0.129600px;}
.lsc{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.150000px;}
.lsf{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.288000px;}
.ls23{letter-spacing:0.360000px;}
.ls1a{letter-spacing:0.414600px;}
.ls1b{letter-spacing:0.418800px;}
.ls17{letter-spacing:0.576000px;}
.ls9{letter-spacing:0.720000px;}
.lse{letter-spacing:0.792000px;}
.ls27{letter-spacing:0.804000px;}
.ls28{letter-spacing:0.864000px;}
.ls6{letter-spacing:5.760000px;}
.ls21{letter-spacing:8.640000px;}
.ls5{letter-spacing:10.080000px;}
.ls26{letter-spacing:15.120000px;}
.lsa{letter-spacing:17.280000px;}
.lsb{letter-spacing:33.960000px;}
.ls1e{letter-spacing:33.984000px;}
.ls22{letter-spacing:46.026720px;}
.ls25{letter-spacing:54.864000px;}
.ls20{letter-spacing:64.002720px;}
.ls1d{letter-spacing:64.026720px;}
.ls11{letter-spacing:80.510400px;}
.ls10{letter-spacing:80.690400px;}
.ls1c{letter-spacing:197.976000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws10{word-spacing:-72.000000px;}
.ws16{word-spacing:-59.760000px;}
.ws1a{word-spacing:-18.864000px;}
.wsb{word-spacing:-18.792000px;}
.wsd{word-spacing:-18.720000px;}
.ws12{word-spacing:-18.576000px;}
.ws11{word-spacing:-18.288000px;}
.wsa{word-spacing:-18.144000px;}
.ws8{word-spacing:-18.000000px;}
.wsf{word-spacing:-17.856000px;}
.ws18{word-spacing:-17.712000px;}
.ws15{word-spacing:-17.208000px;}
.ws13{word-spacing:-16.974600px;}
.ws17{word-spacing:-15.300000px;}
.wsc{word-spacing:-14.940000px;}
.ws2{word-spacing:-14.935680px;}
.ws4{word-spacing:-12.780000px;}
.ws9{word-spacing:-12.014640px;}
.ws19{word-spacing:-10.741440px;}
.ws7{word-spacing:-10.472400px;}
.ws14{word-spacing:-10.356240px;}
.ws0{word-spacing:-10.067040px;}
.ws1{word-spacing:-10.019040px;}
.ws5{word-spacing:-9.937440px;}
.wse{word-spacing:-9.588240px;}
.ws3{word-spacing:-0.072000px;}
.ws6{word-spacing:0.000000px;}
._17{margin-left:-2.412960px;}
._0{margin-left:-1.134000px;}
._4{width:1.494000px;}
._e{width:3.129120px;}
._5{width:4.371840px;}
._1d{width:5.433120px;}
._11{width:6.499440px;}
._d{width:7.750080px;}
._c{width:8.751600px;}
._10{width:9.854640px;}
._a{width:11.525760px;}
._b{width:12.556800px;}
._14{width:13.878720px;}
._f{width:15.184800px;}
._15{width:16.672320px;}
._16{width:18.682080px;}
._1f{width:19.800000px;}
._1e{width:20.835360px;}
._8{width:22.720320px;}
._9{width:23.978880px;}
._7{width:25.724880px;}
._6{width:26.893440px;}
._21{width:28.224000px;}
._1c{width:29.520000px;}
._2{width:30.870000px;}
._23{width:32.436000px;}
._19{width:33.840000px;}
._1a{width:35.544000px;}
._1b{width:37.308000px;}
._20{width:38.934000px;}
._22{width:40.086000px;}
._26{width:41.760000px;}
._13{width:43.683840px;}
._12{width:44.712000px;}
._24{width:46.080000px;}
._25{width:47.448000px;}
._29{width:48.528000px;}
._27{width:49.710000px;}
._28{width:50.940000px;}
._31{width:128.232000px;}
._2b{width:148.914000px;}
._2a{width:150.102000px;}
._2c{width:151.128000px;}
._30{width:192.024000px;}
._18{width:197.976000px;}
._2d{width:201.888000px;}
._2e{width:202.932000px;}
._2f{width:330.300000px;}
._3{width:1091.557200px;}
._1{width:2098.266000px;}
.fc6{color:transparent;}
.fc4{color:rgb(0,112,192);}
.fc3{color:rgb(238,78,60);}
.fc7{color:rgb(128,128,128);}
.fc5{color:rgb(166,166,166);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(38,38,38);}
.fsb{font-size:30.240000px;}
.fsc{font-size:36.000000px;}
.fs8{font-size:38.880000px;}
.fs0{font-size:45.360000px;}
.fs2{font-size:48.240000px;}
.fsa{font-size:51.120000px;}
.fs4{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fse{font-size:59.904000px;}
.fs9{font-size:63.360000px;}
.fs1{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fsd{font-size:84.240000px;}
.fs6{font-size:95.760000px;}
.fs5{font-size:108.000000px;}
.y86{bottom:-11.880000px;}
.y8d{bottom:-11.160000px;}
.y0{bottom:0.000000px;}
.y5{bottom:1.080000px;}
.y39{bottom:1.590000px;}
.y37{bottom:2.670000px;}
.y8{bottom:3.240000px;}
.y1c3{bottom:4.140000px;}
.y6{bottom:4.320000px;}
.y3{bottom:4.500000px;}
.y72{bottom:5.940000px;}
.y78{bottom:6.120000px;}
.y23a{bottom:7.200000px;}
.y22a{bottom:7.380000px;}
.y22f{bottom:7.545000px;}
.y23b{bottom:7.560000px;}
.y85{bottom:7.920000px;}
.ybf{bottom:8.175000px;}
.y226{bottom:9.000000px;}
.y3b{bottom:9.330000px;}
.y90{bottom:9.975000px;}
.y1d5{bottom:10.260000px;}
.y1d6{bottom:10.620000px;}
.y1f6{bottom:13.320000px;}
.y79{bottom:14.400000px;}
.y77{bottom:14.940000px;}
.y197{bottom:15.480000px;}
.y71{bottom:15.660000px;}
.yef{bottom:15.840000px;}
.y1fa{bottom:16.020000px;}
.y1ff{bottom:16.560000px;}
.y133{bottom:16.740000px;}
.y136{bottom:17.100000px;}
.y13e{bottom:17.460000px;}
.y201{bottom:17.820000px;}
.y1f0{bottom:18.705000px;}
.y1c6{bottom:19.800000px;}
.y17a{bottom:21.960000px;}
.y169{bottom:22.140000px;}
.y12f{bottom:22.320000px;}
.y12c{bottom:22.500000px;}
.y43{bottom:22.680000px;}
.y139{bottom:23.220000px;}
.y1cd{bottom:23.580000px;}
.y1a1{bottom:23.760000px;}
.y2{bottom:24.660000px;}
.y1c2{bottom:24.840000px;}
.y1ed{bottom:25.545000px;}
.y177{bottom:27.180000px;}
.y1f3{bottom:27.525000px;}
.y170{bottom:27.720000px;}
.y19e{bottom:28.305000px;}
.y3e{bottom:28.440000px;}
.y174{bottom:29.700000px;}
.y8f{bottom:29.955000px;}
.y13c{bottom:30.090000px;}
.y238{bottom:31.140000px;}
.y22e{bottom:31.305000px;}
.y229{bottom:31.320000px;}
.y1f5{bottom:32.220000px;}
.y1f9{bottom:34.920000px;}
.y1fe{bottom:35.640000px;}
.y132{bottom:37.440000px;}
.y1ef{bottom:37.605000px;}
.y7{bottom:37.620000px;}
.y135{bottom:37.800000px;}
.y1c8{bottom:37.845000px;}
.y1c5{bottom:40.500000px;}
.y3d{bottom:41.940000px;}
.y1{bottom:42.660000px;}
.y12e{bottom:43.020000px;}
.y1d3{bottom:43.200000px;}
.y138{bottom:43.920000px;}
.y1cc{bottom:44.280000px;}
.y199{bottom:44.820000px;}
.y179{bottom:46.080000px;}
.y16c{bottom:46.260000px;}
.y1f2{bottom:46.425000px;}
.ycd{bottom:46.980000px;}
.y1a0{bottom:47.700000px;}
.ybd{bottom:50.295000px;}
.y13b{bottom:50.790000px;}
.y176{bottom:51.120000px;}
.y16f{bottom:51.660000px;}
.y19d{bottom:52.065000px;}
.y173{bottom:53.640000px;}
.y1f8{bottom:54.000000px;}
.y1fd{bottom:54.540000px;}
.y22b{bottom:54.720000px;}
.y230{bottom:54.750000px;}
.y237{bottom:54.900000px;}
.y233{bottom:55.065000px;}
.y228{bottom:55.080000px;}
.y22d{bottom:55.110000px;}
.y131{bottom:58.185000px;}
.y4{bottom:59.400000px;}
.y1d2{bottom:63.900000px;}
.y1cb{bottom:64.980000px;}
.y8a{bottom:65.370000px;}
.y16b{bottom:70.020000px;}
.y19f{bottom:71.460000px;}
.y13a{bottom:71.490000px;}
.y7b{bottom:71.850000px;}
.y1f7{bottom:72.900000px;}
.y1fc{bottom:73.440000px;}
.y16e{bottom:75.465000px;}
.y19c{bottom:75.825000px;}
.y172{bottom:77.400000px;}
.y234{bottom:78.465000px;}
.y232{bottom:78.825000px;}
.y1d1{bottom:84.630000px;}
.y1ca{bottom:85.680000px;}
.y1a4{bottom:93.960000px;}
.y19b{bottom:99.585000px;}
.y88{bottom:104.970000px;}
.y1d0{bottom:105.330000px;}
.y80{bottom:107.130000px;}
.y35{bottom:111.060000px;}
.y1e6{bottom:113.760000px;}
.y6e{bottom:114.840000px;}
.ybb{bottom:116.820000px;}
.y34{bottom:117.000000px;}
.y245{bottom:117.360000px;}
.y239{bottom:117.540000px;}
.yc1{bottom:118.290000px;}
.y10e{bottom:120.060000px;}
.yc6{bottom:121.890000px;}
.y165{bottom:123.480000px;}
.yaf{bottom:123.660000px;}
.y128{bottom:124.920000px;}
.y330{bottom:125.100000px;}
.y33{bottom:127.080000px;}
.y1c0{bottom:128.520000px;}
.y18c{bottom:131.040000px;}
.y152{bottom:131.220000px;}
.yee{bottom:133.200000px;}
.y1b4{bottom:135.000000px;}
.y1e5{bottom:137.520000px;}
.y6d{bottom:138.600000px;}
.y244{bottom:141.120000px;}
.y2c3{bottom:141.300000px;}
.y236{bottom:142.200000px;}
.y25e{bottom:142.380000px;}
.y10d{bottom:143.820000px;}
.y279{bottom:145.080000px;}
.y9a{bottom:145.980000px;}
.yae{bottom:147.420000px;}
.ycc{bottom:147.780000px;}
.y32f{bottom:148.860000px;}
.y32{bottom:149.940000px;}
.yba{bottom:152.460000px;}
.y18b{bottom:154.800000px;}
.y151{bottom:154.980000px;}
.yed{bottom:156.960000px;}
.y1b3{bottom:158.760000px;}
.y221{bottom:159.300000px;}
.y293{bottom:160.740000px;}
.y1e4{bottom:161.280000px;}
.y24f{bottom:161.460000px;}
.y1f4{bottom:162.000000px;}
.y6c{bottom:162.360000px;}
.y127{bottom:163.620000px;}
.y243{bottom:165.060000px;}
.y300{bottom:165.600000px;}
.y164{bottom:166.320000px;}
.y31{bottom:166.860000px;}
.y34a{bottom:167.040000px;}
.y1bf{bottom:167.220000px;}
.y10c{bottom:167.580000px;}
.y2b5{bottom:169.200000px;}
.y31b{bottom:169.740000px;}
.y196{bottom:170.460000px;}
.yad{bottom:171.180000px;}
.y32e{bottom:172.620000px;}
.yce{bottom:173.880000px;}
.y18a{bottom:178.560000px;}
.y150{bottom:178.740000px;}
.yec{bottom:180.900000px;}
.y25d{bottom:181.260000px;}
.y220{bottom:183.060000px;}
.y30{bottom:183.780000px;}
.y278{bottom:183.960000px;}
.y292{bottom:184.500000px;}
.y99{bottom:185.220000px;}
.y6b{bottom:186.120000px;}
.y7f{bottom:188.820000px;}
.y2ff{bottom:189.360000px;}
.y2c2{bottom:190.080000px;}
.y87{bottom:190.620000px;}
.y349{bottom:190.800000px;}
.y10b{bottom:191.340000px;}
.y2b4{bottom:192.960000px;}
.y31a{bottom:193.680000px;}
.yac{bottom:194.940000px;}
.yb9{bottom:195.300000px;}
.y32d{bottom:196.380000px;}
.y1b2{bottom:197.460000px;}
.y2e3{bottom:199.440000px;}
.y24e{bottom:199.800000px;}
.y2f{bottom:201.780000px;}
.y189{bottom:202.320000px;}
.y126{bottom:202.500000px;}
.y14f{bottom:202.680000px;}
.yeb{bottom:204.660000px;}
.y1be{bottom:206.130000px;}
.y21f{bottom:206.850000px;}
.y163{bottom:209.010000px;}
.y1f1{bottom:209.205000px;}
.y6a{bottom:210.090000px;}
.y242{bottom:212.610000px;}
.y2fe{bottom:213.150000px;}
.y235{bottom:213.525000px;}
.y2c1{bottom:213.870000px;}
.y348{bottom:214.590000px;}
.y10a{bottom:215.310000px;}
.y8c{bottom:216.210000px;}
.y84{bottom:216.750000px;}
.y195{bottom:217.290000px;}
.yab{bottom:218.910000px;}
.y25c{bottom:220.170000px;}
.y291{bottom:220.530000px;}
.y1b1{bottom:221.430000px;}
.y277{bottom:222.690000px;}
.y2e{bottom:223.050000px;}
.y98{bottom:224.130000px;}
.y188{bottom:226.290000px;}
.y14e{bottom:226.470000px;}
.yea{bottom:228.450000px;}
.y21e{bottom:230.790000px;}
.y319{bottom:232.410000px;}
.y1e3{bottom:232.770000px;}
.y69{bottom:233.850000px;}
.y32c{bottom:235.290000px;}
.y8b{bottom:236.010000px;}
.y241{bottom:236.370000px;}
.y83{bottom:236.550000px;}
.y2fd{bottom:237.090000px;}
.y2e2{bottom:237.450000px;}
.y2c0{bottom:237.810000px;}
.yb8{bottom:238.170000px;}
.y109{bottom:239.070000px;}
.y2b3{bottom:240.690000px;}
.y125{bottom:241.230000px;}
.yaa{bottom:242.670000px;}
.y290{bottom:244.110000px;}
.y2d{bottom:244.830000px;}
.y1b0{bottom:245.190000px;}
.y187{bottom:250.050000px;}
.y14d{bottom:250.230000px;}
.ye9{bottom:251.850000px;}
.y347{bottom:253.470000px;}
.y21d{bottom:254.550000px;}
.y82{bottom:256.350000px;}
.y1e2{bottom:256.530000px;}
.y74{bottom:257.250000px;}
.y68{bottom:257.610000px;}
.yc0{bottom:258.660000px;}
.y32b{bottom:259.050000px;}
.y240{bottom:260.310000px;}
.y2e1{bottom:261.210000px;}
.y276{bottom:261.570000px;}
.y97{bottom:262.830000px;}
.y194{bottom:263.910000px;}
.y2b2{bottom:264.450000px;}
.ya9{bottom:266.430000px;}
.y1af{bottom:268.950000px;}
.y1ee{bottom:270.585000px;}
.y186{bottom:273.810000px;}
.y14c{bottom:273.990000px;}
.y2c{bottom:274.530000px;}
.y89{bottom:275.790000px;}
.y81{bottom:276.150000px;}
.y346{bottom:277.230000px;}
.y21c{bottom:278.310000px;}
.yc5{bottom:279.930000px;}
.y124{bottom:280.110000px;}
.yb7{bottom:280.830000px;}
.y67{bottom:281.370000px;}
.ycb{bottom:282.090000px;}
.y32a{bottom:282.810000px;}
.y1bd{bottom:284.070000px;}
.y2e0{bottom:285.150000px;}
.y2bf{bottom:285.330000px;}
.y108{bottom:286.590000px;}
.ya8{bottom:290.190000px;}
.ye8{bottom:291.090000px;}
.y1ae{bottom:292.710000px;}
.y162{bottom:294.690000px;}
.y1e1{bottom:295.410000px;}
.y14b{bottom:297.930000px;}
.y2fc{bottom:299.550000px;}
.yc4{bottom:299.730000px;}
.y275{bottom:300.630000px;}
.y345{bottom:300.990000px;}
.y96{bottom:301.710000px;}
.yca{bottom:301.890000px;}
.y21b{bottom:302.070000px;}
.y2b1{bottom:303.150000px;}
.y28f{bottom:303.690000px;}
.y66{bottom:305.310000px;}
.y1bc{bottom:307.830000px;}
.y231{bottom:308.745000px;}
.y2df{bottom:308.910000px;}
.y2be{bottom:309.270000px;}
.y107{bottom:310.530000px;}
.y193{bottom:310.710000px;}
.y185{bottom:312.690000px;}
.y2b{bottom:313.230000px;}
.ya7{bottom:314.130000px;}
.ye7{bottom:314.850000px;}
.y25b{bottom:316.110000px;}
.y1ad{bottom:316.650000px;}
.y318{bottom:318.810000px;}
.y123{bottom:318.990000px;}
.y1e0{bottom:319.170000px;}
.yc3{bottom:319.530000px;}
.yc9{bottom:321.690000px;}
.y2fb{bottom:323.490000px;}
.yb6{bottom:323.670000px;}
.y1ec{bottom:324.045000px;}
.y274{bottom:324.390000px;}
.y21a{bottom:326.010000px;}
.y2b0{bottom:327.090000px;}
.y65{bottom:329.070000px;}
.y1bb{bottom:331.590000px;}
.y2de{bottom:332.670000px;}
.y106{bottom:334.290000px;}
.y2a{bottom:335.190000px;}
.y184{bottom:336.450000px;}
.y161{bottom:337.350000px;}
.ya6{bottom:337.890000px;}
.ye6{bottom:338.610000px;}
.y28e{bottom:339.690000px;}
.y344{bottom:339.870000px;}
.y95{bottom:340.410000px;}
.yc8{bottom:342.030000px;}
.y317{bottom:342.750000px;}
.y1df{bottom:342.930000px;}
.y14a{bottom:345.450000px;}
.y273{bottom:348.330000px;}
.y2bd{bottom:349.230000px;}
.y2af{bottom:350.850000px;}
.y25a{bottom:351.930000px;}
.y64{bottom:352.830000px;}
.y192{bottom:355.530000px;}
.yc2{bottom:355.710000px;}
.y2dd{bottom:356.430000px;}
.y29{bottom:356.970000px;}
.y122{bottom:357.690000px;}
.y105{bottom:358.050000px;}
.y183{bottom:360.210000px;}
.y7a{bottom:361.440000px;}
.ya5{bottom:361.650000px;}
.yc7{bottom:361.830000px;}
.y2fa{bottom:362.190000px;}
.ye5{bottom:362.550000px;}
.y343{bottom:363.630000px;}
.y219{bottom:364.710000px;}
.yb5{bottom:366.330000px;}
.y1de{bottom:366.870000px;}
.y1ac{bottom:367.950000px;}
.y329{bottom:369.210000px;}
.y23f{bottom:370.470000px;}
.y272{bottom:372.090000px;}
.y2bc{bottom:372.990000px;}
.y2ae{bottom:374.610000px;}
.y259{bottom:375.510000px;}
.y73{bottom:376.230000px;}
.y63{bottom:376.590000px;}
.y28d{bottom:378.210000px;}
.y359{bottom:378.390000px;}
.y316{bottom:378.570000px;}
.y28{bottom:378.750000px;}
.y94{bottom:379.290000px;}
.y7e{bottom:379.830000px;}
.y2dc{bottom:380.370000px;}
.y104{bottom:381.810000px;}
.y182{bottom:383.970000px;}
.y149{bottom:384.330000px;}
.ya4{bottom:385.410000px;}
.y2f9{bottom:385.950000px;}
.ye4{bottom:386.310000px;}
.y342{bottom:387.390000px;}
.y1eb{bottom:388.110000px;}
.y218{bottom:388.470000px;}
.y1dd{bottom:390.630000px;}
.y23e{bottom:394.230000px;}
.y271{bottom:395.850000px;}
.y121{bottom:396.930000px;}
.y7d{bottom:397.650000px;}
.y2ad{bottom:398.370000px;}
.y1ab{bottom:399.990000px;}
.y27{bottom:400.530000px;}
.y315{bottom:402.330000px;}
.y160{bottom:403.050000px;}
.y22c{bottom:403.965000px;}
.y103{bottom:405.750000px;}
.y181{bottom:407.910000px;}
.y148{bottom:408.090000px;}
.yb4{bottom:409.170000px;}
.ya3{bottom:409.350000px;}
.ye3{bottom:410.070000px;}
.y1ea{bottom:411.510000px;}
.y217{bottom:412.410000px;}
.y1dc{bottom:414.390000px;}
.y7c{bottom:415.470000px;}
.y28c{bottom:416.730000px;}
.y93{bottom:417.990000px;}
.y2db{bottom:419.070000px;}
.y120{bottom:420.690000px;}
.y26{bottom:422.310000px;}
.y1aa{bottom:423.750000px;}
.y62{bottom:424.290000px;}
.y2f8{bottom:424.830000px;}
.y358{bottom:426.090000px;}
.y341{bottom:426.270000px;}
.y15f{bottom:426.810000px;}
.y24d{bottom:429.510000px;}
.y147{bottom:431.850000px;}
.ya2{bottom:433.110000px;}
.y270{bottom:434.730000px;}
.y258{bottom:435.090000px;}
.y216{bottom:436.170000px;}
.y2ac{bottom:437.250000px;}
.y1db{bottom:438.150000px;}
.y314{bottom:438.330000px;}
.y1ba{bottom:441.975000px;}
.y2da{bottom:442.875000px;}
.y180{bottom:443.595000px;}
.y102{bottom:444.135000px;}
.y25{bottom:444.315000px;}
.y11f{bottom:444.495000px;}
.y1a9{bottom:447.555000px;}
.y61{bottom:448.095000px;}
.y2f7{bottom:448.635000px;}
.ye2{bottom:448.995000px;}
.y340{bottom:450.075000px;}
.y15e{bottom:450.795000px;}
.yb3{bottom:452.055000px;}
.y146{bottom:455.655000px;}
.y28b{bottom:456.015000px;}
.y92{bottom:456.915000px;}
.y257{bottom:458.895000px;}
.y2bb{bottom:459.075000px;}
.y215{bottom:459.975000px;}
.y2ab{bottom:461.055000px;}
.y313{bottom:461.955000px;}
.y1da{bottom:462.135000px;}
.y17f{bottom:464.475000px;}
.y357{bottom:465.015000px;}
.y1b9{bottom:465.735000px;}
.y24{bottom:466.095000px;}
.y2d9{bottom:466.815000px;}
.y24c{bottom:467.895000px;}
.y11e{bottom:468.255000px;}
.y26f{bottom:470.775000px;}
.y1a8{bottom:471.315000px;}
.y60{bottom:471.855000px;}
.ye1{bottom:472.755000px;}
.y33f{bottom:474.015000px;}
.y15d{bottom:474.555000px;}
.y227{bottom:475.455000px;}
.y28a{bottom:479.775000px;}
.ybc{bottom:479.880000px;}
.ya1{bottom:480.675000px;}
.y145{bottom:482.115000px;}
.y101{bottom:483.375000px;}
.y214{bottom:483.735000px;}
.y2aa{bottom:484.815000px;}
.y17e{bottom:485.175000px;}
.y1d9{bottom:485.895000px;}
.y2f6{bottom:487.515000px;}
.y23{bottom:487.875000px;}
.y356{bottom:488.775000px;}
.y1b8{bottom:489.495000px;}
.y2d8{bottom:490.575000px;}
.y328{bottom:491.655000px;}
.y11d{bottom:492.195000px;}
.y26e{bottom:494.355000px;}
.y256{bottom:494.535000px;}
.y8e{bottom:494.640000px;}
.yb2{bottom:494.715000px;}
.y1a7{bottom:495.075000px;}
.y5f{bottom:495.795000px;}
.ye0{bottom:496.515000px;}
.y15c{bottom:498.315000px;}
.y312{bottom:500.655000px;}
.ya0{bottom:504.435000px;}
.y17d{bottom:505.875000px;}
.y100{bottom:507.135000px;}
.y213{bottom:507.675000px;}
.y144{bottom:508.395000px;}
.y2a9{bottom:508.755000px;}
.ybe{bottom:509.115000px;}
.y22{bottom:509.655000px;}
.y2f5{bottom:511.275000px;}
.y355{bottom:512.535000px;}
.y33e{bottom:512.715000px;}
.y191{bottom:513.255000px;}
.y2d7{bottom:514.335000px;}
.y289{bottom:515.775000px;}
.y11c{bottom:515.955000px;}
.y1a6{bottom:519.015000px;}
.y5e{bottom:519.555000px;}
.ydf{bottom:520.455000px;}
.y1e9{bottom:522.075000px;}
.y311{bottom:524.595000px;}
.y17c{bottom:526.575000px;}
.y9f{bottom:528.375000px;}
.y143{bottom:529.095000px;}
.y26d{bottom:530.355000px;}
.yff{bottom:530.895000px;}
.y212{bottom:531.435000px;}
.y21{bottom:531.615000px;}
.y2a8{bottom:532.515000px;}
.y1d8{bottom:533.415000px;}
.y255{bottom:533.595000px;}
.y1a5{bottom:535.395000px;}
.y33d{bottom:536.475000px;}
.y15b{bottom:537.195000px;}
.yb1{bottom:537.555000px;}
.y2d6{bottom:538.095000px;}
.y288{bottom:539.355000px;}
.y11b{bottom:539.715000px;}
.y5d{bottom:543.315000px;}
.yde{bottom:544.215000px;}
.y1e8{bottom:546.015000px;}
.y17b{bottom:547.275000px;}
.y225{bottom:547.635000px;}
.y310{bottom:548.355000px;}
.y142{bottom:549.795000px;}
.y2f4{bottom:550.155000px;}
.y354{bottom:551.415000px;}
.y9e{bottom:552.135000px;}
.y20{bottom:553.395000px;}
.y26c{bottom:553.935000px;}
.y327{bottom:554.115000px;}
.yfe{bottom:554.655000px;}
.y211{bottom:555.195000px;}
.y2a7{bottom:556.275000px;}
.y1d7{bottom:557.355000px;}
.y33c{bottom:560.415000px;}
.y15a{bottom:560.955000px;}
.y287{bottom:563.115000px;}
.y2d5{bottom:563.295000px;}
.y11a{bottom:563.475000px;}
.y91{bottom:566.715000px;}
.y5c{bottom:567.075000px;}
.y1e7{bottom:569.775000px;}
.y141{bottom:570.495000px;}
.y1d4{bottom:573.735000px;}
.y2f3{bottom:573.915000px;}
.ydd{bottom:574.815000px;}
.y1f{bottom:575.175000px;}
.yb0{bottom:575.535000px;}
.y9d{bottom:575.895000px;}
.yfd{bottom:578.595000px;}
.y210{bottom:578.955000px;}
.y224{bottom:581.475000px;}
.y159{bottom:584.715000px;}
.y286{bottom:586.875000px;}
.y2d4{bottom:587.055000px;}
.y119{bottom:587.415000px;}
.y26b{bottom:589.935000px;}
.y5b{bottom:591.015000px;}
.y140{bottom:591.195000px;}
.y326{bottom:592.995000px;}
.y2ba{bottom:593.535000px;}
.y2a6{bottom:594.795000px;}
.y254{bottom:596.055000px;}
.y1e{bottom:596.955000px;}
.y2f2{bottom:597.675000px;}
.y353{bottom:598.935000px;}
.y33b{bottom:599.115000px;}
.y9c{bottom:599.655000px;}
.y1cf{bottom:601.275000px;}
.yfc{bottom:602.355000px;}
.y178{bottom:603.075000px;}
.y223{bottom:605.415000px;}
.y158{bottom:608.475000px;}
.y285{bottom:610.815000px;}
.y30f{bottom:610.995000px;}
.y118{bottom:611.175000px;}
.y13f{bottom:611.895000px;}
.y26a{bottom:613.515000px;}
.y5a{bottom:614.775000px;}
.y325{bottom:616.755000px;}
.y2b9{bottom:617.295000px;}
.y20f{bottom:617.835000px;}
.y1d{bottom:618.735000px;}
.ydc{bottom:618.915000px;}
.y33a{bottom:622.875000px;}
.y9b{bottom:623.595000px;}
.yfb{bottom:626.115000px;}
.y13d{bottom:628.095000px;}
.y157{bottom:632.415000px;}
.y2a5{bottom:633.855000px;}
.y253{bottom:634.575000px;}
.y30e{bottom:634.755000px;}
.y117{bottom:634.935000px;}
.y2f1{bottom:636.555000px;}
.y352{bottom:637.815000px;}
.y59{bottom:638.535000px;}
.y1c{bottom:640.695000px;}
.y222{bottom:640.875000px;}
.y2b8{bottom:641.055000px;}
.y20e{bottom:641.595000px;}
.ydb{bottom:642.675000px;}
.y339{bottom:646.815000px;}
.y23d{bottom:647.355000px;}
.y269{bottom:649.515000px;}
.y24b{bottom:649.875000px;}
.y324{bottom:652.755000px;}
.y156{bottom:656.175000px;}
.y2a4{bottom:657.615000px;}
.y2d3{bottom:658.515000px;}
.y2f0{bottom:660.315000px;}
.y351{bottom:661.575000px;}
.y58{bottom:662.295000px;}
.y1b{bottom:662.475000px;}
.yfa{bottom:664.635000px;}
.y2b7{bottom:664.995000px;}
.y20d{bottom:665.355000px;}
.y284{bottom:670.575000px;}
.y23c{bottom:671.115000px;}
.y268{bottom:673.095000px;}
.yda{bottom:673.455000px;}
.y30d{bottom:673.635000px;}
.y24a{bottom:673.815000px;}
.y323{bottom:676.365000px;}
.y155{bottom:679.965000px;}
.y2a3{bottom:681.585000px;}
.y2d2{bottom:682.305000px;}
.y1a{bottom:684.285000px;}
.y1a3{bottom:685.185000px;}
.y350{bottom:685.365000px;}
.y338{bottom:685.545000px;}
.y76{bottom:685.725000px;}
.y57{bottom:686.085000px;}
.y2b6{bottom:688.785000px;}
.y20c{bottom:689.325000px;}
.y175{bottom:689.505000px;}
.y1b7{bottom:694.905000px;}
.y30c{bottom:697.425000px;}
.y249{bottom:697.605000px;}
.y2ef{bottom:699.225000px;}
.yf9{bottom:703.725000px;}
.y2a2{bottom:705.345000px;}
.y19{bottom:706.065000px;}
.y2d1{bottom:707.325000px;}
.y267{bottom:708.765000px;}
.y283{bottom:709.125000px;}
.y337{bottom:709.305000px;}
.y56{bottom:710.025000px;}
.yd9{bottom:712.545000px;}
.y20b{bottom:713.085000px;}
.y322{bottom:715.245000px;}
.y1b6{bottom:718.845000px;}
.y248{bottom:721.365000px;}
.y1ce{bottom:722.805000px;}
.y2ee{bottom:722.985000px;}
.yf8{bottom:727.665000px;}
.y2a1{bottom:729.105000px;}
.y2d0{bottom:731.265000px;}
.y282{bottom:733.065000px;}
.y336{bottom:733.245000px;}
.y55{bottom:733.785000px;}
.y18{bottom:735.765000px;}
.y30b{bottom:736.125000px;}
.yd8{bottom:736.305000px;}
.y20a{bottom:736.845000px;}
.y321{bottom:739.005000px;}
.y1b5{bottom:742.605000px;}
.y252{bottom:745.125000px;}
.y1a2{bottom:747.825000px;}
.y137{bottom:750.165000px;}
.yf7{bottom:751.425000px;}
.y2cf{bottom:755.025000px;}
.y17{bottom:755.925000px;}
.y171{bottom:757.005000px;}
.y54{bottom:757.545000px;}
.y247{bottom:759.885000px;}
.y30a{bottom:760.065000px;}
.yd7{bottom:760.245000px;}
.y209{bottom:760.605000px;}
.y2ed{bottom:761.685000px;}
.y190{bottom:766.365000px;}
.y2a0{bottom:767.985000px;}
.y281{bottom:771.765000px;}
.y335{bottom:771.945000px;}
.yf6{bottom:775.185000px;}
.y320{bottom:777.705000px;}
.y2ce{bottom:778.785000px;}
.y53{bottom:781.305000px;}
.y15{bottom:782.745000px;}
.y1c9{bottom:782.925000px;}
.y34f{bottom:783.825000px;}
.y116{bottom:784.005000px;}
.y208{bottom:784.545000px;}
.y2ec{bottom:785.625000px;}
.y266{bottom:786.525000px;}
.y18f{bottom:790.125000px;}
.y16{bottom:790.305000px;}
.y29f{bottom:791.745000px;}
.y334{bottom:795.705000px;}
.y246{bottom:798.585000px;}
.y309{bottom:798.765000px;}
.yd6{bottom:798.945000px;}
.y14{bottom:800.025000px;}
.y31f{bottom:801.645000px;}
.y2cd{bottom:802.545000px;}
.y52{bottom:805.245000px;}
.y115{bottom:807.765000px;}
.y207{bottom:808.305000px;}
.y134{bottom:810.285000px;}
.y18e{bottom:814.065000px;}
.y29e{bottom:815.505000px;}
.y333{bottom:819.645000px;}
.y265{bottom:822.525000px;}
.yd5{bottom:822.705000px;}
.y2eb{bottom:824.325000px;}
.y2cc{bottom:826.485000px;}
.y13{bottom:827.745000px;}
.y51{bottom:829.005000px;}
.y280{bottom:831.345000px;}
.y114{bottom:831.525000px;}
.y206{bottom:832.065000px;}
.y18d{bottom:837.825000px;}
.y29d{bottom:839.265000px;}
.y31e{bottom:840.345000px;}
.y264{bottom:846.285000px;}
.y308{bottom:846.465000px;}
.yd4{bottom:846.645000px;}
.y2ea{bottom:848.085000px;}
.y12{bottom:848.445000px;}
.y2cb{bottom:850.245000px;}
.y16d{bottom:850.785000px;}
.y50{bottom:852.765000px;}
.y332{bottom:855.645000px;}
.y205{bottom:855.825000px;}
.y154{bottom:861.585000px;}
.y29c{bottom:863.205000px;}
.y130{bottom:864.285000px;}
.y27f{bottom:867.345000px;}
.yd3{bottom:870.405000px;}
.y11{bottom:871.845000px;}
.y2e9{bottom:872.025000px;}
.y2ca{bottom:875.265000px;}
.y4f{bottom:876.525000px;}
.y331{bottom:879.225000px;}
.y204{bottom:879.765000px;}
.y263{bottom:882.105000px;}
.y307{bottom:882.465000px;}
.y1c7{bottom:884.805000px;}
.y34e{bottom:885.165000px;}
.y153{bottom:885.345000px;}
.y27e{bottom:890.925000px;}
.yf5{bottom:894.165000px;}
.y19a{bottom:898.125000px;}
.y2c9{bottom:899.025000px;}
.y4e{bottom:900.465000px;}
.y29b{bottom:901.905000px;}
.y31d{bottom:902.985000px;}
.y203{bottom:903.525000px;}
.y262{bottom:905.865000px;}
.y306{bottom:906.045000px;}
.y10{bottom:908.205000px;}
.y34d{bottom:908.925000px;}
.yd2{bottom:909.285000px;}
.y2e8{bottom:910.770000px;}
.y27d{bottom:914.910000px;}
.yf4{bottom:917.970000px;}
.y2c8{bottom:923.010000px;}
.y4d{bottom:924.270000px;}
.y29a{bottom:925.890000px;}
.y31c{bottom:926.790000px;}
.y202{bottom:927.330000px;}
.y305{bottom:929.850000px;}
.yd1{bottom:933.090000px;}
.y2e7{bottom:934.530000px;}
.y12d{bottom:938.670000px;}
.y1c4{bottom:938.850000px;}
.yf3{bottom:941.910000px;}
.y16a{bottom:942.630000px;}
.y200{bottom:943.710000px;}
.yf{bottom:944.610000px;}
.y34c{bottom:944.970000px;}
.y2c7{bottom:946.770000px;}
.y4c{bottom:948.030000px;}
.y299{bottom:949.650000px;}
.y251{bottom:956.490000px;}
.yd0{bottom:956.850000px;}
.y2e6{bottom:958.470000px;}
.y27c{bottom:962.430000px;}
.yf2{bottom:965.670000px;}
.y304{bottom:968.730000px;}
.y2c6{bottom:970.530000px;}
.y4b{bottom:971.790000px;}
.y298{bottom:973.410000px;}
.ye{bottom:973.590000px;}
.y261{bottom:977.550000px;}
.y1fb{bottom:978.630000px;}
.y250{bottom:980.250000px;}
.ycf{bottom:980.610000px;}
.y3a{bottom:983.880000px;}
.y27b{bottom:986.190000px;}
.yf1{bottom:989.430000px;}
.y36{bottom:991.260000px;}
.y303{bottom:992.490000px;}
.y38{bottom:992.520000px;}
.yd{bottom:993.390000px;}
.y2c5{bottom:994.290000px;}
.y4a{bottom:995.730000px;}
.y1c1{bottom:996.270000px;}
.y297{bottom:997.170000px;}
.y12b{bottom:998.610000px;}
.y260{bottom:1001.310000px;}
.y113{bottom:1004.370000px;}
.y34b{bottom:1004.550000px;}
.y198{bottom:1014.990000px;}
.y302{bottom:1016.250000px;}
.y2c4{bottom:1018.230000px;}
.y49{bottom:1019.490000px;}
.y296{bottom:1020.930000px;}
.y27a{bottom:1022.190000px;}
.yc{bottom:1027.590000px;}
.yf0{bottom:1027.950000px;}
.y112{bottom:1028.310000px;}
.y168{bottom:1029.750000px;}
.y25f{bottom:1036.950000px;}
.y75{bottom:1042.890000px;}
.y48{bottom:1043.250000px;}
.y295{bottom:1044.870000px;}
.y111{bottom:1052.070000px;}
.y301{bottom:1052.250000px;}
.y12a{bottom:1060.890000px;}
.yb{bottom:1062.870000px;}
.y47{bottom:1067.010000px;}
.y294{bottom:1075.470000px;}
.y110{bottom:1075.830000px;}
.y2e5{bottom:1083.570000px;}
.y46{bottom:1090.950000px;}
.y167{bottom:1092.930000px;}
.y129{bottom:1099.230000px;}
.y10f{bottom:1099.590000px;}
.ya{bottom:1101.030000px;}
.y2e4{bottom:1107.510000px;}
.y45{bottom:1114.710000px;}
.y166{bottom:1135.410000px;}
.y44{bottom:1138.110000px;}
.y70{bottom:1138.470000px;}
.y9{bottom:1139.190000px;}
.y42{bottom:1169.460000px;}
.y41{bottom:1183.500000px;}
.y40{bottom:1197.540000px;}
.y6f{bottom:1198.260000px;}
.y3c{bottom:1207.800000px;}
.y3f{bottom:1220.400000px;}
.h1a{height:13.500000px;}
.h19{height:14.580000px;}
.h24{height:18.000000px;}
.h27{height:18.180000px;}
.h1c{height:21.240000px;}
.h63{height:23.938500px;}
.h1d{height:24.380859px;}
.h4{height:24.660000px;}
.h5e{height:25.725000px;}
.h55{height:26.805000px;}
.h17{height:30.077578px;}
.h3d{height:33.645000px;}
.h5d{height:34.185000px;}
.h1e{height:36.168398px;}
.h2{height:38.405391px;}
.h6{height:38.464805px;}
.h9{height:38.469727px;}
.h47{height:38.685000px;}
.h41{height:38.865000px;}
.h37{height:39.045000px;}
.h11{height:39.810234px;}
.h1f{height:40.843828px;}
.h56{height:40.845000px;}
.h50{height:41.385000px;}
.ha{height:42.573164px;}
.h2f{height:43.740000px;}
.h5a{height:47.196000px;}
.h7{height:47.650430px;}
.h18{height:47.980898px;}
.h34{height:48.616875px;}
.h5{height:49.680000px;}
.h30{height:50.068125px;}
.h16{height:50.171484px;}
.h58{height:52.545000px;}
.h1b{height:52.817344px;}
.h29{height:52.998047px;}
.h8{height:53.709961px;}
.h3a{height:54.000000px;}
.h52{height:54.022500px;}
.hc{height:54.421875px;}
.h51{height:56.685000px;}
.h2b{height:58.621992px;}
.h2c{height:58.651172px;}
.h2d{height:58.792500px;}
.h38{height:59.205000px;}
.h3b{height:60.120000px;}
.h35{height:60.226875px;}
.h12{height:60.679688px;}
.hf{height:61.189805px;}
.h59{height:61.365000px;}
.h49{height:61.545000px;}
.h15{height:62.153438px;}
.h4c{height:62.460000px;}
.h4d{height:62.640000px;}
.h22{height:63.175781px;}
.h14{height:64.978594px;}
.h13{height:65.010937px;}
.h36{height:65.520000px;}
.h3{height:65.884219px;}
.h31{height:66.060000px;}
.h57{height:66.757500px;}
.h45{height:67.500000px;}
.he{height:67.824844px;}
.h3e{height:70.628906px;}
.hd{height:70.664062px;}
.h62{height:71.316000px;}
.h5f{height:71.445000px;}
.h60{height:71.481000px;}
.h21{height:71.613281px;}
.h20{height:72.562500px;}
.h25{height:74.004654px;}
.h39{height:74.362500px;}
.h26{height:80.464922px;}
.h23{height:82.676953px;}
.h28{height:84.240000px;}
.h40{height:84.898125px;}
.h42{height:86.385000px;}
.h46{height:86.430000px;}
.h3c{height:87.690000px;}
.h4b{height:87.840000px;}
.h5b{height:87.870000px;}
.h5c{height:88.365000px;}
.hb{height:91.019531px;}
.h43{height:91.822500px;}
.h44{height:93.780000px;}
.h3f{height:93.983203px;}
.h61{height:95.205000px;}
.h48{height:96.508125px;}
.h53{height:101.880000px;}
.h4f{height:105.996094px;}
.h4e{height:110.370000px;}
.h4a{height:115.942500px;}
.h2e{height:118.800000px;}
.h2a{height:120.960000px;}
.h54{height:121.530000px;}
.h32{height:132.660000px;}
.h33{height:133.200000px;}
.h10{height:1262.877990px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w28{width:74.145000px;}
.w9{width:77.400000px;}
.w18{width:78.645000px;}
.w3{width:82.080000px;}
.w14{width:94.485000px;}
.w24{width:96.285000px;}
.w8{width:96.300000px;}
.w20{width:101.145000px;}
.w5{width:104.760000px;}
.w21{width:104.781000px;}
.wb{width:105.480000px;}
.w1c{width:111.945000px;}
.wc{width:117.900000px;}
.w29{width:128.361000px;}
.w6{width:132.480000px;}
.w27{width:140.796000px;}
.w17{width:141.696000px;}
.w1d{width:143.841000px;}
.w19{width:144.201000px;}
.w23{width:149.436000px;}
.w1f{width:153.750000px;}
.w25{width:155.355000px;}
.w15{width:168.675000px;}
.w13{width:182.370000px;}
.w7{width:189.540000px;}
.w1b{width:192.450000px;}
.wa{width:199.980000px;}
.wf{width:203.400000px;}
.w10{width:216.180000px;}
.w1a{width:219.799500px;}
.w12{width:229.519500px;}
.wd{width:240.120000px;}
.w22{width:263.719500px;}
.w1e{width:285.139500px;}
.w16{width:290.359500px;}
.w11{width:318.060000px;}
.w26{width:338.599500px;}
.we{width:446.400000px;}
.w2{width:626.400000px;}
.w4{width:892.978125px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x44{left:8.089500px;}
.x15{left:10.836000px;}
.x5{left:13.830000px;}
.x17{left:17.355000px;}
.x4d{left:18.510000px;}
.x29{left:20.595000px;}
.x13{left:23.190000px;}
.x21{left:30.135000px;}
.x2c{left:31.245000px;}
.x32{left:33.915000px;}
.x2a{left:35.355000px;}
.x6{left:41.220000px;}
.x56{left:42.870000px;}
.x54{left:46.065000px;}
.x55{left:49.530000px;}
.x30{left:58.965000px;}
.x37{left:60.015000px;}
.x53{left:61.200000px;}
.x5a{left:67.710000px;}
.x5c{left:68.790000px;}
.x5b{left:74.730000px;}
.x47{left:79.740000px;}
.x2{left:93.960000px;}
.x5e{left:99.946500px;}
.x41{left:106.956000px;}
.x1{left:108.036000px;}
.x48{left:109.476000px;}
.x11{left:111.816000px;}
.x14{left:117.540000px;}
.xd{left:120.096000px;}
.x7{left:123.876000px;}
.x8{left:132.336000px;}
.x1f{left:135.036000px;}
.x19{left:137.376000px;}
.x18{left:148.896000px;}
.x40{left:160.230000px;}
.x1c{left:162.030000px;}
.x64{left:168.870000px;}
.x1b{left:183.630000px;}
.x39{left:189.075000px;}
.x63{left:216.030000px;}
.x3a{left:250.560000px;}
.x1d{left:252.030000px;}
.x3c{left:261.390000px;}
.x38{left:276.375000px;}
.x9{left:289.515000px;}
.x25{left:304.560000px;}
.x3b{left:311.295000px;}
.x28{left:317.235000px;}
.x31{left:318.960000px;}
.x33{left:321.555000px;}
.x26{left:322.815000px;}
.x10{left:324.075000px;}
.x4e{left:327.855000px;}
.x27{left:330.195000px;}
.x36{left:333.795000px;}
.x20{left:336.960000px;}
.x22{left:348.555000px;}
.x23{left:356.835000px;}
.x16{left:366.300000px;}
.x57{left:371.775000px;}
.x3f{left:374.655000px;}
.x24{left:376.455000px;}
.x1a{left:379.875000px;}
.x50{left:393.195000px;}
.x49{left:398.415000px;}
.xb{left:402.555000px;}
.x5f{left:438.555000px;}
.x35{left:446.475000px;}
.x3{left:454.965000px;}
.x2b{left:457.740000px;}
.x2e{left:472.425000px;}
.xa{left:473.505000px;}
.x2d{left:477.645000px;}
.x3d{left:482.580000px;}
.x3e{left:493.485000px;}
.x2f{left:499.245000px;}
.x45{left:519.960000px;}
.x58{left:521.220000px;}
.x4a{left:540.120000px;}
.x51{left:546.960000px;}
.xe{left:561.883125px;}
.xf{left:566.745000px;}
.x60{left:579.360000px;}
.x46{left:614.460000px;}
.x59{left:617.520000px;}
.x4b{left:618.780000px;}
.x4f{left:632.280000px;}
.x52{left:648.120000px;}
.x61{left:653.520000px;}
.x12{left:693.000000px;}
.x34{left:713.880000px;}
.x1e{left:716.940000px;}
.x43{left:718.020000px;}
.x4c{left:720.900000px;}
.x42{left:721.980000px;}
.x62{left:723.240000px;}
.x65{left:724.860000px;}
.x5d{left:725.940000px;}
.xc{left:785.130000px;}
.x4{left:810.540000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls19{letter-spacing:-0.832000pt;}
.ls1f{letter-spacing:-0.704000pt;}
.ls8{letter-spacing:-0.640000pt;}
.ls18{letter-spacing:-0.512000pt;}
.ls12{letter-spacing:-0.310400pt;}
.ls24{letter-spacing:-0.256000pt;}
.ls14{letter-spacing:-0.128000pt;}
.ls7{letter-spacing:-0.124800pt;}
.lsd{letter-spacing:-0.040320pt;}
.ls4{letter-spacing:-0.030720pt;}
.ls1{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.072533pt;}
.ls13{letter-spacing:0.106667pt;}
.ls2{letter-spacing:0.115200pt;}
.lsc{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.133333pt;}
.lsf{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.256000pt;}
.ls23{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:0.368533pt;}
.ls1b{letter-spacing:0.372267pt;}
.ls17{letter-spacing:0.512000pt;}
.ls9{letter-spacing:0.640000pt;}
.lse{letter-spacing:0.704000pt;}
.ls27{letter-spacing:0.714667pt;}
.ls28{letter-spacing:0.768000pt;}
.ls6{letter-spacing:5.120000pt;}
.ls21{letter-spacing:7.680000pt;}
.ls5{letter-spacing:8.960000pt;}
.ls26{letter-spacing:13.440000pt;}
.lsa{letter-spacing:15.360000pt;}
.lsb{letter-spacing:30.186667pt;}
.ls1e{letter-spacing:30.208000pt;}
.ls22{letter-spacing:40.912640pt;}
.ls25{letter-spacing:48.768000pt;}
.ls20{letter-spacing:56.891307pt;}
.ls1d{letter-spacing:56.912640pt;}
.ls11{letter-spacing:71.564800pt;}
.ls10{letter-spacing:71.724800pt;}
.ls1c{letter-spacing:175.978667pt;}
.ws10{word-spacing:-64.000000pt;}
.ws16{word-spacing:-53.120000pt;}
.ws1a{word-spacing:-16.768000pt;}
.wsb{word-spacing:-16.704000pt;}
.wsd{word-spacing:-16.640000pt;}
.ws12{word-spacing:-16.512000pt;}
.ws11{word-spacing:-16.256000pt;}
.wsa{word-spacing:-16.128000pt;}
.ws8{word-spacing:-16.000000pt;}
.wsf{word-spacing:-15.872000pt;}
.ws18{word-spacing:-15.744000pt;}
.ws15{word-spacing:-15.296000pt;}
.ws13{word-spacing:-15.088533pt;}
.ws17{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.280000pt;}
.ws2{word-spacing:-13.276160pt;}
.ws4{word-spacing:-11.360000pt;}
.ws9{word-spacing:-10.679680pt;}
.ws19{word-spacing:-9.547947pt;}
.ws7{word-spacing:-9.308800pt;}
.ws14{word-spacing:-9.205547pt;}
.ws0{word-spacing:-8.948480pt;}
.ws1{word-spacing:-8.905813pt;}
.ws5{word-spacing:-8.833280pt;}
.wse{word-spacing:-8.522880pt;}
.ws3{word-spacing:-0.064000pt;}
.ws6{word-spacing:0.000000pt;}
._17{margin-left:-2.144853pt;}
._0{margin-left:-1.008000pt;}
._4{width:1.328000pt;}
._e{width:2.781440pt;}
._5{width:3.886080pt;}
._1d{width:4.829440pt;}
._11{width:5.777280pt;}
._d{width:6.888960pt;}
._c{width:7.779200pt;}
._10{width:8.759680pt;}
._a{width:10.245120pt;}
._b{width:11.161600pt;}
._14{width:12.336640pt;}
._f{width:13.497600pt;}
._15{width:14.819840pt;}
._16{width:16.606293pt;}
._1f{width:17.600000pt;}
._1e{width:18.520320pt;}
._8{width:20.195840pt;}
._9{width:21.314560pt;}
._7{width:22.866560pt;}
._6{width:23.905280pt;}
._21{width:25.088000pt;}
._1c{width:26.240000pt;}
._2{width:27.440000pt;}
._23{width:28.832000pt;}
._19{width:30.080000pt;}
._1a{width:31.594667pt;}
._1b{width:33.162667pt;}
._20{width:34.608000pt;}
._22{width:35.632000pt;}
._26{width:37.120000pt;}
._13{width:38.830080pt;}
._12{width:39.744000pt;}
._24{width:40.960000pt;}
._25{width:42.176000pt;}
._29{width:43.136000pt;}
._27{width:44.186667pt;}
._28{width:45.280000pt;}
._31{width:113.984000pt;}
._2b{width:132.368000pt;}
._2a{width:133.424000pt;}
._2c{width:134.336000pt;}
._30{width:170.688000pt;}
._18{width:175.978667pt;}
._2d{width:179.456000pt;}
._2e{width:180.384000pt;}
._2f{width:293.600000pt;}
._3{width:970.273067pt;}
._1{width:1865.125333pt;}
.fsb{font-size:26.880000pt;}
.fsc{font-size:32.000000pt;}
.fs8{font-size:34.560000pt;}
.fs0{font-size:40.320000pt;}
.fs2{font-size:42.880000pt;}
.fsa{font-size:45.440000pt;}
.fs4{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fse{font-size:53.248000pt;}
.fs9{font-size:56.320000pt;}
.fs1{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fsd{font-size:74.880000pt;}
.fs6{font-size:85.120000pt;}
.fs5{font-size:96.000000pt;}
.y86{bottom:-10.560000pt;}
.y8d{bottom:-9.920000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:0.960000pt;}
.y39{bottom:1.413333pt;}
.y37{bottom:2.373333pt;}
.y8{bottom:2.880000pt;}
.y1c3{bottom:3.680000pt;}
.y6{bottom:3.840000pt;}
.y3{bottom:4.000000pt;}
.y72{bottom:5.280000pt;}
.y78{bottom:5.440000pt;}
.y23a{bottom:6.400000pt;}
.y22a{bottom:6.560000pt;}
.y22f{bottom:6.706667pt;}
.y23b{bottom:6.720000pt;}
.y85{bottom:7.040000pt;}
.ybf{bottom:7.266667pt;}
.y226{bottom:8.000000pt;}
.y3b{bottom:8.293333pt;}
.y90{bottom:8.866667pt;}
.y1d5{bottom:9.120000pt;}
.y1d6{bottom:9.440000pt;}
.y1f6{bottom:11.840000pt;}
.y79{bottom:12.800000pt;}
.y77{bottom:13.280000pt;}
.y197{bottom:13.760000pt;}
.y71{bottom:13.920000pt;}
.yef{bottom:14.080000pt;}
.y1fa{bottom:14.240000pt;}
.y1ff{bottom:14.720000pt;}
.y133{bottom:14.880000pt;}
.y136{bottom:15.200000pt;}
.y13e{bottom:15.520000pt;}
.y201{bottom:15.840000pt;}
.y1f0{bottom:16.626667pt;}
.y1c6{bottom:17.600000pt;}
.y17a{bottom:19.520000pt;}
.y169{bottom:19.680000pt;}
.y12f{bottom:19.840000pt;}
.y12c{bottom:20.000000pt;}
.y43{bottom:20.160000pt;}
.y139{bottom:20.640000pt;}
.y1cd{bottom:20.960000pt;}
.y1a1{bottom:21.120000pt;}
.y2{bottom:21.920000pt;}
.y1c2{bottom:22.080000pt;}
.y1ed{bottom:22.706667pt;}
.y177{bottom:24.160000pt;}
.y1f3{bottom:24.466667pt;}
.y170{bottom:24.640000pt;}
.y19e{bottom:25.160000pt;}
.y3e{bottom:25.280000pt;}
.y174{bottom:26.400000pt;}
.y8f{bottom:26.626667pt;}
.y13c{bottom:26.746667pt;}
.y238{bottom:27.680000pt;}
.y22e{bottom:27.826667pt;}
.y229{bottom:27.840000pt;}
.y1f5{bottom:28.640000pt;}
.y1f9{bottom:31.040000pt;}
.y1fe{bottom:31.680000pt;}
.y132{bottom:33.280000pt;}
.y1ef{bottom:33.426667pt;}
.y7{bottom:33.440000pt;}
.y135{bottom:33.600000pt;}
.y1c8{bottom:33.640000pt;}
.y1c5{bottom:36.000000pt;}
.y3d{bottom:37.280000pt;}
.y1{bottom:37.920000pt;}
.y12e{bottom:38.240000pt;}
.y1d3{bottom:38.400000pt;}
.y138{bottom:39.040000pt;}
.y1cc{bottom:39.360000pt;}
.y199{bottom:39.840000pt;}
.y179{bottom:40.960000pt;}
.y16c{bottom:41.120000pt;}
.y1f2{bottom:41.266667pt;}
.ycd{bottom:41.760000pt;}
.y1a0{bottom:42.400000pt;}
.ybd{bottom:44.706667pt;}
.y13b{bottom:45.146667pt;}
.y176{bottom:45.440000pt;}
.y16f{bottom:45.920000pt;}
.y19d{bottom:46.280000pt;}
.y173{bottom:47.680000pt;}
.y1f8{bottom:48.000000pt;}
.y1fd{bottom:48.480000pt;}
.y22b{bottom:48.640000pt;}
.y230{bottom:48.666667pt;}
.y237{bottom:48.800000pt;}
.y233{bottom:48.946667pt;}
.y228{bottom:48.960000pt;}
.y22d{bottom:48.986667pt;}
.y131{bottom:51.720000pt;}
.y4{bottom:52.800000pt;}
.y1d2{bottom:56.800000pt;}
.y1cb{bottom:57.760000pt;}
.y8a{bottom:58.106667pt;}
.y16b{bottom:62.240000pt;}
.y19f{bottom:63.520000pt;}
.y13a{bottom:63.546667pt;}
.y7b{bottom:63.866667pt;}
.y1f7{bottom:64.800000pt;}
.y1fc{bottom:65.280000pt;}
.y16e{bottom:67.080000pt;}
.y19c{bottom:67.400000pt;}
.y172{bottom:68.800000pt;}
.y234{bottom:69.746667pt;}
.y232{bottom:70.066667pt;}
.y1d1{bottom:75.226667pt;}
.y1ca{bottom:76.160000pt;}
.y1a4{bottom:83.520000pt;}
.y19b{bottom:88.520000pt;}
.y88{bottom:93.306667pt;}
.y1d0{bottom:93.626667pt;}
.y80{bottom:95.226667pt;}
.y35{bottom:98.720000pt;}
.y1e6{bottom:101.120000pt;}
.y6e{bottom:102.080000pt;}
.ybb{bottom:103.840000pt;}
.y34{bottom:104.000000pt;}
.y245{bottom:104.320000pt;}
.y239{bottom:104.480000pt;}
.yc1{bottom:105.146667pt;}
.y10e{bottom:106.720000pt;}
.yc6{bottom:108.346667pt;}
.y165{bottom:109.760000pt;}
.yaf{bottom:109.920000pt;}
.y128{bottom:111.040000pt;}
.y330{bottom:111.200000pt;}
.y33{bottom:112.960000pt;}
.y1c0{bottom:114.240000pt;}
.y18c{bottom:116.480000pt;}
.y152{bottom:116.640000pt;}
.yee{bottom:118.400000pt;}
.y1b4{bottom:120.000000pt;}
.y1e5{bottom:122.240000pt;}
.y6d{bottom:123.200000pt;}
.y244{bottom:125.440000pt;}
.y2c3{bottom:125.600000pt;}
.y236{bottom:126.400000pt;}
.y25e{bottom:126.560000pt;}
.y10d{bottom:127.840000pt;}
.y279{bottom:128.960000pt;}
.y9a{bottom:129.760000pt;}
.yae{bottom:131.040000pt;}
.ycc{bottom:131.360000pt;}
.y32f{bottom:132.320000pt;}
.y32{bottom:133.280000pt;}
.yba{bottom:135.520000pt;}
.y18b{bottom:137.600000pt;}
.y151{bottom:137.760000pt;}
.yed{bottom:139.520000pt;}
.y1b3{bottom:141.120000pt;}
.y221{bottom:141.600000pt;}
.y293{bottom:142.880000pt;}
.y1e4{bottom:143.360000pt;}
.y24f{bottom:143.520000pt;}
.y1f4{bottom:144.000000pt;}
.y6c{bottom:144.320000pt;}
.y127{bottom:145.440000pt;}
.y243{bottom:146.720000pt;}
.y300{bottom:147.200000pt;}
.y164{bottom:147.840000pt;}
.y31{bottom:148.320000pt;}
.y34a{bottom:148.480000pt;}
.y1bf{bottom:148.640000pt;}
.y10c{bottom:148.960000pt;}
.y2b5{bottom:150.400000pt;}
.y31b{bottom:150.880000pt;}
.y196{bottom:151.520000pt;}
.yad{bottom:152.160000pt;}
.y32e{bottom:153.440000pt;}
.yce{bottom:154.560000pt;}
.y18a{bottom:158.720000pt;}
.y150{bottom:158.880000pt;}
.yec{bottom:160.800000pt;}
.y25d{bottom:161.120000pt;}
.y220{bottom:162.720000pt;}
.y30{bottom:163.360000pt;}
.y278{bottom:163.520000pt;}
.y292{bottom:164.000000pt;}
.y99{bottom:164.640000pt;}
.y6b{bottom:165.440000pt;}
.y7f{bottom:167.840000pt;}
.y2ff{bottom:168.320000pt;}
.y2c2{bottom:168.960000pt;}
.y87{bottom:169.440000pt;}
.y349{bottom:169.600000pt;}
.y10b{bottom:170.080000pt;}
.y2b4{bottom:171.520000pt;}
.y31a{bottom:172.160000pt;}
.yac{bottom:173.280000pt;}
.yb9{bottom:173.600000pt;}
.y32d{bottom:174.560000pt;}
.y1b2{bottom:175.520000pt;}
.y2e3{bottom:177.280000pt;}
.y24e{bottom:177.600000pt;}
.y2f{bottom:179.360000pt;}
.y189{bottom:179.840000pt;}
.y126{bottom:180.000000pt;}
.y14f{bottom:180.160000pt;}
.yeb{bottom:181.920000pt;}
.y1be{bottom:183.226667pt;}
.y21f{bottom:183.866667pt;}
.y163{bottom:185.786667pt;}
.y1f1{bottom:185.960000pt;}
.y6a{bottom:186.746667pt;}
.y242{bottom:188.986667pt;}
.y2fe{bottom:189.466667pt;}
.y235{bottom:189.800000pt;}
.y2c1{bottom:190.106667pt;}
.y348{bottom:190.746667pt;}
.y10a{bottom:191.386667pt;}
.y8c{bottom:192.186667pt;}
.y84{bottom:192.666667pt;}
.y195{bottom:193.146667pt;}
.yab{bottom:194.586667pt;}
.y25c{bottom:195.706667pt;}
.y291{bottom:196.026667pt;}
.y1b1{bottom:196.826667pt;}
.y277{bottom:197.946667pt;}
.y2e{bottom:198.266667pt;}
.y98{bottom:199.226667pt;}
.y188{bottom:201.146667pt;}
.y14e{bottom:201.306667pt;}
.yea{bottom:203.066667pt;}
.y21e{bottom:205.146667pt;}
.y319{bottom:206.586667pt;}
.y1e3{bottom:206.906667pt;}
.y69{bottom:207.866667pt;}
.y32c{bottom:209.146667pt;}
.y8b{bottom:209.786667pt;}
.y241{bottom:210.106667pt;}
.y83{bottom:210.266667pt;}
.y2fd{bottom:210.746667pt;}
.y2e2{bottom:211.066667pt;}
.y2c0{bottom:211.386667pt;}
.yb8{bottom:211.706667pt;}
.y109{bottom:212.506667pt;}
.y2b3{bottom:213.946667pt;}
.y125{bottom:214.426667pt;}
.yaa{bottom:215.706667pt;}
.y290{bottom:216.986667pt;}
.y2d{bottom:217.626667pt;}
.y1b0{bottom:217.946667pt;}
.y187{bottom:222.266667pt;}
.y14d{bottom:222.426667pt;}
.ye9{bottom:223.866667pt;}
.y347{bottom:225.306667pt;}
.y21d{bottom:226.266667pt;}
.y82{bottom:227.866667pt;}
.y1e2{bottom:228.026667pt;}
.y74{bottom:228.666667pt;}
.y68{bottom:228.986667pt;}
.yc0{bottom:229.920000pt;}
.y32b{bottom:230.266667pt;}
.y240{bottom:231.386667pt;}
.y2e1{bottom:232.186667pt;}
.y276{bottom:232.506667pt;}
.y97{bottom:233.626667pt;}
.y194{bottom:234.586667pt;}
.y2b2{bottom:235.066667pt;}
.ya9{bottom:236.826667pt;}
.y1af{bottom:239.066667pt;}
.y1ee{bottom:240.520000pt;}
.y186{bottom:243.386667pt;}
.y14c{bottom:243.546667pt;}
.y2c{bottom:244.026667pt;}
.y89{bottom:245.146667pt;}
.y81{bottom:245.466667pt;}
.y346{bottom:246.426667pt;}
.y21c{bottom:247.386667pt;}
.yc5{bottom:248.826667pt;}
.y124{bottom:248.986667pt;}
.yb7{bottom:249.626667pt;}
.y67{bottom:250.106667pt;}
.ycb{bottom:250.746667pt;}
.y32a{bottom:251.386667pt;}
.y1bd{bottom:252.506667pt;}
.y2e0{bottom:253.466667pt;}
.y2bf{bottom:253.626667pt;}
.y108{bottom:254.746667pt;}
.ya8{bottom:257.946667pt;}
.ye8{bottom:258.746667pt;}
.y1ae{bottom:260.186667pt;}
.y162{bottom:261.946667pt;}
.y1e1{bottom:262.586667pt;}
.y14b{bottom:264.826667pt;}
.y2fc{bottom:266.266667pt;}
.yc4{bottom:266.426667pt;}
.y275{bottom:267.226667pt;}
.y345{bottom:267.546667pt;}
.y96{bottom:268.186667pt;}
.yca{bottom:268.346667pt;}
.y21b{bottom:268.506667pt;}
.y2b1{bottom:269.466667pt;}
.y28f{bottom:269.946667pt;}
.y66{bottom:271.386667pt;}
.y1bc{bottom:273.626667pt;}
.y231{bottom:274.440000pt;}
.y2df{bottom:274.586667pt;}
.y2be{bottom:274.906667pt;}
.y107{bottom:276.026667pt;}
.y193{bottom:276.186667pt;}
.y185{bottom:277.946667pt;}
.y2b{bottom:278.426667pt;}
.ya7{bottom:279.226667pt;}
.ye7{bottom:279.866667pt;}
.y25b{bottom:280.986667pt;}
.y1ad{bottom:281.466667pt;}
.y318{bottom:283.386667pt;}
.y123{bottom:283.546667pt;}
.y1e0{bottom:283.706667pt;}
.yc3{bottom:284.026667pt;}
.yc9{bottom:285.946667pt;}
.y2fb{bottom:287.546667pt;}
.yb6{bottom:287.706667pt;}
.y1ec{bottom:288.040000pt;}
.y274{bottom:288.346667pt;}
.y21a{bottom:289.786667pt;}
.y2b0{bottom:290.746667pt;}
.y65{bottom:292.506667pt;}
.y1bb{bottom:294.746667pt;}
.y2de{bottom:295.706667pt;}
.y106{bottom:297.146667pt;}
.y2a{bottom:297.946667pt;}
.y184{bottom:299.066667pt;}
.y161{bottom:299.866667pt;}
.ya6{bottom:300.346667pt;}
.ye6{bottom:300.986667pt;}
.y28e{bottom:301.946667pt;}
.y344{bottom:302.106667pt;}
.y95{bottom:302.586667pt;}
.yc8{bottom:304.026667pt;}
.y317{bottom:304.666667pt;}
.y1df{bottom:304.826667pt;}
.y14a{bottom:307.066667pt;}
.y273{bottom:309.626667pt;}
.y2bd{bottom:310.426667pt;}
.y2af{bottom:311.866667pt;}
.y25a{bottom:312.826667pt;}
.y64{bottom:313.626667pt;}
.y192{bottom:316.026667pt;}
.yc2{bottom:316.186667pt;}
.y2dd{bottom:316.826667pt;}
.y29{bottom:317.306667pt;}
.y122{bottom:317.946667pt;}
.y105{bottom:318.266667pt;}
.y183{bottom:320.186667pt;}
.y7a{bottom:321.280000pt;}
.ya5{bottom:321.466667pt;}
.yc7{bottom:321.626667pt;}
.y2fa{bottom:321.946667pt;}
.ye5{bottom:322.266667pt;}
.y343{bottom:323.226667pt;}
.y219{bottom:324.186667pt;}
.yb5{bottom:325.626667pt;}
.y1de{bottom:326.106667pt;}
.y1ac{bottom:327.066667pt;}
.y329{bottom:328.186667pt;}
.y23f{bottom:329.306667pt;}
.y272{bottom:330.746667pt;}
.y2bc{bottom:331.546667pt;}
.y2ae{bottom:332.986667pt;}
.y259{bottom:333.786667pt;}
.y73{bottom:334.426667pt;}
.y63{bottom:334.746667pt;}
.y28d{bottom:336.186667pt;}
.y359{bottom:336.346667pt;}
.y316{bottom:336.506667pt;}
.y28{bottom:336.666667pt;}
.y94{bottom:337.146667pt;}
.y7e{bottom:337.626667pt;}
.y2dc{bottom:338.106667pt;}
.y104{bottom:339.386667pt;}
.y182{bottom:341.306667pt;}
.y149{bottom:341.626667pt;}
.ya4{bottom:342.586667pt;}
.y2f9{bottom:343.066667pt;}
.ye4{bottom:343.386667pt;}
.y342{bottom:344.346667pt;}
.y1eb{bottom:344.986667pt;}
.y218{bottom:345.306667pt;}
.y1dd{bottom:347.226667pt;}
.y23e{bottom:350.426667pt;}
.y271{bottom:351.866667pt;}
.y121{bottom:352.826667pt;}
.y7d{bottom:353.466667pt;}
.y2ad{bottom:354.106667pt;}
.y1ab{bottom:355.546667pt;}
.y27{bottom:356.026667pt;}
.y315{bottom:357.626667pt;}
.y160{bottom:358.266667pt;}
.y22c{bottom:359.080000pt;}
.y103{bottom:360.666667pt;}
.y181{bottom:362.586667pt;}
.y148{bottom:362.746667pt;}
.yb4{bottom:363.706667pt;}
.ya3{bottom:363.866667pt;}
.ye3{bottom:364.506667pt;}
.y1ea{bottom:365.786667pt;}
.y217{bottom:366.586667pt;}
.y1dc{bottom:368.346667pt;}
.y7c{bottom:369.306667pt;}
.y28c{bottom:370.426667pt;}
.y93{bottom:371.546667pt;}
.y2db{bottom:372.506667pt;}
.y120{bottom:373.946667pt;}
.y26{bottom:375.386667pt;}
.y1aa{bottom:376.666667pt;}
.y62{bottom:377.146667pt;}
.y2f8{bottom:377.626667pt;}
.y358{bottom:378.746667pt;}
.y341{bottom:378.906667pt;}
.y15f{bottom:379.386667pt;}
.y24d{bottom:381.786667pt;}
.y147{bottom:383.866667pt;}
.ya2{bottom:384.986667pt;}
.y270{bottom:386.426667pt;}
.y258{bottom:386.746667pt;}
.y216{bottom:387.706667pt;}
.y2ac{bottom:388.666667pt;}
.y1db{bottom:389.466667pt;}
.y314{bottom:389.626667pt;}
.y1ba{bottom:392.866667pt;}
.y2da{bottom:393.666667pt;}
.y180{bottom:394.306667pt;}
.y102{bottom:394.786667pt;}
.y25{bottom:394.946667pt;}
.y11f{bottom:395.106667pt;}
.y1a9{bottom:397.826667pt;}
.y61{bottom:398.306667pt;}
.y2f7{bottom:398.786667pt;}
.ye2{bottom:399.106667pt;}
.y340{bottom:400.066667pt;}
.y15e{bottom:400.706667pt;}
.yb3{bottom:401.826667pt;}
.y146{bottom:405.026667pt;}
.y28b{bottom:405.346667pt;}
.y92{bottom:406.146667pt;}
.y257{bottom:407.906667pt;}
.y2bb{bottom:408.066667pt;}
.y215{bottom:408.866667pt;}
.y2ab{bottom:409.826667pt;}
.y313{bottom:410.626667pt;}
.y1da{bottom:410.786667pt;}
.y17f{bottom:412.866667pt;}
.y357{bottom:413.346667pt;}
.y1b9{bottom:413.986667pt;}
.y24{bottom:414.306667pt;}
.y2d9{bottom:414.946667pt;}
.y24c{bottom:415.906667pt;}
.y11e{bottom:416.226667pt;}
.y26f{bottom:418.466667pt;}
.y1a8{bottom:418.946667pt;}
.y60{bottom:419.426667pt;}
.ye1{bottom:420.226667pt;}
.y33f{bottom:421.346667pt;}
.y15d{bottom:421.826667pt;}
.y227{bottom:422.626667pt;}
.y28a{bottom:426.466667pt;}
.ybc{bottom:426.560000pt;}
.ya1{bottom:427.266667pt;}
.y145{bottom:428.546667pt;}
.y101{bottom:429.666667pt;}
.y214{bottom:429.986667pt;}
.y2aa{bottom:430.946667pt;}
.y17e{bottom:431.266667pt;}
.y1d9{bottom:431.906667pt;}
.y2f6{bottom:433.346667pt;}
.y23{bottom:433.666667pt;}
.y356{bottom:434.466667pt;}
.y1b8{bottom:435.106667pt;}
.y2d8{bottom:436.066667pt;}
.y328{bottom:437.026667pt;}
.y11d{bottom:437.506667pt;}
.y26e{bottom:439.426667pt;}
.y256{bottom:439.586667pt;}
.y8e{bottom:439.680000pt;}
.yb2{bottom:439.746667pt;}
.y1a7{bottom:440.066667pt;}
.y5f{bottom:440.706667pt;}
.ye0{bottom:441.346667pt;}
.y15c{bottom:442.946667pt;}
.y312{bottom:445.026667pt;}
.ya0{bottom:448.386667pt;}
.y17d{bottom:449.666667pt;}
.y100{bottom:450.786667pt;}
.y213{bottom:451.266667pt;}
.y144{bottom:451.906667pt;}
.y2a9{bottom:452.226667pt;}
.ybe{bottom:452.546667pt;}
.y22{bottom:453.026667pt;}
.y2f5{bottom:454.466667pt;}
.y355{bottom:455.586667pt;}
.y33e{bottom:455.746667pt;}
.y191{bottom:456.226667pt;}
.y2d7{bottom:457.186667pt;}
.y289{bottom:458.466667pt;}
.y11c{bottom:458.626667pt;}
.y1a6{bottom:461.346667pt;}
.y5e{bottom:461.826667pt;}
.ydf{bottom:462.626667pt;}
.y1e9{bottom:464.066667pt;}
.y311{bottom:466.306667pt;}
.y17c{bottom:468.066667pt;}
.y9f{bottom:469.666667pt;}
.y143{bottom:470.306667pt;}
.y26d{bottom:471.426667pt;}
.yff{bottom:471.906667pt;}
.y212{bottom:472.386667pt;}
.y21{bottom:472.546667pt;}
.y2a8{bottom:473.346667pt;}
.y1d8{bottom:474.146667pt;}
.y255{bottom:474.306667pt;}
.y1a5{bottom:475.906667pt;}
.y33d{bottom:476.866667pt;}
.y15b{bottom:477.506667pt;}
.yb1{bottom:477.826667pt;}
.y2d6{bottom:478.306667pt;}
.y288{bottom:479.426667pt;}
.y11b{bottom:479.746667pt;}
.y5d{bottom:482.946667pt;}
.yde{bottom:483.746667pt;}
.y1e8{bottom:485.346667pt;}
.y17b{bottom:486.466667pt;}
.y225{bottom:486.786667pt;}
.y310{bottom:487.426667pt;}
.y142{bottom:488.706667pt;}
.y2f4{bottom:489.026667pt;}
.y354{bottom:490.146667pt;}
.y9e{bottom:490.786667pt;}
.y20{bottom:491.906667pt;}
.y26c{bottom:492.386667pt;}
.y327{bottom:492.546667pt;}
.yfe{bottom:493.026667pt;}
.y211{bottom:493.506667pt;}
.y2a7{bottom:494.466667pt;}
.y1d7{bottom:495.426667pt;}
.y33c{bottom:498.146667pt;}
.y15a{bottom:498.626667pt;}
.y287{bottom:500.546667pt;}
.y2d5{bottom:500.706667pt;}
.y11a{bottom:500.866667pt;}
.y91{bottom:503.746667pt;}
.y5c{bottom:504.066667pt;}
.y1e7{bottom:506.466667pt;}
.y141{bottom:507.106667pt;}
.y1d4{bottom:509.986667pt;}
.y2f3{bottom:510.146667pt;}
.ydd{bottom:510.946667pt;}
.y1f{bottom:511.266667pt;}
.yb0{bottom:511.586667pt;}
.y9d{bottom:511.906667pt;}
.yfd{bottom:514.306667pt;}
.y210{bottom:514.626667pt;}
.y224{bottom:516.866667pt;}
.y159{bottom:519.746667pt;}
.y286{bottom:521.666667pt;}
.y2d4{bottom:521.826667pt;}
.y119{bottom:522.146667pt;}
.y26b{bottom:524.386667pt;}
.y5b{bottom:525.346667pt;}
.y140{bottom:525.506667pt;}
.y326{bottom:527.106667pt;}
.y2ba{bottom:527.586667pt;}
.y2a6{bottom:528.706667pt;}
.y254{bottom:529.826667pt;}
.y1e{bottom:530.626667pt;}
.y2f2{bottom:531.266667pt;}
.y353{bottom:532.386667pt;}
.y33b{bottom:532.546667pt;}
.y9c{bottom:533.026667pt;}
.y1cf{bottom:534.466667pt;}
.yfc{bottom:535.426667pt;}
.y178{bottom:536.066667pt;}
.y223{bottom:538.146667pt;}
.y158{bottom:540.866667pt;}
.y285{bottom:542.946667pt;}
.y30f{bottom:543.106667pt;}
.y118{bottom:543.266667pt;}
.y13f{bottom:543.906667pt;}
.y26a{bottom:545.346667pt;}
.y5a{bottom:546.466667pt;}
.y325{bottom:548.226667pt;}
.y2b9{bottom:548.706667pt;}
.y20f{bottom:549.186667pt;}
.y1d{bottom:549.986667pt;}
.ydc{bottom:550.146667pt;}
.y33a{bottom:553.666667pt;}
.y9b{bottom:554.306667pt;}
.yfb{bottom:556.546667pt;}
.y13d{bottom:558.306667pt;}
.y157{bottom:562.146667pt;}
.y2a5{bottom:563.426667pt;}
.y253{bottom:564.066667pt;}
.y30e{bottom:564.226667pt;}
.y117{bottom:564.386667pt;}
.y2f1{bottom:565.826667pt;}
.y352{bottom:566.946667pt;}
.y59{bottom:567.586667pt;}
.y1c{bottom:569.506667pt;}
.y222{bottom:569.666667pt;}
.y2b8{bottom:569.826667pt;}
.y20e{bottom:570.306667pt;}
.ydb{bottom:571.266667pt;}
.y339{bottom:574.946667pt;}
.y23d{bottom:575.426667pt;}
.y269{bottom:577.346667pt;}
.y24b{bottom:577.666667pt;}
.y324{bottom:580.226667pt;}
.y156{bottom:583.266667pt;}
.y2a4{bottom:584.546667pt;}
.y2d3{bottom:585.346667pt;}
.y2f0{bottom:586.946667pt;}
.y351{bottom:588.066667pt;}
.y58{bottom:588.706667pt;}
.y1b{bottom:588.866667pt;}
.yfa{bottom:590.786667pt;}
.y2b7{bottom:591.106667pt;}
.y20d{bottom:591.426667pt;}
.y284{bottom:596.066667pt;}
.y23c{bottom:596.546667pt;}
.y268{bottom:598.306667pt;}
.yda{bottom:598.626667pt;}
.y30d{bottom:598.786667pt;}
.y24a{bottom:598.946667pt;}
.y323{bottom:601.213333pt;}
.y155{bottom:604.413333pt;}
.y2a3{bottom:605.853333pt;}
.y2d2{bottom:606.493333pt;}
.y1a{bottom:608.253333pt;}
.y1a3{bottom:609.053333pt;}
.y350{bottom:609.213333pt;}
.y338{bottom:609.373333pt;}
.y76{bottom:609.533333pt;}
.y57{bottom:609.853333pt;}
.y2b6{bottom:612.253333pt;}
.y20c{bottom:612.733333pt;}
.y175{bottom:612.893333pt;}
.y1b7{bottom:617.693333pt;}
.y30c{bottom:619.933333pt;}
.y249{bottom:620.093333pt;}
.y2ef{bottom:621.533333pt;}
.yf9{bottom:625.533333pt;}
.y2a2{bottom:626.973333pt;}
.y19{bottom:627.613333pt;}
.y2d1{bottom:628.733333pt;}
.y267{bottom:630.013333pt;}
.y283{bottom:630.333333pt;}
.y337{bottom:630.493333pt;}
.y56{bottom:631.133333pt;}
.yd9{bottom:633.373333pt;}
.y20b{bottom:633.853333pt;}
.y322{bottom:635.773333pt;}
.y1b6{bottom:638.973333pt;}
.y248{bottom:641.213333pt;}
.y1ce{bottom:642.493333pt;}
.y2ee{bottom:642.653333pt;}
.yf8{bottom:646.813333pt;}
.y2a1{bottom:648.093333pt;}
.y2d0{bottom:650.013333pt;}
.y282{bottom:651.613333pt;}
.y336{bottom:651.773333pt;}
.y55{bottom:652.253333pt;}
.y18{bottom:654.013333pt;}
.y30b{bottom:654.333333pt;}
.yd8{bottom:654.493333pt;}
.y20a{bottom:654.973333pt;}
.y321{bottom:656.893333pt;}
.y1b5{bottom:660.093333pt;}
.y252{bottom:662.333333pt;}
.y1a2{bottom:664.733333pt;}
.y137{bottom:666.813333pt;}
.yf7{bottom:667.933333pt;}
.y2cf{bottom:671.133333pt;}
.y17{bottom:671.933333pt;}
.y171{bottom:672.893333pt;}
.y54{bottom:673.373333pt;}
.y247{bottom:675.453333pt;}
.y30a{bottom:675.613333pt;}
.yd7{bottom:675.773333pt;}
.y209{bottom:676.093333pt;}
.y2ed{bottom:677.053333pt;}
.y190{bottom:681.213333pt;}
.y2a0{bottom:682.653333pt;}
.y281{bottom:686.013333pt;}
.y335{bottom:686.173333pt;}
.yf6{bottom:689.053333pt;}
.y320{bottom:691.293333pt;}
.y2ce{bottom:692.253333pt;}
.y53{bottom:694.493333pt;}
.y15{bottom:695.773333pt;}
.y1c9{bottom:695.933333pt;}
.y34f{bottom:696.733333pt;}
.y116{bottom:696.893333pt;}
.y208{bottom:697.373333pt;}
.y2ec{bottom:698.333333pt;}
.y266{bottom:699.133333pt;}
.y18f{bottom:702.333333pt;}
.y16{bottom:702.493333pt;}
.y29f{bottom:703.773333pt;}
.y334{bottom:707.293333pt;}
.y246{bottom:709.853333pt;}
.y309{bottom:710.013333pt;}
.yd6{bottom:710.173333pt;}
.y14{bottom:711.133333pt;}
.y31f{bottom:712.573333pt;}
.y2cd{bottom:713.373333pt;}
.y52{bottom:715.773333pt;}
.y115{bottom:718.013333pt;}
.y207{bottom:718.493333pt;}
.y134{bottom:720.253333pt;}
.y18e{bottom:723.613333pt;}
.y29e{bottom:724.893333pt;}
.y333{bottom:728.573333pt;}
.y265{bottom:731.133333pt;}
.yd5{bottom:731.293333pt;}
.y2eb{bottom:732.733333pt;}
.y2cc{bottom:734.653333pt;}
.y13{bottom:735.773333pt;}
.y51{bottom:736.893333pt;}
.y280{bottom:738.973333pt;}
.y114{bottom:739.133333pt;}
.y206{bottom:739.613333pt;}
.y18d{bottom:744.733333pt;}
.y29d{bottom:746.013333pt;}
.y31e{bottom:746.973333pt;}
.y264{bottom:752.253333pt;}
.y308{bottom:752.413333pt;}
.yd4{bottom:752.573333pt;}
.y2ea{bottom:753.853333pt;}
.y12{bottom:754.173333pt;}
.y2cb{bottom:755.773333pt;}
.y16d{bottom:756.253333pt;}
.y50{bottom:758.013333pt;}
.y332{bottom:760.573333pt;}
.y205{bottom:760.733333pt;}
.y154{bottom:765.853333pt;}
.y29c{bottom:767.293333pt;}
.y130{bottom:768.253333pt;}
.y27f{bottom:770.973333pt;}
.yd3{bottom:773.693333pt;}
.y11{bottom:774.973333pt;}
.y2e9{bottom:775.133333pt;}
.y2ca{bottom:778.013333pt;}
.y4f{bottom:779.133333pt;}
.y331{bottom:781.533333pt;}
.y204{bottom:782.013333pt;}
.y263{bottom:784.093333pt;}
.y307{bottom:784.413333pt;}
.y1c7{bottom:786.493333pt;}
.y34e{bottom:786.813333pt;}
.y153{bottom:786.973333pt;}
.y27e{bottom:791.933333pt;}
.yf5{bottom:794.813333pt;}
.y19a{bottom:798.333333pt;}
.y2c9{bottom:799.133333pt;}
.y4e{bottom:800.413333pt;}
.y29b{bottom:801.693333pt;}
.y31d{bottom:802.653333pt;}
.y203{bottom:803.133333pt;}
.y262{bottom:805.213333pt;}
.y306{bottom:805.373333pt;}
.y10{bottom:807.293333pt;}
.y34d{bottom:807.933333pt;}
.yd2{bottom:808.253333pt;}
.y2e8{bottom:809.573333pt;}
.y27d{bottom:813.253333pt;}
.yf4{bottom:815.973333pt;}
.y2c8{bottom:820.453333pt;}
.y4d{bottom:821.573333pt;}
.y29a{bottom:823.013333pt;}
.y31c{bottom:823.813333pt;}
.y202{bottom:824.293333pt;}
.y305{bottom:826.533333pt;}
.yd1{bottom:829.413333pt;}
.y2e7{bottom:830.693333pt;}
.y12d{bottom:834.373333pt;}
.y1c4{bottom:834.533333pt;}
.yf3{bottom:837.253333pt;}
.y16a{bottom:837.893333pt;}
.y200{bottom:838.853333pt;}
.yf{bottom:839.653333pt;}
.y34c{bottom:839.973333pt;}
.y2c7{bottom:841.573333pt;}
.y4c{bottom:842.693333pt;}
.y299{bottom:844.133333pt;}
.y251{bottom:850.213333pt;}
.yd0{bottom:850.533333pt;}
.y2e6{bottom:851.973333pt;}
.y27c{bottom:855.493333pt;}
.yf2{bottom:858.373333pt;}
.y304{bottom:861.093333pt;}
.y2c6{bottom:862.693333pt;}
.y4b{bottom:863.813333pt;}
.y298{bottom:865.253333pt;}
.ye{bottom:865.413333pt;}
.y261{bottom:868.933333pt;}
.y1fb{bottom:869.893333pt;}
.y250{bottom:871.333333pt;}
.ycf{bottom:871.653333pt;}
.y3a{bottom:874.560000pt;}
.y27b{bottom:876.613333pt;}
.yf1{bottom:879.493333pt;}
.y36{bottom:881.120000pt;}
.y303{bottom:882.213333pt;}
.y38{bottom:882.240000pt;}
.yd{bottom:883.013333pt;}
.y2c5{bottom:883.813333pt;}
.y4a{bottom:885.093333pt;}
.y1c1{bottom:885.573333pt;}
.y297{bottom:886.373333pt;}
.y12b{bottom:887.653333pt;}
.y260{bottom:890.053333pt;}
.y113{bottom:892.773333pt;}
.y34b{bottom:892.933333pt;}
.y198{bottom:902.213333pt;}
.y302{bottom:903.333333pt;}
.y2c4{bottom:905.093333pt;}
.y49{bottom:906.213333pt;}
.y296{bottom:907.493333pt;}
.y27a{bottom:908.613333pt;}
.yc{bottom:913.413333pt;}
.yf0{bottom:913.733333pt;}
.y112{bottom:914.053333pt;}
.y168{bottom:915.333333pt;}
.y25f{bottom:921.733333pt;}
.y75{bottom:927.013333pt;}
.y48{bottom:927.333333pt;}
.y295{bottom:928.773333pt;}
.y111{bottom:935.173333pt;}
.y301{bottom:935.333333pt;}
.y12a{bottom:943.013333pt;}
.yb{bottom:944.773333pt;}
.y47{bottom:948.453333pt;}
.y294{bottom:955.973333pt;}
.y110{bottom:956.293333pt;}
.y2e5{bottom:963.173333pt;}
.y46{bottom:969.733333pt;}
.y167{bottom:971.493333pt;}
.y129{bottom:977.093333pt;}
.y10f{bottom:977.413333pt;}
.ya{bottom:978.693333pt;}
.y2e4{bottom:984.453333pt;}
.y45{bottom:990.853333pt;}
.y166{bottom:1009.253333pt;}
.y44{bottom:1011.653333pt;}
.y70{bottom:1011.973333pt;}
.y9{bottom:1012.613333pt;}
.y42{bottom:1039.520000pt;}
.y41{bottom:1052.000000pt;}
.y40{bottom:1064.480000pt;}
.y6f{bottom:1065.120000pt;}
.y3c{bottom:1073.600000pt;}
.y3f{bottom:1084.800000pt;}
.h1a{height:12.000000pt;}
.h19{height:12.960000pt;}
.h24{height:16.000000pt;}
.h27{height:16.160000pt;}
.h1c{height:18.880000pt;}
.h63{height:21.278667pt;}
.h1d{height:21.671875pt;}
.h4{height:21.920000pt;}
.h5e{height:22.866667pt;}
.h55{height:23.826667pt;}
.h17{height:26.735625pt;}
.h3d{height:29.906667pt;}
.h5d{height:30.386667pt;}
.h1e{height:32.149687pt;}
.h2{height:34.138125pt;}
.h6{height:34.190937pt;}
.h9{height:34.195312pt;}
.h47{height:34.386667pt;}
.h41{height:34.546667pt;}
.h37{height:34.706667pt;}
.h11{height:35.386875pt;}
.h1f{height:36.305625pt;}
.h56{height:36.306667pt;}
.h50{height:36.786667pt;}
.ha{height:37.842813pt;}
.h2f{height:38.880000pt;}
.h5a{height:41.952000pt;}
.h7{height:42.355937pt;}
.h18{height:42.649687pt;}
.h34{height:43.215000pt;}
.h5{height:44.160000pt;}
.h30{height:44.505000pt;}
.h16{height:44.596875pt;}
.h58{height:46.706667pt;}
.h1b{height:46.948750pt;}
.h29{height:47.109375pt;}
.h8{height:47.742188pt;}
.h3a{height:48.000000pt;}
.h52{height:48.020000pt;}
.hc{height:48.375000pt;}
.h51{height:50.386667pt;}
.h2b{height:52.108438pt;}
.h2c{height:52.134375pt;}
.h2d{height:52.260000pt;}
.h38{height:52.626667pt;}
.h3b{height:53.440000pt;}
.h35{height:53.535000pt;}
.h12{height:53.937500pt;}
.hf{height:54.390938pt;}
.h59{height:54.546667pt;}
.h49{height:54.706667pt;}
.h15{height:55.247500pt;}
.h4c{height:55.520000pt;}
.h4d{height:55.680000pt;}
.h22{height:56.156250pt;}
.h14{height:57.758750pt;}
.h13{height:57.787500pt;}
.h36{height:58.240000pt;}
.h3{height:58.563750pt;}
.h31{height:58.720000pt;}
.h57{height:59.340000pt;}
.h45{height:60.000000pt;}
.he{height:60.288750pt;}
.h3e{height:62.781250pt;}
.hd{height:62.812500pt;}
.h62{height:63.392000pt;}
.h5f{height:63.506667pt;}
.h60{height:63.538667pt;}
.h21{height:63.656250pt;}
.h20{height:64.500000pt;}
.h25{height:65.781915pt;}
.h39{height:66.100000pt;}
.h26{height:71.524375pt;}
.h23{height:73.490625pt;}
.h28{height:74.880000pt;}
.h40{height:75.465000pt;}
.h42{height:76.786667pt;}
.h46{height:76.826667pt;}
.h3c{height:77.946667pt;}
.h4b{height:78.080000pt;}
.h5b{height:78.106667pt;}
.h5c{height:78.546667pt;}
.hb{height:80.906250pt;}
.h43{height:81.620000pt;}
.h44{height:83.360000pt;}
.h3f{height:83.540625pt;}
.h61{height:84.626667pt;}
.h48{height:85.785000pt;}
.h53{height:90.560000pt;}
.h4f{height:94.218750pt;}
.h4e{height:98.106667pt;}
.h4a{height:103.060000pt;}
.h2e{height:105.600000pt;}
.h2a{height:107.520000pt;}
.h54{height:108.026667pt;}
.h32{height:117.920000pt;}
.h33{height:118.400000pt;}
.h10{height:1122.558213pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w28{width:65.906667pt;}
.w9{width:68.800000pt;}
.w18{width:69.906667pt;}
.w3{width:72.960000pt;}
.w14{width:83.986667pt;}
.w24{width:85.586667pt;}
.w8{width:85.600000pt;}
.w20{width:89.906667pt;}
.w5{width:93.120000pt;}
.w21{width:93.138667pt;}
.wb{width:93.760000pt;}
.w1c{width:99.506667pt;}
.wc{width:104.800000pt;}
.w29{width:114.098667pt;}
.w6{width:117.760000pt;}
.w27{width:125.152000pt;}
.w17{width:125.952000pt;}
.w1d{width:127.858667pt;}
.w19{width:128.178667pt;}
.w23{width:132.832000pt;}
.w1f{width:136.666667pt;}
.w25{width:138.093333pt;}
.w15{width:149.933333pt;}
.w13{width:162.106667pt;}
.w7{width:168.480000pt;}
.w1b{width:171.066667pt;}
.wa{width:177.760000pt;}
.wf{width:180.800000pt;}
.w10{width:192.160000pt;}
.w1a{width:195.377333pt;}
.w12{width:204.017333pt;}
.wd{width:213.440000pt;}
.w22{width:234.417333pt;}
.w1e{width:253.457333pt;}
.w16{width:258.097333pt;}
.w11{width:282.720000pt;}
.w26{width:300.977333pt;}
.we{width:396.800000pt;}
.w2{width:556.800000pt;}
.w4{width:793.758333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x44{left:7.190667pt;}
.x15{left:9.632000pt;}
.x5{left:12.293333pt;}
.x17{left:15.426667pt;}
.x4d{left:16.453333pt;}
.x29{left:18.306667pt;}
.x13{left:20.613333pt;}
.x21{left:26.786667pt;}
.x2c{left:27.773333pt;}
.x32{left:30.146667pt;}
.x2a{left:31.426667pt;}
.x6{left:36.640000pt;}
.x56{left:38.106667pt;}
.x54{left:40.946667pt;}
.x55{left:44.026667pt;}
.x30{left:52.413333pt;}
.x37{left:53.346667pt;}
.x53{left:54.400000pt;}
.x5a{left:60.186667pt;}
.x5c{left:61.146667pt;}
.x5b{left:66.426667pt;}
.x47{left:70.880000pt;}
.x2{left:83.520000pt;}
.x5e{left:88.841333pt;}
.x41{left:95.072000pt;}
.x1{left:96.032000pt;}
.x48{left:97.312000pt;}
.x11{left:99.392000pt;}
.x14{left:104.480000pt;}
.xd{left:106.752000pt;}
.x7{left:110.112000pt;}
.x8{left:117.632000pt;}
.x1f{left:120.032000pt;}
.x19{left:122.112000pt;}
.x18{left:132.352000pt;}
.x40{left:142.426667pt;}
.x1c{left:144.026667pt;}
.x64{left:150.106667pt;}
.x1b{left:163.226667pt;}
.x39{left:168.066667pt;}
.x63{left:192.026667pt;}
.x3a{left:222.720000pt;}
.x1d{left:224.026667pt;}
.x3c{left:232.346667pt;}
.x38{left:245.666667pt;}
.x9{left:257.346667pt;}
.x25{left:270.720000pt;}
.x3b{left:276.706667pt;}
.x28{left:281.986667pt;}
.x31{left:283.520000pt;}
.x33{left:285.826667pt;}
.x26{left:286.946667pt;}
.x10{left:288.066667pt;}
.x4e{left:291.426667pt;}
.x27{left:293.506667pt;}
.x36{left:296.706667pt;}
.x20{left:299.520000pt;}
.x22{left:309.826667pt;}
.x23{left:317.186667pt;}
.x16{left:325.600000pt;}
.x57{left:330.466667pt;}
.x3f{left:333.026667pt;}
.x24{left:334.626667pt;}
.x1a{left:337.666667pt;}
.x50{left:349.506667pt;}
.x49{left:354.146667pt;}
.xb{left:357.826667pt;}
.x5f{left:389.826667pt;}
.x35{left:396.866667pt;}
.x3{left:404.413333pt;}
.x2b{left:406.880000pt;}
.x2e{left:419.933333pt;}
.xa{left:420.893333pt;}
.x2d{left:424.573333pt;}
.x3d{left:428.960000pt;}
.x3e{left:438.653333pt;}
.x2f{left:443.773333pt;}
.x45{left:462.186667pt;}
.x58{left:463.306667pt;}
.x4a{left:480.106667pt;}
.x51{left:486.186667pt;}
.xe{left:499.451667pt;}
.xf{left:503.773333pt;}
.x60{left:514.986667pt;}
.x46{left:546.186667pt;}
.x59{left:548.906667pt;}
.x4b{left:550.026667pt;}
.x4f{left:562.026667pt;}
.x52{left:576.106667pt;}
.x61{left:580.906667pt;}
.x12{left:616.000000pt;}
.x34{left:634.560000pt;}
.x1e{left:637.280000pt;}
.x43{left:638.240000pt;}
.x4c{left:640.800000pt;}
.x42{left:641.760000pt;}
.x62{left:642.880000pt;}
.x65{left:644.320000pt;}
.x5d{left:645.280000pt;}
.xc{left:697.893333pt;}
.x4{left:720.480000pt;}
}




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