
    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_e2b2351cdefd561d9fde402c.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_21eee580e845416a2ea8efa1.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_df28f290f0cdab4e5b7f6403.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_d4d6e9a7749989fc71572860.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.003906;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_be9cbf4e835ac8225bb20a87.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.776367;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_09917b2a6956830455b86ccb.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_091de25cc1862acb7b05b704.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.946777;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_e5ced4c83160ccc76a9be58d.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_891bfcc0c985dd3c17e3a6fe.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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;}
.ls12{letter-spacing:-1.008000px;}
.ls19{letter-spacing:-0.792000px;}
.lsb{letter-spacing:-0.720000px;}
.ls24{letter-spacing:-0.612000px;}
.ls25{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.288000px;}
.ls27{letter-spacing:-0.262200px;}
.ls11{letter-spacing:-0.216000px;}
.ls8{letter-spacing:-0.166800px;}
.ls23{letter-spacing:-0.053280px;}
.ls0{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.053280px;}
.ls4{letter-spacing:0.089400px;}
.ls10{letter-spacing:0.144000px;}
.ls1e{letter-spacing:0.180000px;}
.ls2a{letter-spacing:0.216000px;}
.ls21{letter-spacing:0.259800px;}
.ls1f{letter-spacing:0.259920px;}
.ls17{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.432000px;}
.ls18{letter-spacing:0.504000px;}
.ls28{letter-spacing:0.513600px;}
.ls22{letter-spacing:0.666000px;}
.ls1d{letter-spacing:0.720000px;}
.lsc{letter-spacing:1.584000px;}
.ls26{letter-spacing:6.785280px;}
.ls1b{letter-spacing:15.120000px;}
.ls9{letter-spacing:21.197280px;}
.ls29{letter-spacing:21.221280px;}
.ls14{letter-spacing:23.904000px;}
.lsd{letter-spacing:26.784000px;}
.ls13{letter-spacing:28.224000px;}
.ls15{letter-spacing:31.824000px;}
.lse{letter-spacing:33.984000px;}
.ls1a{letter-spacing:38.304000px;}
.ls16{letter-spacing:39.744000px;}
.lsf{letter-spacing:62.064000px;}
.ls20{letter-spacing:64.026720px;}
.ls3{letter-spacing:67.085760px;}
.ls5{letter-spacing:83.669760px;}
.ls7{letter-spacing:100.229760px;}
.ls6{letter-spacing:100.949760px;}
.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;}
}
.ws12{word-spacing:-59.760000px;}
.ws7{word-spacing:-22.536000px;}
.ws5{word-spacing:-21.420000px;}
.ws3{word-spacing:-20.822520px;}
.ws4{word-spacing:-20.566320px;}
.wsa{word-spacing:-18.504000px;}
.ws9{word-spacing:-18.288000px;}
.ws16{word-spacing:-18.216000px;}
.wsc{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.784000px;}
.ws6{word-spacing:-17.712000px;}
.wsb{word-spacing:-17.208000px;}
.ws2{word-spacing:-16.560000px;}
.ws15{word-spacing:-16.297800px;}
.wsd{word-spacing:-15.300000px;}
.ws13{word-spacing:-15.199800px;}
.ws10{word-spacing:-15.120000px;}
.wse{word-spacing:-14.993280px;}
.wsf{word-spacing:-14.940000px;}
.ws14{word-spacing:-14.580000px;}
.ws11{word-spacing:-14.328000px;}
.ws1{word-spacing:0.000000px;}
._c{margin-left:-17.735040px;}
._15{margin-left:-16.688760px;}
._e{margin-left:-15.523200px;}
._16{margin-left:-13.600320px;}
._14{margin-left:-12.517800px;}
._10{margin-left:-11.408640px;}
._11{margin-left:-8.520120px;}
._12{margin-left:-6.824040px;}
._13{margin-left:-5.724720px;}
._d{margin-left:-3.588000px;}
._f{margin-left:-2.014200px;}
._1{margin-left:-1.008000px;}
._0{width:1.416000px;}
._4{width:3.375840px;}
._5{width:4.590480px;}
._6{width:6.271920px;}
._1c{width:7.502400px;}
._2{width:8.545680px;}
._3{width:9.639600px;}
._19{width:11.592000px;}
._1a{width:12.708000px;}
._23{width:14.184000px;}
._17{width:15.552000px;}
._18{width:16.602600px;}
._7{width:18.525600px;}
._8{width:19.551840px;}
._1b{width:21.146520px;}
._21{width:22.414200px;}
._22{width:23.916600px;}
._25{width:25.234200px;}
._2a{width:26.245800px;}
._26{width:27.504000px;}
._20{width:28.944000px;}
._24{width:30.238200px;}
._1d{width:31.824000px;}
._1e{width:33.048000px;}
._1f{width:34.296000px;}
._2b{width:35.784000px;}
._2c{width:37.296000px;}
._2d{width:38.472000px;}
._43{width:40.004400px;}
._2e{width:42.718320px;}
._28{width:44.928000px;}
._27{width:46.800000px;}
._46{width:50.328000px;}
._47{width:51.576000px;}
._3c{width:54.720000px;}
._3d{width:56.232000px;}
._32{width:61.313760px;}
._31{width:62.748000px;}
._37{width:65.437200px;}
._35{width:68.604480px;}
._36{width:82.946880px;}
._29{width:86.400000px;}
._4a{width:96.528000px;}
._48{width:98.352000px;}
._39{width:100.222200px;}
._41{width:103.184400px;}
._42{width:104.550000px;}
._b{width:114.480000px;}
._44{width:116.280000px;}
._34{width:133.343400px;}
._33{width:134.938080px;}
._3f{width:139.248000px;}
._40{width:140.544000px;}
._49{width:165.024000px;}
._30{width:194.376000px;}
._3a{width:203.256000px;}
._3b{width:204.264000px;}
._38{width:210.414960px;}
._a{width:451.667760px;}
._45{width:479.592000px;}
._3e{width:544.332000px;}
._2f{width:718.896000px;}
._9{width:1104.456000px;}
.fca{color:rgb(55,57,60);}
.fc8{color:rgb(0,0,255);}
.fc7{color:rgb(17,85,204);}
.fc5{color:rgb(54,95,145);}
.fc4{color:rgb(53,53,54);}
.fc3{color:rgb(4,12,40);}
.fc9{color:rgb(5,16,62);}
.fc6{color:rgb(51,51,51);}
.fc2{color:rgb(32,33,36);}
.fc1{color:rgb(68,68,68);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y2c4{bottom:12.225000px;}
.y235{bottom:12.240000px;}
.y2a6{bottom:12.405000px;}
.y246{bottom:12.412500px;}
.y22b{bottom:12.420000px;}
.y29d{bottom:17.625000px;}
.y21c{bottom:17.640000px;}
.y28a{bottom:19.080000px;}
.y2c2{bottom:22.125000px;}
.y1fb{bottom:23.925000px;}
.yf0{bottom:23.940000px;}
.y1ff{bottom:24.105000px;}
.y1ec{bottom:24.120000px;}
.y10e{bottom:24.285000px;}
.y301{bottom:24.286500px;}
.yf9{bottom:24.300000px;}
.y2f6{bottom:24.330000px;}
.y2fc{bottom:24.465000px;}
.y106{bottom:24.480000px;}
.y2f1{bottom:24.525000px;}
.y2d1{bottom:25.560000px;}
.y2ea{bottom:26.310000px;}
.y279{bottom:27.166500px;}
.y22d{bottom:29.880000px;}
.y20b{bottom:30.240000px;}
.y294{bottom:30.270000px;}
.y2a2{bottom:30.412500px;}
.y25d{bottom:30.420000px;}
.y232{bottom:30.450000px;}
.y2a7{bottom:31.492500px;}
.y214{bottom:31.680000px;}
.y237{bottom:31.890000px;}
.y112{bottom:33.292500px;}
.y211{bottom:33.660000px;}
.y225{bottom:34.380000px;}
.y1f7{bottom:36.000000px;}
.y2a5{bottom:37.785000px;}
.y234{bottom:37.800000px;}
.y248{bottom:37.980000px;}
.y2c3{bottom:38.145000px;}
.y261{bottom:38.160000px;}
.y297{bottom:38.190000px;}
.y245{bottom:38.326500px;}
.y22a{bottom:38.340000px;}
.y270{bottom:39.226500px;}
.y2db{bottom:44.640000px;}
.y27c{bottom:46.800000px;}
.y20e{bottom:47.520000px;}
.yef{bottom:49.860000px;}
.y10d{bottom:50.205000px;}
.y300{bottom:50.206500px;}
.yf8{bottom:50.220000px;}
.y114{bottom:50.250000px;}
.y2f0{bottom:50.265000px;}
.y2fb{bottom:50.385000px;}
.y105{bottom:50.400000px;}
.y2bc{bottom:52.560000px;}
.y278{bottom:53.086500px;}
.y293{bottom:56.190000px;}
.y2a1{bottom:56.326500px;}
.y25c{bottom:56.340000px;}
.y231{bottom:56.370000px;}
.y6b{bottom:56.520000px;}
.y236{bottom:57.450000px;}
.y110{bottom:58.846500px;}
.y111{bottom:59.206500px;}
.y224{bottom:59.940000px;}
.y216{bottom:61.050000px;}
.y252{bottom:61.380000px;}
.y1f6{bottom:61.740000px;}
.y201{bottom:61.770000px;}
.y1fe{bottom:61.905000px;}
.y1f1{bottom:61.920000px;}
.y1f3{bottom:61.950000px;}
.y205{bottom:61.965000px;}
.y2c1{bottom:62.445000px;}
.y2a4{bottom:63.705000px;}
.y286{bottom:63.720000px;}
.y296{bottom:63.750000px;}
.y272{bottom:63.900000px;}
.y2dd{bottom:63.930000px;}
.y260{bottom:64.080000px;}
.y229{bottom:64.125000px;}
.y244{bottom:65.146500px;}
.y2d0{bottom:66.060000px;}
.y26f{bottom:66.226500px;}
.y20a{bottom:68.040000px;}
.y213{bottom:69.480000px;}
.y2da{bottom:70.560000px;}
.y210{bottom:71.460000px;}
.y27b{bottom:72.750000px;}
.y284{bottom:74.160000px;}
.y2ff{bottom:76.126500px;}
.y104{bottom:76.140000px;}
.y2fa{bottom:76.170000px;}
.yf7{bottom:76.185000px;}
.y6a{bottom:76.356000px;}
.y2bb{bottom:78.300000px;}
.y277{bottom:79.006500px;}
.y2a0{bottom:82.066500px;}
.y230{bottom:82.110000px;}
.y25b{bottom:82.260000px;}
.y20d{bottom:85.350000px;}
.y1ef{bottom:87.660000px;}
.y25f{bottom:89.640000px;}
.y295{bottom:89.670000px;}
.y2b2{bottom:90.000000px;}
.y2a9{bottom:90.030000px;}
.y228{bottom:90.045000px;}
.y243{bottom:91.066500px;}
.y222{bottom:92.565000px;}
.y266{bottom:93.780000px;}
.y10c{bottom:97.005000px;}
.yfe{bottom:97.020000px;}
.y251{bottom:99.180000px;}
.y1f5{bottom:99.720000px;}
.y283{bottom:100.080000px;}
.y2fe{bottom:101.866500px;}
.y2ba{bottom:104.220000px;}
.y276{bottom:104.926500px;}
.y2cf{bottom:106.560000px;}
.y25a{bottom:108.030000px;}
.y26e{bottom:111.226500px;}
.y10f{bottom:111.643500px;}
.y176{bottom:111.816000px;}
.y2e6{bottom:112.176000px;}
.yd9{bottom:113.076000px;}
.y33b{bottom:113.256000px;}
.y2d9{bottom:114.480000px;}
.y2b1{bottom:115.920000px;}
.y227{bottom:115.965000px;}
.y347{bottom:116.136000px;}
.y29e{bottom:116.143500px;}
.ya4{bottom:117.576000px;}
.y242{bottom:118.066500px;}
.y29b{bottom:119.550000px;}
.y288{bottom:119.565000px;}
.y265{bottom:119.730000px;}
.y344{bottom:120.096000px;}
.y116{bottom:122.580000px;}
.y10b{bottom:122.925000px;}
.yfd{bottom:122.940000px;}
.yf6{bottom:122.985000px;}
.y103{bottom:123.120000px;}
.y337{bottom:123.336000px;}
.y69{bottom:123.516000px;}
.y302{bottom:125.496000px;}
.y29f{bottom:125.626500px;}
.y22f{bottom:125.670000px;}
.y268{bottom:128.023500px;}
.y33a{bottom:129.096000px;}
.y1a0{bottom:129.456000px;}
.y275{bottom:130.666500px;}
.y161{bottom:130.716000px;}
.y1d3{bottom:131.796000px;}
.y18d{bottom:132.876000px;}
.y13{bottom:134.496000px;}
.y239{bottom:135.403500px;}
.y31a{bottom:136.476000px;}
.y221{bottom:136.485000px;}
.y26d{bottom:137.146500px;}
.yc3{bottom:138.636000px;}
.y334{bottom:138.816000px;}
.y35{bottom:139.896000px;}
.y2d8{bottom:140.430000px;}
.y21a{bottom:140.976000px;}
.y343{bottom:141.336000px;}
.y226{bottom:141.525000px;}
.y2b0{bottom:141.840000px;}
.y250{bottom:143.100000px;}
.y241{bottom:143.986500px;}
.y282{bottom:144.045000px;}
.yd8{bottom:144.216000px;}
.y287{bottom:145.125000px;}
.y2fd{bottom:145.303500px;}
.y29a{bottom:145.470000px;}
.y264{bottom:145.650000px;}
.y2ce{bottom:147.105000px;}
.y147{bottom:147.816000px;}
.y2b9{bottom:148.140000px;}
.yfb{bottom:148.500000px;}
.ya3{bottom:148.536000px;}
.yfc{bottom:148.860000px;}
.yf5{bottom:148.905000px;}
.y1b9{bottom:149.256000px;}
.y1fd{bottom:151.065000px;}
.y292{bottom:151.770000px;}
.y259{bottom:151.950000px;}
.y2e5{bottom:155.190000px;}
.y274{bottom:156.226500px;}
.yed{bottom:158.790000px;}
.y346{bottom:159.150000px;}
.y88{bottom:160.590000px;}
.y160{bottom:161.670000px;}
.y336{bottom:162.210000px;}
.y220{bottom:162.225000px;}
.y1d2{bottom:162.750000px;}
.y175{bottom:164.010000px;}
.y2be{bottom:167.220000px;}
.y2af{bottom:167.265000px;}
.y24f{bottom:168.840000px;}
.yc2{bottom:169.590000px;}
.y32b{bottom:169.770000px;}
.y10a{bottom:169.950000px;}
.y281{bottom:169.965000px;}
.y240{bottom:170.806500px;}
.y263{bottom:171.030000px;}
.y299{bottom:171.390000px;}
.y19f{bottom:172.110000px;}
.y2e8{bottom:172.290000px;}
.y342{bottom:172.470000px;}
.y2b8{bottom:174.060000px;}
.y4e{bottom:174.450000px;}
.yf4{bottom:174.825000px;}
.yd7{bottom:175.170000px;}
.y68{bottom:175.530000px;}
.y12{bottom:177.150000px;}
.y291{bottom:177.690000px;}
.y34{bottom:177.870000px;}
.y319{bottom:178.050000px;}
.y2a3{bottom:178.065000px;}
.y146{bottom:178.770000px;}
.ya2{bottom:179.670000px;}
.y338{bottom:180.210000px;}
.y26c{bottom:180.886500px;}
.y273{bottom:182.146500px;}
.y2d7{bottom:183.810000px;}
.y219{bottom:183.990000px;}
.y107{bottom:185.085000px;}
.y2cd{bottom:187.425000px;}
.y333{bottom:187.950000px;}
.y21f{bottom:188.145000px;}
.yec{bottom:189.930000px;}
.y87{bottom:191.550000px;}
.y2ae{bottom:192.105000px;}
.y1b8{bottom:192.270000px;}
.y15f{bottom:192.810000px;}
.y1d1{bottom:193.710000px;}
.y174{bottom:194.970000px;}
.y108{bottom:195.330000px;}
.y109{bottom:195.690000px;}
.y280{bottom:195.705000px;}
.y102{bottom:195.840000px;}
.y2c0{bottom:196.605000px;}
.y23f{bottom:196.771500px;}
.y262{bottom:196.950000px;}
.y298{bottom:197.130000px;}
.y345{bottom:198.030000px;}
.y2e4{bottom:198.210000px;}
.y2b7{bottom:199.800000px;}
.yf2{bottom:200.205000px;}
.yf3{bottom:200.565000px;}
.yc1{bottom:200.730000px;}
.y340{bottom:203.070000px;}
.y290{bottom:203.610000px;}
.y258{bottom:203.790000px;}
.yd6{bottom:206.310000px;}
.y26b{bottom:206.851500px;}
.y11{bottom:208.470000px;}
.y318{bottom:209.010000px;}
.y145{bottom:209.910000px;}
.ya1{bottom:210.630000px;}
.y2e7{bottom:210.990000px;}
.y339{bottom:211.170000px;}
.y4d{bottom:214.950000px;}
.y218{bottom:215.130000px;}
.y19e{bottom:215.490000px;}
.y33{bottom:215.670000px;}
.y2ad{bottom:218.025000px;}
.y332{bottom:218.910000px;}
.yeb{bottom:220.890000px;}
.y100{bottom:221.430000px;}
.y24e{bottom:221.760000px;}
.y101{bottom:221.790000px;}
.y86{bottom:222.690000px;}
.y15e{bottom:223.770000px;}
.y1d0{bottom:224.850000px;}
.y18c{bottom:226.110000px;}
.y33f{bottom:227.010000px;}
.y67{bottom:227.550000px;}
.y1fc{bottom:227.565000px;}
.y2cc{bottom:227.925000px;}
.y2e3{bottom:229.350000px;}
.yc0{bottom:231.690000px;}
.y21e{bottom:231.705000px;}
.y26a{bottom:232.771500px;}
.y1b7{bottom:234.930000px;}
.y24c{bottom:235.291500px;}
.yd5{bottom:237.270000px;}
.y27f{bottom:239.265000px;}
.y317{bottom:239.970000px;}
.y144{bottom:240.870000px;}
.y23e{bottom:241.771500px;}
.y2b6{bottom:243.720000px;}
.y173{bottom:246.630000px;}
.y28f{bottom:247.350000px;}
.y257{bottom:247.530000px;}
.y24d{bottom:248.790000px;}
.y331{bottom:250.050000px;}
.y10{bottom:251.130000px;}
.yea{bottom:252.030000px;}
.y32{bottom:253.650000px;}
.y341{bottom:254.370000px;}
.y15d{bottom:254.910000px;}
.y4c{bottom:255.270000px;}
.y1cf{bottom:255.810000px;}
.y2cb{bottom:256.185000px;}
.y18b{bottom:257.070000px;}
.y217{bottom:258.150000px;}
.y2e2{bottom:260.310000px;}
.y24b{bottom:261.211500px;}
.y2ac{bottom:261.405000px;}
.ya0{bottom:262.650000px;}
.ybf{bottom:262.830000px;}
.y1fa{bottom:266.265000px;}
.yd4{bottom:269.490000px;}
.y33e{bottom:270.030000px;}
.y316{bottom:271.110000px;}
.y29c{bottom:272.205000px;}
.y28e{bottom:273.270000px;}
.y256{bottom:273.450000px;}
.y85{bottom:274.710000px;}
.y215{bottom:275.265000px;}
.y269{bottom:276.331500px;}
.y19d{bottom:277.590000px;}
.y1b6{bottom:278.310000px;}
.y66{bottom:278.670000px;}
.y1e8{bottom:279.930000px;}
.yf{bottom:282.630000px;}
.ye9{bottom:282.990000px;}
.y32a{bottom:283.890000px;}
.y12a{bottom:284.610000px;}
.y2ca{bottom:284.625000px;}
.y23d{bottom:285.691500px;}
.y15c{bottom:285.870000px;}
.y1ce{bottom:286.950000px;}
.y24a{bottom:287.131500px;}
.y2b5{bottom:287.310000px;}
.y2bf{bottom:290.565000px;}
.y31{bottom:291.450000px;}
.y143{bottom:292.890000px;}
.ybe{bottom:293.790000px;}
.y4b{bottom:295.770000px;}
.y172{bottom:299.010000px;}
.y28d{bottom:299.220000px;}
.yd3{bottom:300.630000px;}
.y84{bottom:305.850000px;}
.y18a{bottom:309.090000px;}
.y23c{bottom:311.431500px;}
.y249{bottom:312.691500px;}
.y33d{bottom:313.230000px;}
.ye8{bottom:314.130000px;}
.y9f{bottom:314.850000px;}
.y129{bottom:315.750000px;}
.y255{bottom:317.010000px;}
.y1cd{bottom:317.910000px;}
.y65{bottom:319.170000px;}
.y28b{bottom:320.265000px;}
.y19c{bottom:320.610000px;}
.y1b5{bottom:321.330000px;}
.y2e1{bottom:322.410000px;}
.y1e7{bottom:323.310000px;}
.y142{bottom:324.030000px;}
.ybd{bottom:324.930000px;}
.ye{bottom:325.290000px;}
.y2c9{bottom:325.305000px;}
.y30{bottom:329.475000px;}
.y171{bottom:330.195000px;}
.y1f9{bottom:331.455000px;}
.yd2{bottom:331.635000px;}
.y4a{bottom:336.315000px;}
.y83{bottom:336.855000px;}
.y23b{bottom:337.351500px;}
.y15b{bottom:337.935000px;}
.y2b4{bottom:338.655000px;}
.y189{bottom:340.275000px;}
.y271{bottom:340.455000px;}
.y28c{bottom:342.780000px;}
.ye7{bottom:345.135000px;}
.y315{bottom:345.315000px;}
.y9e{bottom:345.855000px;}
.y329{bottom:346.035000px;}
.y128{bottom:346.755000px;}
.y1f8{bottom:348.735000px;}
.y1cc{bottom:349.095000px;}
.y212{bottom:350.895000px;}
.y19b{bottom:351.795000px;}
.y33c{bottom:352.335000px;}
.y2c8{bottom:353.565000px;}
.y2e0{bottom:353.595000px;}
.y1e6{bottom:354.495000px;}
.y141{bottom:355.035000px;}
.ybc{bottom:355.935000px;}
.yd{bottom:356.655000px;}
.y64{bottom:359.715000px;}
.y2d4{bottom:360.225000px;}
.y330{bottom:361.155000px;}
.yd1{bottom:362.775000px;}
.y1b4{bottom:364.395000px;}
.y2f{bottom:367.275000px;}
.y82{bottom:367.815000px;}
.y15a{bottom:369.075000px;}
.ye6{bottom:376.275000px;}
.y49{bottom:376.815000px;}
.y328{bottom:376.995000px;}
.y127{bottom:377.895000px;}
.y23a{bottom:380.911500px;}
.y2c7{bottom:382.005000px;}
.y170{bottom:382.215000px;}
.y19a{bottom:382.755000px;}
.y1e5{bottom:385.455000px;}
.y140{bottom:385.995000px;}
.y2d3{bottom:386.145000px;}
.ybb{bottom:387.075000px;}
.y1cb{bottom:392.115000px;}
.y188{bottom:392.295000px;}
.yd0{bottom:393.735000px;}
.yff{bottom:394.995000px;}
.y2df{bottom:395.355000px;}
.y81{bottom:398.955000px;}
.yc{bottom:399.855000px;}
.y63{bottom:400.035000px;}
.y2e{bottom:405.075000px;}
.ye5{bottom:407.235000px;}
.y314{bottom:407.415000px;}
.y1b3{bottom:407.595000px;}
.y9d{bottom:407.955000px;}
.y126{bottom:408.855000px;}
.y2c6{bottom:410.655000px;}
.y2d2{bottom:411.735000px;}
.y16f{bottom:413.355000px;}
.y2f9{bottom:416.415000px;}
.y1e4{bottom:416.595000px;}
.y48{bottom:417.135000px;}
.yba{bottom:418.035000px;}
.y187{bottom:423.255000px;}
.ycf{bottom:424.695000px;}
.y1f4{bottom:425.235000px;}
.y199{bottom:428.115000px;}
.y327{bottom:429.015000px;}
.y80{bottom:429.915000px;}
.y267{bottom:434.595000px;}
.y13f{bottom:434.775000px;}
.y20f{bottom:434.955000px;}
.y2de{bottom:435.675000px;}
.y62{bottom:436.395000px;}
.y313{bottom:438.375000px;}
.y9c{bottom:438.915000px;}
.y125{bottom:439.995000px;}
.y2d{bottom:444.315000px;}
.yb{bottom:447.375000px;}
.y1e3{bottom:447.555000px;}
.y159{bottom:449.175000px;}
.y1b2{bottom:450.615000px;}
.y1ca{bottom:454.215000px;}
.yce{bottom:457.095000px;}
.y47{bottom:457.635000px;}
.ye4{bottom:459.255000px;}
.y2d6{bottom:459.795000px;}
.y326{bottom:460.155000px;}
.y16e{bottom:465.375000px;}
.y13e{bottom:465.915000px;}
.y9b{bottom:470.055000px;}
.y124{bottom:470.955000px;}
.y61{bottom:473.835000px;}
.y198{bottom:474.015000px;}
.y186{bottom:475.275000px;}
.y247{bottom:478.335000px;}
.y1e2{bottom:478.695000px;}
.y158{bottom:480.135000px;}
.y2f8{bottom:480.855000px;}
.y312{bottom:481.395000px;}
.y7f{bottom:482.115000px;}
.y2c{bottom:484.815000px;}
.y1c9{bottom:485.355000px;}
.yb9{bottom:488.055000px;}
.ya{bottom:488.775000px;}
.y254{bottom:488.955000px;}
.y1b1{bottom:493.275000px;}
.y16d{bottom:496.335000px;}
.y46{bottom:498.135000px;}
.y9a{bottom:501.015000px;}
.y197{bottom:505.155000px;}
.y185{bottom:506.415000px;}
.y1e1{bottom:509.655000px;}
.ye3{bottom:511.275000px;}
.y60{bottom:511.455000px;}
.y325{bottom:512.175000px;}
.y311{bottom:512.535000px;}
.y7e{bottom:513.075000px;}
.y1c8{bottom:516.315000px;}
.y13d{bottom:518.295000px;}
.yb8{bottom:519.195000px;}
.y2f7{bottom:519.555000px;}
.y20c{bottom:520.995000px;}
.y123{bottom:522.975000px;}
.y2b{bottom:523.875000px;}
.y32f{bottom:527.475000px;}
.y9{bottom:530.175000px;}
.y99{bottom:532.155000px;}
.y2bd{bottom:536.295000px;}
.y1b0{bottom:536.655000px;}
.y45{bottom:538.635000px;}
.y1f2{bottom:539.535000px;}
.y1e0{bottom:540.795000px;}
.y157{bottom:542.235000px;}
.y324{bottom:543.315000px;}
.y310{bottom:543.495000px;}
.y7d{bottom:544.215000px;}
.y238{bottom:546.555000px;}
.y1c7{bottom:547.275000px;}
.y196{bottom:548.175000px;}
.y16c{bottom:548.355000px;}
.y5f{bottom:549.075000px;}
.y13c{bottom:549.255000px;}
.y2a{bottom:549.795000px;}
.yb7{bottom:550.155000px;}
.y2dc{bottom:553.935000px;}
.y122{bottom:554.115000px;}
.y184{bottom:558.435000px;}
.y98{bottom:563.115000px;}
.ye2{bottom:563.475000px;}
.y8{bottom:567.075000px;}
.y1af{bottom:567.795000px;}
.y1df{bottom:571.755000px;}
.y156{bottom:573.375000px;}
.y323{bottom:574.275000px;}
.y7c{bottom:575.175000px;}
.y29{bottom:575.715000px;}
.y1c6{bottom:578.415000px;}
.y44{bottom:579.135000px;}
.y16b{bottom:579.495000px;}
.y13b{bottom:580.395000px;}
.yb6{bottom:581.295000px;}
.y2f5{bottom:583.995000px;}
.y121{bottom:585.075000px;}
.y5e{bottom:586.515000px;}
.y183{bottom:589.575000px;}
.y195{bottom:591.195000px;}
.y97{bottom:594.255000px;}
.y22e{bottom:594.615000px;}
.y28{bottom:601.485000px;}
.y1de{bottom:602.925000px;}
.ycd{bottom:603.465000px;}
.y155{bottom:604.365000px;}
.y322{bottom:605.445000px;}
.y7b{bottom:606.345000px;}
.y1c5{bottom:609.405000px;}
.y7{bottom:609.765000px;}
.y1ae{bottom:610.485000px;}
.y32e{bottom:610.665000px;}
.yb5{bottom:612.285000px;}
.ye1{bottom:615.525000px;}
.y349{bottom:615.705000px;}
.y1f0{bottom:616.065000px;}
.y120{bottom:616.245000px;}
.y30f{bottom:617.685000px;}
.y43{bottom:619.485000px;}
.y182{bottom:620.565000px;}
.y209{bottom:620.925000px;}
.y5d{bottom:624.165000px;}
.y27{bottom:627.405000px;}
.yfa{bottom:631.005000px;}
.y16a{bottom:631.545000px;}
.y13a{bottom:632.445000px;}
.y194{bottom:634.245000px;}
.ycc{bottom:634.605000px;}
.y154{bottom:635.505000px;}
.y7a{bottom:637.305000px;}
.y6{bottom:640.725000px;}
.yb4{bottom:643.425000px;}
.y96{bottom:646.305000px;}
.y11f{bottom:647.205000px;}
.y1dd{bottom:647.385000px;}
.y2f4{bottom:648.465000px;}
.y30e{bottom:648.645000px;}
.y181{bottom:651.705000px;}
.y1c4{bottom:652.605000px;}
.y26{bottom:653.325000px;}
.y348{bottom:654.405000px;}
.y2b3{bottom:656.385000px;}
.y321{bottom:657.465000px;}
.y1ad{bottom:659.805000px;}
.y42{bottom:659.985000px;}
.y5c{bottom:661.605000px;}
.y169{bottom:662.505000px;}
.y139{bottom:663.405000px;}
.y153{bottom:666.465000px;}
.ye0{bottom:667.545000px;}
.y79{bottom:668.445000px;}
.y2d5{bottom:674.025000px;}
.yb3{bottom:674.385000px;}
.y95{bottom:677.445000px;}
.y11e{bottom:678.345000px;}
.y1dc{bottom:678.525000px;}
.y25{bottom:679.245000px;}
.y233{bottom:682.485000px;}
.y180{bottom:682.665000px;}
.y1c3{bottom:683.565000px;}
.y5{bottom:683.925000px;}
.ycb{bottom:686.625000px;}
.y320{bottom:688.425000px;}
.y1ac{bottom:690.765000px;}
.y30d{bottom:691.665000px;}
.y1ee{bottom:692.565000px;}
.y289{bottom:693.285000px;}
.y138{bottom:694.545000px;}
.y152{bottom:697.605000px;}
.y5b{bottom:699.225000px;}
.y41{bottom:700.485000px;}
.y208{bottom:703.545000px;}
.y2ab{bottom:704.265000px;}
.y24{bottom:704.985000px;}
.yb2{bottom:705.525000px;}
.y94{bottom:708.405000px;}
.y11d{bottom:709.305000px;}
.y1db{bottom:709.485000px;}
.y2f3{bottom:713.085000px;}
.y168{bottom:714.705000px;}
.y25e{bottom:716.325000px;}
.yca{bottom:717.585000px;}
.ydf{bottom:719.565000px;}
.y78{bottom:720.465000px;}
.y2c5{bottom:722.085000px;}
.y30c{bottom:722.805000px;}
.y1ab{bottom:723.165000px;}
.y137{bottom:725.505000px;}
.y4{bottom:726.945000px;}
.y151{bottom:728.565000px;}
.y23{bottom:730.905000px;}
.y17f{bottom:734.685000px;}
.yb1{bottom:736.485000px;}
.y5a{bottom:736.665000px;}
.y93{bottom:739.365000px;}
.y11c{bottom:740.445000px;}
.y1da{bottom:740.625000px;}
.y40{bottom:740.985000px;}
.y207{bottom:742.245000px;}
.y27e{bottom:742.785000px;}
.y167{bottom:745.665000px;}
.y31f{bottom:750.525000px;}
.y22c{bottom:750.705000px;}
.y77{bottom:751.425000px;}
.y193{bottom:753.765000px;}
.y1aa{bottom:755.385000px;}
.y136{bottom:756.645000px;}
.y22{bottom:756.825000px;}
.y1c2{bottom:757.725000px;}
.y150{bottom:759.705000px;}
.y17e{bottom:765.825000px;}
.yb0{bottom:767.625000px;}
.y3{bottom:769.245000px;}
.yc9{bottom:769.605000px;}
.y92{bottom:770.505000px;}
.y11b{bottom:771.405000px;}
.yde{bottom:771.585000px;}
.y59{bottom:774.285000px;}
.y166{bottom:776.805000px;}
.y2f2{bottom:777.525000px;}
.y3f{bottom:781.305000px;}
.y31e{bottom:781.665000px;}
.y76{bottom:782.565000px;}
.y21{bottom:782.745000px;}
.y30b{bottom:784.905000px;}
.y135{bottom:787.605000px;}
.y1c1{bottom:788.685000px;}
.y14f{bottom:790.665000px;}
.yf1{bottom:794.085000px;}
.y1ed{bottom:794.985000px;}
.y17d{bottom:796.785000px;}
.yaf{bottom:798.585000px;}
.yc8{bottom:800.745000px;}
.y91{bottom:801.465000px;}
.y11a{bottom:802.545000px;}
.ydd{bottom:802.725000px;}
.y2{bottom:805.785000px;}
.y206{bottom:807.585000px;}
.y165{bottom:807.765000px;}
.y20{bottom:808.485000px;}
.y192{bottom:808.665000px;}
.y21d{bottom:811.005000px;}
.y58{bottom:811.725000px;}
.y75{bottom:813.525000px;}
.y30a{bottom:815.865000px;}
.y134{bottom:818.745000px;}
.y1a9{bottom:819.825000px;}
.y3e{bottom:821.805000px;}
.y204{bottom:824.685000px;}
.yae{bottom:829.725000px;}
.yc7{bottom:831.705000px;}
.y90{bottom:832.605000px;}
.y119{bottom:833.505000px;}
.y1d9{bottom:833.685000px;}
.y1f{bottom:834.405000px;}
.y253{bottom:836.205000px;}
.y191{bottom:839.805000px;}
.y2ef{bottom:841.965000px;}
.y74{bottom:844.665000px;}
.y309{bottom:847.005000px;}
.y17c{bottom:848.805000px;}
.y57{bottom:849.345000px;}
.y133{bottom:849.705000px;}
.y1c0{bottom:850.785000px;}
.y1a8{bottom:852.045000px;}
.y14e{bottom:852.765000px;}
.ydc{bottom:854.745000px;}
.y164{bottom:859.425000px;}
.y32d{bottom:859.785000px;}
.yad{bottom:860.685000px;}
.y3d{bottom:862.350000px;}
.yc6{bottom:862.890000px;}
.y8f{bottom:863.610000px;}
.y118{bottom:864.690000px;}
.y1d8{bottom:864.870000px;}
.y190{bottom:870.810000px;}
.y1e{bottom:872.430000px;}
.y73{bottom:875.670000px;}
.y17b{bottom:879.990000px;}
.y132{bottom:880.890000px;}
.y1bf{bottom:881.970000px;}
.y14d{bottom:883.950000px;}
.y1a7{bottom:884.310000px;}
.ydb{bottom:885.750000px;}
.y56{bottom:886.830000px;}
.y308{bottom:890.070000px;}
.y32c{bottom:890.970000px;}
.yac{bottom:891.870000px;}
.yc5{bottom:894.030000px;}
.y8e{bottom:894.750000px;}
.y1d7{bottom:895.830000px;}
.y1d{bottom:898.170000px;}
.y1eb{bottom:898.890000px;}
.y203{bottom:901.230000px;}
.y18f{bottom:901.950000px;}
.y3c{bottom:902.850000px;}
.y2ee{bottom:906.630000px;}
.y131{bottom:911.850000px;}
.y14c{bottom:914.910000px;}
.y1a6{bottom:916.710000px;}
.y117{bottom:916.890000px;}
.y285{bottom:918.330000px;}
.y307{bottom:921.210000px;}
.yab{bottom:922.830000px;}
.y1c{bottom:924.090000px;}
.y55{bottom:924.450000px;}
.y1be{bottom:924.630000px;}
.y8d{bottom:925.710000px;}
.y1d6{bottom:926.970000px;}
.y72{bottom:927.690000px;}
.y1ea{bottom:929.850000px;}
.y17a{bottom:931.650000px;}
.y18e{bottom:932.910000px;}
.yda{bottom:933.450000px;}
.y130{bottom:942.990000px;}
.y3b{bottom:943.350000px;}
.y2ed{bottom:945.150000px;}
.yc4{bottom:945.510000px;}
.y14b{bottom:945.870000px;}
.y1a5{bottom:948.930000px;}
.y1b{bottom:950.010000px;}
.y306{bottom:952.170000px;}
.yaa{bottom:953.970000px;}
.y115{bottom:954.870000px;}
.y8c{bottom:956.850000px;}
.y1d5{bottom:957.930000px;}
.y71{bottom:958.830000px;}
.y54{bottom:961.890000px;}
.y163{bottom:963.870000px;}
.y1bd{bottom:968.010000px;}
.y31d{bottom:968.910000px;}
.y1e9{bottom:972.510000px;}
.y12f{bottom:973.950000px;}
.y1a{bottom:975.750000px;}
.y14a{bottom:977.010000px;}
.y1a4{bottom:981.150000px;}
.y223{bottom:982.770000px;}
.y3a{bottom:983.670000px;}
.y179{bottom:984.030000px;}
.y305{bottom:984.390000px;}
.ya9{bottom:984.930000px;}
.y1d4{bottom:989.070000px;}
.y70{bottom:989.790000px;}
.y162{bottom:995.010000px;}
.y2aa{bottom:996.090000px;}
.y53{bottom:999.510000px;}
.y31c{bottom:999.870000px;}
.y19{bottom:1001.670000px;}
.y202{bottom:1003.650000px;}
.y149{bottom:1007.970000px;}
.y8b{bottom:1008.510000px;}
.yee{bottom:1009.050000px;}
.y2ec{bottom:1009.590000px;}
.y1bc{bottom:1011.030000px;}
.y27d{bottom:1012.470000px;}
.ya8{bottom:1016.070000px;}
.y304{bottom:1016.610000px;}
.y6f{bottom:1020.930000px;}
.y39{bottom:1024.170000px;}
.y12e{bottom:1025.970000px;}
.y18{bottom:1027.590000px;}
.y31b{bottom:1031.010000px;}
.y1a3{bottom:1031.370000px;}
.y178{bottom:1036.050000px;}
.y52{bottom:1036.950000px;}
.y148{bottom:1039.110000px;}
.y8a{bottom:1039.650000px;}
.y2a8{bottom:1044.150000px;}
.ya7{bottom:1047.030000px;}
.y2eb{bottom:1048.290000px;}
.y6e{bottom:1051.890000px;}
.y17{bottom:1053.510000px;}
.y1bb{bottom:1054.050000px;}
.y12d{bottom:1057.110000px;}
.y27a{bottom:1060.350000px;}
.y303{bottom:1060.890000px;}
.y38{bottom:1064.670000px;}
.y21b{bottom:1072.950000px;}
.y51{bottom:1074.570000px;}
.ya6{bottom:1078.170000px;}
.y16{bottom:1079.250000px;}
.y200{bottom:1080.150000px;}
.y6d{bottom:1083.030000px;}
.y177{bottom:1088.070000px;}
.y12c{bottom:1088.250000px;}
.y89{bottom:1091.670000px;}
.y113{bottom:1092.030000px;}
.y1ba{bottom:1096.710000px;}
.y335{bottom:1097.070000px;}
.y37{bottom:1100.310000px;}
.y15{bottom:1105.170000px;}
.y1a2{bottom:1106.610000px;}
.ya5{bottom:1109.130000px;}
.y50{bottom:1112.010000px;}
.y2e9{bottom:1112.730000px;}
.y6c{bottom:1137.420000px;}
.y1a1{bottom:1139.040000px;}
.y12b{bottom:1139.940000px;}
.y36{bottom:1140.300000px;}
.y4f{bottom:1141.380000px;}
.y1{bottom:1141.920000px;}
.y14{bottom:1143.180000px;}
.h28{height:31.485000px;}
.h4a{height:31.500000px;}
.h35{height:31.522500px;}
.h42{height:32.940000px;}
.h1d{height:37.785000px;}
.h17{height:37.800000px;}
.h39{height:37.965000px;}
.h22{height:37.980000px;}
.h16{height:38.002500px;}
.h51{height:43.050000px;}
.h2c{height:43.740000px;}
.h47{height:45.352500px;}
.ha{height:50.326875px;}
.h2e{height:51.660000px;}
.h32{height:51.825000px;}
.h3f{height:53.573906px;}
.h6{height:58.651172px;}
.h7{height:60.226875px;}
.h31{height:61.423863px;}
.he{height:63.705000px;}
.h53{height:63.720000px;}
.h52{height:63.742500px;}
.h14{height:63.750000px;}
.h54{height:63.885000px;}
.h2{height:65.010937px;}
.h9{height:65.884219px;}
.h4d{height:66.757500px;}
.h50{height:68.956875px;}
.h58{height:70.628906px;}
.h4{height:70.664062px;}
.h2f{height:71.310000px;}
.h3{height:72.562500px;}
.h13{height:72.712500px;}
.h2a{height:73.785000px;}
.hd{height:74.004654px;}
.h27{height:74.901000px;}
.hc{height:74.953125px;}
.h1c{height:75.585000px;}
.h1f{height:75.630000px;}
.h1e{height:75.765000px;}
.h19{height:75.780000px;}
.h21{height:75.802500px;}
.h1a{height:75.810000px;}
.h40{height:77.565000px;}
.h3b{height:77.745000px;}
.h23{height:81.900000px;}
.h57{height:82.676953px;}
.h26{height:83.325000px;}
.h8{height:84.898125px;}
.h25{height:85.305000px;}
.h3d{height:87.330000px;}
.hb{height:87.695156px;}
.h55{height:89.661000px;}
.h5{height:96.508125px;}
.h24{height:99.210000px;}
.h20{height:101.505000px;}
.h18{height:101.520000px;}
.h37{height:103.500000px;}
.h44{height:103.530000px;}
.h1b{height:113.565000px;}
.h56{height:115.372500px;}
.h15{height:136.425000px;}
.h46{height:139.492500px;}
.h2d{height:139.530000px;}
.h2b{height:155.370000px;}
.h41{height:158.970000px;}
.h10{height:162.360000px;}
.h4c{height:181.065000px;}
.h49{height:181.095000px;}
.h3c{height:196.012500px;}
.h4f{height:197.670000px;}
.h12{height:209.175000px;}
.h38{height:210.810000px;}
.hf{height:214.050000px;}
.h11{height:235.290000px;}
.h45{height:236.535000px;}
.h29{height:245.550000px;}
.h3e{height:253.110000px;}
.h34{height:263.370000px;}
.h48{height:275.250000px;}
.h3a{height:290.182500px;}
.h4b{height:301.170000px;}
.h33{height:326.542500px;}
.h36{height:330.870000px;}
.h43{height:356.640000px;}
.h30{height:394.762500px;}
.h4e{height:425.595000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:74.016000px;}
.wa{width:85.521000px;}
.wd{width:88.549500px;}
.w10{width:89.496000px;}
.w12{width:90.201000px;}
.we{width:90.381000px;}
.w11{width:90.525000px;}
.w6{width:90.561000px;}
.wb{width:92.145000px;}
.w9{width:93.585000px;}
.w5{width:96.829500px;}
.wf{width:107.280000px;}
.w25{width:110.520000px;}
.w7{width:116.100000px;}
.w26{width:116.136000px;}
.w27{width:116.265000px;}
.w28{width:118.461000px;}
.w2{width:121.669500px;}
.w1c{width:165.435000px;}
.w1b{width:168.495000px;}
.w18{width:176.055000px;}
.w1e{width:176.775000px;}
.w20{width:176.955000px;}
.w22{width:177.495000px;}
.w15{width:183.075000px;}
.w24{width:183.079500px;}
.w14{width:287.659500px;}
.w13{width:364.935000px;}
.w17{width:473.824500px;}
.wc{width:474.184500px;}
.w21{width:475.624500px;}
.w1d{width:476.164500px;}
.w1a{width:484.624500px;}
.w3{width:530.730000px;}
.w23{width:647.550000px;}
.w16{width:651.510000px;}
.w1f{width:652.410000px;}
.w4{width:653.310000px;}
.w19{width:654.750000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2d{left:6.645000px;}
.x14{left:7.729500px;}
.x35{left:9.360000px;}
.x1f{left:11.505000px;}
.x1b{left:13.125000px;}
.x29{left:16.020000px;}
.x38{left:17.445000px;}
.x25{left:19.249500px;}
.x3a{left:21.810000px;}
.x19{left:23.389500px;}
.x2e{left:33.823500px;}
.x3b{left:40.710000px;}
.x22{left:45.165000px;}
.x24{left:46.785000px;}
.x21{left:48.403500px;}
.x23{left:58.140000px;}
.x33{left:59.743500px;}
.x2f{left:60.823500px;}
.x13{left:111.826500px;}
.x17{left:119.926500px;}
.x1{left:127.656000px;}
.xd{left:144.216000px;}
.x9{left:149.436000px;}
.xb{left:155.370000px;}
.xe{left:160.590000px;}
.x8{left:174.810000px;}
.x10{left:180.750000px;}
.x26{left:209.205000px;}
.x1a{left:217.485000px;}
.x11{left:219.450000px;}
.x15{left:234.405000px;}
.x4{left:266.790000px;}
.xa{left:289.155000px;}
.x27{left:300.315000px;}
.x18{left:302.788500px;}
.x34{left:303.915000px;}
.x7{left:308.055000px;}
.x5{left:309.855000px;}
.x6{left:335.235000px;}
.xc{left:394.635000px;}
.x28{left:408.315000px;}
.x36{left:415.155000px;}
.x1c{left:425.775000px;}
.x3{left:446.475000px;}
.x2a{left:498.720000px;}
.x1d{left:500.520000px;}
.x37{left:532.020000px;}
.x2b{left:590.160000px;}
.x1e{left:594.840000px;}
.x2c{left:596.280000px;}
.x31{left:598.620000px;}
.x2{left:601.845000px;}
.x30{left:606.900000px;}
.x12{left:624.345000px;}
.x39{left:649.020000px;}
.x20{left:681.090000px;}
.x41{left:686.490000px;}
.x3e{left:719.430000px;}
.x16{left:747.510000px;}
.xf{left:756.510000px;}
.x40{left:757.950000px;}
.x3d{left:765.510000px;}
.x32{left:766.770000px;}
.x3f{left:775.770000px;}
.x3c{left:777.930000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls12{letter-spacing:-0.896000pt;}
.ls19{letter-spacing:-0.704000pt;}
.lsb{letter-spacing:-0.640000pt;}
.ls24{letter-spacing:-0.544000pt;}
.ls25{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.256000pt;}
.ls27{letter-spacing:-0.233067pt;}
.ls11{letter-spacing:-0.192000pt;}
.ls8{letter-spacing:-0.148267pt;}
.ls23{letter-spacing:-0.047360pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.047360pt;}
.ls4{letter-spacing:0.079467pt;}
.ls10{letter-spacing:0.128000pt;}
.ls1e{letter-spacing:0.160000pt;}
.ls2a{letter-spacing:0.192000pt;}
.ls21{letter-spacing:0.230933pt;}
.ls1f{letter-spacing:0.231040pt;}
.ls17{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.384000pt;}
.ls18{letter-spacing:0.448000pt;}
.ls28{letter-spacing:0.456533pt;}
.ls22{letter-spacing:0.592000pt;}
.ls1d{letter-spacing:0.640000pt;}
.lsc{letter-spacing:1.408000pt;}
.ls26{letter-spacing:6.031360pt;}
.ls1b{letter-spacing:13.440000pt;}
.ls9{letter-spacing:18.842027pt;}
.ls29{letter-spacing:18.863360pt;}
.ls14{letter-spacing:21.248000pt;}
.lsd{letter-spacing:23.808000pt;}
.ls13{letter-spacing:25.088000pt;}
.ls15{letter-spacing:28.288000pt;}
.lse{letter-spacing:30.208000pt;}
.ls1a{letter-spacing:34.048000pt;}
.ls16{letter-spacing:35.328000pt;}
.lsf{letter-spacing:55.168000pt;}
.ls20{letter-spacing:56.912640pt;}
.ls3{letter-spacing:59.631787pt;}
.ls5{letter-spacing:74.373120pt;}
.ls7{letter-spacing:89.093120pt;}
.ls6{letter-spacing:89.733120pt;}
.ws12{word-spacing:-53.120000pt;}
.ws7{word-spacing:-20.032000pt;}
.ws5{word-spacing:-19.040000pt;}
.ws3{word-spacing:-18.508907pt;}
.ws4{word-spacing:-18.281173pt;}
.wsa{word-spacing:-16.448000pt;}
.ws9{word-spacing:-16.256000pt;}
.ws16{word-spacing:-16.192000pt;}
.wsc{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.808000pt;}
.ws6{word-spacing:-15.744000pt;}
.wsb{word-spacing:-15.296000pt;}
.ws2{word-spacing:-14.720000pt;}
.ws15{word-spacing:-14.486933pt;}
.wsd{word-spacing:-13.600000pt;}
.ws13{word-spacing:-13.510933pt;}
.ws10{word-spacing:-13.440000pt;}
.wse{word-spacing:-13.327360pt;}
.wsf{word-spacing:-13.280000pt;}
.ws14{word-spacing:-12.960000pt;}
.ws11{word-spacing:-12.736000pt;}
.ws1{word-spacing:0.000000pt;}
._c{margin-left:-15.764480pt;}
._15{margin-left:-14.834453pt;}
._e{margin-left:-13.798400pt;}
._16{margin-left:-12.089173pt;}
._14{margin-left:-11.126933pt;}
._10{margin-left:-10.141013pt;}
._11{margin-left:-7.573440pt;}
._12{margin-left:-6.065813pt;}
._13{margin-left:-5.088640pt;}
._d{margin-left:-3.189333pt;}
._f{margin-left:-1.790400pt;}
._1{margin-left:-0.896000pt;}
._0{width:1.258667pt;}
._4{width:3.000747pt;}
._5{width:4.080427pt;}
._6{width:5.575040pt;}
._1c{width:6.668800pt;}
._2{width:7.596160pt;}
._3{width:8.568533pt;}
._19{width:10.304000pt;}
._1a{width:11.296000pt;}
._23{width:12.608000pt;}
._17{width:13.824000pt;}
._18{width:14.757867pt;}
._7{width:16.467200pt;}
._8{width:17.379413pt;}
._1b{width:18.796907pt;}
._21{width:19.923733pt;}
._22{width:21.259200pt;}
._25{width:22.430400pt;}
._2a{width:23.329600pt;}
._26{width:24.448000pt;}
._20{width:25.728000pt;}
._24{width:26.878400pt;}
._1d{width:28.288000pt;}
._1e{width:29.376000pt;}
._1f{width:30.485333pt;}
._2b{width:31.808000pt;}
._2c{width:33.152000pt;}
._2d{width:34.197333pt;}
._43{width:35.559467pt;}
._2e{width:37.971840pt;}
._28{width:39.936000pt;}
._27{width:41.600000pt;}
._46{width:44.736000pt;}
._47{width:45.845333pt;}
._3c{width:48.640000pt;}
._3d{width:49.984000pt;}
._32{width:54.501120pt;}
._31{width:55.776000pt;}
._37{width:58.166400pt;}
._35{width:60.981760pt;}
._36{width:73.730560pt;}
._29{width:76.800000pt;}
._4a{width:85.802667pt;}
._48{width:87.424000pt;}
._39{width:89.086400pt;}
._41{width:91.719467pt;}
._42{width:92.933333pt;}
._b{width:101.760000pt;}
._44{width:103.360000pt;}
._34{width:118.527467pt;}
._33{width:119.944960pt;}
._3f{width:123.776000pt;}
._40{width:124.928000pt;}
._49{width:146.688000pt;}
._30{width:172.778667pt;}
._3a{width:180.672000pt;}
._3b{width:181.568000pt;}
._38{width:187.035520pt;}
._a{width:401.482453pt;}
._45{width:426.304000pt;}
._3e{width:483.850667pt;}
._2f{width:639.018667pt;}
._9{width:981.738667pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y2c4{bottom:10.866667pt;}
.y235{bottom:10.880000pt;}
.y2a6{bottom:11.026667pt;}
.y246{bottom:11.033333pt;}
.y22b{bottom:11.040000pt;}
.y29d{bottom:15.666667pt;}
.y21c{bottom:15.680000pt;}
.y28a{bottom:16.960000pt;}
.y2c2{bottom:19.666667pt;}
.y1fb{bottom:21.266667pt;}
.yf0{bottom:21.280000pt;}
.y1ff{bottom:21.426667pt;}
.y1ec{bottom:21.440000pt;}
.y10e{bottom:21.586667pt;}
.y301{bottom:21.588000pt;}
.yf9{bottom:21.600000pt;}
.y2f6{bottom:21.626667pt;}
.y2fc{bottom:21.746667pt;}
.y106{bottom:21.760000pt;}
.y2f1{bottom:21.800000pt;}
.y2d1{bottom:22.720000pt;}
.y2ea{bottom:23.386667pt;}
.y279{bottom:24.148000pt;}
.y22d{bottom:26.560000pt;}
.y20b{bottom:26.880000pt;}
.y294{bottom:26.906667pt;}
.y2a2{bottom:27.033333pt;}
.y25d{bottom:27.040000pt;}
.y232{bottom:27.066667pt;}
.y2a7{bottom:27.993333pt;}
.y214{bottom:28.160000pt;}
.y237{bottom:28.346667pt;}
.y112{bottom:29.593333pt;}
.y211{bottom:29.920000pt;}
.y225{bottom:30.560000pt;}
.y1f7{bottom:32.000000pt;}
.y2a5{bottom:33.586667pt;}
.y234{bottom:33.600000pt;}
.y248{bottom:33.760000pt;}
.y2c3{bottom:33.906667pt;}
.y261{bottom:33.920000pt;}
.y297{bottom:33.946667pt;}
.y245{bottom:34.068000pt;}
.y22a{bottom:34.080000pt;}
.y270{bottom:34.868000pt;}
.y2db{bottom:39.680000pt;}
.y27c{bottom:41.600000pt;}
.y20e{bottom:42.240000pt;}
.yef{bottom:44.320000pt;}
.y10d{bottom:44.626667pt;}
.y300{bottom:44.628000pt;}
.yf8{bottom:44.640000pt;}
.y114{bottom:44.666667pt;}
.y2f0{bottom:44.680000pt;}
.y2fb{bottom:44.786667pt;}
.y105{bottom:44.800000pt;}
.y2bc{bottom:46.720000pt;}
.y278{bottom:47.188000pt;}
.y293{bottom:49.946667pt;}
.y2a1{bottom:50.068000pt;}
.y25c{bottom:50.080000pt;}
.y231{bottom:50.106667pt;}
.y6b{bottom:50.240000pt;}
.y236{bottom:51.066667pt;}
.y110{bottom:52.308000pt;}
.y111{bottom:52.628000pt;}
.y224{bottom:53.280000pt;}
.y216{bottom:54.266667pt;}
.y252{bottom:54.560000pt;}
.y1f6{bottom:54.880000pt;}
.y201{bottom:54.906667pt;}
.y1fe{bottom:55.026667pt;}
.y1f1{bottom:55.040000pt;}
.y1f3{bottom:55.066667pt;}
.y205{bottom:55.080000pt;}
.y2c1{bottom:55.506667pt;}
.y2a4{bottom:56.626667pt;}
.y286{bottom:56.640000pt;}
.y296{bottom:56.666667pt;}
.y272{bottom:56.800000pt;}
.y2dd{bottom:56.826667pt;}
.y260{bottom:56.960000pt;}
.y229{bottom:57.000000pt;}
.y244{bottom:57.908000pt;}
.y2d0{bottom:58.720000pt;}
.y26f{bottom:58.868000pt;}
.y20a{bottom:60.480000pt;}
.y213{bottom:61.760000pt;}
.y2da{bottom:62.720000pt;}
.y210{bottom:63.520000pt;}
.y27b{bottom:64.666667pt;}
.y284{bottom:65.920000pt;}
.y2ff{bottom:67.668000pt;}
.y104{bottom:67.680000pt;}
.y2fa{bottom:67.706667pt;}
.yf7{bottom:67.720000pt;}
.y6a{bottom:67.872000pt;}
.y2bb{bottom:69.600000pt;}
.y277{bottom:70.228000pt;}
.y2a0{bottom:72.948000pt;}
.y230{bottom:72.986667pt;}
.y25b{bottom:73.120000pt;}
.y20d{bottom:75.866667pt;}
.y1ef{bottom:77.920000pt;}
.y25f{bottom:79.680000pt;}
.y295{bottom:79.706667pt;}
.y2b2{bottom:80.000000pt;}
.y2a9{bottom:80.026667pt;}
.y228{bottom:80.040000pt;}
.y243{bottom:80.948000pt;}
.y222{bottom:82.280000pt;}
.y266{bottom:83.360000pt;}
.y10c{bottom:86.226667pt;}
.yfe{bottom:86.240000pt;}
.y251{bottom:88.160000pt;}
.y1f5{bottom:88.640000pt;}
.y283{bottom:88.960000pt;}
.y2fe{bottom:90.548000pt;}
.y2ba{bottom:92.640000pt;}
.y276{bottom:93.268000pt;}
.y2cf{bottom:94.720000pt;}
.y25a{bottom:96.026667pt;}
.y26e{bottom:98.868000pt;}
.y10f{bottom:99.238667pt;}
.y176{bottom:99.392000pt;}
.y2e6{bottom:99.712000pt;}
.yd9{bottom:100.512000pt;}
.y33b{bottom:100.672000pt;}
.y2d9{bottom:101.760000pt;}
.y2b1{bottom:103.040000pt;}
.y227{bottom:103.080000pt;}
.y347{bottom:103.232000pt;}
.y29e{bottom:103.238667pt;}
.ya4{bottom:104.512000pt;}
.y242{bottom:104.948000pt;}
.y29b{bottom:106.266667pt;}
.y288{bottom:106.280000pt;}
.y265{bottom:106.426667pt;}
.y344{bottom:106.752000pt;}
.y116{bottom:108.960000pt;}
.y10b{bottom:109.266667pt;}
.yfd{bottom:109.280000pt;}
.yf6{bottom:109.320000pt;}
.y103{bottom:109.440000pt;}
.y337{bottom:109.632000pt;}
.y69{bottom:109.792000pt;}
.y302{bottom:111.552000pt;}
.y29f{bottom:111.668000pt;}
.y22f{bottom:111.706667pt;}
.y268{bottom:113.798667pt;}
.y33a{bottom:114.752000pt;}
.y1a0{bottom:115.072000pt;}
.y275{bottom:116.148000pt;}
.y161{bottom:116.192000pt;}
.y1d3{bottom:117.152000pt;}
.y18d{bottom:118.112000pt;}
.y13{bottom:119.552000pt;}
.y239{bottom:120.358667pt;}
.y31a{bottom:121.312000pt;}
.y221{bottom:121.320000pt;}
.y26d{bottom:121.908000pt;}
.yc3{bottom:123.232000pt;}
.y334{bottom:123.392000pt;}
.y35{bottom:124.352000pt;}
.y2d8{bottom:124.826667pt;}
.y21a{bottom:125.312000pt;}
.y343{bottom:125.632000pt;}
.y226{bottom:125.800000pt;}
.y2b0{bottom:126.080000pt;}
.y250{bottom:127.200000pt;}
.y241{bottom:127.988000pt;}
.y282{bottom:128.040000pt;}
.yd8{bottom:128.192000pt;}
.y287{bottom:129.000000pt;}
.y2fd{bottom:129.158667pt;}
.y29a{bottom:129.306667pt;}
.y264{bottom:129.466667pt;}
.y2ce{bottom:130.760000pt;}
.y147{bottom:131.392000pt;}
.y2b9{bottom:131.680000pt;}
.yfb{bottom:132.000000pt;}
.ya3{bottom:132.032000pt;}
.yfc{bottom:132.320000pt;}
.yf5{bottom:132.360000pt;}
.y1b9{bottom:132.672000pt;}
.y1fd{bottom:134.280000pt;}
.y292{bottom:134.906667pt;}
.y259{bottom:135.066667pt;}
.y2e5{bottom:137.946667pt;}
.y274{bottom:138.868000pt;}
.yed{bottom:141.146667pt;}
.y346{bottom:141.466667pt;}
.y88{bottom:142.746667pt;}
.y160{bottom:143.706667pt;}
.y336{bottom:144.186667pt;}
.y220{bottom:144.200000pt;}
.y1d2{bottom:144.666667pt;}
.y175{bottom:145.786667pt;}
.y2be{bottom:148.640000pt;}
.y2af{bottom:148.680000pt;}
.y24f{bottom:150.080000pt;}
.yc2{bottom:150.746667pt;}
.y32b{bottom:150.906667pt;}
.y10a{bottom:151.066667pt;}
.y281{bottom:151.080000pt;}
.y240{bottom:151.828000pt;}
.y263{bottom:152.026667pt;}
.y299{bottom:152.346667pt;}
.y19f{bottom:152.986667pt;}
.y2e8{bottom:153.146667pt;}
.y342{bottom:153.306667pt;}
.y2b8{bottom:154.720000pt;}
.y4e{bottom:155.066667pt;}
.yf4{bottom:155.400000pt;}
.yd7{bottom:155.706667pt;}
.y68{bottom:156.026667pt;}
.y12{bottom:157.466667pt;}
.y291{bottom:157.946667pt;}
.y34{bottom:158.106667pt;}
.y319{bottom:158.266667pt;}
.y2a3{bottom:158.280000pt;}
.y146{bottom:158.906667pt;}
.ya2{bottom:159.706667pt;}
.y338{bottom:160.186667pt;}
.y26c{bottom:160.788000pt;}
.y273{bottom:161.908000pt;}
.y2d7{bottom:163.386667pt;}
.y219{bottom:163.546667pt;}
.y107{bottom:164.520000pt;}
.y2cd{bottom:166.600000pt;}
.y333{bottom:167.066667pt;}
.y21f{bottom:167.240000pt;}
.yec{bottom:168.826667pt;}
.y87{bottom:170.266667pt;}
.y2ae{bottom:170.760000pt;}
.y1b8{bottom:170.906667pt;}
.y15f{bottom:171.386667pt;}
.y1d1{bottom:172.186667pt;}
.y174{bottom:173.306667pt;}
.y108{bottom:173.626667pt;}
.y109{bottom:173.946667pt;}
.y280{bottom:173.960000pt;}
.y102{bottom:174.080000pt;}
.y2c0{bottom:174.760000pt;}
.y23f{bottom:174.908000pt;}
.y262{bottom:175.066667pt;}
.y298{bottom:175.226667pt;}
.y345{bottom:176.026667pt;}
.y2e4{bottom:176.186667pt;}
.y2b7{bottom:177.600000pt;}
.yf2{bottom:177.960000pt;}
.yf3{bottom:178.280000pt;}
.yc1{bottom:178.426667pt;}
.y340{bottom:180.506667pt;}
.y290{bottom:180.986667pt;}
.y258{bottom:181.146667pt;}
.yd6{bottom:183.386667pt;}
.y26b{bottom:183.868000pt;}
.y11{bottom:185.306667pt;}
.y318{bottom:185.786667pt;}
.y145{bottom:186.586667pt;}
.ya1{bottom:187.226667pt;}
.y2e7{bottom:187.546667pt;}
.y339{bottom:187.706667pt;}
.y4d{bottom:191.066667pt;}
.y218{bottom:191.226667pt;}
.y19e{bottom:191.546667pt;}
.y33{bottom:191.706667pt;}
.y2ad{bottom:193.800000pt;}
.y332{bottom:194.586667pt;}
.yeb{bottom:196.346667pt;}
.y100{bottom:196.826667pt;}
.y24e{bottom:197.120000pt;}
.y101{bottom:197.146667pt;}
.y86{bottom:197.946667pt;}
.y15e{bottom:198.906667pt;}
.y1d0{bottom:199.866667pt;}
.y18c{bottom:200.986667pt;}
.y33f{bottom:201.786667pt;}
.y67{bottom:202.266667pt;}
.y1fc{bottom:202.280000pt;}
.y2cc{bottom:202.600000pt;}
.y2e3{bottom:203.866667pt;}
.yc0{bottom:205.946667pt;}
.y21e{bottom:205.960000pt;}
.y26a{bottom:206.908000pt;}
.y1b7{bottom:208.826667pt;}
.y24c{bottom:209.148000pt;}
.yd5{bottom:210.906667pt;}
.y27f{bottom:212.680000pt;}
.y317{bottom:213.306667pt;}
.y144{bottom:214.106667pt;}
.y23e{bottom:214.908000pt;}
.y2b6{bottom:216.640000pt;}
.y173{bottom:219.226667pt;}
.y28f{bottom:219.866667pt;}
.y257{bottom:220.026667pt;}
.y24d{bottom:221.146667pt;}
.y331{bottom:222.266667pt;}
.y10{bottom:223.226667pt;}
.yea{bottom:224.026667pt;}
.y32{bottom:225.466667pt;}
.y341{bottom:226.106667pt;}
.y15d{bottom:226.586667pt;}
.y4c{bottom:226.906667pt;}
.y1cf{bottom:227.386667pt;}
.y2cb{bottom:227.720000pt;}
.y18b{bottom:228.506667pt;}
.y217{bottom:229.466667pt;}
.y2e2{bottom:231.386667pt;}
.y24b{bottom:232.188000pt;}
.y2ac{bottom:232.360000pt;}
.ya0{bottom:233.466667pt;}
.ybf{bottom:233.626667pt;}
.y1fa{bottom:236.680000pt;}
.yd4{bottom:239.546667pt;}
.y33e{bottom:240.026667pt;}
.y316{bottom:240.986667pt;}
.y29c{bottom:241.960000pt;}
.y28e{bottom:242.906667pt;}
.y256{bottom:243.066667pt;}
.y85{bottom:244.186667pt;}
.y215{bottom:244.680000pt;}
.y269{bottom:245.628000pt;}
.y19d{bottom:246.746667pt;}
.y1b6{bottom:247.386667pt;}
.y66{bottom:247.706667pt;}
.y1e8{bottom:248.826667pt;}
.yf{bottom:251.226667pt;}
.ye9{bottom:251.546667pt;}
.y32a{bottom:252.346667pt;}
.y12a{bottom:252.986667pt;}
.y2ca{bottom:253.000000pt;}
.y23d{bottom:253.948000pt;}
.y15c{bottom:254.106667pt;}
.y1ce{bottom:255.066667pt;}
.y24a{bottom:255.228000pt;}
.y2b5{bottom:255.386667pt;}
.y2bf{bottom:258.280000pt;}
.y31{bottom:259.066667pt;}
.y143{bottom:260.346667pt;}
.ybe{bottom:261.146667pt;}
.y4b{bottom:262.906667pt;}
.y172{bottom:265.786667pt;}
.y28d{bottom:265.973333pt;}
.yd3{bottom:267.226667pt;}
.y84{bottom:271.866667pt;}
.y18a{bottom:274.746667pt;}
.y23c{bottom:276.828000pt;}
.y249{bottom:277.948000pt;}
.y33d{bottom:278.426667pt;}
.ye8{bottom:279.226667pt;}
.y9f{bottom:279.866667pt;}
.y129{bottom:280.666667pt;}
.y255{bottom:281.786667pt;}
.y1cd{bottom:282.586667pt;}
.y65{bottom:283.706667pt;}
.y28b{bottom:284.680000pt;}
.y19c{bottom:284.986667pt;}
.y1b5{bottom:285.626667pt;}
.y2e1{bottom:286.586667pt;}
.y1e7{bottom:287.386667pt;}
.y142{bottom:288.026667pt;}
.ybd{bottom:288.826667pt;}
.ye{bottom:289.146667pt;}
.y2c9{bottom:289.160000pt;}
.y30{bottom:292.866667pt;}
.y171{bottom:293.506667pt;}
.y1f9{bottom:294.626667pt;}
.yd2{bottom:294.786667pt;}
.y4a{bottom:298.946667pt;}
.y83{bottom:299.426667pt;}
.y23b{bottom:299.868000pt;}
.y15b{bottom:300.386667pt;}
.y2b4{bottom:301.026667pt;}
.y189{bottom:302.466667pt;}
.y271{bottom:302.626667pt;}
.y28c{bottom:304.693333pt;}
.ye7{bottom:306.786667pt;}
.y315{bottom:306.946667pt;}
.y9e{bottom:307.426667pt;}
.y329{bottom:307.586667pt;}
.y128{bottom:308.226667pt;}
.y1f8{bottom:309.986667pt;}
.y1cc{bottom:310.306667pt;}
.y212{bottom:311.906667pt;}
.y19b{bottom:312.706667pt;}
.y33c{bottom:313.186667pt;}
.y2c8{bottom:314.280000pt;}
.y2e0{bottom:314.306667pt;}
.y1e6{bottom:315.106667pt;}
.y141{bottom:315.586667pt;}
.ybc{bottom:316.386667pt;}
.yd{bottom:317.026667pt;}
.y64{bottom:319.746667pt;}
.y2d4{bottom:320.200000pt;}
.y330{bottom:321.026667pt;}
.yd1{bottom:322.466667pt;}
.y1b4{bottom:323.906667pt;}
.y2f{bottom:326.466667pt;}
.y82{bottom:326.946667pt;}
.y15a{bottom:328.066667pt;}
.ye6{bottom:334.466667pt;}
.y49{bottom:334.946667pt;}
.y328{bottom:335.106667pt;}
.y127{bottom:335.906667pt;}
.y23a{bottom:338.588000pt;}
.y2c7{bottom:339.560000pt;}
.y170{bottom:339.746667pt;}
.y19a{bottom:340.226667pt;}
.y1e5{bottom:342.626667pt;}
.y140{bottom:343.106667pt;}
.y2d3{bottom:343.240000pt;}
.ybb{bottom:344.066667pt;}
.y1cb{bottom:348.546667pt;}
.y188{bottom:348.706667pt;}
.yd0{bottom:349.986667pt;}
.yff{bottom:351.106667pt;}
.y2df{bottom:351.426667pt;}
.y81{bottom:354.626667pt;}
.yc{bottom:355.426667pt;}
.y63{bottom:355.586667pt;}
.y2e{bottom:360.066667pt;}
.ye5{bottom:361.986667pt;}
.y314{bottom:362.146667pt;}
.y1b3{bottom:362.306667pt;}
.y9d{bottom:362.626667pt;}
.y126{bottom:363.426667pt;}
.y2c6{bottom:365.026667pt;}
.y2d2{bottom:365.986667pt;}
.y16f{bottom:367.426667pt;}
.y2f9{bottom:370.146667pt;}
.y1e4{bottom:370.306667pt;}
.y48{bottom:370.786667pt;}
.yba{bottom:371.586667pt;}
.y187{bottom:376.226667pt;}
.ycf{bottom:377.506667pt;}
.y1f4{bottom:377.986667pt;}
.y199{bottom:380.546667pt;}
.y327{bottom:381.346667pt;}
.y80{bottom:382.146667pt;}
.y267{bottom:386.306667pt;}
.y13f{bottom:386.466667pt;}
.y20f{bottom:386.626667pt;}
.y2de{bottom:387.266667pt;}
.y62{bottom:387.906667pt;}
.y313{bottom:389.666667pt;}
.y9c{bottom:390.146667pt;}
.y125{bottom:391.106667pt;}
.y2d{bottom:394.946667pt;}
.yb{bottom:397.666667pt;}
.y1e3{bottom:397.826667pt;}
.y159{bottom:399.266667pt;}
.y1b2{bottom:400.546667pt;}
.y1ca{bottom:403.746667pt;}
.yce{bottom:406.306667pt;}
.y47{bottom:406.786667pt;}
.ye4{bottom:408.226667pt;}
.y2d6{bottom:408.706667pt;}
.y326{bottom:409.026667pt;}
.y16e{bottom:413.666667pt;}
.y13e{bottom:414.146667pt;}
.y9b{bottom:417.826667pt;}
.y124{bottom:418.626667pt;}
.y61{bottom:421.186667pt;}
.y198{bottom:421.346667pt;}
.y186{bottom:422.466667pt;}
.y247{bottom:425.186667pt;}
.y1e2{bottom:425.506667pt;}
.y158{bottom:426.786667pt;}
.y2f8{bottom:427.426667pt;}
.y312{bottom:427.906667pt;}
.y7f{bottom:428.546667pt;}
.y2c{bottom:430.946667pt;}
.y1c9{bottom:431.426667pt;}
.yb9{bottom:433.826667pt;}
.ya{bottom:434.466667pt;}
.y254{bottom:434.626667pt;}
.y1b1{bottom:438.466667pt;}
.y16d{bottom:441.186667pt;}
.y46{bottom:442.786667pt;}
.y9a{bottom:445.346667pt;}
.y197{bottom:449.026667pt;}
.y185{bottom:450.146667pt;}
.y1e1{bottom:453.026667pt;}
.ye3{bottom:454.466667pt;}
.y60{bottom:454.626667pt;}
.y325{bottom:455.266667pt;}
.y311{bottom:455.586667pt;}
.y7e{bottom:456.066667pt;}
.y1c8{bottom:458.946667pt;}
.y13d{bottom:460.706667pt;}
.yb8{bottom:461.506667pt;}
.y2f7{bottom:461.826667pt;}
.y20c{bottom:463.106667pt;}
.y123{bottom:464.866667pt;}
.y2b{bottom:465.666667pt;}
.y32f{bottom:468.866667pt;}
.y9{bottom:471.266667pt;}
.y99{bottom:473.026667pt;}
.y2bd{bottom:476.706667pt;}
.y1b0{bottom:477.026667pt;}
.y45{bottom:478.786667pt;}
.y1f2{bottom:479.586667pt;}
.y1e0{bottom:480.706667pt;}
.y157{bottom:481.986667pt;}
.y324{bottom:482.946667pt;}
.y310{bottom:483.106667pt;}
.y7d{bottom:483.746667pt;}
.y238{bottom:485.826667pt;}
.y1c7{bottom:486.466667pt;}
.y196{bottom:487.266667pt;}
.y16c{bottom:487.426667pt;}
.y5f{bottom:488.066667pt;}
.y13c{bottom:488.226667pt;}
.y2a{bottom:488.706667pt;}
.yb7{bottom:489.026667pt;}
.y2dc{bottom:492.386667pt;}
.y122{bottom:492.546667pt;}
.y184{bottom:496.386667pt;}
.y98{bottom:500.546667pt;}
.ye2{bottom:500.866667pt;}
.y8{bottom:504.066667pt;}
.y1af{bottom:504.706667pt;}
.y1df{bottom:508.226667pt;}
.y156{bottom:509.666667pt;}
.y323{bottom:510.466667pt;}
.y7c{bottom:511.266667pt;}
.y29{bottom:511.746667pt;}
.y1c6{bottom:514.146667pt;}
.y44{bottom:514.786667pt;}
.y16b{bottom:515.106667pt;}
.y13b{bottom:515.906667pt;}
.yb6{bottom:516.706667pt;}
.y2f5{bottom:519.106667pt;}
.y121{bottom:520.066667pt;}
.y5e{bottom:521.346667pt;}
.y183{bottom:524.066667pt;}
.y195{bottom:525.506667pt;}
.y97{bottom:528.226667pt;}
.y22e{bottom:528.546667pt;}
.y28{bottom:534.653333pt;}
.y1de{bottom:535.933333pt;}
.ycd{bottom:536.413333pt;}
.y155{bottom:537.213333pt;}
.y322{bottom:538.173333pt;}
.y7b{bottom:538.973333pt;}
.y1c5{bottom:541.693333pt;}
.y7{bottom:542.013333pt;}
.y1ae{bottom:542.653333pt;}
.y32e{bottom:542.813333pt;}
.yb5{bottom:544.253333pt;}
.ye1{bottom:547.133333pt;}
.y349{bottom:547.293333pt;}
.y1f0{bottom:547.613333pt;}
.y120{bottom:547.773333pt;}
.y30f{bottom:549.053333pt;}
.y43{bottom:550.653333pt;}
.y182{bottom:551.613333pt;}
.y209{bottom:551.933333pt;}
.y5d{bottom:554.813333pt;}
.y27{bottom:557.693333pt;}
.yfa{bottom:560.893333pt;}
.y16a{bottom:561.373333pt;}
.y13a{bottom:562.173333pt;}
.y194{bottom:563.773333pt;}
.ycc{bottom:564.093333pt;}
.y154{bottom:564.893333pt;}
.y7a{bottom:566.493333pt;}
.y6{bottom:569.533333pt;}
.yb4{bottom:571.933333pt;}
.y96{bottom:574.493333pt;}
.y11f{bottom:575.293333pt;}
.y1dd{bottom:575.453333pt;}
.y2f4{bottom:576.413333pt;}
.y30e{bottom:576.573333pt;}
.y181{bottom:579.293333pt;}
.y1c4{bottom:580.093333pt;}
.y26{bottom:580.733333pt;}
.y348{bottom:581.693333pt;}
.y2b3{bottom:583.453333pt;}
.y321{bottom:584.413333pt;}
.y1ad{bottom:586.493333pt;}
.y42{bottom:586.653333pt;}
.y5c{bottom:588.093333pt;}
.y169{bottom:588.893333pt;}
.y139{bottom:589.693333pt;}
.y153{bottom:592.413333pt;}
.ye0{bottom:593.373333pt;}
.y79{bottom:594.173333pt;}
.y2d5{bottom:599.133333pt;}
.yb3{bottom:599.453333pt;}
.y95{bottom:602.173333pt;}
.y11e{bottom:602.973333pt;}
.y1dc{bottom:603.133333pt;}
.y25{bottom:603.773333pt;}
.y233{bottom:606.653333pt;}
.y180{bottom:606.813333pt;}
.y1c3{bottom:607.613333pt;}
.y5{bottom:607.933333pt;}
.ycb{bottom:610.333333pt;}
.y320{bottom:611.933333pt;}
.y1ac{bottom:614.013333pt;}
.y30d{bottom:614.813333pt;}
.y1ee{bottom:615.613333pt;}
.y289{bottom:616.253333pt;}
.y138{bottom:617.373333pt;}
.y152{bottom:620.093333pt;}
.y5b{bottom:621.533333pt;}
.y41{bottom:622.653333pt;}
.y208{bottom:625.373333pt;}
.y2ab{bottom:626.013333pt;}
.y24{bottom:626.653333pt;}
.yb2{bottom:627.133333pt;}
.y94{bottom:629.693333pt;}
.y11d{bottom:630.493333pt;}
.y1db{bottom:630.653333pt;}
.y2f3{bottom:633.853333pt;}
.y168{bottom:635.293333pt;}
.y25e{bottom:636.733333pt;}
.yca{bottom:637.853333pt;}
.ydf{bottom:639.613333pt;}
.y78{bottom:640.413333pt;}
.y2c5{bottom:641.853333pt;}
.y30c{bottom:642.493333pt;}
.y1ab{bottom:642.813333pt;}
.y137{bottom:644.893333pt;}
.y4{bottom:646.173333pt;}
.y151{bottom:647.613333pt;}
.y23{bottom:649.693333pt;}
.y17f{bottom:653.053333pt;}
.yb1{bottom:654.653333pt;}
.y5a{bottom:654.813333pt;}
.y93{bottom:657.213333pt;}
.y11c{bottom:658.173333pt;}
.y1da{bottom:658.333333pt;}
.y40{bottom:658.653333pt;}
.y207{bottom:659.773333pt;}
.y27e{bottom:660.253333pt;}
.y167{bottom:662.813333pt;}
.y31f{bottom:667.133333pt;}
.y22c{bottom:667.293333pt;}
.y77{bottom:667.933333pt;}
.y193{bottom:670.013333pt;}
.y1aa{bottom:671.453333pt;}
.y136{bottom:672.573333pt;}
.y22{bottom:672.733333pt;}
.y1c2{bottom:673.533333pt;}
.y150{bottom:675.293333pt;}
.y17e{bottom:680.733333pt;}
.yb0{bottom:682.333333pt;}
.y3{bottom:683.773333pt;}
.yc9{bottom:684.093333pt;}
.y92{bottom:684.893333pt;}
.y11b{bottom:685.693333pt;}
.yde{bottom:685.853333pt;}
.y59{bottom:688.253333pt;}
.y166{bottom:690.493333pt;}
.y2f2{bottom:691.133333pt;}
.y3f{bottom:694.493333pt;}
.y31e{bottom:694.813333pt;}
.y76{bottom:695.613333pt;}
.y21{bottom:695.773333pt;}
.y30b{bottom:697.693333pt;}
.y135{bottom:700.093333pt;}
.y1c1{bottom:701.053333pt;}
.y14f{bottom:702.813333pt;}
.yf1{bottom:705.853333pt;}
.y1ed{bottom:706.653333pt;}
.y17d{bottom:708.253333pt;}
.yaf{bottom:709.853333pt;}
.yc8{bottom:711.773333pt;}
.y91{bottom:712.413333pt;}
.y11a{bottom:713.373333pt;}
.ydd{bottom:713.533333pt;}
.y2{bottom:716.253333pt;}
.y206{bottom:717.853333pt;}
.y165{bottom:718.013333pt;}
.y20{bottom:718.653333pt;}
.y192{bottom:718.813333pt;}
.y21d{bottom:720.893333pt;}
.y58{bottom:721.533333pt;}
.y75{bottom:723.133333pt;}
.y30a{bottom:725.213333pt;}
.y134{bottom:727.773333pt;}
.y1a9{bottom:728.733333pt;}
.y3e{bottom:730.493333pt;}
.y204{bottom:733.053333pt;}
.yae{bottom:737.533333pt;}
.yc7{bottom:739.293333pt;}
.y90{bottom:740.093333pt;}
.y119{bottom:740.893333pt;}
.y1d9{bottom:741.053333pt;}
.y1f{bottom:741.693333pt;}
.y253{bottom:743.293333pt;}
.y191{bottom:746.493333pt;}
.y2ef{bottom:748.413333pt;}
.y74{bottom:750.813333pt;}
.y309{bottom:752.893333pt;}
.y17c{bottom:754.493333pt;}
.y57{bottom:754.973333pt;}
.y133{bottom:755.293333pt;}
.y1c0{bottom:756.253333pt;}
.y1a8{bottom:757.373333pt;}
.y14e{bottom:758.013333pt;}
.ydc{bottom:759.773333pt;}
.y164{bottom:763.933333pt;}
.y32d{bottom:764.253333pt;}
.yad{bottom:765.053333pt;}
.y3d{bottom:766.533333pt;}
.yc6{bottom:767.013333pt;}
.y8f{bottom:767.653333pt;}
.y118{bottom:768.613333pt;}
.y1d8{bottom:768.773333pt;}
.y190{bottom:774.053333pt;}
.y1e{bottom:775.493333pt;}
.y73{bottom:778.373333pt;}
.y17b{bottom:782.213333pt;}
.y132{bottom:783.013333pt;}
.y1bf{bottom:783.973333pt;}
.y14d{bottom:785.733333pt;}
.y1a7{bottom:786.053333pt;}
.ydb{bottom:787.333333pt;}
.y56{bottom:788.293333pt;}
.y308{bottom:791.173333pt;}
.y32c{bottom:791.973333pt;}
.yac{bottom:792.773333pt;}
.yc5{bottom:794.693333pt;}
.y8e{bottom:795.333333pt;}
.y1d7{bottom:796.293333pt;}
.y1d{bottom:798.373333pt;}
.y1eb{bottom:799.013333pt;}
.y203{bottom:801.093333pt;}
.y18f{bottom:801.733333pt;}
.y3c{bottom:802.533333pt;}
.y2ee{bottom:805.893333pt;}
.y131{bottom:810.533333pt;}
.y14c{bottom:813.253333pt;}
.y1a6{bottom:814.853333pt;}
.y117{bottom:815.013333pt;}
.y285{bottom:816.293333pt;}
.y307{bottom:818.853333pt;}
.yab{bottom:820.293333pt;}
.y1c{bottom:821.413333pt;}
.y55{bottom:821.733333pt;}
.y1be{bottom:821.893333pt;}
.y8d{bottom:822.853333pt;}
.y1d6{bottom:823.973333pt;}
.y72{bottom:824.613333pt;}
.y1ea{bottom:826.533333pt;}
.y17a{bottom:828.133333pt;}
.y18e{bottom:829.253333pt;}
.yda{bottom:829.733333pt;}
.y130{bottom:838.213333pt;}
.y3b{bottom:838.533333pt;}
.y2ed{bottom:840.133333pt;}
.yc4{bottom:840.453333pt;}
.y14b{bottom:840.773333pt;}
.y1a5{bottom:843.493333pt;}
.y1b{bottom:844.453333pt;}
.y306{bottom:846.373333pt;}
.yaa{bottom:847.973333pt;}
.y115{bottom:848.773333pt;}
.y8c{bottom:850.533333pt;}
.y1d5{bottom:851.493333pt;}
.y71{bottom:852.293333pt;}
.y54{bottom:855.013333pt;}
.y163{bottom:856.773333pt;}
.y1bd{bottom:860.453333pt;}
.y31d{bottom:861.253333pt;}
.y1e9{bottom:864.453333pt;}
.y12f{bottom:865.733333pt;}
.y1a{bottom:867.333333pt;}
.y14a{bottom:868.453333pt;}
.y1a4{bottom:872.133333pt;}
.y223{bottom:873.573333pt;}
.y3a{bottom:874.373333pt;}
.y179{bottom:874.693333pt;}
.y305{bottom:875.013333pt;}
.ya9{bottom:875.493333pt;}
.y1d4{bottom:879.173333pt;}
.y70{bottom:879.813333pt;}
.y162{bottom:884.453333pt;}
.y2aa{bottom:885.413333pt;}
.y53{bottom:888.453333pt;}
.y31c{bottom:888.773333pt;}
.y19{bottom:890.373333pt;}
.y202{bottom:892.133333pt;}
.y149{bottom:895.973333pt;}
.y8b{bottom:896.453333pt;}
.yee{bottom:896.933333pt;}
.y2ec{bottom:897.413333pt;}
.y1bc{bottom:898.693333pt;}
.y27d{bottom:899.973333pt;}
.ya8{bottom:903.173333pt;}
.y304{bottom:903.653333pt;}
.y6f{bottom:907.493333pt;}
.y39{bottom:910.373333pt;}
.y12e{bottom:911.973333pt;}
.y18{bottom:913.413333pt;}
.y31b{bottom:916.453333pt;}
.y1a3{bottom:916.773333pt;}
.y178{bottom:920.933333pt;}
.y52{bottom:921.733333pt;}
.y148{bottom:923.653333pt;}
.y8a{bottom:924.133333pt;}
.y2a8{bottom:928.133333pt;}
.ya7{bottom:930.693333pt;}
.y2eb{bottom:931.813333pt;}
.y6e{bottom:935.013333pt;}
.y17{bottom:936.453333pt;}
.y1bb{bottom:936.933333pt;}
.y12d{bottom:939.653333pt;}
.y27a{bottom:942.533333pt;}
.y303{bottom:943.013333pt;}
.y38{bottom:946.373333pt;}
.y21b{bottom:953.733333pt;}
.y51{bottom:955.173333pt;}
.ya6{bottom:958.373333pt;}
.y16{bottom:959.333333pt;}
.y200{bottom:960.133333pt;}
.y6d{bottom:962.693333pt;}
.y177{bottom:967.173333pt;}
.y12c{bottom:967.333333pt;}
.y89{bottom:970.373333pt;}
.y113{bottom:970.693333pt;}
.y1ba{bottom:974.853333pt;}
.y335{bottom:975.173333pt;}
.y37{bottom:978.053333pt;}
.y15{bottom:982.373333pt;}
.y1a2{bottom:983.653333pt;}
.ya5{bottom:985.893333pt;}
.y50{bottom:988.453333pt;}
.y2e9{bottom:989.093333pt;}
.y6c{bottom:1011.040000pt;}
.y1a1{bottom:1012.480000pt;}
.y12b{bottom:1013.280000pt;}
.y36{bottom:1013.600000pt;}
.y4f{bottom:1014.560000pt;}
.y1{bottom:1015.040000pt;}
.y14{bottom:1016.160000pt;}
.h28{height:27.986667pt;}
.h4a{height:28.000000pt;}
.h35{height:28.020000pt;}
.h42{height:29.280000pt;}
.h1d{height:33.586667pt;}
.h17{height:33.600000pt;}
.h39{height:33.746667pt;}
.h22{height:33.760000pt;}
.h16{height:33.780000pt;}
.h51{height:38.266667pt;}
.h2c{height:38.880000pt;}
.h47{height:40.313333pt;}
.ha{height:44.735000pt;}
.h2e{height:45.920000pt;}
.h32{height:46.066667pt;}
.h3f{height:47.621250pt;}
.h6{height:52.134375pt;}
.h7{height:53.535000pt;}
.h31{height:54.598989pt;}
.he{height:56.626667pt;}
.h53{height:56.640000pt;}
.h52{height:56.660000pt;}
.h14{height:56.666667pt;}
.h54{height:56.786667pt;}
.h2{height:57.787500pt;}
.h9{height:58.563750pt;}
.h4d{height:59.340000pt;}
.h50{height:61.295000pt;}
.h58{height:62.781250pt;}
.h4{height:62.812500pt;}
.h2f{height:63.386667pt;}
.h3{height:64.500000pt;}
.h13{height:64.633333pt;}
.h2a{height:65.586667pt;}
.hd{height:65.781915pt;}
.h27{height:66.578667pt;}
.hc{height:66.625000pt;}
.h1c{height:67.186667pt;}
.h1f{height:67.226667pt;}
.h1e{height:67.346667pt;}
.h19{height:67.360000pt;}
.h21{height:67.380000pt;}
.h1a{height:67.386667pt;}
.h40{height:68.946667pt;}
.h3b{height:69.106667pt;}
.h23{height:72.800000pt;}
.h57{height:73.490625pt;}
.h26{height:74.066667pt;}
.h8{height:75.465000pt;}
.h25{height:75.826667pt;}
.h3d{height:77.626667pt;}
.hb{height:77.951250pt;}
.h55{height:79.698667pt;}
.h5{height:85.785000pt;}
.h24{height:88.186667pt;}
.h20{height:90.226667pt;}
.h18{height:90.240000pt;}
.h37{height:92.000000pt;}
.h44{height:92.026667pt;}
.h1b{height:100.946667pt;}
.h56{height:102.553333pt;}
.h15{height:121.266667pt;}
.h46{height:123.993333pt;}
.h2d{height:124.026667pt;}
.h2b{height:138.106667pt;}
.h41{height:141.306667pt;}
.h10{height:144.320000pt;}
.h4c{height:160.946667pt;}
.h49{height:160.973333pt;}
.h3c{height:174.233333pt;}
.h4f{height:175.706667pt;}
.h12{height:185.933333pt;}
.h38{height:187.386667pt;}
.hf{height:190.266667pt;}
.h11{height:209.146667pt;}
.h45{height:210.253333pt;}
.h29{height:218.266667pt;}
.h3e{height:224.986667pt;}
.h34{height:234.106667pt;}
.h48{height:244.666667pt;}
.h3a{height:257.940000pt;}
.h4b{height:267.706667pt;}
.h33{height:290.260000pt;}
.h36{height:294.106667pt;}
.h43{height:317.013333pt;}
.h30{height:350.900000pt;}
.h4e{height:378.306667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:65.792000pt;}
.wa{width:76.018667pt;}
.wd{width:78.710667pt;}
.w10{width:79.552000pt;}
.w12{width:80.178667pt;}
.we{width:80.338667pt;}
.w11{width:80.466667pt;}
.w6{width:80.498667pt;}
.wb{width:81.906667pt;}
.w9{width:83.186667pt;}
.w5{width:86.070667pt;}
.wf{width:95.360000pt;}
.w25{width:98.240000pt;}
.w7{width:103.200000pt;}
.w26{width:103.232000pt;}
.w27{width:103.346667pt;}
.w28{width:105.298667pt;}
.w2{width:108.150667pt;}
.w1c{width:147.053333pt;}
.w1b{width:149.773333pt;}
.w18{width:156.493333pt;}
.w1e{width:157.133333pt;}
.w20{width:157.293333pt;}
.w22{width:157.773333pt;}
.w15{width:162.733333pt;}
.w24{width:162.737333pt;}
.w14{width:255.697333pt;}
.w13{width:324.386667pt;}
.w17{width:421.177333pt;}
.wc{width:421.497333pt;}
.w21{width:422.777333pt;}
.w1d{width:423.257333pt;}
.w1a{width:430.777333pt;}
.w3{width:471.760000pt;}
.w23{width:575.600000pt;}
.w16{width:579.120000pt;}
.w1f{width:579.920000pt;}
.w4{width:580.720000pt;}
.w19{width:582.000000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2d{left:5.906667pt;}
.x14{left:6.870667pt;}
.x35{left:8.320000pt;}
.x1f{left:10.226667pt;}
.x1b{left:11.666667pt;}
.x29{left:14.240000pt;}
.x38{left:15.506667pt;}
.x25{left:17.110667pt;}
.x3a{left:19.386667pt;}
.x19{left:20.790667pt;}
.x2e{left:30.065333pt;}
.x3b{left:36.186667pt;}
.x22{left:40.146667pt;}
.x24{left:41.586667pt;}
.x21{left:43.025333pt;}
.x23{left:51.680000pt;}
.x33{left:53.105333pt;}
.x2f{left:54.065333pt;}
.x13{left:99.401333pt;}
.x17{left:106.601333pt;}
.x1{left:113.472000pt;}
.xd{left:128.192000pt;}
.x9{left:132.832000pt;}
.xb{left:138.106667pt;}
.xe{left:142.746667pt;}
.x8{left:155.386667pt;}
.x10{left:160.666667pt;}
.x26{left:185.960000pt;}
.x1a{left:193.320000pt;}
.x11{left:195.066667pt;}
.x15{left:208.360000pt;}
.x4{left:237.146667pt;}
.xa{left:257.026667pt;}
.x27{left:266.946667pt;}
.x18{left:269.145333pt;}
.x34{left:270.146667pt;}
.x7{left:273.826667pt;}
.x5{left:275.426667pt;}
.x6{left:297.986667pt;}
.xc{left:350.786667pt;}
.x28{left:362.946667pt;}
.x36{left:369.026667pt;}
.x1c{left:378.466667pt;}
.x3{left:396.866667pt;}
.x2a{left:443.306667pt;}
.x1d{left:444.906667pt;}
.x37{left:472.906667pt;}
.x2b{left:524.586667pt;}
.x1e{left:528.746667pt;}
.x2c{left:530.026667pt;}
.x31{left:532.106667pt;}
.x2{left:534.973333pt;}
.x30{left:539.466667pt;}
.x12{left:554.973333pt;}
.x39{left:576.906667pt;}
.x20{left:605.413333pt;}
.x41{left:610.213333pt;}
.x3e{left:639.493333pt;}
.x16{left:664.453333pt;}
.xf{left:672.453333pt;}
.x40{left:673.733333pt;}
.x3d{left:680.453333pt;}
.x32{left:681.573333pt;}
.x3f{left:689.573333pt;}
.x3c{left:691.493333pt;}
}




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