
    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_f5e1d71df29207f0e075b119.woff')format("woff");}.ff1{font-family:ff1;line-height:1.105957;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_ad260ceca76fc3f3fac6b8f7.woff')format("woff");}.ff2{font-family:ff2;line-height:1.016113;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_52cb579cb5ccee084ecb43d0.woff')format("woff");}.ff3{font-family:ff3;line-height:1.105957;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_26b87b9f60e18d590b452ab0.woff')format("woff");}.ff4{font-family:ff4;line-height:1.122070;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_af313779448ce552212c5bb3.woff')format("woff");}.ff5{font-family:ff5;line-height:1.024414;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);}
.v8{vertical-align:-16.977000px;}
.v3{vertical-align:-11.982000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:13.980000px;}
.v6{vertical-align:16.022400px;}
.v4{vertical-align:17.070600px;}
.v2{vertical-align:21.919800px;}
.v1{vertical-align:29.886000px;}
.v5{vertical-align:36.018000px;}
.ls2a{letter-spacing:-8.073000px;}
.lsb{letter-spacing:-7.371000px;}
.ls26{letter-spacing:-6.156000px;}
.ls1e{letter-spacing:-5.934000px;}
.ls23{letter-spacing:-5.106000px;}
.ls1b{letter-spacing:-4.623000px;}
.ls29{letter-spacing:-4.278000px;}
.ls31{letter-spacing:-3.726000px;}
.ls22{letter-spacing:-3.381000px;}
.ls28{letter-spacing:-2.829000px;}
.ls21{letter-spacing:-2.760000px;}
.ls17{letter-spacing:-2.700000px;}
.ls45{letter-spacing:-2.520000px;}
.ls37{letter-spacing:-2.277000px;}
.ls7{letter-spacing:-2.160000px;}
.ls1a{letter-spacing:-2.139000px;}
.ls14{letter-spacing:-2.106000px;}
.ls1c{letter-spacing:-2.001000px;}
.ls46{letter-spacing:-1.980000px;}
.lsf{letter-spacing:-1.932000px;}
.ls35{letter-spacing:-1.794000px;}
.ls20{letter-spacing:-1.725000px;}
.ls40{letter-spacing:-1.652805px;}
.ls2d{letter-spacing:-1.587000px;}
.ls1f{letter-spacing:-1.518000px;}
.ls34{letter-spacing:-1.380000px;}
.ls2e{letter-spacing:-1.311000px;}
.ls2b{letter-spacing:-1.242000px;}
.ls13{letter-spacing:-1.188000px;}
.ls32{letter-spacing:-1.035000px;}
.ls33{letter-spacing:-0.897000px;}
.lse{letter-spacing:-0.855000px;}
.ls3b{letter-spacing:-0.810000px;}
.ls36{letter-spacing:-0.690000px;}
.ls19{letter-spacing:-0.627000px;}
.ls30{letter-spacing:-0.570000px;}
.ls1d{letter-spacing:-0.552000px;}
.ls44{letter-spacing:-0.420000px;}
.ls6{letter-spacing:-0.240000px;}
.ls25{letter-spacing:-0.171000px;}
.ls4{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.000300px;}
.ls43{letter-spacing:0.126000px;}
.lsc{letter-spacing:0.216000px;}
.lsa{letter-spacing:0.270000px;}
.ls18{letter-spacing:0.414000px;}
.ls15{letter-spacing:0.648000px;}
.ls16{letter-spacing:0.720000px;}
.ls42{letter-spacing:0.819000px;}
.ls3c{letter-spacing:1.458000px;}
.lsd{letter-spacing:2.400000px;}
.ls2f{letter-spacing:2.739300px;}
.ls24{letter-spacing:3.300000px;}
.ls3d{letter-spacing:3.389400px;}
.ls3{letter-spacing:3.600000px;}
.ls39{letter-spacing:3.946800px;}
.ls12{letter-spacing:4.125000px;}
.ls0{letter-spacing:4.200000px;}
.ls8{letter-spacing:5.760000px;}
.ls9{letter-spacing:5.880000px;}
.ls2{letter-spacing:6.000000px;}
.ls3f{letter-spacing:6.300000px;}
.ls3a{letter-spacing:7.200000px;}
.ls5{letter-spacing:7.260000px;}
.ls41{letter-spacing:7.530000px;}
.ls11{letter-spacing:8.160156px;}
.ls27{letter-spacing:8.160756px;}
.ls1{letter-spacing:8.175000px;}
.ls2c{letter-spacing:8.487000px;}
.ls3e{letter-spacing:8.820000px;}
.ls38{letter-spacing:9.108000px;}
.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;}
}
.ws0{word-spacing:-29.250000px;}
.ws4f{word-spacing:-28.605000px;}
.ws46{word-spacing:-28.275000px;}
.ws4a{word-spacing:-26.523000px;}
.ws15{word-spacing:-25.200000px;}
.ws2a{word-spacing:-24.375000px;}
.ws49{word-spacing:-24.219000px;}
.ws52{word-spacing:-23.184000px;}
.ws53{word-spacing:-22.860000px;}
.ws2{word-spacing:-22.740000px;}
.ws1{word-spacing:-22.620000px;}
.ws47{word-spacing:-21.951000px;}
.wsc{word-spacing:-19.389000px;}
.ws36{word-spacing:-19.035000px;}
.ws51{word-spacing:-18.522000px;}
.ws50{word-spacing:-17.829000px;}
.ws4d{word-spacing:-17.703000px;}
.ws12{word-spacing:-17.043000px;}
.ws2d{word-spacing:-16.860000px;}
.ws2b{word-spacing:-16.605000px;}
.ws37{word-spacing:-16.146000px;}
.ws38{word-spacing:-16.008000px;}
.ws39{word-spacing:-15.663000px;}
.ws4b{word-spacing:-15.561000px;}
.ws25{word-spacing:-15.525000px;}
.ws33{word-spacing:-15.456000px;}
.wse{word-spacing:-15.444000px;}
.wsa{word-spacing:-15.390000px;}
.ws26{word-spacing:-15.318000px;}
.wsd{word-spacing:-15.174000px;}
.ws13{word-spacing:-15.111000px;}
.ws20{word-spacing:-15.042000px;}
.ws1f{word-spacing:-14.904000px;}
.ws55{word-spacing:-14.820000px;}
.ws3f{word-spacing:-14.766000px;}
.ws27{word-spacing:-14.283000px;}
.ws2e{word-spacing:-14.214000px;}
.ws28{word-spacing:-13.662000px;}
.wsf{word-spacing:-13.338000px;}
.ws18{word-spacing:-13.068000px;}
.ws54{word-spacing:-12.840000px;}
.ws16{word-spacing:-12.150000px;}
.ws30{word-spacing:-12.096000px;}
.ws29{word-spacing:-11.937000px;}
.wsb{word-spacing:-11.303787px;}
.ws21{word-spacing:-11.109000px;}
.ws2f{word-spacing:-8.970000px;}
.ws34{word-spacing:-8.487000px;}
.ws4c{word-spacing:-7.419258px;}
.ws6{word-spacing:-7.260000px;}
.ws4e{word-spacing:-6.300000px;}
.ws3{word-spacing:-6.000000px;}
.ws9{word-spacing:-4.200000px;}
.ws4{word-spacing:-3.600000px;}
.ws10{word-spacing:-2.400000px;}
.ws48{word-spacing:-2.001000px;}
.ws42{word-spacing:-1.794000px;}
.ws14{word-spacing:-1.242000px;}
.ws40{word-spacing:-1.173000px;}
.ws1c{word-spacing:-0.648000px;}
.ws1d{word-spacing:-0.414000px;}
.ws3d{word-spacing:-0.207000px;}
.ws5{word-spacing:0.000000px;}
.ws2c{word-spacing:0.171000px;}
.ws7{word-spacing:0.240000px;}
.ws3e{word-spacing:0.345000px;}
.ws24{word-spacing:0.552000px;}
.ws3a{word-spacing:0.570000px;}
.ws22{word-spacing:0.627000px;}
.ws44{word-spacing:0.690000px;}
.ws11{word-spacing:0.855000px;}
.ws3b{word-spacing:1.035000px;}
.ws35{word-spacing:1.311000px;}
.ws41{word-spacing:1.794000px;}
.ws31{word-spacing:2.001000px;}
.ws8{word-spacing:2.160000px;}
.ws45{word-spacing:2.277000px;}
.ws56{word-spacing:2.520000px;}
.ws3c{word-spacing:3.933000px;}
.ws32{word-spacing:4.278000px;}
.ws43{word-spacing:4.554000px;}
.ws23{word-spacing:4.623000px;}
.ws17{word-spacing:9.453000px;}
.ws1a{word-spacing:31.980000px;}
.ws1e{word-spacing:210.605400px;}
.ws19{word-spacing:264.702000px;}
.ws1b{word-spacing:276.774000px;}
._3a{margin-left:-18.664500px;}
._4b{margin-left:-14.531700px;}
._4a{margin-left:-13.141800px;}
._a{margin-left:-9.664200px;}
._c{margin-left:-8.211900px;}
._9{margin-left:-7.176300px;}
._8{margin-left:-5.279700px;}
._5{margin-left:-4.264500px;}
._4{margin-left:-2.765700px;}
._6{margin-left:-1.254000px;}
._1{width:1.056000px;}
._3{width:2.106000px;}
._7{width:3.119700px;}
._b{width:4.465800px;}
._2{width:6.318000px;}
._15{width:7.734900px;}
._13{width:9.574200px;}
._16{width:10.836000px;}
._1b{width:12.135000px;}
._14{width:13.524000px;}
._1c{width:14.989800px;}
._19{width:16.501500px;}
._3e{width:17.581800px;}
._10{width:19.461114px;}
._42{width:22.776900px;}
._17{width:24.024600px;}
._3f{width:25.620900px;}
._47{width:26.652780px;}
._1e{width:27.704160px;}
._41{width:28.929780px;}
._44{width:30.737700px;}
._45{width:32.672700px;}
._46{width:34.286700px;}
._43{width:36.821700px;}
._f{width:43.445160px;}
._32{width:45.600000px;}
._48{width:46.723500px;}
._20{width:48.840000px;}
._3b{width:53.499600px;}
._49{width:73.681200px;}
._d{width:85.554000px;}
._23{width:138.660000px;}
._26{width:141.360000px;}
._2c{width:142.560000px;}
._30{width:148.524000px;}
._27{width:174.384000px;}
._34{width:196.554000px;}
._21{width:205.920000px;}
._38{width:209.820000px;}
._33{width:210.894000px;}
._25{width:213.720000px;}
._2e{width:215.640000px;}
._2a{width:220.800000px;}
._28{width:232.560000px;}
._35{width:233.706000px;}
._22{width:234.780000px;}
._2b{width:236.340000px;}
._36{width:258.600000px;}
._e{width:260.610000px;}
._37{width:267.420540px;}
._31{width:268.440000px;}
._2f{width:277.200000px;}
._2d{width:280.320000px;}
._24{width:284.664000px;}
._29{width:292.860000px;}
._0{width:446.812200px;}
._3d{width:448.681200px;}
._40{width:449.700000px;}
._1d{width:454.459200px;}
._3c{width:455.805300px;}
._39{width:456.934200px;}
._11{width:578.400000px;}
._1a{width:956.005200px;}
._12{width:959.125200px;}
._18{width:963.175200px;}
._1f{width:965.155200px;}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:31.482000px;}
.fsf{font-size:34.980000px;}
.fs10{font-size:36.729000px;}
.fsd{font-size:40.227000px;}
.fs8{font-size:42.000000px;}
.fs2{font-size:48.000000px;}
.fs7{font-size:48.972000px;}
.fsa{font-size:54.000000px;}
.fse{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs5{font-size:62.964000px;}
.fs3{font-size:63.000000px;}
.fsc{font-size:69.000000px;}
.fs0{font-size:75.000000px;}
.fsb{font-size:81.000000px;}
.fs6{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y25f{bottom:106.107300px;}
.y8e{bottom:106.165350px;}
.y27e{bottom:106.217850px;}
.y29e{bottom:106.229100px;}
.y187{bottom:106.231200px;}
.y2c0{bottom:106.260600px;}
.yb4{bottom:106.268850px;}
.y165{bottom:106.290300px;}
.y46{bottom:106.293300px;}
.y1e{bottom:106.296300px;}
.yd6{bottom:106.296450px;}
.y23b{bottom:106.372950px;}
.y1d4{bottom:109.294800px;}
.y13f{bottom:109.294950px;}
.y164{bottom:123.543300px;}
.y45{bottom:123.546300px;}
.y25e{bottom:126.479550px;}
.y1d{bottom:126.544800px;}
.yd5{bottom:126.544950px;}
.y8d{bottom:126.589350px;}
.y2bf{bottom:126.719850px;}
.yb3{bottom:127.227600px;}
.y23a{bottom:127.314450px;}
.y27d{bottom:127.370100px;}
.y186{bottom:127.690200px;}
.y1b3{bottom:127.798500px;}
.y29d{bottom:128.231850px;}
.y218{bottom:130.796700px;}
.y163{bottom:140.796300px;}
.y44{bottom:143.794800px;}
.y1c{bottom:145.048200px;}
.ye9{bottom:145.048500px;}
.y25d{bottom:146.851800px;}
.y8c{bottom:147.013350px;}
.y2be{bottom:147.179100px;}
.y1b2{bottom:148.047000px;}
.yb2{bottom:148.186350px;}
.y239{bottom:148.255950px;}
.y185{bottom:149.149200px;}
.y29c{bottom:150.234600px;}
.y217{bottom:152.298750px;}
.y1f8{bottom:153.180750px;}
.y13e{bottom:153.307200px;}
.y1d3{bottom:153.378000px;}
.y27c{bottom:157.027350px;}
.y162{bottom:161.044800px;}
.y43{bottom:162.289200px;}
.y67{bottom:162.292200px;}
.y1b{bottom:165.296700px;}
.ye8{bottom:165.297000px;}
.y25c{bottom:167.224050px;}
.y8b{bottom:167.437350px;}
.yb1{bottom:169.145100px;}
.y238{bottom:169.197450px;}
.yd4{bottom:170.547900px;}
.y184{bottom:170.608200px;}
.y1d2{bottom:173.629500px;}
.y13d{bottom:173.972700px;}
.y1f7{bottom:174.001500px;}
.y2bd{bottom:176.127600px;}
.y27b{bottom:178.179600px;}
.y42{bottom:179.542200px;}
.y66{bottom:179.545200px;}
.y29b{bottom:180.726600px;}
.ye7{bottom:183.800700px;}
.y25b{bottom:187.596300px;}
.y8a{bottom:187.861350px;}
.yb0{bottom:190.103850px;}
.y237{bottom:190.138950px;}
.yd3{bottom:191.454900px;}
.y183{bottom:192.067200px;}
.y1b1{bottom:192.093300px;}
.y1d1{bottom:193.881000px;}
.y13c{bottom:194.638200px;}
.y1f6{bottom:194.822250px;}
.y216{bottom:196.382100px;}
.y2bc{bottom:196.586850px;}
.y41{bottom:196.795200px;}
.y65{bottom:196.798200px;}
.y27a{bottom:199.331850px;}
.y29a{bottom:202.729350px;}
.ye6{bottom:204.049200px;}
.y161{bottom:205.114200px;}
.y25a{bottom:207.968550px;}
.y89{bottom:208.285350px;}
.y11d{bottom:209.297700px;}
.y1a{bottom:209.314950px;}
.yaf{bottom:211.062600px;}
.y236{bottom:211.080450px;}
.yd2{bottom:212.361900px;}
.y1b0{bottom:213.017550px;}
.y182{bottom:213.526200px;}
.y40{bottom:214.048200px;}
.y1d0{bottom:214.132500px;}
.y13b{bottom:215.303700px;}
.y1f5{bottom:215.643000px;}
.y2bb{bottom:217.046100px;}
.y64{bottom:217.046700px;}
.y215{bottom:217.685850px;}
.y2dd{bottom:222.763350px;}
.y299{bottom:224.732100px;}
.y160{bottom:225.624450px;}
.y259{bottom:228.340800px;}
.y88{bottom:228.709350px;}
.y279{bottom:228.989100px;}
.y19{bottom:230.430450px;}
.y11c{bottom:230.635950px;}
.yae{bottom:232.021350px;}
.y235{bottom:232.021950px;}
.yd1{bottom:233.182050px;}
.y1af{bottom:233.941800px;}
.y3f{bottom:234.296700px;}
.y1cf{bottom:234.384000px;}
.y181{bottom:234.985200px;}
.y13a{bottom:235.969200px;}
.y1f4{bottom:236.463750px;}
.y214{bottom:238.989600px;}
.y2dc{bottom:243.017850px;}
.y2ba{bottom:245.994600px;}
.y15f{bottom:246.134700px;}
.y258{bottom:248.713050px;}
.y87{bottom:249.133350px;}
.y2fa{bottom:249.684750px;}
.y18{bottom:250.020450px;}
.y278{bottom:250.141350px;}
.y11b{bottom:251.974200px;}
.y234{bottom:252.963450px;}
.yad{bottom:252.980100px;}
.yd0{bottom:254.089050px;}
.y1ce{bottom:254.635500px;}
.ye5{bottom:254.692350px;}
.y1ae{bottom:254.866050px;}
.y298{bottom:255.224100px;}
.y180{bottom:256.444200px;}
.y139{bottom:256.634700px;}
.y1f3{bottom:257.284500px;}
.y213{bottom:260.293350px;}
.y63{bottom:261.117000px;}
.y2db{bottom:263.272350px;}
.y2b9{bottom:266.453850px;}
.y15e{bottom:266.644950px;}
.y257{bottom:269.085300px;}
.y86{bottom:269.557350px;}
.y17{bottom:269.610450px;}
.y2f9{bottom:269.934750px;}
.y277{bottom:271.293600px;}
.y11a{bottom:273.271200px;}
.y233{bottom:273.904950px;}
.yac{bottom:273.938850px;}
.y1cd{bottom:274.887000px;}
.ye4{bottom:274.943850px;}
.ycf{bottom:274.996050px;}
.y1ad{bottom:275.790300px;}
.y297{bottom:277.226850px;}
.y138{bottom:277.300200px;}
.y17f{bottom:277.903200px;}
.y1f2{bottom:278.105250px;}
.y3e{bottom:278.303400px;}
.y212{bottom:281.597100px;}
.y62{bottom:281.765250px;}
.y2da{bottom:283.526850px;}
.y2b8{bottom:286.913100px;}
.y15d{bottom:287.155200px;}
.y16{bottom:289.200450px;}
.y256{bottom:289.457550px;}
.y85{bottom:289.981350px;}
.y2f8{bottom:290.184750px;}
.y119{bottom:294.609450px;}
.y232{bottom:294.846450px;}
.yab{bottom:294.897600px;}
.y1cc{bottom:295.138500px;}
.ye3{bottom:295.195350px;}
.yce{bottom:295.903050px;}
.y1ac{bottom:296.714550px;}
.y137{bottom:297.964050px;}
.y1f1{bottom:298.926000px;}
.y3d{bottom:299.037900px;}
.y296{bottom:299.229600px;}
.y17e{bottom:299.362200px;}
.y276{bottom:300.950850px;}
.y61{bottom:302.413500px;}
.y211{bottom:302.900850px;}
.y15c{bottom:307.665450px;}
.y15{bottom:308.790450px;}
.y255{bottom:309.829800px;}
.y84{bottom:310.405350px;}
.y2f7{bottom:310.434750px;}
.y2d9{bottom:312.286350px;}
.y1cb{bottom:315.390000px;}
.ye2{bottom:315.446850px;}
.y231{bottom:315.787950px;}
.yaa{bottom:315.856350px;}
.y2b7{bottom:315.861600px;}
.y118{bottom:315.947700px;}
.ycd{bottom:316.810050px;}
.y1ab{bottom:317.638800px;}
.y136{bottom:318.629550px;}
.y3c{bottom:319.644000px;}
.y1f0{bottom:319.746750px;}
.y17d{bottom:320.821200px;}
.y275{bottom:322.103100px;}
.y60{bottom:323.061750px;}
.y210{bottom:324.204600px;}
.y15b{bottom:328.414350px;}
.y295{bottom:329.721600px;}
.y254{bottom:330.202050px;}
.y2f6{bottom:330.684750px;}
.y83{bottom:330.829350px;}
.y1ca{bottom:335.641500px;}
.ye1{bottom:335.698350px;}
.y2b6{bottom:336.320850px;}
.y230{bottom:336.729450px;}
.ya9{bottom:336.815100px;}
.y117{bottom:337.285950px;}
.ycc{bottom:337.717050px;}
.y1aa{bottom:338.563050px;}
.y135{bottom:339.295050px;}
.y3b{bottom:340.378500px;}
.y1ef{bottom:340.567500px;}
.y2d8{bottom:341.045850px;}
.y14{bottom:341.145450px;}
.y5f{bottom:343.710000px;}
.y20f{bottom:345.508350px;}
.y15a{bottom:348.924600px;}
.y253{bottom:350.574300px;}
.y82{bottom:351.253350px;}
.y294{bottom:351.724350px;}
.y274{bottom:351.760350px;}
.y1c9{bottom:355.893000px;}
.ye0{bottom:355.949850px;}
.y22f{bottom:357.670950px;}
.ya8{bottom:357.773850px;}
.ycb{bottom:358.624050px;}
.y116{bottom:358.624200px;}
.y1a9{bottom:359.487300px;}
.y3a{bottom:361.113000px;}
.y1ee{bottom:361.388250px;}
.y17c{bottom:363.524250px;}
.y2f5{bottom:363.684750px;}
.y5e{bottom:364.358250px;}
.y2b5{bottom:365.269350px;}
.y20e{bottom:366.820350px;}
.y159{bottom:369.434850px;}
.y2d7{bottom:369.805350px;}
.y252{bottom:370.946550px;}
.y81{bottom:371.677350px;}
.y273{bottom:372.912600px;}
.y293{bottom:373.727100px;}
.y1c8{bottom:376.144500px;}
.ydf{bottom:376.198350px;}
.y22e{bottom:378.612450px;}
.ya7{bottom:378.732600px;}
.yca{bottom:379.531050px;}
.y115{bottom:379.962450px;}
.y1a8{bottom:380.411550px;}
.y39{bottom:381.847500px;}
.y1ed{bottom:382.209000px;}
.y5d{bottom:385.006500px;}
.y2b4{bottom:385.728600px;}
.y20d{bottom:388.132200px;}
.y17b{bottom:388.735500px;}
.y158{bottom:389.945100px;}
.y2d6{bottom:390.059850px;}
.y13{bottom:390.510450px;}
.y251{bottom:391.318800px;}
.y80{bottom:392.101350px;}
.y272{bottom:394.064850px;}
.y1c7{bottom:396.396000px;}
.yde{bottom:396.449850px;}
.y22d{bottom:399.553950px;}
.ya6{bottom:399.691350px;}
.yc9{bottom:400.438050px;}
.y114{bottom:401.300700px;}
.y1a7{bottom:401.335800px;}
.y38{bottom:402.582000px;}
.y1ec{bottom:403.029750px;}
.y292{bottom:404.219100px;}
.y2f4{bottom:405.189750px;}
.y5c{bottom:405.684300px;}
.y134{bottom:406.509750px;}
.y20c{bottom:409.509150px;}
.y157{bottom:410.455350px;}
.y12{bottom:411.624000px;}
.y250{bottom:411.691050px;}
.y7f{bottom:412.525350px;}
.y2b3{bottom:414.677100px;}
.y1c6{bottom:416.647500px;}
.ydd{bottom:416.701350px;}
.y2d5{bottom:418.819350px;}
.y22c{bottom:420.495450px;}
.ya5{bottom:420.650100px;}
.yc8{bottom:421.345050px;}
.y1a6{bottom:422.287950px;}
.y113{bottom:422.615400px;}
.y37{bottom:423.316500px;}
.y271{bottom:423.722100px;}
.y1eb{bottom:423.850500px;}
.y133{bottom:424.509750px;}
.y2f3{bottom:424.689750px;}
.y291{bottom:426.221850px;}
.y5b{bottom:426.332550px;}
.y20b{bottom:430.812900px;}
.y156{bottom:430.965600px;}
.y11{bottom:431.214000px;}
.y24f{bottom:432.063300px;}
.y7e{bottom:432.949350px;}
.y2b2{bottom:435.136350px;}
.y1c5{bottom:436.899000px;}
.y2d4{bottom:439.073850px;}
.ya4{bottom:441.608850px;}
.yc7{bottom:442.252050px;}
.y132{bottom:442.509750px;}
.y1a5{bottom:443.212200px;}
.y112{bottom:443.953650px;}
.y36{bottom:444.051000px;}
.y2f2{bottom:444.189750px;}
.y1ea{bottom:444.671250px;}
.y270{bottom:444.874350px;}
.y5a{bottom:446.980800px;}
.y290{bottom:448.224600px;}
.y10{bottom:450.804000px;}
.y155{bottom:451.475850px;}
.y17a{bottom:452.062350px;}
.y20a{bottom:452.116650px;}
.y24e{bottom:452.435550px;}
.y7d{bottom:453.373350px;}
.y2b1{bottom:455.595600px;}
.y1c4{bottom:457.150500px;}
.ydc{bottom:457.201350px;}
.y2d3{bottom:459.328350px;}
.y131{bottom:460.989750px;}
.ya3{bottom:462.567600px;}
.y22b{bottom:462.701700px;}
.yc6{bottom:463.159050px;}
.y2f1{bottom:463.689750px;}
.y1a4{bottom:464.136450px;}
.y35{bottom:464.785500px;}
.y111{bottom:465.291900px;}
.y1e9{bottom:465.492000px;}
.y26f{bottom:465.998100px;}
.y59{bottom:467.629050px;}
.yf{bottom:470.394000px;}
.y154{bottom:471.986100px;}
.y24d{bottom:472.807800px;}
.y209{bottom:473.420400px;}
.y179{bottom:473.521350px;}
.y7c{bottom:473.797350px;}
.y1c3{bottom:477.402000px;}
.y28f{bottom:478.716600px;}
.y130{bottom:478.989750px;}
.y2f0{bottom:483.189750px;}
.ya2{bottom:483.526350px;}
.yc5{bottom:484.066050px;}
.y2b0{bottom:484.544100px;}
.y1a3{bottom:485.060700px;}
.y34{bottom:485.520000px;}
.y1e8{bottom:486.312750px;}
.y110{bottom:486.630150px;}
.y2d2{bottom:488.087850px;}
.y58{bottom:488.299650px;}
.y153{bottom:492.496350px;}
.y24c{bottom:493.180050px;}
.y7b{bottom:494.221350px;}
.y208{bottom:494.724150px;}
.y178{bottom:494.980350px;}
.y26e{bottom:495.655350px;}
.y12f{bottom:496.989750px;}
.y1c2{bottom:497.653500px;}
.y28e{bottom:500.719350px;}
.y2ef{bottom:502.689750px;}
.ye{bottom:502.749000px;}
.ya1{bottom:504.485100px;}
.yc4{bottom:504.973050px;}
.y2af{bottom:504.987600px;}
.y1a2{bottom:505.984950px;}
.y33{bottom:506.254500px;}
.y1e7{bottom:507.133500px;}
.y10f{bottom:507.968400px;}
.y2d1{bottom:508.342350px;}
.y57{bottom:508.947900px;}
.y152{bottom:513.006600px;}
.y24b{bottom:513.552300px;}
.y7a{bottom:514.645350px;}
.y12e{bottom:515.469750px;}
.y207{bottom:516.027900px;}
.y177{bottom:516.439350px;}
.y26d{bottom:516.807600px;}
.y1c1{bottom:517.905000px;}
.y2ee{bottom:522.189750px;}
.ya0{bottom:525.443850px;}
.y2ae{bottom:525.446850px;}
.y22a{bottom:525.754350px;}
.yc3{bottom:525.880050px;}
.y1a1{bottom:526.909200px;}
.y32{bottom:526.989000px;}
.y1e6{bottom:527.954250px;}
.y2d0{bottom:528.596850px;}
.y56{bottom:529.596150px;}
.y28d{bottom:531.211350px;}
.y12d{bottom:533.469750px;}
.y151{bottom:533.516850px;}
.y24a{bottom:533.924550px;}
.y79{bottom:535.069350px;}
.y206{bottom:537.331650px;}
.y176{bottom:537.898350px;}
.y1c0{bottom:538.156500px;}
.y2ed{bottom:541.689750px;}
.y2ad{bottom:545.906100px;}
.y9f{bottom:546.402600px;}
.y26c{bottom:546.464850px;}
.y229{bottom:546.695850px;}
.yc2{bottom:546.787050px;}
.y31{bottom:547.723500px;}
.y1a0{bottom:547.833450px;}
.y1e5{bottom:548.775000px;}
.y55{bottom:550.244400px;}
.y12c{bottom:551.469750px;}
.y28c{bottom:553.214100px;}
.y150{bottom:554.027100px;}
.y249{bottom:554.296800px;}
.y78{bottom:555.493350px;}
.yd{bottom:556.374450px;}
.y2cf{bottom:557.356350px;}
.y10e{bottom:557.371950px;}
.y1bf{bottom:558.408000px;}
.y205{bottom:558.635400px;}
.y175{bottom:559.357350px;}
.y2ec{bottom:561.189750px;}
.y9e{bottom:567.361350px;}
.y26b{bottom:567.617100px;}
.y228{bottom:567.637350px;}
.yc1{bottom:567.694050px;}
.y30{bottom:568.458000px;}
.y19f{bottom:568.757700px;}
.y1e4{bottom:569.595750px;}
.y12b{bottom:569.949750px;}
.y14f{bottom:574.537350px;}
.y248{bottom:574.669050px;}
.y2ac{bottom:574.854600px;}
.y28b{bottom:575.216850px;}
.y77{bottom:575.917350px;}
.y2ce{bottom:577.610850px;}
.y1be{bottom:578.659500px;}
.y204{bottom:579.939150px;}
.y10d{bottom:580.096950px;}
.y2eb{bottom:580.689750px;}
.y174{bottom:580.816350px;}
.yc{bottom:583.464450px;}
.y12a{bottom:587.949750px;}
.y9d{bottom:588.320100px;}
.y227{bottom:588.578850px;}
.yc0{bottom:588.601050px;}
.y2f{bottom:589.192500px;}
.y19e{bottom:589.681950px;}
.y1e3{bottom:590.416500px;}
.y54{bottom:592.159950px;}
.y247{bottom:595.041300px;}
.y14e{bottom:595.047600px;}
.y2ab{bottom:595.313850px;}
.y76{bottom:596.341350px;}
.y26a{bottom:597.274350px;}
.y2cd{bottom:597.865350px;}
.y1bd{bottom:598.911000px;}
.y2ea{bottom:600.189750px;}
.y203{bottom:601.242900px;}
.y173{bottom:602.275350px;}
.y10c{bottom:602.821950px;}
.y28a{bottom:605.708850px;}
.y129{bottom:605.949750px;}
.y9c{bottom:609.278850px;}
.y226{bottom:609.520350px;}
.y2e{bottom:609.927000px;}
.yb{bottom:610.554450px;}
.y19d{bottom:610.606200px;}
.y1e2{bottom:611.237250px;}
.y246{bottom:615.413550px;}
.y14d{bottom:615.557850px;}
.y2aa{bottom:615.773100px;}
.y75{bottom:616.765350px;}
.y1bc{bottom:619.162500px;}
.y2e9{bottom:619.689750px;}
.y172{bottom:623.734350px;}
.y128{bottom:624.433650px;}
.y10b{bottom:625.546950px;}
.y2cc{bottom:626.624850px;}
.y289{bottom:627.711600px;}
.y9b{bottom:630.237600px;}
.y225{bottom:630.461850px;}
.y2d{bottom:630.661500px;}
.ybf{bottom:630.762750px;}
.y19c{bottom:631.530450px;}
.y1e1{bottom:632.058000px;}
.y14c{bottom:636.068100px;}
.y2a9{bottom:636.232350px;}
.y74{bottom:637.189350px;}
.y2e8{bottom:639.189750px;}
.y1bb{bottom:639.414000px;}
.y127{bottom:642.429150px;}
.y202{bottom:643.807050px;}
.y171{bottom:645.193350px;}
.y2cb{bottom:646.879350px;}
.y10a{bottom:648.271950px;}
.y288{bottom:649.714350px;}
.y9a{bottom:651.196350px;}
.y2c{bottom:651.396000px;}
.y224{bottom:651.403350px;}
.y19b{bottom:652.454700px;}
.y1e0{bottom:652.878750px;}
.ya{bottom:654.678450px;}
.y53{bottom:654.922350px;}
.y14b{bottom:656.578350px;}
.y245{bottom:657.037950px;}
.y73{bottom:657.613350px;}
.y2e7{bottom:658.689750px;}
.y1ba{bottom:659.665500px;}
.y2a8{bottom:665.180850px;}
.y170{bottom:666.652350px;}
.y2ca{bottom:667.133850px;}
.y201{bottom:668.876550px;}
.y126{bottom:669.204750px;}
.y109{bottom:670.996950px;}
.y287{bottom:671.717100px;}
.y2b{bottom:672.130500px;}
.y99{bottom:672.155100px;}
.y223{bottom:672.344850px;}
.y1df{bottom:673.699500px;}
.y52{bottom:675.570600px;}
.y14a{bottom:677.088600px;}
.y72{bottom:678.037350px;}
.y2e6{bottom:678.189750px;}
.y1b9{bottom:679.917000px;}
.y2a7{bottom:685.624350px;}
.y9{bottom:686.268450px;}
.y2c9{bottom:687.388350px;}
.y16f{bottom:688.111350px;}
.y269{bottom:691.216350px;}
.y2a{bottom:692.865000px;}
.y98{bottom:693.113850px;}
.y222{bottom:693.286350px;}
.ybe{bottom:693.631350px;}
.y108{bottom:693.721950px;}
.y1de{bottom:694.520250px;}
.y51{bottom:696.218850px;}
.y149{bottom:697.598850px;}
.y2e5{bottom:697.689750px;}
.y71{bottom:698.461350px;}
.y1b8{bottom:700.168500px;}
.y19a{bottom:701.400750px;}
.y286{bottom:702.209100px;}
.y16e{bottom:709.570350px;}
.y125{bottom:710.374200px;}
.y268{bottom:712.364850px;}
.y29{bottom:713.599500px;}
.y97{bottom:714.072600px;}
.y221{bottom:714.227850px;}
.ybd{bottom:714.538350px;}
.y2a6{bottom:714.572850px;}
.y1dd{bottom:715.341000px;}
.y2c8{bottom:716.147850px;}
.y107{bottom:716.446950px;}
.y50{bottom:716.867100px;}
.y2e4{bottom:717.189750px;}
.y8{bottom:717.858450px;}
.y148{bottom:718.109100px;}
.y70{bottom:718.885350px;}
.y244{bottom:719.351100px;}
.y199{bottom:719.400750px;}
.y1b7{bottom:720.420000px;}
.y285{bottom:724.211850px;}
.y16d{bottom:731.029350px;}
.y124{bottom:731.039700px;}
.y200{bottom:732.271350px;}
.y267{bottom:733.513350px;}
.y28{bottom:734.334000px;}
.y96{bottom:735.031350px;}
.y220{bottom:735.169350px;}
.ybc{bottom:735.445350px;}
.y1dc{bottom:736.161750px;}
.y2c7{bottom:736.402350px;}
.y2e3{bottom:736.689750px;}
.y198{bottom:737.400750px;}
.y4f{bottom:737.515350px;}
.y147{bottom:738.619350px;}
.y106{bottom:739.171950px;}
.y6f{bottom:739.309350px;}
.y243{bottom:739.723350px;}
.y1b6{bottom:740.689350px;}
.y2a5{bottom:743.521350px;}
.y7{bottom:749.448450px;}
.y123{bottom:751.705200px;}
.y16c{bottom:752.488350px;}
.y1ff{bottom:753.575100px;}
.y266{bottom:754.661850px;}
.y284{bottom:754.703850px;}
.y27{bottom:755.068500px;}
.y95{bottom:755.990100px;}
.y21f{bottom:756.110850px;}
.y2e2{bottom:756.189750px;}
.ybb{bottom:756.352350px;}
.y2c6{bottom:756.656850px;}
.y1db{bottom:756.982500px;}
.y4e{bottom:758.163600px;}
.y146{bottom:759.129600px;}
.y6e{bottom:759.733350px;}
.y242{bottom:760.095600px;}
.y197{bottom:760.125750px;}
.y1b5{bottom:760.940850px;}
.y105{bottom:761.896950px;}
.y2a4{bottom:763.980600px;}
.y122{bottom:772.370700px;}
.y16b{bottom:773.947350px;}
.y1fe{bottom:774.878850px;}
.y26{bottom:775.779750px;}
.y265{bottom:775.810350px;}
.y283{bottom:776.706600px;}
.y94{bottom:776.948850px;}
.y21e{bottom:777.052350px;}
.yba{bottom:777.259350px;}
.y1da{bottom:777.776850px;}
.y196{bottom:778.125750px;}
.y4d{bottom:778.811850px;}
.y145{bottom:779.639850px;}
.y6d{bottom:780.157350px;}
.y241{bottom:780.467850px;}
.y1b4{bottom:781.192350px;}
.yf7{bottom:784.668900px;}
.y104{bottom:784.709400px;}
.y2c5{bottom:785.416350px;}
.y2e1{bottom:788.439750px;}
.y2a3{bottom:792.929100px;}
.y121{bottom:793.036200px;}
.yf1{bottom:793.646400px;}
.yfe{bottom:793.686900px;}
.y16a{bottom:795.406350px;}
.y195{bottom:796.125750px;}
.y1fd{bottom:796.182600px;}
.y25{bottom:796.514250px;}
.y264{bottom:796.958850px;}
.y93{bottom:797.907600px;}
.y21d{bottom:797.993850px;}
.yb9{bottom:798.166350px;}
.y1d9{bottom:798.597600px;}
.y4c{bottom:799.460100px;}
.y144{bottom:800.150100px;}
.y6c{bottom:800.581350px;}
.y240{bottom:800.840100px;}
.ydb{bottom:801.443850px;}
.y6{bottom:802.322400px;}
.yf6{bottom:802.664400px;}
.y103{bottom:802.704900px;}
.y2c4{bottom:805.670850px;}
.y282{bottom:807.198600px;}
.yf0{bottom:811.641900px;}
.yfd{bottom:811.682400px;}
.y2a2{bottom:813.388350px;}
.y120{bottom:813.701700px;}
.y169{bottom:816.865350px;}
.y24{bottom:817.248750px;}
.y1fc{bottom:817.486350px;}
.y263{bottom:818.107350px;}
.y18b{bottom:818.861700px;}
.y92{bottom:818.866350px;}
.y18e{bottom:818.875200px;}
.y191{bottom:818.888700px;}
.y194{bottom:818.902200px;}
.y21c{bottom:818.935350px;}
.yb8{bottom:819.073350px;}
.y1d8{bottom:819.418350px;}
.y4b{bottom:820.108350px;}
.yec{bottom:820.632900px;}
.yf5{bottom:820.659900px;}
.y143{bottom:820.660350px;}
.yf9{bottom:820.673400px;}
.y102{bottom:820.700400px;}
.y6b{bottom:821.005350px;}
.y23f{bottom:821.212350px;}
.yda{bottom:821.695350px;}
.y281{bottom:829.201350px;}
.yef{bottom:829.637400px;}
.yfc{bottom:829.677900px;}
.y5{bottom:831.917400px;}
.y2a1{bottom:833.831850px;}
.y11f{bottom:834.367200px;}
.y2c3{bottom:834.430350px;}
.y189{bottom:836.857200px;}
.y18d{bottom:836.870700px;}
.y190{bottom:836.884200px;}
.y193{bottom:836.897700px;}
.y23{bottom:837.983250px;}
.y168{bottom:838.324350px;}
.yeb{bottom:838.628400px;}
.yf4{bottom:838.655400px;}
.yf8{bottom:838.668900px;}
.y101{bottom:838.695900px;}
.y1fb{bottom:838.790100px;}
.y262{bottom:839.255850px;}
.y91{bottom:839.825100px;}
.y21b{bottom:839.876850px;}
.yb7{bottom:839.980350px;}
.y1d7{bottom:840.239100px;}
.y4a{bottom:840.756600px;}
.y142{bottom:841.170600px;}
.y6a{bottom:841.429350px;}
.y23e{bottom:841.584600px;}
.yd9{bottom:841.946850px;}
.y2e0{bottom:846.195450px;}
.yee{bottom:847.632900px;}
.yfb{bottom:847.673400px;}
.y280{bottom:851.204100px;}
.y2c2{bottom:854.684850px;}
.y18a{bottom:854.852700px;}
.y18c{bottom:854.866200px;}
.y18f{bottom:854.879700px;}
.y192{bottom:854.893200px;}
.yf3{bottom:856.650900px;}
.y100{bottom:856.691400px;}
.y22{bottom:858.717750px;}
.y167{bottom:859.783350px;}
.y1fa{bottom:860.093850px;}
.y261{bottom:860.404350px;}
.y90{bottom:860.783850px;}
.y21a{bottom:860.818350px;}
.yb6{bottom:860.887350px;}
.y1d6{bottom:861.059850px;}
.y49{bottom:861.404850px;}
.y4{bottom:861.512400px;}
.y141{bottom:861.680850px;}
.y69{bottom:861.853350px;}
.y23d{bottom:861.956850px;}
.yd8{bottom:862.198350px;}
.y2a0{bottom:862.780350px;}
.yed{bottom:865.628400px;}
.yfa{bottom:865.668900px;}
.y2df{bottom:873.201450px;}
.yf2{bottom:874.646400px;}
.yff{bottom:874.686900px;}
.y11e{bottom:876.284700px;}
.y166{bottom:881.242350px;}
.y1f9{bottom:881.397600px;}
.y260{bottom:881.552850px;}
.y27f{bottom:881.696100px;}
.y8f{bottom:881.742600px;}
.y219{bottom:881.759850px;}
.yb5{bottom:881.794350px;}
.y1d5{bottom:881.880600px;}
.y48{bottom:882.053100px;}
.y140{bottom:882.191100px;}
.y68{bottom:882.277350px;}
.y23c{bottom:882.329100px;}
.yd7{bottom:882.449850px;}
.y3{bottom:882.602400px;}
.y29f{bottom:883.239600px;}
.y2c1{bottom:883.444350px;}
.y188{bottom:884.022750px;}
.y2de{bottom:900.207450px;}
.y21{bottom:900.706200px;}
.y47{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.yea{bottom:904.197750px;}
.y20{bottom:948.189000px;}
.y1f{bottom:966.189000px;}
.h7{height:33.870539px;}
.hf{height:34.714289px;}
.he{height:40.757812px;}
.h13{height:42.292969px;}
.h8{height:45.852539px;}
.h18{height:46.696289px;}
.h4{height:50.947266px;}
.h1c{height:51.884766px;}
.h3{height:53.494629px;}
.hc{height:54.041016px;}
.h1b{height:54.479004px;}
.ha{height:58.589355px;}
.h12{height:58.601355px;}
.hb{height:58.682355px;}
.h15{height:58.754355px;}
.h11{height:58.936755px;}
.hd{height:59.102955px;}
.h10{height:59.667480px;}
.h17{height:59.674080px;}
.h14{height:59.761680px;}
.h19{height:59.773080px;}
.h1a{height:63.439453px;}
.h2{height:63.684082px;}
.h9{height:68.778809px;}
.h6{height:71.326172px;}
.h16{height:81.870539px;}
.h5{height:91.705078px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x53{left:81.421650px;}
.x9{left:82.464900px;}
.x1{left:83.686650px;}
.x6{left:85.155600px;}
.x28{left:88.533600px;}
.x29{left:89.718600px;}
.x44{left:93.583500px;}
.xc{left:95.374800px;}
.xd{left:101.179800px;}
.xb{left:102.438150px;}
.x8{left:103.724850px;}
.x7{left:105.029250px;}
.x5{left:106.365600px;}
.x21{left:109.240350px;}
.xe{left:133.606800px;}
.xf{left:144.312300px;}
.x3a{left:191.397450px;}
.x13{left:209.341800px;}
.x2a{left:211.368600px;}
.xa{left:212.663850px;}
.x10{left:214.107300px;}
.x32{left:215.133600px;}
.x12{left:217.981800px;}
.x11{left:219.763800px;}
.x31{left:225.918600px;}
.x46{left:228.222450px;}
.x4{left:229.787400px;}
.x3{left:232.218000px;}
.x2{left:233.345250px;}
.x45{left:242.757450px;}
.x4e{left:246.747450px;}
.x23{left:283.041900px;}
.x22{left:289.143900px;}
.x16{left:292.528800px;}
.x2c{left:293.583600px;}
.x14{left:296.781300px;}
.x15{left:299.737800px;}
.x33{left:307.788600px;}
.x3c{left:309.205050px;}
.x2b{left:311.808600px;}
.x3b{left:314.105550px;}
.x48{left:322.272450px;}
.x47{left:336.147450px;}
.x4f{left:341.172450px;}
.x24{left:370.089900px;}
.x2d{left:382.878600px;}
.x38{left:388.578600px;}
.x25{left:391.973400px;}
.x34{left:393.498600px;}
.x17{left:397.504800px;}
.x37{left:401.193600px;}
.x18{left:406.387800px;}
.x3d{left:410.117550px;}
.x3f{left:411.967050px;}
.x3e{left:416.867550px;}
.x50{left:425.007450px;}
.x4a{left:430.752450px;}
.x49{left:438.612450px;}
.x26{left:472.757400px;}
.x1c{left:474.940800px;}
.x19{left:479.719800px;}
.x1b{left:483.580800px;}
.x1a{left:489.075300px;}
.x27{left:494.735400px;}
.x35{left:499.428600px;}
.x2e{left:503.118600px;}
.x39{left:504.453600px;}
.x42{left:510.814050px;}
.x40{left:513.149550px;}
.x41{left:516.578550px;}
.x4b{left:530.217450px;}
.x51{left:534.282450px;}
.x1f{left:552.390300px;}
.x20{left:555.211800px;}
.x1d{left:556.642800px;}
.x1e{left:559.599300px;}
.x30{left:578.133600px;}
.x4d{left:581.997450px;}
.x36{left:587.058600px;}
.x43{left:588.331050px;}
.x2f{left:590.703600px;}
.x52{left:593.712450px;}
.x4c{left:595.332450px;}
@media print{
.v8{vertical-align:-15.090667pt;}
.v3{vertical-align:-10.650667pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:12.426667pt;}
.v6{vertical-align:14.242133pt;}
.v4{vertical-align:15.173867pt;}
.v2{vertical-align:19.484267pt;}
.v1{vertical-align:26.565333pt;}
.v5{vertical-align:32.016000pt;}
.ls2a{letter-spacing:-7.176000pt;}
.lsb{letter-spacing:-6.552000pt;}
.ls26{letter-spacing:-5.472000pt;}
.ls1e{letter-spacing:-5.274667pt;}
.ls23{letter-spacing:-4.538667pt;}
.ls1b{letter-spacing:-4.109333pt;}
.ls29{letter-spacing:-3.802667pt;}
.ls31{letter-spacing:-3.312000pt;}
.ls22{letter-spacing:-3.005333pt;}
.ls28{letter-spacing:-2.514667pt;}
.ls21{letter-spacing:-2.453333pt;}
.ls17{letter-spacing:-2.400000pt;}
.ls45{letter-spacing:-2.240000pt;}
.ls37{letter-spacing:-2.024000pt;}
.ls7{letter-spacing:-1.920000pt;}
.ls1a{letter-spacing:-1.901333pt;}
.ls14{letter-spacing:-1.872000pt;}
.ls1c{letter-spacing:-1.778667pt;}
.ls46{letter-spacing:-1.760000pt;}
.lsf{letter-spacing:-1.717333pt;}
.ls35{letter-spacing:-1.594667pt;}
.ls20{letter-spacing:-1.533333pt;}
.ls40{letter-spacing:-1.469160pt;}
.ls2d{letter-spacing:-1.410667pt;}
.ls1f{letter-spacing:-1.349333pt;}
.ls34{letter-spacing:-1.226667pt;}
.ls2e{letter-spacing:-1.165333pt;}
.ls2b{letter-spacing:-1.104000pt;}
.ls13{letter-spacing:-1.056000pt;}
.ls32{letter-spacing:-0.920000pt;}
.ls33{letter-spacing:-0.797333pt;}
.lse{letter-spacing:-0.760000pt;}
.ls3b{letter-spacing:-0.720000pt;}
.ls36{letter-spacing:-0.613333pt;}
.ls19{letter-spacing:-0.557333pt;}
.ls30{letter-spacing:-0.506667pt;}
.ls1d{letter-spacing:-0.490667pt;}
.ls44{letter-spacing:-0.373333pt;}
.ls6{letter-spacing:-0.213333pt;}
.ls25{letter-spacing:-0.152000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.000267pt;}
.ls43{letter-spacing:0.112000pt;}
.lsc{letter-spacing:0.192000pt;}
.lsa{letter-spacing:0.240000pt;}
.ls18{letter-spacing:0.368000pt;}
.ls15{letter-spacing:0.576000pt;}
.ls16{letter-spacing:0.640000pt;}
.ls42{letter-spacing:0.728000pt;}
.ls3c{letter-spacing:1.296000pt;}
.lsd{letter-spacing:2.133333pt;}
.ls2f{letter-spacing:2.434933pt;}
.ls24{letter-spacing:2.933333pt;}
.ls3d{letter-spacing:3.012800pt;}
.ls3{letter-spacing:3.200000pt;}
.ls39{letter-spacing:3.508267pt;}
.ls12{letter-spacing:3.666667pt;}
.ls0{letter-spacing:3.733333pt;}
.ls8{letter-spacing:5.120000pt;}
.ls9{letter-spacing:5.226667pt;}
.ls2{letter-spacing:5.333333pt;}
.ls3f{letter-spacing:5.600000pt;}
.ls3a{letter-spacing:6.400000pt;}
.ls5{letter-spacing:6.453333pt;}
.ls41{letter-spacing:6.693333pt;}
.ls11{letter-spacing:7.253472pt;}
.ls27{letter-spacing:7.254005pt;}
.ls1{letter-spacing:7.266667pt;}
.ls2c{letter-spacing:7.544000pt;}
.ls3e{letter-spacing:7.840000pt;}
.ls38{letter-spacing:8.096000pt;}
.ws0{word-spacing:-26.000000pt;}
.ws4f{word-spacing:-25.426667pt;}
.ws46{word-spacing:-25.133333pt;}
.ws4a{word-spacing:-23.576000pt;}
.ws15{word-spacing:-22.400000pt;}
.ws2a{word-spacing:-21.666667pt;}
.ws49{word-spacing:-21.528000pt;}
.ws52{word-spacing:-20.608000pt;}
.ws53{word-spacing:-20.320000pt;}
.ws2{word-spacing:-20.213333pt;}
.ws1{word-spacing:-20.106667pt;}
.ws47{word-spacing:-19.512000pt;}
.wsc{word-spacing:-17.234667pt;}
.ws36{word-spacing:-16.920000pt;}
.ws51{word-spacing:-16.464000pt;}
.ws50{word-spacing:-15.848000pt;}
.ws4d{word-spacing:-15.736000pt;}
.ws12{word-spacing:-15.149333pt;}
.ws2d{word-spacing:-14.986667pt;}
.ws2b{word-spacing:-14.760000pt;}
.ws37{word-spacing:-14.352000pt;}
.ws38{word-spacing:-14.229333pt;}
.ws39{word-spacing:-13.922667pt;}
.ws4b{word-spacing:-13.832000pt;}
.ws25{word-spacing:-13.800000pt;}
.ws33{word-spacing:-13.738667pt;}
.wse{word-spacing:-13.728000pt;}
.wsa{word-spacing:-13.680000pt;}
.ws26{word-spacing:-13.616000pt;}
.wsd{word-spacing:-13.488000pt;}
.ws13{word-spacing:-13.432000pt;}
.ws20{word-spacing:-13.370667pt;}
.ws1f{word-spacing:-13.248000pt;}
.ws55{word-spacing:-13.173333pt;}
.ws3f{word-spacing:-13.125333pt;}
.ws27{word-spacing:-12.696000pt;}
.ws2e{word-spacing:-12.634667pt;}
.ws28{word-spacing:-12.144000pt;}
.wsf{word-spacing:-11.856000pt;}
.ws18{word-spacing:-11.616000pt;}
.ws54{word-spacing:-11.413333pt;}
.ws16{word-spacing:-10.800000pt;}
.ws30{word-spacing:-10.752000pt;}
.ws29{word-spacing:-10.610667pt;}
.wsb{word-spacing:-10.047811pt;}
.ws21{word-spacing:-9.874667pt;}
.ws2f{word-spacing:-7.973333pt;}
.ws34{word-spacing:-7.544000pt;}
.ws4c{word-spacing:-6.594896pt;}
.ws6{word-spacing:-6.453333pt;}
.ws4e{word-spacing:-5.600000pt;}
.ws3{word-spacing:-5.333333pt;}
.ws9{word-spacing:-3.733333pt;}
.ws4{word-spacing:-3.200000pt;}
.ws10{word-spacing:-2.133333pt;}
.ws48{word-spacing:-1.778667pt;}
.ws42{word-spacing:-1.594667pt;}
.ws14{word-spacing:-1.104000pt;}
.ws40{word-spacing:-1.042667pt;}
.ws1c{word-spacing:-0.576000pt;}
.ws1d{word-spacing:-0.368000pt;}
.ws3d{word-spacing:-0.184000pt;}
.ws5{word-spacing:0.000000pt;}
.ws2c{word-spacing:0.152000pt;}
.ws7{word-spacing:0.213333pt;}
.ws3e{word-spacing:0.306667pt;}
.ws24{word-spacing:0.490667pt;}
.ws3a{word-spacing:0.506667pt;}
.ws22{word-spacing:0.557333pt;}
.ws44{word-spacing:0.613333pt;}
.ws11{word-spacing:0.760000pt;}
.ws3b{word-spacing:0.920000pt;}
.ws35{word-spacing:1.165333pt;}
.ws41{word-spacing:1.594667pt;}
.ws31{word-spacing:1.778667pt;}
.ws8{word-spacing:1.920000pt;}
.ws45{word-spacing:2.024000pt;}
.ws56{word-spacing:2.240000pt;}
.ws3c{word-spacing:3.496000pt;}
.ws32{word-spacing:3.802667pt;}
.ws43{word-spacing:4.048000pt;}
.ws23{word-spacing:4.109333pt;}
.ws17{word-spacing:8.402667pt;}
.ws1a{word-spacing:28.426667pt;}
.ws1e{word-spacing:187.204800pt;}
.ws19{word-spacing:235.290667pt;}
.ws1b{word-spacing:246.021333pt;}
._3a{margin-left:-16.590667pt;}
._4b{margin-left:-12.917067pt;}
._4a{margin-left:-11.681600pt;}
._a{margin-left:-8.590400pt;}
._c{margin-left:-7.299467pt;}
._9{margin-left:-6.378933pt;}
._8{margin-left:-4.693067pt;}
._5{margin-left:-3.790667pt;}
._4{margin-left:-2.458400pt;}
._6{margin-left:-1.114667pt;}
._1{width:0.938667pt;}
._3{width:1.872000pt;}
._7{width:2.773067pt;}
._b{width:3.969600pt;}
._2{width:5.616000pt;}
._15{width:6.875467pt;}
._13{width:8.510400pt;}
._16{width:9.632000pt;}
._1b{width:10.786667pt;}
._14{width:12.021333pt;}
._1c{width:13.324267pt;}
._19{width:14.668000pt;}
._3e{width:15.628267pt;}
._10{width:17.298768pt;}
._42{width:20.246133pt;}
._17{width:21.355200pt;}
._3f{width:22.774133pt;}
._47{width:23.691360pt;}
._1e{width:24.625920pt;}
._41{width:25.715360pt;}
._44{width:27.322400pt;}
._45{width:29.042400pt;}
._46{width:30.477067pt;}
._43{width:32.730400pt;}
._f{width:38.617920pt;}
._32{width:40.533333pt;}
._48{width:41.532000pt;}
._20{width:43.413333pt;}
._3b{width:47.555200pt;}
._49{width:65.494400pt;}
._d{width:76.048000pt;}
._23{width:123.253333pt;}
._26{width:125.653333pt;}
._2c{width:126.720000pt;}
._30{width:132.021333pt;}
._27{width:155.008000pt;}
._34{width:174.714667pt;}
._21{width:183.040000pt;}
._38{width:186.506667pt;}
._33{width:187.461333pt;}
._25{width:189.973333pt;}
._2e{width:191.680000pt;}
._2a{width:196.266667pt;}
._28{width:206.720000pt;}
._35{width:207.738667pt;}
._22{width:208.693333pt;}
._2b{width:210.080000pt;}
._36{width:229.866667pt;}
._e{width:231.653333pt;}
._37{width:237.707147pt;}
._31{width:238.613333pt;}
._2f{width:246.400000pt;}
._2d{width:249.173333pt;}
._24{width:253.034667pt;}
._29{width:260.320000pt;}
._0{width:397.166400pt;}
._3d{width:398.827733pt;}
._40{width:399.733333pt;}
._1d{width:403.963733pt;}
._3c{width:405.160267pt;}
._39{width:406.163733pt;}
._11{width:514.133333pt;}
._1a{width:849.782400pt;}
._12{width:852.555733pt;}
._18{width:856.155733pt;}
._1f{width:857.915733pt;}
.fs9{font-size:27.984000pt;}
.fsf{font-size:31.093333pt;}
.fs10{font-size:32.648000pt;}
.fsd{font-size:35.757333pt;}
.fs8{font-size:37.333333pt;}
.fs2{font-size:42.666667pt;}
.fs7{font-size:43.530667pt;}
.fsa{font-size:48.000000pt;}
.fse{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs5{font-size:55.968000pt;}
.fs3{font-size:56.000000pt;}
.fsc{font-size:61.333333pt;}
.fs0{font-size:66.666667pt;}
.fsb{font-size:72.000000pt;}
.fs6{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y25f{bottom:94.317600pt;}
.y8e{bottom:94.369200pt;}
.y27e{bottom:94.415867pt;}
.y29e{bottom:94.425867pt;}
.y187{bottom:94.427733pt;}
.y2c0{bottom:94.453867pt;}
.yb4{bottom:94.461200pt;}
.y165{bottom:94.480267pt;}
.y46{bottom:94.482933pt;}
.y1e{bottom:94.485600pt;}
.yd6{bottom:94.485733pt;}
.y23b{bottom:94.553733pt;}
.y1d4{bottom:97.150933pt;}
.y13f{bottom:97.151067pt;}
.y164{bottom:109.816267pt;}
.y45{bottom:109.818933pt;}
.y25e{bottom:112.426267pt;}
.y1d{bottom:112.484267pt;}
.yd5{bottom:112.484400pt;}
.y8d{bottom:112.523867pt;}
.y2bf{bottom:112.639867pt;}
.yb3{bottom:113.091200pt;}
.y23a{bottom:113.168400pt;}
.y27d{bottom:113.217867pt;}
.y186{bottom:113.502400pt;}
.y1b3{bottom:113.598667pt;}
.y29d{bottom:113.983867pt;}
.y218{bottom:116.263733pt;}
.y163{bottom:125.152267pt;}
.y44{bottom:127.817600pt;}
.y1c{bottom:128.931733pt;}
.ye9{bottom:128.932000pt;}
.y25d{bottom:130.534933pt;}
.y8c{bottom:130.678533pt;}
.y2be{bottom:130.825867pt;}
.y1b2{bottom:131.597333pt;}
.yb2{bottom:131.721200pt;}
.y239{bottom:131.783067pt;}
.y185{bottom:132.577067pt;}
.y29c{bottom:133.541867pt;}
.y217{bottom:135.376667pt;}
.y1f8{bottom:136.160667pt;}
.y13e{bottom:136.273067pt;}
.y1d3{bottom:136.336000pt;}
.y27c{bottom:139.579867pt;}
.y162{bottom:143.150933pt;}
.y43{bottom:144.257067pt;}
.y67{bottom:144.259733pt;}
.y1b{bottom:146.930400pt;}
.ye8{bottom:146.930667pt;}
.y25c{bottom:148.643600pt;}
.y8b{bottom:148.833200pt;}
.yb1{bottom:150.351200pt;}
.y238{bottom:150.397733pt;}
.yd4{bottom:151.598133pt;}
.y184{bottom:151.651733pt;}
.y1d2{bottom:154.337333pt;}
.y13d{bottom:154.642400pt;}
.y1f7{bottom:154.668000pt;}
.y2bd{bottom:156.557867pt;}
.y27b{bottom:158.381867pt;}
.y42{bottom:159.593067pt;}
.y66{bottom:159.595733pt;}
.y29b{bottom:160.645867pt;}
.ye7{bottom:163.378400pt;}
.y25b{bottom:166.752267pt;}
.y8a{bottom:166.987867pt;}
.yb0{bottom:168.981200pt;}
.y237{bottom:169.012400pt;}
.yd3{bottom:170.182133pt;}
.y183{bottom:170.726400pt;}
.y1b1{bottom:170.749600pt;}
.y1d1{bottom:172.338667pt;}
.y13c{bottom:173.011733pt;}
.y1f6{bottom:173.175333pt;}
.y216{bottom:174.561867pt;}
.y2bc{bottom:174.743867pt;}
.y41{bottom:174.929067pt;}
.y65{bottom:174.931733pt;}
.y27a{bottom:177.183867pt;}
.y29a{bottom:180.203867pt;}
.ye6{bottom:181.377067pt;}
.y161{bottom:182.323733pt;}
.y25a{bottom:184.860933pt;}
.y89{bottom:185.142533pt;}
.y11d{bottom:186.042400pt;}
.y1a{bottom:186.057733pt;}
.yaf{bottom:187.611200pt;}
.y236{bottom:187.627067pt;}
.yd2{bottom:188.766133pt;}
.y1b0{bottom:189.348933pt;}
.y182{bottom:189.801067pt;}
.y40{bottom:190.265067pt;}
.y1d0{bottom:190.340000pt;}
.y13b{bottom:191.381067pt;}
.y1f5{bottom:191.682667pt;}
.y2bb{bottom:192.929867pt;}
.y64{bottom:192.930400pt;}
.y215{bottom:193.498533pt;}
.y2dd{bottom:198.011867pt;}
.y299{bottom:199.761867pt;}
.y160{bottom:200.555067pt;}
.y259{bottom:202.969600pt;}
.y88{bottom:203.297200pt;}
.y279{bottom:203.545867pt;}
.y19{bottom:204.827067pt;}
.y11c{bottom:205.009733pt;}
.yae{bottom:206.241200pt;}
.y235{bottom:206.241733pt;}
.yd1{bottom:207.272933pt;}
.y1af{bottom:207.948267pt;}
.y3f{bottom:208.263733pt;}
.y1cf{bottom:208.341333pt;}
.y181{bottom:208.875733pt;}
.y13a{bottom:209.750400pt;}
.y1f4{bottom:210.190000pt;}
.y214{bottom:212.435200pt;}
.y2dc{bottom:216.015867pt;}
.y2ba{bottom:218.661867pt;}
.y15f{bottom:218.786400pt;}
.y258{bottom:221.078267pt;}
.y87{bottom:221.451867pt;}
.y2fa{bottom:221.942000pt;}
.y18{bottom:222.240400pt;}
.y278{bottom:222.347867pt;}
.y11b{bottom:223.977067pt;}
.y234{bottom:224.856400pt;}
.yad{bottom:224.871200pt;}
.yd0{bottom:225.856933pt;}
.y1ce{bottom:226.342667pt;}
.ye5{bottom:226.393200pt;}
.y1ae{bottom:226.547600pt;}
.y298{bottom:226.865867pt;}
.y180{bottom:227.950400pt;}
.y139{bottom:228.119733pt;}
.y1f3{bottom:228.697333pt;}
.y213{bottom:231.371867pt;}
.y63{bottom:232.104000pt;}
.y2db{bottom:234.019867pt;}
.y2b9{bottom:236.847867pt;}
.y15e{bottom:237.017733pt;}
.y257{bottom:239.186933pt;}
.y86{bottom:239.606533pt;}
.y17{bottom:239.653733pt;}
.y2f9{bottom:239.942000pt;}
.y277{bottom:241.149867pt;}
.y11a{bottom:242.907733pt;}
.y233{bottom:243.471067pt;}
.yac{bottom:243.501200pt;}
.y1cd{bottom:244.344000pt;}
.ye4{bottom:244.394533pt;}
.ycf{bottom:244.440933pt;}
.y1ad{bottom:245.146933pt;}
.y297{bottom:246.423867pt;}
.y138{bottom:246.489067pt;}
.y17f{bottom:247.025067pt;}
.y1f2{bottom:247.204667pt;}
.y3e{bottom:247.380800pt;}
.y212{bottom:250.308533pt;}
.y62{bottom:250.458000pt;}
.y2da{bottom:252.023867pt;}
.y2b8{bottom:255.033867pt;}
.y15d{bottom:255.249067pt;}
.y16{bottom:257.067067pt;}
.y256{bottom:257.295600pt;}
.y85{bottom:257.761200pt;}
.y2f8{bottom:257.942000pt;}
.y119{bottom:261.875067pt;}
.y232{bottom:262.085733pt;}
.yab{bottom:262.131200pt;}
.y1cc{bottom:262.345333pt;}
.ye3{bottom:262.395867pt;}
.yce{bottom:263.024933pt;}
.y1ac{bottom:263.746267pt;}
.y137{bottom:264.856933pt;}
.y1f1{bottom:265.712000pt;}
.y3d{bottom:265.811467pt;}
.y296{bottom:265.981867pt;}
.y17e{bottom:266.099733pt;}
.y276{bottom:267.511867pt;}
.y61{bottom:268.812000pt;}
.y211{bottom:269.245200pt;}
.y15c{bottom:273.480400pt;}
.y15{bottom:274.480400pt;}
.y255{bottom:275.404267pt;}
.y84{bottom:275.915867pt;}
.y2f7{bottom:275.942000pt;}
.y2d9{bottom:277.587867pt;}
.y1cb{bottom:280.346667pt;}
.ye2{bottom:280.397200pt;}
.y231{bottom:280.700400pt;}
.yaa{bottom:280.761200pt;}
.y2b7{bottom:280.765867pt;}
.y118{bottom:280.842400pt;}
.ycd{bottom:281.608933pt;}
.y1ab{bottom:282.345600pt;}
.y136{bottom:283.226267pt;}
.y3c{bottom:284.128000pt;}
.y1f0{bottom:284.219333pt;}
.y17d{bottom:285.174400pt;}
.y275{bottom:286.313867pt;}
.y60{bottom:287.166000pt;}
.y210{bottom:288.181867pt;}
.y15b{bottom:291.923867pt;}
.y295{bottom:293.085867pt;}
.y254{bottom:293.512933pt;}
.y2f6{bottom:293.942000pt;}
.y83{bottom:294.070533pt;}
.y1ca{bottom:298.348000pt;}
.ye1{bottom:298.398533pt;}
.y2b6{bottom:298.951867pt;}
.y230{bottom:299.315067pt;}
.ya9{bottom:299.391200pt;}
.y117{bottom:299.809733pt;}
.ycc{bottom:300.192933pt;}
.y1aa{bottom:300.944933pt;}
.y135{bottom:301.595600pt;}
.y3b{bottom:302.558667pt;}
.y1ef{bottom:302.726667pt;}
.y2d8{bottom:303.151867pt;}
.y14{bottom:303.240400pt;}
.y5f{bottom:305.520000pt;}
.y20f{bottom:307.118533pt;}
.y15a{bottom:310.155200pt;}
.y253{bottom:311.621600pt;}
.y82{bottom:312.225200pt;}
.y294{bottom:312.643867pt;}
.y274{bottom:312.675867pt;}
.y1c9{bottom:316.349333pt;}
.ye0{bottom:316.399867pt;}
.y22f{bottom:317.929733pt;}
.ya8{bottom:318.021200pt;}
.ycb{bottom:318.776933pt;}
.y116{bottom:318.777067pt;}
.y1a9{bottom:319.544267pt;}
.y3a{bottom:320.989333pt;}
.y1ee{bottom:321.234000pt;}
.y17c{bottom:323.132667pt;}
.y2f5{bottom:323.275333pt;}
.y5e{bottom:323.874000pt;}
.y2b5{bottom:324.683867pt;}
.y20e{bottom:326.062533pt;}
.y159{bottom:328.386533pt;}
.y2d7{bottom:328.715867pt;}
.y252{bottom:329.730267pt;}
.y81{bottom:330.379867pt;}
.y273{bottom:331.477867pt;}
.y293{bottom:332.201867pt;}
.y1c8{bottom:334.350667pt;}
.ydf{bottom:334.398533pt;}
.y22e{bottom:336.544400pt;}
.ya7{bottom:336.651200pt;}
.yca{bottom:337.360933pt;}
.y115{bottom:337.744400pt;}
.y1a8{bottom:338.143600pt;}
.y39{bottom:339.420000pt;}
.y1ed{bottom:339.741333pt;}
.y5d{bottom:342.228000pt;}
.y2b4{bottom:342.869867pt;}
.y20d{bottom:345.006400pt;}
.y17b{bottom:345.542667pt;}
.y158{bottom:346.617867pt;}
.y2d6{bottom:346.719867pt;}
.y13{bottom:347.120400pt;}
.y251{bottom:347.838933pt;}
.y80{bottom:348.534533pt;}
.y272{bottom:350.279867pt;}
.y1c7{bottom:352.352000pt;}
.yde{bottom:352.399867pt;}
.y22d{bottom:355.159067pt;}
.ya6{bottom:355.281200pt;}
.yc9{bottom:355.944933pt;}
.y114{bottom:356.711733pt;}
.y1a7{bottom:356.742933pt;}
.y38{bottom:357.850667pt;}
.y1ec{bottom:358.248667pt;}
.y292{bottom:359.305867pt;}
.y2f4{bottom:360.168667pt;}
.y5c{bottom:360.608267pt;}
.y134{bottom:361.342000pt;}
.y20c{bottom:364.008133pt;}
.y157{bottom:364.849200pt;}
.y12{bottom:365.888000pt;}
.y250{bottom:365.947600pt;}
.y7f{bottom:366.689200pt;}
.y2b3{bottom:368.601867pt;}
.y1c6{bottom:370.353333pt;}
.ydd{bottom:370.401200pt;}
.y2d5{bottom:372.283867pt;}
.y22c{bottom:373.773733pt;}
.ya5{bottom:373.911200pt;}
.yc8{bottom:374.528933pt;}
.y1a6{bottom:375.367067pt;}
.y113{bottom:375.658133pt;}
.y37{bottom:376.281333pt;}
.y271{bottom:376.641867pt;}
.y1eb{bottom:376.756000pt;}
.y133{bottom:377.342000pt;}
.y2f3{bottom:377.502000pt;}
.y291{bottom:378.863867pt;}
.y5b{bottom:378.962267pt;}
.y20b{bottom:382.944800pt;}
.y156{bottom:383.080533pt;}
.y11{bottom:383.301333pt;}
.y24f{bottom:384.056267pt;}
.y7e{bottom:384.843867pt;}
.y2b2{bottom:386.787867pt;}
.y1c5{bottom:388.354667pt;}
.y2d4{bottom:390.287867pt;}
.ya4{bottom:392.541200pt;}
.yc7{bottom:393.112933pt;}
.y132{bottom:393.342000pt;}
.y1a5{bottom:393.966400pt;}
.y112{bottom:394.625467pt;}
.y36{bottom:394.712000pt;}
.y2f2{bottom:394.835333pt;}
.y1ea{bottom:395.263333pt;}
.y270{bottom:395.443867pt;}
.y5a{bottom:397.316267pt;}
.y290{bottom:398.421867pt;}
.y10{bottom:400.714667pt;}
.y155{bottom:401.311867pt;}
.y17a{bottom:401.833200pt;}
.y20a{bottom:401.881467pt;}
.y24e{bottom:402.164933pt;}
.y7d{bottom:402.998533pt;}
.y2b1{bottom:404.973867pt;}
.y1c4{bottom:406.356000pt;}
.ydc{bottom:406.401200pt;}
.y2d3{bottom:408.291867pt;}
.y131{bottom:409.768667pt;}
.ya3{bottom:411.171200pt;}
.y22b{bottom:411.290400pt;}
.yc6{bottom:411.696933pt;}
.y2f1{bottom:412.168667pt;}
.y1a4{bottom:412.565733pt;}
.y35{bottom:413.142667pt;}
.y111{bottom:413.592800pt;}
.y1e9{bottom:413.770667pt;}
.y26f{bottom:414.220533pt;}
.y59{bottom:415.670267pt;}
.yf{bottom:418.128000pt;}
.y154{bottom:419.543200pt;}
.y24d{bottom:420.273600pt;}
.y209{bottom:420.818133pt;}
.y179{bottom:420.907867pt;}
.y7c{bottom:421.153200pt;}
.y1c3{bottom:424.357333pt;}
.y28f{bottom:425.525867pt;}
.y130{bottom:425.768667pt;}
.y2f0{bottom:429.502000pt;}
.ya2{bottom:429.801200pt;}
.yc5{bottom:430.280933pt;}
.y2b0{bottom:430.705867pt;}
.y1a3{bottom:431.165067pt;}
.y34{bottom:431.573333pt;}
.y1e8{bottom:432.278000pt;}
.y110{bottom:432.560133pt;}
.y2d2{bottom:433.855867pt;}
.y58{bottom:434.044133pt;}
.y153{bottom:437.774533pt;}
.y24c{bottom:438.382267pt;}
.y7b{bottom:439.307867pt;}
.y208{bottom:439.754800pt;}
.y178{bottom:439.982533pt;}
.y26e{bottom:440.582533pt;}
.y12f{bottom:441.768667pt;}
.y1c2{bottom:442.358667pt;}
.y28e{bottom:445.083867pt;}
.y2ef{bottom:446.835333pt;}
.ye{bottom:446.888000pt;}
.ya1{bottom:448.431200pt;}
.yc4{bottom:448.864933pt;}
.y2af{bottom:448.877867pt;}
.y1a2{bottom:449.764400pt;}
.y33{bottom:450.004000pt;}
.y1e7{bottom:450.785333pt;}
.y10f{bottom:451.527467pt;}
.y2d1{bottom:451.859867pt;}
.y57{bottom:452.398133pt;}
.y152{bottom:456.005867pt;}
.y24b{bottom:456.490933pt;}
.y7a{bottom:457.462533pt;}
.y12e{bottom:458.195333pt;}
.y207{bottom:458.691467pt;}
.y177{bottom:459.057200pt;}
.y26d{bottom:459.384533pt;}
.y1c1{bottom:460.360000pt;}
.y2ee{bottom:464.168667pt;}
.ya0{bottom:467.061200pt;}
.y2ae{bottom:467.063867pt;}
.y22a{bottom:467.337200pt;}
.yc3{bottom:467.448933pt;}
.y1a1{bottom:468.363733pt;}
.y32{bottom:468.434667pt;}
.y1e6{bottom:469.292667pt;}
.y2d0{bottom:469.863867pt;}
.y56{bottom:470.752133pt;}
.y28d{bottom:472.187867pt;}
.y12d{bottom:474.195333pt;}
.y151{bottom:474.237200pt;}
.y24a{bottom:474.599600pt;}
.y79{bottom:475.617200pt;}
.y206{bottom:477.628133pt;}
.y176{bottom:478.131867pt;}
.y1c0{bottom:478.361333pt;}
.y2ed{bottom:481.502000pt;}
.y2ad{bottom:485.249867pt;}
.y9f{bottom:485.691200pt;}
.y26c{bottom:485.746533pt;}
.y229{bottom:485.951867pt;}
.yc2{bottom:486.032933pt;}
.y31{bottom:486.865333pt;}
.y1a0{bottom:486.963067pt;}
.y1e5{bottom:487.800000pt;}
.y55{bottom:489.106133pt;}
.y12c{bottom:490.195333pt;}
.y28c{bottom:491.745867pt;}
.y150{bottom:492.468533pt;}
.y249{bottom:492.708267pt;}
.y78{bottom:493.771867pt;}
.yd{bottom:494.555067pt;}
.y2cf{bottom:495.427867pt;}
.y10e{bottom:495.441733pt;}
.y1bf{bottom:496.362667pt;}
.y205{bottom:496.564800pt;}
.y175{bottom:497.206533pt;}
.y2ec{bottom:498.835333pt;}
.y9e{bottom:504.321200pt;}
.y26b{bottom:504.548533pt;}
.y228{bottom:504.566533pt;}
.yc1{bottom:504.616933pt;}
.y30{bottom:505.296000pt;}
.y19f{bottom:505.562400pt;}
.y1e4{bottom:506.307333pt;}
.y12b{bottom:506.622000pt;}
.y14f{bottom:510.699867pt;}
.y248{bottom:510.816933pt;}
.y2ac{bottom:510.981867pt;}
.y28b{bottom:511.303867pt;}
.y77{bottom:511.926533pt;}
.y2ce{bottom:513.431867pt;}
.y1be{bottom:514.364000pt;}
.y204{bottom:515.501467pt;}
.y10d{bottom:515.641733pt;}
.y2eb{bottom:516.168667pt;}
.y174{bottom:516.281200pt;}
.yc{bottom:518.635067pt;}
.y12a{bottom:522.622000pt;}
.y9d{bottom:522.951200pt;}
.y227{bottom:523.181200pt;}
.yc0{bottom:523.200933pt;}
.y2f{bottom:523.726667pt;}
.y19e{bottom:524.161733pt;}
.y1e3{bottom:524.814667pt;}
.y54{bottom:526.364400pt;}
.y247{bottom:528.925600pt;}
.y14e{bottom:528.931200pt;}
.y2ab{bottom:529.167867pt;}
.y76{bottom:530.081200pt;}
.y26a{bottom:530.910533pt;}
.y2cd{bottom:531.435867pt;}
.y1bd{bottom:532.365333pt;}
.y2ea{bottom:533.502000pt;}
.y203{bottom:534.438133pt;}
.y173{bottom:535.355867pt;}
.y10c{bottom:535.841733pt;}
.y28a{bottom:538.407867pt;}
.y129{bottom:538.622000pt;}
.y9c{bottom:541.581200pt;}
.y226{bottom:541.795867pt;}
.y2e{bottom:542.157333pt;}
.yb{bottom:542.715067pt;}
.y19d{bottom:542.761067pt;}
.y1e2{bottom:543.322000pt;}
.y246{bottom:547.034267pt;}
.y14d{bottom:547.162533pt;}
.y2aa{bottom:547.353867pt;}
.y75{bottom:548.235867pt;}
.y1bc{bottom:550.366667pt;}
.y2e9{bottom:550.835333pt;}
.y172{bottom:554.430533pt;}
.y128{bottom:555.052133pt;}
.y10b{bottom:556.041733pt;}
.y2cc{bottom:556.999867pt;}
.y289{bottom:557.965867pt;}
.y9b{bottom:560.211200pt;}
.y225{bottom:560.410533pt;}
.y2d{bottom:560.588000pt;}
.ybf{bottom:560.678000pt;}
.y19c{bottom:561.360400pt;}
.y1e1{bottom:561.829333pt;}
.y14c{bottom:565.393867pt;}
.y2a9{bottom:565.539867pt;}
.y74{bottom:566.390533pt;}
.y2e8{bottom:568.168667pt;}
.y1bb{bottom:568.368000pt;}
.y127{bottom:571.048133pt;}
.y202{bottom:572.272933pt;}
.y171{bottom:573.505200pt;}
.y2cb{bottom:575.003867pt;}
.y10a{bottom:576.241733pt;}
.y288{bottom:577.523867pt;}
.y9a{bottom:578.841200pt;}
.y2c{bottom:579.018667pt;}
.y224{bottom:579.025200pt;}
.y19b{bottom:579.959733pt;}
.y1e0{bottom:580.336667pt;}
.ya{bottom:581.936400pt;}
.y53{bottom:582.153200pt;}
.y14b{bottom:583.625200pt;}
.y245{bottom:584.033733pt;}
.y73{bottom:584.545200pt;}
.y2e7{bottom:585.502000pt;}
.y1ba{bottom:586.369333pt;}
.y2a8{bottom:591.271867pt;}
.y170{bottom:592.579867pt;}
.y2ca{bottom:593.007867pt;}
.y201{bottom:594.556933pt;}
.y126{bottom:594.848667pt;}
.y109{bottom:596.441733pt;}
.y287{bottom:597.081867pt;}
.y2b{bottom:597.449333pt;}
.y99{bottom:597.471200pt;}
.y223{bottom:597.639867pt;}
.y1df{bottom:598.844000pt;}
.y52{bottom:600.507200pt;}
.y14a{bottom:601.856533pt;}
.y72{bottom:602.699867pt;}
.y2e6{bottom:602.835333pt;}
.y1b9{bottom:604.370667pt;}
.y2a7{bottom:609.443867pt;}
.y9{bottom:610.016400pt;}
.y2c9{bottom:611.011867pt;}
.y16f{bottom:611.654533pt;}
.y269{bottom:614.414533pt;}
.y2a{bottom:615.880000pt;}
.y98{bottom:616.101200pt;}
.y222{bottom:616.254533pt;}
.ybe{bottom:616.561200pt;}
.y108{bottom:616.641733pt;}
.y1de{bottom:617.351333pt;}
.y51{bottom:618.861200pt;}
.y149{bottom:620.087867pt;}
.y2e5{bottom:620.168667pt;}
.y71{bottom:620.854533pt;}
.y1b8{bottom:622.372000pt;}
.y19a{bottom:623.467333pt;}
.y286{bottom:624.185867pt;}
.y16e{bottom:630.729200pt;}
.y125{bottom:631.443733pt;}
.y268{bottom:633.213200pt;}
.y29{bottom:634.310667pt;}
.y97{bottom:634.731200pt;}
.y221{bottom:634.869200pt;}
.ybd{bottom:635.145200pt;}
.y2a6{bottom:635.175867pt;}
.y1dd{bottom:635.858667pt;}
.y2c8{bottom:636.575867pt;}
.y107{bottom:636.841733pt;}
.y50{bottom:637.215200pt;}
.y2e4{bottom:637.502000pt;}
.y8{bottom:638.096400pt;}
.y148{bottom:638.319200pt;}
.y70{bottom:639.009200pt;}
.y244{bottom:639.423200pt;}
.y199{bottom:639.467333pt;}
.y1b7{bottom:640.373333pt;}
.y285{bottom:643.743867pt;}
.y16d{bottom:649.803867pt;}
.y124{bottom:649.813067pt;}
.y200{bottom:650.907867pt;}
.y267{bottom:652.011867pt;}
.y28{bottom:652.741333pt;}
.y96{bottom:653.361200pt;}
.y220{bottom:653.483867pt;}
.ybc{bottom:653.729200pt;}
.y1dc{bottom:654.366000pt;}
.y2c7{bottom:654.579867pt;}
.y2e3{bottom:654.835333pt;}
.y198{bottom:655.467333pt;}
.y4f{bottom:655.569200pt;}
.y147{bottom:656.550533pt;}
.y106{bottom:657.041733pt;}
.y6f{bottom:657.163867pt;}
.y243{bottom:657.531867pt;}
.y1b6{bottom:658.390533pt;}
.y2a5{bottom:660.907867pt;}
.y7{bottom:666.176400pt;}
.y123{bottom:668.182400pt;}
.y16c{bottom:668.878533pt;}
.y1ff{bottom:669.844533pt;}
.y266{bottom:670.810533pt;}
.y284{bottom:670.847867pt;}
.y27{bottom:671.172000pt;}
.y95{bottom:671.991200pt;}
.y21f{bottom:672.098533pt;}
.y2e2{bottom:672.168667pt;}
.ybb{bottom:672.313200pt;}
.y2c6{bottom:672.583867pt;}
.y1db{bottom:672.873333pt;}
.y4e{bottom:673.923200pt;}
.y146{bottom:674.781867pt;}
.y6e{bottom:675.318533pt;}
.y242{bottom:675.640533pt;}
.y197{bottom:675.667333pt;}
.y1b5{bottom:676.391867pt;}
.y105{bottom:677.241733pt;}
.y2a4{bottom:679.093867pt;}
.y122{bottom:686.551733pt;}
.y16b{bottom:687.953200pt;}
.y1fe{bottom:688.781200pt;}
.y26{bottom:689.582000pt;}
.y265{bottom:689.609200pt;}
.y283{bottom:690.405867pt;}
.y94{bottom:690.621200pt;}
.y21e{bottom:690.713200pt;}
.yba{bottom:690.897200pt;}
.y1da{bottom:691.357200pt;}
.y196{bottom:691.667333pt;}
.y4d{bottom:692.277200pt;}
.y145{bottom:693.013200pt;}
.y6d{bottom:693.473200pt;}
.y241{bottom:693.749200pt;}
.y1b4{bottom:694.393200pt;}
.yf7{bottom:697.483467pt;}
.y104{bottom:697.519467pt;}
.y2c5{bottom:698.147867pt;}
.y2e1{bottom:700.835333pt;}
.y2a3{bottom:704.825867pt;}
.y121{bottom:704.921067pt;}
.yf1{bottom:705.463467pt;}
.yfe{bottom:705.499467pt;}
.y16a{bottom:707.027867pt;}
.y195{bottom:707.667333pt;}
.y1fd{bottom:707.717867pt;}
.y25{bottom:708.012667pt;}
.y264{bottom:708.407867pt;}
.y93{bottom:709.251200pt;}
.y21d{bottom:709.327867pt;}
.yb9{bottom:709.481200pt;}
.y1d9{bottom:709.864533pt;}
.y4c{bottom:710.631200pt;}
.y144{bottom:711.244533pt;}
.y6c{bottom:711.627867pt;}
.y240{bottom:711.857867pt;}
.ydb{bottom:712.394533pt;}
.y6{bottom:713.175467pt;}
.yf6{bottom:713.479467pt;}
.y103{bottom:713.515467pt;}
.y2c4{bottom:716.151867pt;}
.y282{bottom:717.509867pt;}
.yf0{bottom:721.459467pt;}
.yfd{bottom:721.495467pt;}
.y2a2{bottom:723.011867pt;}
.y120{bottom:723.290400pt;}
.y169{bottom:726.102533pt;}
.y24{bottom:726.443333pt;}
.y1fc{bottom:726.654533pt;}
.y263{bottom:727.206533pt;}
.y18b{bottom:727.877067pt;}
.y92{bottom:727.881200pt;}
.y18e{bottom:727.889067pt;}
.y191{bottom:727.901067pt;}
.y194{bottom:727.913067pt;}
.y21c{bottom:727.942533pt;}
.yb8{bottom:728.065200pt;}
.y1d8{bottom:728.371867pt;}
.y4b{bottom:728.985200pt;}
.yec{bottom:729.451467pt;}
.yf5{bottom:729.475467pt;}
.y143{bottom:729.475867pt;}
.yf9{bottom:729.487467pt;}
.y102{bottom:729.511467pt;}
.y6b{bottom:729.782533pt;}
.y23f{bottom:729.966533pt;}
.yda{bottom:730.395867pt;}
.y281{bottom:737.067867pt;}
.yef{bottom:737.455467pt;}
.yfc{bottom:737.491467pt;}
.y5{bottom:739.482133pt;}
.y2a1{bottom:741.183867pt;}
.y11f{bottom:741.659733pt;}
.y2c3{bottom:741.715867pt;}
.y189{bottom:743.873067pt;}
.y18d{bottom:743.885067pt;}
.y190{bottom:743.897067pt;}
.y193{bottom:743.909067pt;}
.y23{bottom:744.874000pt;}
.y168{bottom:745.177200pt;}
.yeb{bottom:745.447467pt;}
.yf4{bottom:745.471467pt;}
.yf8{bottom:745.483467pt;}
.y101{bottom:745.507467pt;}
.y1fb{bottom:745.591200pt;}
.y262{bottom:746.005200pt;}
.y91{bottom:746.511200pt;}
.y21b{bottom:746.557200pt;}
.yb7{bottom:746.649200pt;}
.y1d7{bottom:746.879200pt;}
.y4a{bottom:747.339200pt;}
.y142{bottom:747.707200pt;}
.y6a{bottom:747.937200pt;}
.y23e{bottom:748.075200pt;}
.yd9{bottom:748.397200pt;}
.y2e0{bottom:752.173733pt;}
.yee{bottom:753.451467pt;}
.yfb{bottom:753.487467pt;}
.y280{bottom:756.625867pt;}
.y2c2{bottom:759.719867pt;}
.y18a{bottom:759.869067pt;}
.y18c{bottom:759.881067pt;}
.y18f{bottom:759.893067pt;}
.y192{bottom:759.905067pt;}
.yf3{bottom:761.467467pt;}
.y100{bottom:761.503467pt;}
.y22{bottom:763.304667pt;}
.y167{bottom:764.251867pt;}
.y1fa{bottom:764.527867pt;}
.y261{bottom:764.803867pt;}
.y90{bottom:765.141200pt;}
.y21a{bottom:765.171867pt;}
.yb6{bottom:765.233200pt;}
.y1d6{bottom:765.386533pt;}
.y49{bottom:765.693200pt;}
.y4{bottom:765.788800pt;}
.y141{bottom:765.938533pt;}
.y69{bottom:766.091867pt;}
.y23d{bottom:766.183867pt;}
.yd8{bottom:766.398533pt;}
.y2a0{bottom:766.915867pt;}
.yed{bottom:769.447467pt;}
.yfa{bottom:769.483467pt;}
.y2df{bottom:776.179067pt;}
.yf2{bottom:777.463467pt;}
.yff{bottom:777.499467pt;}
.y11e{bottom:778.919733pt;}
.y166{bottom:783.326533pt;}
.y1f9{bottom:783.464533pt;}
.y260{bottom:783.602533pt;}
.y27f{bottom:783.729867pt;}
.y8f{bottom:783.771200pt;}
.y219{bottom:783.786533pt;}
.yb5{bottom:783.817200pt;}
.y1d5{bottom:783.893867pt;}
.y48{bottom:784.047200pt;}
.y140{bottom:784.169867pt;}
.y68{bottom:784.246533pt;}
.y23c{bottom:784.292533pt;}
.yd7{bottom:784.399867pt;}
.y3{bottom:784.535467pt;}
.y29f{bottom:785.101867pt;}
.y2c1{bottom:785.283867pt;}
.y188{bottom:785.798000pt;}
.y2de{bottom:800.184400pt;}
.y21{bottom:800.627733pt;}
.y47{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.yea{bottom:803.731333pt;}
.y20{bottom:842.834667pt;}
.y1f{bottom:858.834667pt;}
.h7{height:30.107146pt;}
.hf{height:30.857146pt;}
.he{height:36.229167pt;}
.h13{height:37.593750pt;}
.h8{height:40.757812pt;}
.h18{height:41.507812pt;}
.h4{height:45.286458pt;}
.h1c{height:46.119792pt;}
.h3{height:47.550781pt;}
.hc{height:48.036458pt;}
.h1b{height:48.425781pt;}
.ha{height:52.079427pt;}
.h12{height:52.090094pt;}
.hb{height:52.162094pt;}
.h15{height:52.226094pt;}
.h11{height:52.388227pt;}
.hd{height:52.535960pt;}
.h10{height:53.037760pt;}
.h17{height:53.043627pt;}
.h14{height:53.121494pt;}
.h19{height:53.131627pt;}
.h1a{height:56.390625pt;}
.h2{height:56.608073pt;}
.h9{height:61.136719pt;}
.h6{height:63.401042pt;}
.h16{height:72.773813pt;}
.h5{height:81.515625pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x53{left:72.374800pt;}
.x9{left:73.302133pt;}
.x1{left:74.388133pt;}
.x6{left:75.693867pt;}
.x28{left:78.696533pt;}
.x29{left:79.749867pt;}
.x44{left:83.185333pt;}
.xc{left:84.777600pt;}
.xd{left:89.937600pt;}
.xb{left:91.056133pt;}
.x8{left:92.199867pt;}
.x7{left:93.359333pt;}
.x5{left:94.547200pt;}
.x21{left:97.102533pt;}
.xe{left:118.761600pt;}
.xf{left:128.277600pt;}
.x3a{left:170.131067pt;}
.x13{left:186.081600pt;}
.x2a{left:187.883200pt;}
.xa{left:189.034533pt;}
.x10{left:190.317600pt;}
.x32{left:191.229867pt;}
.x12{left:193.761600pt;}
.x11{left:195.345600pt;}
.x31{left:200.816533pt;}
.x46{left:202.864400pt;}
.x4{left:204.255467pt;}
.x3{left:206.416000pt;}
.x2{left:207.418000pt;}
.x45{left:215.784400pt;}
.x4e{left:219.331067pt;}
.x23{left:251.592800pt;}
.x22{left:257.016800pt;}
.x16{left:260.025600pt;}
.x2c{left:260.963200pt;}
.x14{left:263.805600pt;}
.x15{left:266.433600pt;}
.x33{left:273.589867pt;}
.x3c{left:274.848933pt;}
.x2b{left:277.163200pt;}
.x3b{left:279.204933pt;}
.x48{left:286.464400pt;}
.x47{left:298.797733pt;}
.x4f{left:303.264400pt;}
.x24{left:328.968800pt;}
.x2d{left:340.336533pt;}
.x38{left:345.403200pt;}
.x25{left:348.420800pt;}
.x34{left:349.776533pt;}
.x17{left:353.337600pt;}
.x37{left:356.616533pt;}
.x18{left:361.233600pt;}
.x3d{left:364.548933pt;}
.x3f{left:366.192933pt;}
.x3e{left:370.548933pt;}
.x50{left:377.784400pt;}
.x4a{left:382.891067pt;}
.x49{left:389.877733pt;}
.x26{left:420.228800pt;}
.x1c{left:422.169600pt;}
.x19{left:426.417600pt;}
.x1b{left:429.849600pt;}
.x1a{left:434.733600pt;}
.x27{left:439.764800pt;}
.x35{left:443.936533pt;}
.x2e{left:447.216533pt;}
.x39{left:448.403200pt;}
.x42{left:454.056933pt;}
.x40{left:456.132933pt;}
.x41{left:459.180933pt;}
.x4b{left:471.304400pt;}
.x51{left:474.917733pt;}
.x1f{left:491.013600pt;}
.x20{left:493.521600pt;}
.x1d{left:494.793600pt;}
.x1e{left:497.421600pt;}
.x30{left:513.896533pt;}
.x4d{left:517.331067pt;}
.x36{left:521.829867pt;}
.x43{left:522.960933pt;}
.x2f{left:525.069867pt;}
.x52{left:527.744400pt;}
.x4c{left:529.184400pt;}
}




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