
    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_db7aef45687d4f7f4797b90b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_96356f9dc194733c559b905f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_5b075f9c7f635a394c9c8ac8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_2c61cab269b7d89cfc111e1e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914062;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_124108c3513ec5b95b3e2103.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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_395c8fe8dc8d3f0a8e3ebe86.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_df46af62196c598fdb82d1f1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.682617;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_64c66b4f88ca8b2721d380d1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.923340;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;}
.ls3{letter-spacing:-0.288000px;}
.ls3d{letter-spacing:-0.216000px;}
.ls1{letter-spacing:-0.180000px;}
.ls13{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.ls3e{letter-spacing:0.072000px;}
.lsb{letter-spacing:0.120000px;}
.ls2{letter-spacing:0.144000px;}
.ls3c{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.216000px;}
.ls23{letter-spacing:0.288000px;}
.lse{letter-spacing:0.720000px;}
.ls28{letter-spacing:3.600000px;}
.ls3a{letter-spacing:4.320000px;}
.ls32{letter-spacing:7.344000px;}
.ls33{letter-spacing:12.384000px;}
.ls25{letter-spacing:12.960000px;}
.ls26{letter-spacing:14.544000px;}
.ls2a{letter-spacing:21.024000px;}
.ls2d{letter-spacing:23.760000px;}
.ls43{letter-spacing:30.186720px;}
.ls42{letter-spacing:30.906720px;}
.ls19{letter-spacing:31.656000px;}
.ls37{letter-spacing:33.120000px;}
.ls2b{letter-spacing:33.840000px;}
.ls7{letter-spacing:33.984000px;}
.ls48{letter-spacing:35.280000px;}
.ls2c{letter-spacing:35.424000px;}
.ls31{letter-spacing:35.976000px;}
.ls27{letter-spacing:36.000000px;}
.ls45{letter-spacing:40.320000px;}
.ls22{letter-spacing:41.760000px;}
.ls41{letter-spacing:43.146720px;}
.ls24{letter-spacing:44.784000px;}
.ls1c{letter-spacing:44.928000px;}
.ls39{letter-spacing:49.680000px;}
.ls2e{letter-spacing:52.560000px;}
.ls18{letter-spacing:57.600000px;}
.ls17{letter-spacing:61.200000px;}
.ls16{letter-spacing:61.896000px;}
.ls1d{letter-spacing:61.920000px;}
.ls15{letter-spacing:62.784000px;}
.ls12{letter-spacing:62.928000px;}
.ls3f{letter-spacing:64.056000px;}
.ls20{letter-spacing:64.080000px;}
.ls40{letter-spacing:66.960000px;}
.ls11{letter-spacing:70.506720px;}
.ls14{letter-spacing:70.650720px;}
.ls46{letter-spacing:84.240000px;}
.lsf{letter-spacing:87.840000px;}
.ls1f{letter-spacing:95.760000px;}
.ls36{letter-spacing:110.160000px;}
.ls5{letter-spacing:116.100000px;}
.ls47{letter-spacing:128.160000px;}
.ls34{letter-spacing:131.760000px;}
.ls9{letter-spacing:133.920000px;}
.ls2f{letter-spacing:136.056000px;}
.ls3b{letter-spacing:139.680000px;}
.ls1a{letter-spacing:140.400000px;}
.ls30{letter-spacing:148.320000px;}
.ls29{letter-spacing:149.760000px;}
.ls1b{letter-spacing:156.240000px;}
.ls10{letter-spacing:160.104000px;}
.lsc{letter-spacing:170.760000px;}
.lsd{letter-spacing:170.904000px;}
.ls35{letter-spacing:175.680000px;}
.ls1e{letter-spacing:180.000000px;}
.ls4{letter-spacing:182.880000px;}
.ls8{letter-spacing:184.320000px;}
.ls44{letter-spacing:192.240000px;}
.ls38{letter-spacing:197.280000px;}
.ls6{letter-spacing:197.976000px;}
.ls21{letter-spacing:198.120000px;}
.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;}
}
.ws9{word-spacing:-72.000000px;}
.ws6{word-spacing:-20.016000px;}
.ws8{word-spacing:-18.288000px;}
.ws4{word-spacing:-18.216000px;}
.ws1{word-spacing:-18.144000px;}
.wsb{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.856000px;}
.ws2{word-spacing:-17.712000px;}
.ws5{word-spacing:-16.613280px;}
.wsa{word-spacing:-14.940000px;}
.ws0{word-spacing:0.000000px;}
._43{margin-left:-9.957120px;}
._1{margin-left:-8.676720px;}
._46{margin-left:-7.303680px;}
._12{margin-left:-6.189120px;}
._a{margin-left:-4.791840px;}
._17{margin-left:-3.600000px;}
._3{margin-left:-2.448000px;}
._0{margin-left:-1.010880px;}
._2{width:1.347840px;}
._1a{width:3.332160px;}
._f{width:4.896000px;}
._b{width:6.336000px;}
._c{width:7.560000px;}
._e{width:8.853120px;}
._d{width:10.010880px;}
._11{width:11.153280px;}
._9{width:12.456000px;}
._6{width:13.608000px;}
._7{width:14.688000px;}
._8{width:16.588320px;}
._37{width:19.172160px;}
._15{width:20.309760px;}
._4{width:21.312000px;}
._5{width:22.332000px;}
._24{width:24.048000px;}
._30{width:25.508160px;}
._31{width:27.216000px;}
._32{width:28.460160px;}
._16{width:29.664000px;}
._10{width:31.248000px;}
._18{width:32.976000px;}
._19{width:34.364160px;}
._3d{width:35.496000px;}
._23{width:36.864000px;}
._2e{width:38.304000px;}
._2f{width:39.312000px;}
._33{width:40.556160px;}
._1b{width:42.408000px;}
._1c{width:43.560000px;}
._25{width:45.000000px;}
._29{width:46.514880px;}
._28{width:47.592000px;}
._2d{width:48.888000px;}
._2c{width:49.896000px;}
._44{width:51.071040px;}
._54{width:52.416000px;}
._35{width:53.424000px;}
._36{width:54.864000px;}
._3c{width:56.376000px;}
._34{width:58.032000px;}
._39{width:60.192000px;}
._26{width:61.344000px;}
._27{width:62.928000px;}
._3e{width:64.656000px;}
._1e{width:65.736000px;}
._1d{width:67.863840px;}
._3b{width:68.976000px;}
._2a{width:71.064000px;}
._20{width:72.624000px;}
._21{width:73.872000px;}
._38{width:74.952000px;}
._45{width:76.176000px;}
._42{width:77.496000px;}
._3a{width:79.202880px;}
._50{width:80.205120px;}
._2b{width:81.504000px;}
._40{width:84.168000px;}
._41{width:85.176000px;}
._22{width:86.439840px;}
._47{width:88.448160px;}
._57{width:92.088000px;}
._58{width:94.536000px;}
._1f{width:96.984000px;}
._5f{width:99.936000px;}
._52{width:101.808000px;}
._60{width:106.848000px;}
._14{width:112.104000px;}
._13{width:113.184000px;}
._5c{width:115.200000px;}
._4e{width:116.352000px;}
._4f{width:117.360000px;}
._5d{width:118.586880px;}
._5b{width:120.456000px;}
._55{width:127.560000px;}
._56{width:128.808000px;}
._3f{width:133.200000px;}
._49{width:137.520000px;}
._4a{width:138.816000px;}
._4d{width:139.824000px;}
._48{width:147.024000px;}
._51{width:148.896000px;}
._4c{width:151.200000px;}
._5e{width:155.592000px;}
._5a{width:176.976000px;}
._59{width:178.095840px;}
._4b{width:182.738880px;}
._53{width:343.047840px;}
.fc3{color:transparent;}
.fc1{color:rgb(69,119,134);}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:59.760000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y1c0{bottom:4.605000px;}
.y1c2{bottom:4.785000px;}
.y1b0{bottom:4.830000px;}
.y1c5{bottom:4.965000px;}
.y1b6{bottom:5.010000px;}
.y1be{bottom:5.145000px;}
.y1b3{bottom:5.190000px;}
.y357{bottom:5.580000px;}
.y35b{bottom:6.480000px;}
.y362{bottom:8.100000px;}
.y37a{bottom:8.280000px;}
.y366{bottom:8.460000px;}
.y36d{bottom:8.634000px;}
.y376{bottom:8.640000px;}
.y36a{bottom:10.440000px;}
.y302{bottom:14.760000px;}
.y35e{bottom:17.280000px;}
.y360{bottom:18.000000px;}
.y36e{bottom:18.174000px;}
.y364{bottom:18.180000px;}
.y300{bottom:23.400000px;}
.y313{bottom:24.300000px;}
.y306{bottom:25.920000px;}
.y303{bottom:25.965000px;}
.y353{bottom:27.900000px;}
.y35c{bottom:28.440000px;}
.y355{bottom:28.620000px;}
.y35a{bottom:28.800000px;}
.y361{bottom:30.420000px;}
.y379{bottom:30.600000px;}
.y365{bottom:30.780000px;}
.y36c{bottom:30.954000px;}
.y369{bottom:30.960000px;}
.y305{bottom:37.080000px;}
.y301{bottom:37.125000px;}
.y311{bottom:38.520000px;}
.y351{bottom:39.060000px;}
.y35d{bottom:39.600000px;}
.y30d{bottom:43.920000px;}
.y2ff{bottom:45.900000px;}
.y310{bottom:48.960000px;}
.y354{bottom:49.500000px;}
.y352{bottom:50.220000px;}
.y359{bottom:51.120000px;}
.y368{bottom:51.300000px;}
.y30f{bottom:71.280000px;}
.y356{bottom:72.540000px;}
.y30b{bottom:84.780000px;}
.y3d{bottom:112.860000px;}
.y107{bottom:114.300000px;}
.y26c{bottom:117.000000px;}
.y54{bottom:118.440000px;}
.y21f{bottom:119.340000px;}
.y3ec{bottom:119.700000px;}
.y1f8{bottom:120.420000px;}
.y242{bottom:121.320000px;}
.y386{bottom:123.660000px;}
.y29e{bottom:123.840000px;}
.y144{bottom:124.020000px;}
.y84{bottom:124.380000px;}
.y165{bottom:124.740000px;}
.y3a9{bottom:125.100000px;}
.y3fe{bottom:126.180000px;}
.y341{bottom:126.360000px;}
.y36f{bottom:128.880000px;}
.y185{bottom:129.060000px;}
.y9a{bottom:129.960000px;}
.yc2{bottom:131.940000px;}
.y1ae{bottom:132.300000px;}
.yd2{bottom:132.840000px;}
.y3c{bottom:134.280000px;}
.y106{bottom:135.576000px;}
.y2ca{bottom:136.296000px;}
.y11d{bottom:137.376000px;}
.y21e{bottom:137.736000px;}
.y26b{bottom:138.456000px;}
.y53{bottom:139.896000px;}
.y3eb{bottom:141.156000px;}
.y1f7{bottom:141.876000px;}
.y28b{bottom:142.776000px;}
.y3d3{bottom:144.036000px;}
.y2ed{bottom:144.936000px;}
.y385{bottom:145.116000px;}
.y29d{bottom:145.296000px;}
.y143{bottom:145.476000px;}
.y83{bottom:145.836000px;}
.y164{bottom:146.196000px;}
.y3a8{bottom:146.376000px;}
.y3fd{bottom:147.636000px;}
.y36b{bottom:147.816000px;}
.y340{bottom:148.356000px;}
.y184{bottom:150.510000px;}
.y99{bottom:151.410000px;}
.ybd{bottom:153.390000px;}
.y1ad{bottom:153.750000px;}
.yd1{bottom:154.290000px;}
.y3b{bottom:155.730000px;}
.y105{bottom:156.990000px;}
.y2c9{bottom:157.710000px;}
.y11c{bottom:158.790000px;}
.y26a{bottom:159.690000px;}
.y52{bottom:161.310000px;}
.y3ea{bottom:162.570000px;}
.y1f6{bottom:163.110000px;}
.y23b{bottom:163.290000px;}
.y28a{bottom:164.190000px;}
.y3d2{bottom:165.450000px;}
.y2ec{bottom:166.530000px;}
.y29c{bottom:166.710000px;}
.y82{bottom:167.250000px;}
.y163{bottom:167.610000px;}
.y142{bottom:167.790000px;}
.y3fc{bottom:169.050000px;}
.y33f{bottom:170.310000px;}
.y183{bottom:171.930000px;}
.y98{bottom:172.830000px;}
.ybc{bottom:174.810000px;}
.yd0{bottom:175.710000px;}
.y19b{bottom:176.070000px;}
.y3a{bottom:177.150000px;}
.y104{bottom:178.410000px;}
.y2c8{bottom:179.310000px;}
.y11b{bottom:181.110000px;}
.y51{bottom:182.730000px;}
.y3e9{bottom:183.810000px;}
.y1f5{bottom:184.530000px;}
.y289{bottom:185.610000px;}
.y3d1{bottom:186.870000px;}
.y384{bottom:187.950000px;}
.y29b{bottom:188.130000px;}
.y81{bottom:188.670000px;}
.y2eb{bottom:188.850000px;}
.y162{bottom:189.030000px;}
.y141{bottom:189.210000px;}
.y309{bottom:190.110000px;}
.y3fb{bottom:190.470000px;}
.y33e{bottom:192.090000px;}
.y182{bottom:193.350000px;}
.y209{bottom:194.250000px;}
.y97{bottom:195.150000px;}
.ybb{bottom:196.230000px;}
.ycf{bottom:197.130000px;}
.y19a{bottom:197.490000px;}
.y39{bottom:198.390000px;}
.y103{bottom:199.830000px;}
.y2c7{bottom:200.550000px;}
.y327{bottom:200.730000px;}
.y11a{bottom:202.530000px;}
.y50{bottom:204.150000px;}
.y367{bottom:205.050000px;}
.y1f4{bottom:205.950000px;}
.y3e8{bottom:206.130000px;}
.y288{bottom:206.850000px;}
.y3d0{bottom:208.110000px;}
.y383{bottom:209.370000px;}
.y29a{bottom:209.550000px;}
.y80{bottom:210.090000px;}
.y2ea{bottom:210.270000px;}
.y161{bottom:211.350000px;}
.y140{bottom:211.530000px;}
.y3fa{bottom:212.790000px;}
.y33d{bottom:214.590000px;}
.y181{bottom:214.770000px;}
.y208{bottom:215.670000px;}
.y96{bottom:216.570000px;}
.yba{bottom:217.470000px;}
.yce{bottom:218.550000px;}
.y199{bottom:218.730000px;}
.y38{bottom:219.810000px;}
.y102{bottom:221.250000px;}
.y2c6{bottom:221.970000px;}
.y326{bottom:222.150000px;}
.y269{bottom:223.950000px;}
.y119{bottom:224.850000px;}
.y4f{bottom:225.390000px;}
.y23a{bottom:227.370000px;}
.y3e7{bottom:227.550000px;}
.y1f3{bottom:228.270000px;}
.y287{bottom:229.170000px;}
.y3cf{bottom:229.530000px;}
.y382{bottom:230.790000px;}
.y2e9{bottom:231.690000px;}
.y299{bottom:232.050000px;}
.y7f{bottom:232.410000px;}
.y160{bottom:232.770000px;}
.y13f{bottom:232.950000px;}
.y3f9{bottom:234.210000px;}
.y33c{bottom:235.830000px;}
.y180{bottom:236.010000px;}
.y207{bottom:237.090000px;}
.y95{bottom:237.990000px;}
.yb9{bottom:238.890000px;}
.ycd{bottom:239.790000px;}
.y198{bottom:240.150000px;}
.y37{bottom:241.230000px;}
.y101{bottom:242.670000px;}
.y2c5{bottom:243.390000px;}
.y325{bottom:243.570000px;}
.y268{bottom:245.370000px;}
.y118{bottom:246.270000px;}
.y4e{bottom:246.810000px;}
.y239{bottom:248.970000px;}
.y1f2{bottom:249.870000px;}
.y286{bottom:250.590000px;}
.y3ce{bottom:250.950000px;}
.y381{bottom:252.210000px;}
.y2e8{bottom:253.110000px;}
.y298{bottom:253.290000px;}
.yec{bottom:253.470000px;}
.y308{bottom:254.190000px;}
.y3a7{bottom:254.370000px;}
.y15f{bottom:255.090000px;}
.y13e{bottom:255.270000px;}
.y7e{bottom:255.450000px;}
.y3f8{bottom:255.630000px;}
.y33b{bottom:257.250000px;}
.y17f{bottom:257.430000px;}
.y206{bottom:258.510000px;}
.y94{bottom:259.410000px;}
.yb8{bottom:260.310000px;}
.ycc{bottom:261.210000px;}
.y197{bottom:261.570000px;}
.y1ac{bottom:262.470000px;}
.y36{bottom:262.650000px;}
.y100{bottom:263.910000px;}
.y324{bottom:264.810000px;}
.y2c4{bottom:264.990000px;}
.y117{bottom:267.690000px;}
.y4d{bottom:268.230000px;}
.y3e6{bottom:270.390000px;}
.y238{bottom:271.290000px;}
.y285{bottom:272.010000px;}
.y1f1{bottom:272.190000px;}
.y3cd{bottom:272.370000px;}
.y380{bottom:273.630000px;}
.y2e7{bottom:274.530000px;}
.yeb{bottom:274.710000px;}
.y307{bottom:275.610000px;}
.y3a6{bottom:275.790000px;}
.y297{bottom:276.330000px;}
.y15e{bottom:276.510000px;}
.y13d{bottom:276.690000px;}
.y3f7{bottom:276.870000px;}
.y33a{bottom:278.670000px;}
.y17e{bottom:278.850000px;}
.y205{bottom:279.750000px;}
.y7d{bottom:280.830000px;}
.yb7{bottom:281.730000px;}
.ycb{bottom:282.630000px;}
.y363{bottom:282.810000px;}
.y196{bottom:282.990000px;}
.y35{bottom:284.070000px;}
.y1ab{bottom:284.790000px;}
.yff{bottom:286.230000px;}
.y2c3{bottom:287.310000px;}
.y116{bottom:289.110000px;}
.y4c{bottom:289.650000px;}
.y3e5{bottom:291.810000px;}
.y237{bottom:292.710000px;}
.y1f0{bottom:293.610000px;}
.y3cc{bottom:293.790000px;}
.y284{bottom:294.330000px;}
.y304{bottom:294.510000px;}
.y37f{bottom:294.870000px;}
.y2e6{bottom:295.770000px;}
.yea{bottom:296.130000px;}
.y3a5{bottom:297.030000px;}
.y296{bottom:297.750000px;}
.y13c{bottom:297.930000px;}
.y3f6{bottom:298.290000px;}
.y339{bottom:300.090000px;}
.y17d{bottom:300.270000px;}
.y7c{bottom:302.070000px;}
.yb6{bottom:303.150000px;}
.yca{bottom:304.050000px;}
.y195{bottom:304.410000px;}
.yfe{bottom:304.770000px;}
.y34{bottom:305.490000px;}
.y1aa{bottom:306.210000px;}
.y323{bottom:307.650000px;}
.y2c2{bottom:308.730000px;}
.y115{bottom:309.630000px;}
.y4b{bottom:311.070000px;}
.y267{bottom:311.430000px;}
.y236{bottom:314.130000px;}
.y1ef{bottom:315.030000px;}
.y3cb{bottom:315.210000px;}
.y283{bottom:315.750000px;}
.y37e{bottom:316.290000px;}
.y2e5{bottom:317.370000px;}
.ye9{bottom:317.550000px;}
.y3a4{bottom:318.450000px;}
.y15d{bottom:319.170000px;}
.y13b{bottom:319.350000px;}
.y3f5{bottom:319.710000px;}
.y295{bottom:320.070000px;}
.y17c{bottom:321.690000px;}
.y338{bottom:322.410000px;}
.y7b{bottom:323.490000px;}
.yb5{bottom:324.390000px;}
.yc9{bottom:325.470000px;}
.y194{bottom:325.830000px;}
.y33{bottom:326.730000px;}
.y1a9{bottom:327.630000px;}
.y114{bottom:329.970000px;}
.y2c1{bottom:330.150000px;}
.y4a{bottom:332.490000px;}
.y266{bottom:332.850000px;}
.y235{bottom:335.370000px;}
.y3e4{bottom:335.550000px;}
.y1ee{bottom:336.450000px;}
.y37d{bottom:337.710000px;}
.y282{bottom:338.070000px;}
.ye8{bottom:338.970000px;}
.y2e4{bottom:339.690000px;}
.y3a3{bottom:339.870000px;}
.y35f{bottom:340.050000px;}
.y15c{bottom:340.590000px;}
.y13a{bottom:340.770000px;}
.y294{bottom:341.490000px;}
.y3f4{bottom:342.030000px;}
.y17b{bottom:342.930000px;}
.y337{bottom:343.830000px;}
.y7a{bottom:344.910000px;}
.yb4{bottom:345.810000px;}
.yc8{bottom:346.890000px;}
.y32{bottom:348.150000px;}
.y1a8{bottom:349.950000px;}
.y2c0{bottom:351.390000px;}
.y113{bottom:352.290000px;}
.y49{bottom:353.730000px;}
.y265{bottom:354.090000px;}
.y234{bottom:356.790000px;}
.y3e3{bottom:356.970000px;}
.y1ed{bottom:357.690000px;}
.y3ca{bottom:357.870000px;}
.y37c{bottom:359.130000px;}
.y281{bottom:359.490000px;}
.ye7{bottom:360.390000px;}
.y2e3{bottom:361.110000px;}
.y3a2{bottom:361.290000px;}
.y139{bottom:362.190000px;}
.y15b{bottom:362.370000px;}
.y293{bottom:362.910000px;}
.y3f3{bottom:363.450000px;}
.y17a{bottom:364.350000px;}
.y336{bottom:365.250000px;}
.y79{bottom:366.330000px;}
.yb3{bottom:367.230000px;}
.yc7{bottom:368.130000px;}
.y193{bottom:369.390000px;}
.y31{bottom:369.570000px;}
.y1a7{bottom:372.270000px;}
.y322{bottom:372.810000px;}
.y2bf{bottom:372.990000px;}
.y112{bottom:373.710000px;}
.y48{bottom:375.150000px;}
.y264{bottom:375.510000px;}
.y233{bottom:378.210000px;}
.y1ec{bottom:379.110000px;}
.y3c9{bottom:379.290000px;}
.y37b{bottom:380.550000px;}
.y280{bottom:380.910000px;}
.ye6{bottom:381.810000px;}
.y2e2{bottom:382.530000px;}
.y3a1{bottom:382.710000px;}
.y15a{bottom:383.790000px;}
.y292{bottom:384.330000px;}
.y138{bottom:384.510000px;}
.y3f2{bottom:384.870000px;}
.y179{bottom:385.770000px;}
.y335{bottom:386.490000px;}
.y78{bottom:387.795000px;}
.yb2{bottom:388.695000px;}
.yc6{bottom:389.595000px;}
.y192{bottom:390.855000px;}
.y30{bottom:391.035000px;}
.y1a6{bottom:393.735000px;}
.y321{bottom:394.275000px;}
.y2be{bottom:395.355000px;}
.y111{bottom:396.075000px;}
.y47{bottom:396.615000px;}
.y358{bottom:396.975000px;}
.y263{bottom:397.875000px;}
.y378{bottom:399.495000px;}
.y3e2{bottom:399.675000px;}
.y1eb{bottom:400.575000px;}
.y3c8{bottom:400.755000px;}
.y27f{bottom:402.375000px;}
.ye5{bottom:403.095000px;}
.y2e1{bottom:403.995000px;}
.y3a0{bottom:404.175000px;}
.y159{bottom:405.075000px;}
.y291{bottom:405.795000px;}
.y137{bottom:405.975000px;}
.y3f1{bottom:406.335000px;}
.y178{bottom:407.235000px;}
.y334{bottom:407.955000px;}
.y77{bottom:409.035000px;}
.yb1{bottom:410.115000px;}
.yc5{bottom:411.015000px;}
.y2f{bottom:412.455000px;}
.y191{bottom:413.175000px;}
.y1a5{bottom:415.155000px;}
.y320{bottom:416.595000px;}
.y2bd{bottom:417.315000px;}
.y110{bottom:417.495000px;}
.y46{bottom:418.935000px;}
.y262{bottom:419.475000px;}
.y3e1{bottom:421.095000px;}
.y232{bottom:422.175000px;}
.y1ea{bottom:422.895000px;}
.ye4{bottom:424.515000px;}
.y27e{bottom:424.695000px;}
.y2e0{bottom:425.415000px;}
.y39f{bottom:426.495000px;}
.y158{bottom:426.675000px;}
.y290{bottom:427.215000px;}
.y3f0{bottom:427.575000px;}
.y136{bottom:428.295000px;}
.y177{bottom:428.655000px;}
.y333{bottom:429.375000px;}
.y76{bottom:430.455000px;}
.yb0{bottom:431.535000px;}
.yc4{bottom:432.435000px;}
.y2e{bottom:433.695000px;}
.y190{bottom:434.595000px;}
.y21d{bottom:436.395000px;}
.y1a4{bottom:436.575000px;}
.y31f{bottom:437.835000px;}
.y10f{bottom:438.735000px;}
.y2bc{bottom:439.455000px;}
.y45{bottom:440.355000px;}
.y261{bottom:440.895000px;}
.y3c7{bottom:443.415000px;}
.y1e9{bottom:444.495000px;}
.y2fe{bottom:444.675000px;}
.ye3{bottom:445.935000px;}
.y27d{bottom:446.115000px;}
.y2df{bottom:446.835000px;}
.y157{bottom:447.915000px;}
.y28f{bottom:448.635000px;}
.y3ef{bottom:448.995000px;}
.y135{bottom:449.715000px;}
.y176{bottom:450.075000px;}
.y332{bottom:450.795000px;}
.y75{bottom:451.875000px;}
.yaf{bottom:452.775000px;}
.yc3{bottom:453.855000px;}
.y2d{bottom:455.115000px;}
.y18f{bottom:456.015000px;}
.y377{bottom:456.735000px;}
.y21c{bottom:457.815000px;}
.y1a3{bottom:457.995000px;}
.y31e{bottom:459.255000px;}
.y10e{bottom:460.155000px;}
.yd{bottom:461.415000px;}
.y44{bottom:461.775000px;}
.y260{bottom:462.315000px;}
.y3c6{bottom:464.835000px;}
.y231{bottom:465.915000px;}
.y1e8{bottom:466.815000px;}
.ye2{bottom:467.355000px;}
.y2de{bottom:469.155000px;}
.y156{bottom:470.415000px;}
.y134{bottom:470.955000px;}
.y175{bottom:471.315000px;}
.y331{bottom:472.215000px;}
.y74{bottom:473.295000px;}
.yc1{bottom:474.195000px;}
.y350{bottom:474.555000px;}
.yae{bottom:475.095000px;}
.y2c{bottom:476.535000px;}
.y18e{bottom:477.435000px;}
.y1a2{bottom:479.235000px;}
.y31d{bottom:480.675000px;}
.y10d{bottom:481.575000px;}
.yc{bottom:482.835000px;}
.y43{bottom:483.195000px;}
.y2bb{bottom:483.375000px;}
.y25f{bottom:485.175000px;}
.y3c5{bottom:486.255000px;}
.y230{bottom:487.335000px;}
.y1e7{bottom:488.235000px;}
.y27c{bottom:488.775000px;}
.ye1{bottom:489.675000px;}
.y39e{bottom:490.575000px;}
.y2dd{bottom:490.755000px;}
.y155{bottom:491.835000px;}
.y133{bottom:492.375000px;}
.y174{bottom:492.735000px;}
.y330{bottom:493.635000px;}
.y73{bottom:494.715000px;}
.yc0{bottom:495.615000px;}
.yad{bottom:496.515000px;}
.y2b{bottom:497.955000px;}
.y18d{bottom:498.855000px;}
.y1a1{bottom:500.655000px;}
.y31c{bottom:502.095000px;}
.y10c{bottom:502.995000px;}
.y42{bottom:504.435000px;}
.yb{bottom:505.155000px;}
.y2ba{bottom:505.335000px;}
.y25e{bottom:507.495000px;}
.y3c4{bottom:507.675000px;}
.y1e6{bottom:509.655000px;}
.y27b{bottom:510.195000px;}
.ye0{bottom:511.095000px;}
.y39d{bottom:511.995000px;}
.y2dc{bottom:512.355000px;}
.y154{bottom:513.255000px;}
.y132{bottom:513.795000px;}
.y173{bottom:514.155000px;}
.y32f{bottom:514.875000px;}
.y72{bottom:516.135000px;}
.ybf{bottom:517.035000px;}
.yac{bottom:517.935000px;}
.y2a{bottom:519.375000px;}
.y18c{bottom:520.275000px;}
.y1a0{bottom:522.075000px;}
.y21b{bottom:522.975000px;}
.y31b{bottom:523.515000px;}
.y10b{bottom:525.315000px;}
.y41{bottom:525.855000px;}
.y2b9{bottom:526.935000px;}
.ya{bottom:528.375000px;}
.y25d{bottom:528.915000px;}
.y3c3{bottom:529.995000px;}
.y1e5{bottom:530.895000px;}
.y22f{bottom:531.075000px;}
.y2fd{bottom:531.255000px;}
.y27a{bottom:531.615000px;}
.ydf{bottom:532.515000px;}
.y39c{bottom:533.415000px;}
.y2db{bottom:534.675000px;}
.y131{bottom:535.215000px;}
.y153{bottom:535.575000px;}
.y32e{bottom:536.295000px;}
.y71{bottom:537.375000px;}
.ybe{bottom:538.455000px;}
.yab{bottom:539.355000px;}
.y29{bottom:540.795000px;}
.y18b{bottom:541.515000px;}
.y19f{bottom:543.495000px;}
.y21a{bottom:544.395000px;}
.y31a{bottom:544.935000px;}
.y10a{bottom:546.735000px;}
.y40{bottom:547.275000px;}
.y2b8{bottom:549.255000px;}
.y25c{bottom:550.335000px;}
.y3c2{bottom:551.415000px;}
.y1e4{bottom:552.315000px;}
.y2fc{bottom:552.675000px;}
.yde{bottom:553.755000px;}
.y279{bottom:553.935000px;}
.y39b{bottom:554.835000px;}
.y2da{bottom:556.095000px;}
.y130{bottom:556.635000px;}
.y9{bottom:556.995000px;}
.y32d{bottom:557.715000px;}
.y70{bottom:558.795000px;}
.y93{bottom:559.875000px;}
.yaa{bottom:560.775000px;}
.y18a{bottom:562.935000px;}
.y28{bottom:563.115000px;}
.y19e{bottom:564.915000px;}
.yfd{bottom:565.095000px;}
.y219{bottom:565.815000px;}
.y319{bottom:566.175000px;}
.y3f{bottom:568.695000px;}
.y109{bottom:569.055000px;}
.y2b7{bottom:570.855000px;}
.y25b{bottom:572.655000px;}
.y3c1{bottom:572.835000px;}
.y1e3{bottom:573.735000px;}
.y2fb{bottom:574.995000px;}
.ydd{bottom:575.175000px;}
.y278{bottom:575.355000px;}
.y375{bottom:576.075000px;}
.y39a{bottom:577.155000px;}
.y2d9{bottom:577.515000px;}
.y12f{bottom:578.055000px;}
.y152{bottom:578.415000px;}
.y32c{bottom:579.135000px;}
.y6f{bottom:580.215000px;}
.y92{bottom:581.115000px;}
.ya9{bottom:582.195000px;}
.y204{bottom:583.095000px;}
.y189{bottom:585.255000px;}
.y27{bottom:586.155000px;}
.yfc{bottom:586.335000px;}
.y218{bottom:587.055000px;}
.y108{bottom:587.415000px;}
.y318{bottom:587.595000px;}
.y3e{bottom:590.115000px;}
.y2b6{bottom:593.175000px;}
.y25a{bottom:594.075000px;}
.y3c0{bottom:594.255000px;}
.y1e2{bottom:595.155000px;}
.ydc{bottom:596.595000px;}
.y22e{bottom:596.775000px;}
.y2fa{bottom:597.315000px;}
.y399{bottom:598.755000px;}
.y2d8{bottom:598.935000px;}
.y28e{bottom:599.475000px;}
.y151{bottom:599.655000px;}
.y8{bottom:599.835000px;}
.y12e{bottom:600.375000px;}
.y34f{bottom:600.555000px;}
.y3ee{bottom:600.735000px;}
.y203{bottom:601.455000px;}
.y6e{bottom:601.635000px;}
.y91{bottom:602.535000px;}
.ya8{bottom:603.435000px;}
.y188{bottom:606.675000px;}
.y19d{bottom:607.575000px;}
.yfb{bottom:607.755000px;}
.y217{bottom:608.475000px;}
.y317{bottom:610.815000px;}
.y26{bottom:611.535000px;}
.y2b5{bottom:614.595000px;}
.y259{bottom:615.495000px;}
.y1e1{bottom:617.475000px;}
.ydb{bottom:618.015000px;}
.y2f9{bottom:618.735000px;}
.y374{bottom:618.915000px;}
.y22d{bottom:619.095000px;}
.y2d7{bottom:620.175000px;}
.y150{bottom:621.075000px;}
.y12d{bottom:621.795000px;}
.y34e{bottom:621.975000px;}
.y6d{bottom:623.055000px;}
.y90{bottom:623.955000px;}
.ya7{bottom:624.855000px;}
.y187{bottom:628.095000px;}
.y19c{bottom:628.995000px;}
.yfa{bottom:629.175000px;}
.y216{bottom:630.795000px;}
.y25{bottom:632.775000px;}
.y316{bottom:636.015000px;}
.y3bf{bottom:636.915000px;}
.y258{bottom:637.095000px;}
.y2b4{bottom:637.455000px;}
.y1e0{bottom:639.075000px;}
.yda{bottom:639.435000px;}
.y2f8{bottom:640.185000px;}
.y22c{bottom:640.365000px;}
.y373{bottom:640.545000px;}
.y2d6{bottom:641.805000px;}
.y14f{bottom:642.525000px;}
.y7{bottom:642.705000px;}
.y28d{bottom:643.425000px;}
.y12c{bottom:644.145000px;}
.y6c{bottom:644.505000px;}
.y32b{bottom:644.685000px;}
.y8f{bottom:645.405000px;}
.ya6{bottom:646.305000px;}
.y398{bottom:647.745000px;}
.y241{bottom:648.825000px;}
.y186{bottom:650.445000px;}
.yf9{bottom:650.625000px;}
.y215{bottom:652.245000px;}
.y24{bottom:654.225000px;}
.y315{bottom:657.465000px;}
.y3be{bottom:658.365000px;}
.y257{bottom:658.545000px;}
.y2b3{bottom:660.345000px;}
.yd9{bottom:660.705000px;}
.y1df{bottom:661.425000px;}
.y1bd{bottom:661.680000px;}
.y22b{bottom:661.785000px;}
.y372{bottom:661.965000px;}
.y2d5{bottom:663.225000px;}
.y14e{bottom:663.945000px;}
.y34d{bottom:664.845000px;}
.y12b{bottom:665.385000px;}
.y6b{bottom:665.745000px;}
.y32a{bottom:666.465000px;}
.y8e{bottom:666.825000px;}
.ya5{bottom:667.725000px;}
.y240{bottom:671.145000px;}
.yf8{bottom:672.045000px;}
.y214{bottom:674.565000px;}
.y397{bottom:675.285000px;}
.y23{bottom:675.645000px;}
.y314{bottom:678.885000px;}
.y3e0{bottom:679.605000px;}
.y3bd{bottom:679.785000px;}
.y256{bottom:679.965000px;}
.y6{bottom:681.945000px;}
.yd8{bottom:682.125000px;}
.y2b2{bottom:682.665000px;}
.y1de{bottom:682.845000px;}
.y22a{bottom:683.205000px;}
.y371{bottom:683.385000px;}
.y2d4{bottom:684.645000px;}
.y14d{bottom:685.365000px;}
.y34c{bottom:686.085000px;}
.y3ed{bottom:686.265000px;}
.y12a{bottom:686.805000px;}
.y6a{bottom:687.165000px;}
.y329{bottom:687.885000px;}
.y8d{bottom:688.065000px;}
.ya4{bottom:689.145000px;}
.y23f{bottom:689.325000px;}
.yf7{bottom:693.465000px;}
.y1ca{bottom:693.720000px;}
.y213{bottom:695.985000px;}
.y22{bottom:697.965000px;}
.y312{bottom:698.325000px;}
.y3bc{bottom:701.205000px;}
.y255{bottom:701.565000px;}
.y3df{bottom:701.925000px;}
.y396{bottom:702.825000px;}
.y2b1{bottom:704.085000px;}
.y5{bottom:704.265000px;}
.yd7{bottom:704.445000px;}
.y229{bottom:704.625000px;}
.y1dd{bottom:704.805000px;}
.y2d3{bottom:706.065000px;}
.y172{bottom:706.605000px;}
.y34b{bottom:707.505000px;}
.y14c{bottom:707.685000px;}
.y129{bottom:708.225000px;}
.y69{bottom:708.585000px;}
.y328{bottom:709.305000px;}
.y8c{bottom:709.485000px;}
.ya3{bottom:710.565000px;}
.y1c9{bottom:714.420000px;}
.yf6{bottom:714.705000px;}
.y212{bottom:717.405000px;}
.y21{bottom:719.385000px;}
.y4{bottom:722.445000px;}
.y254{bottom:722.985000px;}
.y3de{bottom:723.345000px;}
.y2b0{bottom:725.505000px;}
.yd6{bottom:726.045000px;}
.y1dc{bottom:726.225000px;}
.y2f7{bottom:726.765000px;}
.y2d2{bottom:727.305000px;}
.y171{bottom:728.025000px;}
.y34a{bottom:728.925000px;}
.y14b{bottom:729.105000px;}
.y128{bottom:729.645000px;}
.y28c{bottom:730.005000px;}
.y395{bottom:730.365000px;}
.y68{bottom:730.905000px;}
.ya2{bottom:731.805000px;}
.yf5{bottom:736.125000px;}
.y211{bottom:738.825000px;}
.y20{bottom:740.805000px;}
.y3bb{bottom:743.865000px;}
.y253{bottom:744.405000px;}
.y3dd{bottom:744.765000px;}
.y1c8{bottom:745.560000px;}
.y2af{bottom:746.925000px;}
.y277{bottom:747.465000px;}
.yd5{bottom:747.645000px;}
.y2f6{bottom:748.185000px;}
.y228{bottom:748.365000px;}
.y2d1{bottom:748.725000px;}
.y170{bottom:749.445000px;}
.y349{bottom:750.345000px;}
.y127{bottom:751.065000px;}
.y14a{bottom:751.425000px;}
.y394{bottom:751.605000px;}
.y67{bottom:752.325000px;}
.ya1{bottom:753.225000px;}
.yf4{bottom:757.545000px;}
.y210{bottom:760.245000px;}
.y1f{bottom:762.225000px;}
.y3ba{bottom:765.285000px;}
.y1c7{bottom:765.900000px;}
.y252{bottom:766.005000px;}
.y3dc{bottom:766.185000px;}
.y2ae{bottom:768.525000px;}
.y1db{bottom:768.885000px;}
.y2f5{bottom:769.605000px;}
.y227{bottom:769.785000px;}
.yd4{bottom:769.965000px;}
.y2d0{bottom:770.145000px;}
.y16f{bottom:770.865000px;}
.y348{bottom:771.765000px;}
.y126{bottom:772.485000px;}
.y149{bottom:772.665000px;}
.y393{bottom:773.025000px;}
.y66{bottom:773.745000px;}
.ya0{bottom:774.645000px;}
.yf3{bottom:778.965000px;}
.y20f{bottom:781.485000px;}
.y30e{bottom:783.285000px;}
.y1e{bottom:783.465000px;}
.y3b9{bottom:786.705000px;}
.y1c6{bottom:786.780000px;}
.y251{bottom:787.425000px;}
.y3db{bottom:787.605000px;}
.y1da{bottom:790.305000px;}
.y2ad{bottom:790.845000px;}
.y226{bottom:791.025000px;}
.y276{bottom:791.205000px;}
.y2cf{bottom:791.745000px;}
.y16e{bottom:792.285000px;}
.yd3{bottom:793.185000px;}
.y125{bottom:793.725000px;}
.y148{bottom:794.085000px;}
.y392{bottom:794.445000px;}
.y65{bottom:795.165000px;}
.y9f{bottom:796.065000px;}
.yf2{bottom:800.385000px;}
.y20e{bottom:802.905000px;}
.y1d{bottom:804.885000px;}
.y1c4{bottom:807.300000px;}
.y3b8{bottom:808.125000px;}
.y250{bottom:808.845000px;}
.y3da{bottom:809.025000px;}
.y2ac{bottom:812.085000px;}
.y2f4{bottom:812.265000px;}
.y275{bottom:812.445000px;}
.y1d9{bottom:812.625000px;}
.y16d{bottom:813.705000px;}
.y225{bottom:814.065000px;}
.y347{bottom:814.425000px;}
.y124{bottom:815.325000px;}
.y147{bottom:815.505000px;}
.y391{bottom:815.865000px;}
.y64{bottom:816.405000px;}
.y9e{bottom:817.485000px;}
.yf1{bottom:822.705000px;}
.y20d{bottom:825.225000px;}
.y1c{bottom:826.305000px;}
.y1c3{bottom:828.000000px;}
.y3b7{bottom:829.545000px;}
.y24f{bottom:830.265000px;}
.y370{bottom:830.985000px;}
.y3d9{bottom:831.345000px;}
.y2ab{bottom:833.505000px;}
.y2f3{bottom:833.685000px;}
.y274{bottom:834.765000px;}
.y1d8{bottom:834.945000px;}
.y224{bottom:835.485000px;}
.y346{bottom:835.845000px;}
.y16c{bottom:836.025000px;}
.y123{bottom:836.745000px;}
.y146{bottom:836.925000px;}
.y390{bottom:837.285000px;}
.y63{bottom:837.825000px;}
.y9d{bottom:838.725000px;}
.yf0{bottom:844.305000px;}
.y20c{bottom:846.645000px;}
.y1b{bottom:847.725000px;}
.y1c1{bottom:848.520000px;}
.y3b6{bottom:850.785000px;}
.y24e{bottom:852.765000px;}
.y2aa{bottom:854.925000px;}
.y2f2{bottom:855.285000px;}
.y273{bottom:856.185000px;}
.y1d7{bottom:856.365000px;}
.y223{bottom:856.725000px;}
.y2ce{bottom:856.905000px;}
.y16b{bottom:857.265000px;}
.y122{bottom:858.165000px;}
.y145{bottom:858.345000px;}
.y62{bottom:859.245000px;}
.y9c{bottom:860.145000px;}
.yef{bottom:865.725000px;}
.y20b{bottom:868.965000px;}
.y1a{bottom:869.145000px;}
.y1bf{bottom:869.760000px;}
.y3b5{bottom:872.205000px;}
.y24d{bottom:874.005000px;}
.y2a9{bottom:876.345000px;}
.y272{bottom:877.605000px;}
.y1d6{bottom:877.785000px;}
.y222{bottom:878.145000px;}
.y2cd{bottom:878.325000px;}
.y202{bottom:879.405000px;}
.y345{bottom:879.585000px;}
.y121{bottom:879.765000px;}
.y61{bottom:880.665000px;}
.y38f{bottom:881.205000px;}
.y9b{bottom:881.565000px;}
.y20a{bottom:887.325000px;}
.yee{bottom:888.045000px;}
.y19{bottom:890.565000px;}
.y3b4{bottom:893.670000px;}
.y24c{bottom:895.470000px;}
.y30c{bottom:896.550000px;}
.y2a8{bottom:897.990000px;}
.y271{bottom:899.070000px;}
.y1d5{bottom:899.250000px;}
.y221{bottom:899.610000px;}
.y201{bottom:900.690000px;}
.y120{bottom:901.050000px;}
.y60{bottom:902.130000px;}
.y38e{bottom:902.670000px;}
.y8b{bottom:903.030000px;}
.y1bc{bottom:905.760000px;}
.yed{bottom:906.450000px;}
.y18{bottom:911.850000px;}
.y3b3{bottom:915.090000px;}
.y24b{bottom:916.890000px;}
.y2a7{bottom:920.310000px;}
.y2f1{bottom:920.490000px;}
.y1d4{bottom:920.670000px;}
.y220{bottom:921.030000px;}
.y270{bottom:921.390000px;}
.y200{bottom:922.110000px;}
.y11f{bottom:922.470000px;}
.y5f{bottom:923.370000px;}
.y38d{bottom:924.090000px;}
.y8a{bottom:924.450000px;}
.y1bb{bottom:926.280000px;}
.y17{bottom:933.270000px;}
.y3b2{bottom:936.510000px;}
.y24a{bottom:938.310000px;}
.y2a6{bottom:941.730000px;}
.y2f0{bottom:941.910000px;}
.y1d3{bottom:942.090000px;}
.y26f{bottom:943.350000px;}
.y1ff{bottom:943.530000px;}
.y11e{bottom:943.890000px;}
.y5e{bottom:944.790000px;}
.y38c{bottom:945.690000px;}
.y89{bottom:945.870000px;}
.y1ba{bottom:946.800000px;}
.y16{bottom:954.690000px;}
.y3b1{bottom:957.930000px;}
.y249{bottom:959.730000px;}
.y3d8{bottom:960.630000px;}
.y2a5{bottom:962.970000px;}
.y2ef{bottom:963.150000px;}
.y1d2{bottom:964.410000px;}
.y1fe{bottom:964.950000px;}
.y26e{bottom:965.130000px;}
.y16a{bottom:965.310000px;}
.y5d{bottom:966.210000px;}
.y38b{bottom:966.930000px;}
.y88{bottom:967.110000px;}
.y1b9{bottom:967.500000px;}
.y15{bottom:976.110000px;}
.y3b0{bottom:979.170000px;}
.y248{bottom:980.970000px;}
.y3d7{bottom:982.050000px;}
.y30a{bottom:982.230000px;}
.y2a4{bottom:984.390000px;}
.y2ee{bottom:985.470000px;}
.y1d1{bottom:985.650000px;}
.y1fd{bottom:986.370000px;}
.y344{bottom:986.550000px;}
.y169{bottom:986.730000px;}
.y26d{bottom:987.090000px;}
.y5c{bottom:987.630000px;}
.y38a{bottom:988.350000px;}
.y1b8{bottom:988.380000px;}
.y87{bottom:988.530000px;}
.y14{bottom:997.530000px;}
.y3af{bottom:1000.590000px;}
.y247{bottom:1002.390000px;}
.y3d6{bottom:1003.470000px;}
.y2a3{bottom:1005.810000px;}
.y1d0{bottom:1007.070000px;}
.y1fc{bottom:1007.790000px;}
.y2cc{bottom:1007.970000px;}
.y168{bottom:1008.150000px;}
.y343{bottom:1008.870000px;}
.y5b{bottom:1009.050000px;}
.y1b7{bottom:1009.080000px;}
.y389{bottom:1009.770000px;}
.y86{bottom:1009.950000px;}
.y13{bottom:1018.770000px;}
.y3ae{bottom:1022.010000px;}
.y246{bottom:1024.710000px;}
.y2a2{bottom:1027.410000px;}
.y1fb{bottom:1029.030000px;}
.y1cf{bottom:1029.390000px;}
.y1b5{bottom:1029.780000px;}
.y2cb{bottom:1030.290000px;}
.y5a{bottom:1030.470000px;}
.y388{bottom:1031.190000px;}
.y85{bottom:1031.370000px;}
.y12{bottom:1040.190000px;}
.y3ad{bottom:1043.430000px;}
.y245{bottom:1046.130000px;}
.y3d5{bottom:1047.030000px;}
.y2a1{bottom:1049.730000px;}
.y1b4{bottom:1050.300000px;}
.y1ce{bottom:1050.810000px;}
.y1fa{bottom:1051.530000px;}
.y167{bottom:1051.710000px;}
.y387{bottom:1052.610000px;}
.y59{bottom:1052.790000px;}
.y11{bottom:1061.610000px;}
.y3ac{bottom:1064.850000px;}
.y244{bottom:1067.550000px;}
.y3d4{bottom:1070.250000px;}
.y1b2{bottom:1070.820000px;}
.y2a0{bottom:1071.330000px;}
.y1cd{bottom:1072.230000px;}
.y1f9{bottom:1072.950000px;}
.y166{bottom:1073.130000px;}
.y58{bottom:1074.210000px;}
.y10{bottom:1085.370000px;}
.y3{bottom:1085.910000px;}
.y3ab{bottom:1086.090000px;}
.y23e{bottom:1089.870000px;}
.y1b1{bottom:1091.520000px;}
.y29f{bottom:1093.650000px;}
.y1cc{bottom:1094.550000px;}
.y57{bottom:1095.450000px;}
.y2{bottom:1109.130000px;}
.y3aa{bottom:1109.310000px;}
.yf{bottom:1110.570000px;}
.y23d{bottom:1112.190000px;}
.y1af{bottom:1112.580000px;}
.y243{bottom:1113.090000px;}
.y1cb{bottom:1115.970000px;}
.y342{bottom:1116.330000px;}
.y56{bottom:1116.870000px;}
.ye{bottom:1132.890000px;}
.y1{bottom:1135.230000px;}
.y23c{bottom:1135.410000px;}
.y55{bottom:1138.290000px;}
.h9{height:21.600000px;}
.hb{height:21.780000px;}
.ha{height:21.960000px;}
.h15{height:47.160000px;}
.h19{height:47.340000px;}
.h16{height:47.520000px;}
.h18{height:47.700000px;}
.h3{height:50.273438px;}
.h7{height:50.800781px;}
.h1a{height:50.941406px;}
.h8{height:52.417969px;}
.h5{height:58.819922px;}
.h2{height:59.436914px;}
.h12{height:59.940000px;}
.h10{height:60.660000px;}
.hc{height:62.640000px;}
.he{height:62.820000px;}
.hd{height:63.036000px;}
.h14{height:67.860000px;}
.h17{height:68.040000px;}
.h11{height:88.020000px;}
.h13{height:89.280000px;}
.hf{height:101.520000px;}
.h4{height:101.601562px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.h6{height:1263.060000px;}
.wb{width:6.120000px;}
.wa{width:6.300000px;}
.w13{width:8.100000px;}
.w19{width:12.060000px;}
.w7{width:12.240000px;}
.w6{width:18.000000px;}
.w31{width:35.460000px;}
.w2e{width:37.080000px;}
.wf{width:40.680000px;}
.w20{width:41.040000px;}
.w1d{width:48.060000px;}
.w21{width:52.560000px;}
.w2d{width:54.900000px;}
.w2f{width:55.440000px;}
.w30{width:56.916000px;}
.w29{width:57.240000px;}
.w2c{width:62.316000px;}
.w15{width:67.860000px;}
.w1c{width:70.560000px;}
.w27{width:71.496000px;}
.w12{width:72.000000px;}
.w2a{width:72.576000px;}
.w10{width:72.900000px;}
.w28{width:74.700000px;}
.w1e{width:75.600000px;}
.w2b{width:80.640000px;}
.we{width:81.900000px;}
.w9{width:86.760000px;}
.w14{width:88.740000px;}
.w16{width:89.280000px;}
.w24{width:91.620000px;}
.w18{width:94.860000px;}
.w26{width:98.820000px;}
.w25{width:100.296000px;}
.w22{width:100.980000px;}
.w1b{width:107.280000px;}
.w33{width:112.860000px;}
.wd{width:118.260000px;}
.w11{width:118.800000px;}
.w32{width:121.176000px;}
.w1f{width:130.680000px;}
.w23{width:204.300000px;}
.w17{width:329.040000px;}
.w8{width:372.960000px;}
.w1a{width:376.920000px;}
.wc{width:420.840000px;}
.w4{width:892.500000px;}
.w5{width:892.799987px;}
.w3{width:892.800000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x31{left:1.620000px;}
.x2f{left:3.600000px;}
.x40{left:73.439987px;}
.xb{left:80.999987px;}
.x2{left:108.035987px;}
.x5{left:111.455987px;}
.x2e{left:113.976000px;}
.xf{left:121.320000px;}
.x10{left:130.680000px;}
.x11{left:144.000000px;}
.x6{left:153.749987px;}
.x12{left:172.980000px;}
.x1a{left:176.940000px;}
.x1b{left:179.640000px;}
.x3d{left:184.710000px;}
.x13{left:196.380000px;}
.x9{left:199.829987px;}
.x30{left:211.710000px;}
.x16{left:213.660000px;}
.x1{left:231.509987px;}
.x7{left:255.449987px;}
.x19{left:284.220000px;}
.x3e{left:306.975000px;}
.x14{left:312.300000px;}
.x32{left:317.955000px;}
.x8{left:327.494987px;}
.x2d{left:337.574987px;}
.x17{left:351.540000px;}
.x18{left:357.660000px;}
.x15{left:369.720000px;}
.x2b{left:419.834987px;}
.x41{left:439.274987px;}
.x1c{left:442.800000px;}
.x4{left:446.474987px;}
.x3f{left:448.274987px;}
.xe{left:463.034987px;}
.xa{left:473.114987px;}
.x33{left:474.375000px;}
.x37{left:477.435000px;}
.x1d{left:486.720000px;}
.xd{left:492.914987px;}
.x1e{left:495.540000px;}
.x2c{left:500.864987px;}
.x1f{left:506.160000px;}
.x29{left:509.220000px;}
.x24{left:522.900000px;}
.x38{left:541.005000px;}
.x28{left:549.360000px;}
.x20{left:553.680000px;}
.x27{left:593.460000px;}
.x39{left:597.165000px;}
.x21{left:606.600000px;}
.x22{left:611.100000px;}
.x3{left:625.424987px;}
.x34{left:628.665000px;}
.x3a{left:635.505000px;}
.x25{left:646.740000px;}
.x23{left:664.200000px;}
.x35{left:690.045000px;}
.x3b{left:692.025000px;}
.x3c{left:750.030000px;}
.x26{left:758.520000px;}
.x36{left:766.950000px;}
.xc{left:785.669987px;}
.x2a{left:804.749987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-0.256000pt;}
.ls3d{letter-spacing:-0.192000pt;}
.ls1{letter-spacing:-0.160000pt;}
.ls13{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3e{letter-spacing:0.064000pt;}
.lsb{letter-spacing:0.106667pt;}
.ls2{letter-spacing:0.128000pt;}
.ls3c{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.192000pt;}
.ls23{letter-spacing:0.256000pt;}
.lse{letter-spacing:0.640000pt;}
.ls28{letter-spacing:3.200000pt;}
.ls3a{letter-spacing:3.840000pt;}
.ls32{letter-spacing:6.528000pt;}
.ls33{letter-spacing:11.008000pt;}
.ls25{letter-spacing:11.520000pt;}
.ls26{letter-spacing:12.928000pt;}
.ls2a{letter-spacing:18.688000pt;}
.ls2d{letter-spacing:21.120000pt;}
.ls43{letter-spacing:26.832640pt;}
.ls42{letter-spacing:27.472640pt;}
.ls19{letter-spacing:28.138667pt;}
.ls37{letter-spacing:29.440000pt;}
.ls2b{letter-spacing:30.080000pt;}
.ls7{letter-spacing:30.208000pt;}
.ls48{letter-spacing:31.360000pt;}
.ls2c{letter-spacing:31.488000pt;}
.ls31{letter-spacing:31.978667pt;}
.ls27{letter-spacing:32.000000pt;}
.ls45{letter-spacing:35.840000pt;}
.ls22{letter-spacing:37.120000pt;}
.ls41{letter-spacing:38.352640pt;}
.ls24{letter-spacing:39.808000pt;}
.ls1c{letter-spacing:39.936000pt;}
.ls39{letter-spacing:44.160000pt;}
.ls2e{letter-spacing:46.720000pt;}
.ls18{letter-spacing:51.200000pt;}
.ls17{letter-spacing:54.400000pt;}
.ls16{letter-spacing:55.018667pt;}
.ls1d{letter-spacing:55.040000pt;}
.ls15{letter-spacing:55.808000pt;}
.ls12{letter-spacing:55.936000pt;}
.ls3f{letter-spacing:56.938667pt;}
.ls20{letter-spacing:56.960000pt;}
.ls40{letter-spacing:59.520000pt;}
.ls11{letter-spacing:62.672640pt;}
.ls14{letter-spacing:62.800640pt;}
.ls46{letter-spacing:74.880000pt;}
.lsf{letter-spacing:78.080000pt;}
.ls1f{letter-spacing:85.120000pt;}
.ls36{letter-spacing:97.920000pt;}
.ls5{letter-spacing:103.200000pt;}
.ls47{letter-spacing:113.920000pt;}
.ls34{letter-spacing:117.120000pt;}
.ls9{letter-spacing:119.040000pt;}
.ls2f{letter-spacing:120.938667pt;}
.ls3b{letter-spacing:124.160000pt;}
.ls1a{letter-spacing:124.800000pt;}
.ls30{letter-spacing:131.840000pt;}
.ls29{letter-spacing:133.120000pt;}
.ls1b{letter-spacing:138.880000pt;}
.ls10{letter-spacing:142.314667pt;}
.lsc{letter-spacing:151.786667pt;}
.lsd{letter-spacing:151.914667pt;}
.ls35{letter-spacing:156.160000pt;}
.ls1e{letter-spacing:160.000000pt;}
.ls4{letter-spacing:162.560000pt;}
.ls8{letter-spacing:163.840000pt;}
.ls44{letter-spacing:170.880000pt;}
.ls38{letter-spacing:175.360000pt;}
.ls6{letter-spacing:175.978667pt;}
.ls21{letter-spacing:176.106667pt;}
.ws9{word-spacing:-64.000000pt;}
.ws6{word-spacing:-17.792000pt;}
.ws8{word-spacing:-16.256000pt;}
.ws4{word-spacing:-16.192000pt;}
.ws1{word-spacing:-16.128000pt;}
.wsb{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.872000pt;}
.ws2{word-spacing:-15.744000pt;}
.ws5{word-spacing:-14.767360pt;}
.wsa{word-spacing:-13.280000pt;}
.ws0{word-spacing:0.000000pt;}
._43{margin-left:-8.850773pt;}
._1{margin-left:-7.712640pt;}
._46{margin-left:-6.492160pt;}
._12{margin-left:-5.501440pt;}
._a{margin-left:-4.259413pt;}
._17{margin-left:-3.200000pt;}
._3{margin-left:-2.176000pt;}
._0{margin-left:-0.898560pt;}
._2{width:1.198080pt;}
._1a{width:2.961920pt;}
._f{width:4.352000pt;}
._b{width:5.632000pt;}
._c{width:6.720000pt;}
._e{width:7.869440pt;}
._d{width:8.898560pt;}
._11{width:9.914027pt;}
._9{width:11.072000pt;}
._6{width:12.096000pt;}
._7{width:13.056000pt;}
._8{width:14.745173pt;}
._37{width:17.041920pt;}
._15{width:18.053120pt;}
._4{width:18.944000pt;}
._5{width:19.850667pt;}
._24{width:21.376000pt;}
._30{width:22.673920pt;}
._31{width:24.192000pt;}
._32{width:25.297920pt;}
._16{width:26.368000pt;}
._10{width:27.776000pt;}
._18{width:29.312000pt;}
._19{width:30.545920pt;}
._3d{width:31.552000pt;}
._23{width:32.768000pt;}
._2e{width:34.048000pt;}
._2f{width:34.944000pt;}
._33{width:36.049920pt;}
._1b{width:37.696000pt;}
._1c{width:38.720000pt;}
._25{width:40.000000pt;}
._29{width:41.346560pt;}
._28{width:42.304000pt;}
._2d{width:43.456000pt;}
._2c{width:44.352000pt;}
._44{width:45.396480pt;}
._54{width:46.592000pt;}
._35{width:47.488000pt;}
._36{width:48.768000pt;}
._3c{width:50.112000pt;}
._34{width:51.584000pt;}
._39{width:53.504000pt;}
._26{width:54.528000pt;}
._27{width:55.936000pt;}
._3e{width:57.472000pt;}
._1e{width:58.432000pt;}
._1d{width:60.323413pt;}
._3b{width:61.312000pt;}
._2a{width:63.168000pt;}
._20{width:64.554667pt;}
._21{width:65.664000pt;}
._38{width:66.624000pt;}
._45{width:67.712000pt;}
._42{width:68.885333pt;}
._3a{width:70.402560pt;}
._50{width:71.293440pt;}
._2b{width:72.448000pt;}
._40{width:74.816000pt;}
._41{width:75.712000pt;}
._22{width:76.835413pt;}
._47{width:78.620587pt;}
._57{width:81.856000pt;}
._58{width:84.032000pt;}
._1f{width:86.208000pt;}
._5f{width:88.832000pt;}
._52{width:90.496000pt;}
._60{width:94.976000pt;}
._14{width:99.648000pt;}
._13{width:100.608000pt;}
._5c{width:102.400000pt;}
._4e{width:103.424000pt;}
._4f{width:104.320000pt;}
._5d{width:105.410560pt;}
._5b{width:107.072000pt;}
._55{width:113.386667pt;}
._56{width:114.496000pt;}
._3f{width:118.400000pt;}
._49{width:122.240000pt;}
._4a{width:123.392000pt;}
._4d{width:124.288000pt;}
._48{width:130.688000pt;}
._51{width:132.352000pt;}
._4c{width:134.400000pt;}
._5e{width:138.304000pt;}
._5a{width:157.312000pt;}
._59{width:158.307413pt;}
._4b{width:162.434560pt;}
._53{width:304.931413pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y1c0{bottom:4.093333pt;}
.y1c2{bottom:4.253333pt;}
.y1b0{bottom:4.293333pt;}
.y1c5{bottom:4.413333pt;}
.y1b6{bottom:4.453333pt;}
.y1be{bottom:4.573333pt;}
.y1b3{bottom:4.613333pt;}
.y357{bottom:4.960000pt;}
.y35b{bottom:5.760000pt;}
.y362{bottom:7.200000pt;}
.y37a{bottom:7.360000pt;}
.y366{bottom:7.520000pt;}
.y36d{bottom:7.674667pt;}
.y376{bottom:7.680000pt;}
.y36a{bottom:9.280000pt;}
.y302{bottom:13.120000pt;}
.y35e{bottom:15.360000pt;}
.y360{bottom:16.000000pt;}
.y36e{bottom:16.154667pt;}
.y364{bottom:16.160000pt;}
.y300{bottom:20.800000pt;}
.y313{bottom:21.600000pt;}
.y306{bottom:23.040000pt;}
.y303{bottom:23.080000pt;}
.y353{bottom:24.800000pt;}
.y35c{bottom:25.280000pt;}
.y355{bottom:25.440000pt;}
.y35a{bottom:25.600000pt;}
.y361{bottom:27.040000pt;}
.y379{bottom:27.200000pt;}
.y365{bottom:27.360000pt;}
.y36c{bottom:27.514667pt;}
.y369{bottom:27.520000pt;}
.y305{bottom:32.960000pt;}
.y301{bottom:33.000000pt;}
.y311{bottom:34.240000pt;}
.y351{bottom:34.720000pt;}
.y35d{bottom:35.200000pt;}
.y30d{bottom:39.040000pt;}
.y2ff{bottom:40.800000pt;}
.y310{bottom:43.520000pt;}
.y354{bottom:44.000000pt;}
.y352{bottom:44.640000pt;}
.y359{bottom:45.440000pt;}
.y368{bottom:45.600000pt;}
.y30f{bottom:63.360000pt;}
.y356{bottom:64.480000pt;}
.y30b{bottom:75.360000pt;}
.y3d{bottom:100.320000pt;}
.y107{bottom:101.600000pt;}
.y26c{bottom:104.000000pt;}
.y54{bottom:105.280000pt;}
.y21f{bottom:106.080000pt;}
.y3ec{bottom:106.400000pt;}
.y1f8{bottom:107.040000pt;}
.y242{bottom:107.840000pt;}
.y386{bottom:109.920000pt;}
.y29e{bottom:110.080000pt;}
.y144{bottom:110.240000pt;}
.y84{bottom:110.560000pt;}
.y165{bottom:110.880000pt;}
.y3a9{bottom:111.200000pt;}
.y3fe{bottom:112.160000pt;}
.y341{bottom:112.320000pt;}
.y36f{bottom:114.560000pt;}
.y185{bottom:114.720000pt;}
.y9a{bottom:115.520000pt;}
.yc2{bottom:117.280000pt;}
.y1ae{bottom:117.600000pt;}
.yd2{bottom:118.080000pt;}
.y3c{bottom:119.360000pt;}
.y106{bottom:120.512000pt;}
.y2ca{bottom:121.152000pt;}
.y11d{bottom:122.112000pt;}
.y21e{bottom:122.432000pt;}
.y26b{bottom:123.072000pt;}
.y53{bottom:124.352000pt;}
.y3eb{bottom:125.472000pt;}
.y1f7{bottom:126.112000pt;}
.y28b{bottom:126.912000pt;}
.y3d3{bottom:128.032000pt;}
.y2ed{bottom:128.832000pt;}
.y385{bottom:128.992000pt;}
.y29d{bottom:129.152000pt;}
.y143{bottom:129.312000pt;}
.y83{bottom:129.632000pt;}
.y164{bottom:129.952000pt;}
.y3a8{bottom:130.112000pt;}
.y3fd{bottom:131.232000pt;}
.y36b{bottom:131.392000pt;}
.y340{bottom:131.872000pt;}
.y184{bottom:133.786667pt;}
.y99{bottom:134.586667pt;}
.ybd{bottom:136.346667pt;}
.y1ad{bottom:136.666667pt;}
.yd1{bottom:137.146667pt;}
.y3b{bottom:138.426667pt;}
.y105{bottom:139.546667pt;}
.y2c9{bottom:140.186667pt;}
.y11c{bottom:141.146667pt;}
.y26a{bottom:141.946667pt;}
.y52{bottom:143.386667pt;}
.y3ea{bottom:144.506667pt;}
.y1f6{bottom:144.986667pt;}
.y23b{bottom:145.146667pt;}
.y28a{bottom:145.946667pt;}
.y3d2{bottom:147.066667pt;}
.y2ec{bottom:148.026667pt;}
.y29c{bottom:148.186667pt;}
.y82{bottom:148.666667pt;}
.y163{bottom:148.986667pt;}
.y142{bottom:149.146667pt;}
.y3fc{bottom:150.266667pt;}
.y33f{bottom:151.386667pt;}
.y183{bottom:152.826667pt;}
.y98{bottom:153.626667pt;}
.ybc{bottom:155.386667pt;}
.yd0{bottom:156.186667pt;}
.y19b{bottom:156.506667pt;}
.y3a{bottom:157.466667pt;}
.y104{bottom:158.586667pt;}
.y2c8{bottom:159.386667pt;}
.y11b{bottom:160.986667pt;}
.y51{bottom:162.426667pt;}
.y3e9{bottom:163.386667pt;}
.y1f5{bottom:164.026667pt;}
.y289{bottom:164.986667pt;}
.y3d1{bottom:166.106667pt;}
.y384{bottom:167.066667pt;}
.y29b{bottom:167.226667pt;}
.y81{bottom:167.706667pt;}
.y2eb{bottom:167.866667pt;}
.y162{bottom:168.026667pt;}
.y141{bottom:168.186667pt;}
.y309{bottom:168.986667pt;}
.y3fb{bottom:169.306667pt;}
.y33e{bottom:170.746667pt;}
.y182{bottom:171.866667pt;}
.y209{bottom:172.666667pt;}
.y97{bottom:173.466667pt;}
.ybb{bottom:174.426667pt;}
.ycf{bottom:175.226667pt;}
.y19a{bottom:175.546667pt;}
.y39{bottom:176.346667pt;}
.y103{bottom:177.626667pt;}
.y2c7{bottom:178.266667pt;}
.y327{bottom:178.426667pt;}
.y11a{bottom:180.026667pt;}
.y50{bottom:181.466667pt;}
.y367{bottom:182.266667pt;}
.y1f4{bottom:183.066667pt;}
.y3e8{bottom:183.226667pt;}
.y288{bottom:183.866667pt;}
.y3d0{bottom:184.986667pt;}
.y383{bottom:186.106667pt;}
.y29a{bottom:186.266667pt;}
.y80{bottom:186.746667pt;}
.y2ea{bottom:186.906667pt;}
.y161{bottom:187.866667pt;}
.y140{bottom:188.026667pt;}
.y3fa{bottom:189.146667pt;}
.y33d{bottom:190.746667pt;}
.y181{bottom:190.906667pt;}
.y208{bottom:191.706667pt;}
.y96{bottom:192.506667pt;}
.yba{bottom:193.306667pt;}
.yce{bottom:194.266667pt;}
.y199{bottom:194.426667pt;}
.y38{bottom:195.386667pt;}
.y102{bottom:196.666667pt;}
.y2c6{bottom:197.306667pt;}
.y326{bottom:197.466667pt;}
.y269{bottom:199.066667pt;}
.y119{bottom:199.866667pt;}
.y4f{bottom:200.346667pt;}
.y23a{bottom:202.106667pt;}
.y3e7{bottom:202.266667pt;}
.y1f3{bottom:202.906667pt;}
.y287{bottom:203.706667pt;}
.y3cf{bottom:204.026667pt;}
.y382{bottom:205.146667pt;}
.y2e9{bottom:205.946667pt;}
.y299{bottom:206.266667pt;}
.y7f{bottom:206.586667pt;}
.y160{bottom:206.906667pt;}
.y13f{bottom:207.066667pt;}
.y3f9{bottom:208.186667pt;}
.y33c{bottom:209.626667pt;}
.y180{bottom:209.786667pt;}
.y207{bottom:210.746667pt;}
.y95{bottom:211.546667pt;}
.yb9{bottom:212.346667pt;}
.ycd{bottom:213.146667pt;}
.y198{bottom:213.466667pt;}
.y37{bottom:214.426667pt;}
.y101{bottom:215.706667pt;}
.y2c5{bottom:216.346667pt;}
.y325{bottom:216.506667pt;}
.y268{bottom:218.106667pt;}
.y118{bottom:218.906667pt;}
.y4e{bottom:219.386667pt;}
.y239{bottom:221.306667pt;}
.y1f2{bottom:222.106667pt;}
.y286{bottom:222.746667pt;}
.y3ce{bottom:223.066667pt;}
.y381{bottom:224.186667pt;}
.y2e8{bottom:224.986667pt;}
.y298{bottom:225.146667pt;}
.yec{bottom:225.306667pt;}
.y308{bottom:225.946667pt;}
.y3a7{bottom:226.106667pt;}
.y15f{bottom:226.746667pt;}
.y13e{bottom:226.906667pt;}
.y7e{bottom:227.066667pt;}
.y3f8{bottom:227.226667pt;}
.y33b{bottom:228.666667pt;}
.y17f{bottom:228.826667pt;}
.y206{bottom:229.786667pt;}
.y94{bottom:230.586667pt;}
.yb8{bottom:231.386667pt;}
.ycc{bottom:232.186667pt;}
.y197{bottom:232.506667pt;}
.y1ac{bottom:233.306667pt;}
.y36{bottom:233.466667pt;}
.y100{bottom:234.586667pt;}
.y324{bottom:235.386667pt;}
.y2c4{bottom:235.546667pt;}
.y117{bottom:237.946667pt;}
.y4d{bottom:238.426667pt;}
.y3e6{bottom:240.346667pt;}
.y238{bottom:241.146667pt;}
.y285{bottom:241.786667pt;}
.y1f1{bottom:241.946667pt;}
.y3cd{bottom:242.106667pt;}
.y380{bottom:243.226667pt;}
.y2e7{bottom:244.026667pt;}
.yeb{bottom:244.186667pt;}
.y307{bottom:244.986667pt;}
.y3a6{bottom:245.146667pt;}
.y297{bottom:245.626667pt;}
.y15e{bottom:245.786667pt;}
.y13d{bottom:245.946667pt;}
.y3f7{bottom:246.106667pt;}
.y33a{bottom:247.706667pt;}
.y17e{bottom:247.866667pt;}
.y205{bottom:248.666667pt;}
.y7d{bottom:249.626667pt;}
.yb7{bottom:250.426667pt;}
.ycb{bottom:251.226667pt;}
.y363{bottom:251.386667pt;}
.y196{bottom:251.546667pt;}
.y35{bottom:252.506667pt;}
.y1ab{bottom:253.146667pt;}
.yff{bottom:254.426667pt;}
.y2c3{bottom:255.386667pt;}
.y116{bottom:256.986667pt;}
.y4c{bottom:257.466667pt;}
.y3e5{bottom:259.386667pt;}
.y237{bottom:260.186667pt;}
.y1f0{bottom:260.986667pt;}
.y3cc{bottom:261.146667pt;}
.y284{bottom:261.626667pt;}
.y304{bottom:261.786667pt;}
.y37f{bottom:262.106667pt;}
.y2e6{bottom:262.906667pt;}
.yea{bottom:263.226667pt;}
.y3a5{bottom:264.026667pt;}
.y296{bottom:264.666667pt;}
.y13c{bottom:264.826667pt;}
.y3f6{bottom:265.146667pt;}
.y339{bottom:266.746667pt;}
.y17d{bottom:266.906667pt;}
.y7c{bottom:268.506667pt;}
.yb6{bottom:269.466667pt;}
.yca{bottom:270.266667pt;}
.y195{bottom:270.586667pt;}
.yfe{bottom:270.906667pt;}
.y34{bottom:271.546667pt;}
.y1aa{bottom:272.186667pt;}
.y323{bottom:273.466667pt;}
.y2c2{bottom:274.426667pt;}
.y115{bottom:275.226667pt;}
.y4b{bottom:276.506667pt;}
.y267{bottom:276.826667pt;}
.y236{bottom:279.226667pt;}
.y1ef{bottom:280.026667pt;}
.y3cb{bottom:280.186667pt;}
.y283{bottom:280.666667pt;}
.y37e{bottom:281.146667pt;}
.y2e5{bottom:282.106667pt;}
.ye9{bottom:282.266667pt;}
.y3a4{bottom:283.066667pt;}
.y15d{bottom:283.706667pt;}
.y13b{bottom:283.866667pt;}
.y3f5{bottom:284.186667pt;}
.y295{bottom:284.506667pt;}
.y17c{bottom:285.946667pt;}
.y338{bottom:286.586667pt;}
.y7b{bottom:287.546667pt;}
.yb5{bottom:288.346667pt;}
.yc9{bottom:289.306667pt;}
.y194{bottom:289.626667pt;}
.y33{bottom:290.426667pt;}
.y1a9{bottom:291.226667pt;}
.y114{bottom:293.306667pt;}
.y2c1{bottom:293.466667pt;}
.y4a{bottom:295.546667pt;}
.y266{bottom:295.866667pt;}
.y235{bottom:298.106667pt;}
.y3e4{bottom:298.266667pt;}
.y1ee{bottom:299.066667pt;}
.y37d{bottom:300.186667pt;}
.y282{bottom:300.506667pt;}
.ye8{bottom:301.306667pt;}
.y2e4{bottom:301.946667pt;}
.y3a3{bottom:302.106667pt;}
.y35f{bottom:302.266667pt;}
.y15c{bottom:302.746667pt;}
.y13a{bottom:302.906667pt;}
.y294{bottom:303.546667pt;}
.y3f4{bottom:304.026667pt;}
.y17b{bottom:304.826667pt;}
.y337{bottom:305.626667pt;}
.y7a{bottom:306.586667pt;}
.yb4{bottom:307.386667pt;}
.yc8{bottom:308.346667pt;}
.y32{bottom:309.466667pt;}
.y1a8{bottom:311.066667pt;}
.y2c0{bottom:312.346667pt;}
.y113{bottom:313.146667pt;}
.y49{bottom:314.426667pt;}
.y265{bottom:314.746667pt;}
.y234{bottom:317.146667pt;}
.y3e3{bottom:317.306667pt;}
.y1ed{bottom:317.946667pt;}
.y3ca{bottom:318.106667pt;}
.y37c{bottom:319.226667pt;}
.y281{bottom:319.546667pt;}
.ye7{bottom:320.346667pt;}
.y2e3{bottom:320.986667pt;}
.y3a2{bottom:321.146667pt;}
.y139{bottom:321.946667pt;}
.y15b{bottom:322.106667pt;}
.y293{bottom:322.586667pt;}
.y3f3{bottom:323.066667pt;}
.y17a{bottom:323.866667pt;}
.y336{bottom:324.666667pt;}
.y79{bottom:325.626667pt;}
.yb3{bottom:326.426667pt;}
.yc7{bottom:327.226667pt;}
.y193{bottom:328.346667pt;}
.y31{bottom:328.506667pt;}
.y1a7{bottom:330.906667pt;}
.y322{bottom:331.386667pt;}
.y2bf{bottom:331.546667pt;}
.y112{bottom:332.186667pt;}
.y48{bottom:333.466667pt;}
.y264{bottom:333.786667pt;}
.y233{bottom:336.186667pt;}
.y1ec{bottom:336.986667pt;}
.y3c9{bottom:337.146667pt;}
.y37b{bottom:338.266667pt;}
.y280{bottom:338.586667pt;}
.ye6{bottom:339.386667pt;}
.y2e2{bottom:340.026667pt;}
.y3a1{bottom:340.186667pt;}
.y15a{bottom:341.146667pt;}
.y292{bottom:341.626667pt;}
.y138{bottom:341.786667pt;}
.y3f2{bottom:342.106667pt;}
.y179{bottom:342.906667pt;}
.y335{bottom:343.546667pt;}
.y78{bottom:344.706667pt;}
.yb2{bottom:345.506667pt;}
.yc6{bottom:346.306667pt;}
.y192{bottom:347.426667pt;}
.y30{bottom:347.586667pt;}
.y1a6{bottom:349.986667pt;}
.y321{bottom:350.466667pt;}
.y2be{bottom:351.426667pt;}
.y111{bottom:352.066667pt;}
.y47{bottom:352.546667pt;}
.y358{bottom:352.866667pt;}
.y263{bottom:353.666667pt;}
.y378{bottom:355.106667pt;}
.y3e2{bottom:355.266667pt;}
.y1eb{bottom:356.066667pt;}
.y3c8{bottom:356.226667pt;}
.y27f{bottom:357.666667pt;}
.ye5{bottom:358.306667pt;}
.y2e1{bottom:359.106667pt;}
.y3a0{bottom:359.266667pt;}
.y159{bottom:360.066667pt;}
.y291{bottom:360.706667pt;}
.y137{bottom:360.866667pt;}
.y3f1{bottom:361.186667pt;}
.y178{bottom:361.986667pt;}
.y334{bottom:362.626667pt;}
.y77{bottom:363.586667pt;}
.yb1{bottom:364.546667pt;}
.yc5{bottom:365.346667pt;}
.y2f{bottom:366.626667pt;}
.y191{bottom:367.266667pt;}
.y1a5{bottom:369.026667pt;}
.y320{bottom:370.306667pt;}
.y2bd{bottom:370.946667pt;}
.y110{bottom:371.106667pt;}
.y46{bottom:372.386667pt;}
.y262{bottom:372.866667pt;}
.y3e1{bottom:374.306667pt;}
.y232{bottom:375.266667pt;}
.y1ea{bottom:375.906667pt;}
.ye4{bottom:377.346667pt;}
.y27e{bottom:377.506667pt;}
.y2e0{bottom:378.146667pt;}
.y39f{bottom:379.106667pt;}
.y158{bottom:379.266667pt;}
.y290{bottom:379.746667pt;}
.y3f0{bottom:380.066667pt;}
.y136{bottom:380.706667pt;}
.y177{bottom:381.026667pt;}
.y333{bottom:381.666667pt;}
.y76{bottom:382.626667pt;}
.yb0{bottom:383.586667pt;}
.yc4{bottom:384.386667pt;}
.y2e{bottom:385.506667pt;}
.y190{bottom:386.306667pt;}
.y21d{bottom:387.906667pt;}
.y1a4{bottom:388.066667pt;}
.y31f{bottom:389.186667pt;}
.y10f{bottom:389.986667pt;}
.y2bc{bottom:390.626667pt;}
.y45{bottom:391.426667pt;}
.y261{bottom:391.906667pt;}
.y3c7{bottom:394.146667pt;}
.y1e9{bottom:395.106667pt;}
.y2fe{bottom:395.266667pt;}
.ye3{bottom:396.386667pt;}
.y27d{bottom:396.546667pt;}
.y2df{bottom:397.186667pt;}
.y157{bottom:398.146667pt;}
.y28f{bottom:398.786667pt;}
.y3ef{bottom:399.106667pt;}
.y135{bottom:399.746667pt;}
.y176{bottom:400.066667pt;}
.y332{bottom:400.706667pt;}
.y75{bottom:401.666667pt;}
.yaf{bottom:402.466667pt;}
.yc3{bottom:403.426667pt;}
.y2d{bottom:404.546667pt;}
.y18f{bottom:405.346667pt;}
.y377{bottom:405.986667pt;}
.y21c{bottom:406.946667pt;}
.y1a3{bottom:407.106667pt;}
.y31e{bottom:408.226667pt;}
.y10e{bottom:409.026667pt;}
.yd{bottom:410.146667pt;}
.y44{bottom:410.466667pt;}
.y260{bottom:410.946667pt;}
.y3c6{bottom:413.186667pt;}
.y231{bottom:414.146667pt;}
.y1e8{bottom:414.946667pt;}
.ye2{bottom:415.426667pt;}
.y2de{bottom:417.026667pt;}
.y156{bottom:418.146667pt;}
.y134{bottom:418.626667pt;}
.y175{bottom:418.946667pt;}
.y331{bottom:419.746667pt;}
.y74{bottom:420.706667pt;}
.yc1{bottom:421.506667pt;}
.y350{bottom:421.826667pt;}
.yae{bottom:422.306667pt;}
.y2c{bottom:423.586667pt;}
.y18e{bottom:424.386667pt;}
.y1a2{bottom:425.986667pt;}
.y31d{bottom:427.266667pt;}
.y10d{bottom:428.066667pt;}
.yc{bottom:429.186667pt;}
.y43{bottom:429.506667pt;}
.y2bb{bottom:429.666667pt;}
.y25f{bottom:431.266667pt;}
.y3c5{bottom:432.226667pt;}
.y230{bottom:433.186667pt;}
.y1e7{bottom:433.986667pt;}
.y27c{bottom:434.466667pt;}
.ye1{bottom:435.266667pt;}
.y39e{bottom:436.066667pt;}
.y2dd{bottom:436.226667pt;}
.y155{bottom:437.186667pt;}
.y133{bottom:437.666667pt;}
.y174{bottom:437.986667pt;}
.y330{bottom:438.786667pt;}
.y73{bottom:439.746667pt;}
.yc0{bottom:440.546667pt;}
.yad{bottom:441.346667pt;}
.y2b{bottom:442.626667pt;}
.y18d{bottom:443.426667pt;}
.y1a1{bottom:445.026667pt;}
.y31c{bottom:446.306667pt;}
.y10c{bottom:447.106667pt;}
.y42{bottom:448.386667pt;}
.yb{bottom:449.026667pt;}
.y2ba{bottom:449.186667pt;}
.y25e{bottom:451.106667pt;}
.y3c4{bottom:451.266667pt;}
.y1e6{bottom:453.026667pt;}
.y27b{bottom:453.506667pt;}
.ye0{bottom:454.306667pt;}
.y39d{bottom:455.106667pt;}
.y2dc{bottom:455.426667pt;}
.y154{bottom:456.226667pt;}
.y132{bottom:456.706667pt;}
.y173{bottom:457.026667pt;}
.y32f{bottom:457.666667pt;}
.y72{bottom:458.786667pt;}
.ybf{bottom:459.586667pt;}
.yac{bottom:460.386667pt;}
.y2a{bottom:461.666667pt;}
.y18c{bottom:462.466667pt;}
.y1a0{bottom:464.066667pt;}
.y21b{bottom:464.866667pt;}
.y31b{bottom:465.346667pt;}
.y10b{bottom:466.946667pt;}
.y41{bottom:467.426667pt;}
.y2b9{bottom:468.386667pt;}
.ya{bottom:469.666667pt;}
.y25d{bottom:470.146667pt;}
.y3c3{bottom:471.106667pt;}
.y1e5{bottom:471.906667pt;}
.y22f{bottom:472.066667pt;}
.y2fd{bottom:472.226667pt;}
.y27a{bottom:472.546667pt;}
.ydf{bottom:473.346667pt;}
.y39c{bottom:474.146667pt;}
.y2db{bottom:475.266667pt;}
.y131{bottom:475.746667pt;}
.y153{bottom:476.066667pt;}
.y32e{bottom:476.706667pt;}
.y71{bottom:477.666667pt;}
.ybe{bottom:478.626667pt;}
.yab{bottom:479.426667pt;}
.y29{bottom:480.706667pt;}
.y18b{bottom:481.346667pt;}
.y19f{bottom:483.106667pt;}
.y21a{bottom:483.906667pt;}
.y31a{bottom:484.386667pt;}
.y10a{bottom:485.986667pt;}
.y40{bottom:486.466667pt;}
.y2b8{bottom:488.226667pt;}
.y25c{bottom:489.186667pt;}
.y3c2{bottom:490.146667pt;}
.y1e4{bottom:490.946667pt;}
.y2fc{bottom:491.266667pt;}
.yde{bottom:492.226667pt;}
.y279{bottom:492.386667pt;}
.y39b{bottom:493.186667pt;}
.y2da{bottom:494.306667pt;}
.y130{bottom:494.786667pt;}
.y9{bottom:495.106667pt;}
.y32d{bottom:495.746667pt;}
.y70{bottom:496.706667pt;}
.y93{bottom:497.666667pt;}
.yaa{bottom:498.466667pt;}
.y18a{bottom:500.386667pt;}
.y28{bottom:500.546667pt;}
.y19e{bottom:502.146667pt;}
.yfd{bottom:502.306667pt;}
.y219{bottom:502.946667pt;}
.y319{bottom:503.266667pt;}
.y3f{bottom:505.506667pt;}
.y109{bottom:505.826667pt;}
.y2b7{bottom:507.426667pt;}
.y25b{bottom:509.026667pt;}
.y3c1{bottom:509.186667pt;}
.y1e3{bottom:509.986667pt;}
.y2fb{bottom:511.106667pt;}
.ydd{bottom:511.266667pt;}
.y278{bottom:511.426667pt;}
.y375{bottom:512.066667pt;}
.y39a{bottom:513.026667pt;}
.y2d9{bottom:513.346667pt;}
.y12f{bottom:513.826667pt;}
.y152{bottom:514.146667pt;}
.y32c{bottom:514.786667pt;}
.y6f{bottom:515.746667pt;}
.y92{bottom:516.546667pt;}
.ya9{bottom:517.506667pt;}
.y204{bottom:518.306667pt;}
.y189{bottom:520.226667pt;}
.y27{bottom:521.026667pt;}
.yfc{bottom:521.186667pt;}
.y218{bottom:521.826667pt;}
.y108{bottom:522.146667pt;}
.y318{bottom:522.306667pt;}
.y3e{bottom:524.546667pt;}
.y2b6{bottom:527.266667pt;}
.y25a{bottom:528.066667pt;}
.y3c0{bottom:528.226667pt;}
.y1e2{bottom:529.026667pt;}
.ydc{bottom:530.306667pt;}
.y22e{bottom:530.466667pt;}
.y2fa{bottom:530.946667pt;}
.y399{bottom:532.226667pt;}
.y2d8{bottom:532.386667pt;}
.y28e{bottom:532.866667pt;}
.y151{bottom:533.026667pt;}
.y8{bottom:533.186667pt;}
.y12e{bottom:533.666667pt;}
.y34f{bottom:533.826667pt;}
.y3ee{bottom:533.986667pt;}
.y203{bottom:534.626667pt;}
.y6e{bottom:534.786667pt;}
.y91{bottom:535.586667pt;}
.ya8{bottom:536.386667pt;}
.y188{bottom:539.266667pt;}
.y19d{bottom:540.066667pt;}
.yfb{bottom:540.226667pt;}
.y217{bottom:540.866667pt;}
.y317{bottom:542.946667pt;}
.y26{bottom:543.586667pt;}
.y2b5{bottom:546.306667pt;}
.y259{bottom:547.106667pt;}
.y1e1{bottom:548.866667pt;}
.ydb{bottom:549.346667pt;}
.y2f9{bottom:549.986667pt;}
.y374{bottom:550.146667pt;}
.y22d{bottom:550.306667pt;}
.y2d7{bottom:551.266667pt;}
.y150{bottom:552.066667pt;}
.y12d{bottom:552.706667pt;}
.y34e{bottom:552.866667pt;}
.y6d{bottom:553.826667pt;}
.y90{bottom:554.626667pt;}
.ya7{bottom:555.426667pt;}
.y187{bottom:558.306667pt;}
.y19c{bottom:559.106667pt;}
.yfa{bottom:559.266667pt;}
.y216{bottom:560.706667pt;}
.y25{bottom:562.466667pt;}
.y316{bottom:565.346667pt;}
.y3bf{bottom:566.146667pt;}
.y258{bottom:566.306667pt;}
.y2b4{bottom:566.626667pt;}
.y1e0{bottom:568.066667pt;}
.yda{bottom:568.386667pt;}
.y2f8{bottom:569.053333pt;}
.y22c{bottom:569.213333pt;}
.y373{bottom:569.373333pt;}
.y2d6{bottom:570.493333pt;}
.y14f{bottom:571.133333pt;}
.y7{bottom:571.293333pt;}
.y28d{bottom:571.933333pt;}
.y12c{bottom:572.573333pt;}
.y6c{bottom:572.893333pt;}
.y32b{bottom:573.053333pt;}
.y8f{bottom:573.693333pt;}
.ya6{bottom:574.493333pt;}
.y398{bottom:575.773333pt;}
.y241{bottom:576.733333pt;}
.y186{bottom:578.173333pt;}
.yf9{bottom:578.333333pt;}
.y215{bottom:579.773333pt;}
.y24{bottom:581.533333pt;}
.y315{bottom:584.413333pt;}
.y3be{bottom:585.213333pt;}
.y257{bottom:585.373333pt;}
.y2b3{bottom:586.973333pt;}
.yd9{bottom:587.293333pt;}
.y1df{bottom:587.933333pt;}
.y1bd{bottom:588.160000pt;}
.y22b{bottom:588.253333pt;}
.y372{bottom:588.413333pt;}
.y2d5{bottom:589.533333pt;}
.y14e{bottom:590.173333pt;}
.y34d{bottom:590.973333pt;}
.y12b{bottom:591.453333pt;}
.y6b{bottom:591.773333pt;}
.y32a{bottom:592.413333pt;}
.y8e{bottom:592.733333pt;}
.ya5{bottom:593.533333pt;}
.y240{bottom:596.573333pt;}
.yf8{bottom:597.373333pt;}
.y214{bottom:599.613333pt;}
.y397{bottom:600.253333pt;}
.y23{bottom:600.573333pt;}
.y314{bottom:603.453333pt;}
.y3e0{bottom:604.093333pt;}
.y3bd{bottom:604.253333pt;}
.y256{bottom:604.413333pt;}
.y6{bottom:606.173333pt;}
.yd8{bottom:606.333333pt;}
.y2b2{bottom:606.813333pt;}
.y1de{bottom:606.973333pt;}
.y22a{bottom:607.293333pt;}
.y371{bottom:607.453333pt;}
.y2d4{bottom:608.573333pt;}
.y14d{bottom:609.213333pt;}
.y34c{bottom:609.853333pt;}
.y3ed{bottom:610.013333pt;}
.y12a{bottom:610.493333pt;}
.y6a{bottom:610.813333pt;}
.y329{bottom:611.453333pt;}
.y8d{bottom:611.613333pt;}
.ya4{bottom:612.573333pt;}
.y23f{bottom:612.733333pt;}
.yf7{bottom:616.413333pt;}
.y1ca{bottom:616.640000pt;}
.y213{bottom:618.653333pt;}
.y22{bottom:620.413333pt;}
.y312{bottom:620.733333pt;}
.y3bc{bottom:623.293333pt;}
.y255{bottom:623.613333pt;}
.y3df{bottom:623.933333pt;}
.y396{bottom:624.733333pt;}
.y2b1{bottom:625.853333pt;}
.y5{bottom:626.013333pt;}
.yd7{bottom:626.173333pt;}
.y229{bottom:626.333333pt;}
.y1dd{bottom:626.493333pt;}
.y2d3{bottom:627.613333pt;}
.y172{bottom:628.093333pt;}
.y34b{bottom:628.893333pt;}
.y14c{bottom:629.053333pt;}
.y129{bottom:629.533333pt;}
.y69{bottom:629.853333pt;}
.y328{bottom:630.493333pt;}
.y8c{bottom:630.653333pt;}
.ya3{bottom:631.613333pt;}
.y1c9{bottom:635.040000pt;}
.yf6{bottom:635.293333pt;}
.y212{bottom:637.693333pt;}
.y21{bottom:639.453333pt;}
.y4{bottom:642.173333pt;}
.y254{bottom:642.653333pt;}
.y3de{bottom:642.973333pt;}
.y2b0{bottom:644.893333pt;}
.yd6{bottom:645.373333pt;}
.y1dc{bottom:645.533333pt;}
.y2f7{bottom:646.013333pt;}
.y2d2{bottom:646.493333pt;}
.y171{bottom:647.133333pt;}
.y34a{bottom:647.933333pt;}
.y14b{bottom:648.093333pt;}
.y128{bottom:648.573333pt;}
.y28c{bottom:648.893333pt;}
.y395{bottom:649.213333pt;}
.y68{bottom:649.693333pt;}
.ya2{bottom:650.493333pt;}
.yf5{bottom:654.333333pt;}
.y211{bottom:656.733333pt;}
.y20{bottom:658.493333pt;}
.y3bb{bottom:661.213333pt;}
.y253{bottom:661.693333pt;}
.y3dd{bottom:662.013333pt;}
.y1c8{bottom:662.720000pt;}
.y2af{bottom:663.933333pt;}
.y277{bottom:664.413333pt;}
.yd5{bottom:664.573333pt;}
.y2f6{bottom:665.053333pt;}
.y228{bottom:665.213333pt;}
.y2d1{bottom:665.533333pt;}
.y170{bottom:666.173333pt;}
.y349{bottom:666.973333pt;}
.y127{bottom:667.613333pt;}
.y14a{bottom:667.933333pt;}
.y394{bottom:668.093333pt;}
.y67{bottom:668.733333pt;}
.ya1{bottom:669.533333pt;}
.yf4{bottom:673.373333pt;}
.y210{bottom:675.773333pt;}
.y1f{bottom:677.533333pt;}
.y3ba{bottom:680.253333pt;}
.y1c7{bottom:680.800000pt;}
.y252{bottom:680.893333pt;}
.y3dc{bottom:681.053333pt;}
.y2ae{bottom:683.133333pt;}
.y1db{bottom:683.453333pt;}
.y2f5{bottom:684.093333pt;}
.y227{bottom:684.253333pt;}
.yd4{bottom:684.413333pt;}
.y2d0{bottom:684.573333pt;}
.y16f{bottom:685.213333pt;}
.y348{bottom:686.013333pt;}
.y126{bottom:686.653333pt;}
.y149{bottom:686.813333pt;}
.y393{bottom:687.133333pt;}
.y66{bottom:687.773333pt;}
.ya0{bottom:688.573333pt;}
.yf3{bottom:692.413333pt;}
.y20f{bottom:694.653333pt;}
.y30e{bottom:696.253333pt;}
.y1e{bottom:696.413333pt;}
.y3b9{bottom:699.293333pt;}
.y1c6{bottom:699.360000pt;}
.y251{bottom:699.933333pt;}
.y3db{bottom:700.093333pt;}
.y1da{bottom:702.493333pt;}
.y2ad{bottom:702.973333pt;}
.y226{bottom:703.133333pt;}
.y276{bottom:703.293333pt;}
.y2cf{bottom:703.773333pt;}
.y16e{bottom:704.253333pt;}
.yd3{bottom:705.053333pt;}
.y125{bottom:705.533333pt;}
.y148{bottom:705.853333pt;}
.y392{bottom:706.173333pt;}
.y65{bottom:706.813333pt;}
.y9f{bottom:707.613333pt;}
.yf2{bottom:711.453333pt;}
.y20e{bottom:713.693333pt;}
.y1d{bottom:715.453333pt;}
.y1c4{bottom:717.600000pt;}
.y3b8{bottom:718.333333pt;}
.y250{bottom:718.973333pt;}
.y3da{bottom:719.133333pt;}
.y2ac{bottom:721.853333pt;}
.y2f4{bottom:722.013333pt;}
.y275{bottom:722.173333pt;}
.y1d9{bottom:722.333333pt;}
.y16d{bottom:723.293333pt;}
.y225{bottom:723.613333pt;}
.y347{bottom:723.933333pt;}
.y124{bottom:724.733333pt;}
.y147{bottom:724.893333pt;}
.y391{bottom:725.213333pt;}
.y64{bottom:725.693333pt;}
.y9e{bottom:726.653333pt;}
.yf1{bottom:731.293333pt;}
.y20d{bottom:733.533333pt;}
.y1c{bottom:734.493333pt;}
.y1c3{bottom:736.000000pt;}
.y3b7{bottom:737.373333pt;}
.y24f{bottom:738.013333pt;}
.y370{bottom:738.653333pt;}
.y3d9{bottom:738.973333pt;}
.y2ab{bottom:740.893333pt;}
.y2f3{bottom:741.053333pt;}
.y274{bottom:742.013333pt;}
.y1d8{bottom:742.173333pt;}
.y224{bottom:742.653333pt;}
.y346{bottom:742.973333pt;}
.y16c{bottom:743.133333pt;}
.y123{bottom:743.773333pt;}
.y146{bottom:743.933333pt;}
.y390{bottom:744.253333pt;}
.y63{bottom:744.733333pt;}
.y9d{bottom:745.533333pt;}
.yf0{bottom:750.493333pt;}
.y20c{bottom:752.573333pt;}
.y1b{bottom:753.533333pt;}
.y1c1{bottom:754.240000pt;}
.y3b6{bottom:756.253333pt;}
.y24e{bottom:758.013333pt;}
.y2aa{bottom:759.933333pt;}
.y2f2{bottom:760.253333pt;}
.y273{bottom:761.053333pt;}
.y1d7{bottom:761.213333pt;}
.y223{bottom:761.533333pt;}
.y2ce{bottom:761.693333pt;}
.y16b{bottom:762.013333pt;}
.y122{bottom:762.813333pt;}
.y145{bottom:762.973333pt;}
.y62{bottom:763.773333pt;}
.y9c{bottom:764.573333pt;}
.yef{bottom:769.533333pt;}
.y20b{bottom:772.413333pt;}
.y1a{bottom:772.573333pt;}
.y1bf{bottom:773.120000pt;}
.y3b5{bottom:775.293333pt;}
.y24d{bottom:776.893333pt;}
.y2a9{bottom:778.973333pt;}
.y272{bottom:780.093333pt;}
.y1d6{bottom:780.253333pt;}
.y222{bottom:780.573333pt;}
.y2cd{bottom:780.733333pt;}
.y202{bottom:781.693333pt;}
.y345{bottom:781.853333pt;}
.y121{bottom:782.013333pt;}
.y61{bottom:782.813333pt;}
.y38f{bottom:783.293333pt;}
.y9b{bottom:783.613333pt;}
.y20a{bottom:788.733333pt;}
.yee{bottom:789.373333pt;}
.y19{bottom:791.613333pt;}
.y3b4{bottom:794.373333pt;}
.y24c{bottom:795.973333pt;}
.y30c{bottom:796.933333pt;}
.y2a8{bottom:798.213333pt;}
.y271{bottom:799.173333pt;}
.y1d5{bottom:799.333333pt;}
.y221{bottom:799.653333pt;}
.y201{bottom:800.613333pt;}
.y120{bottom:800.933333pt;}
.y60{bottom:801.893333pt;}
.y38e{bottom:802.373333pt;}
.y8b{bottom:802.693333pt;}
.y1bc{bottom:805.120000pt;}
.yed{bottom:805.733333pt;}
.y18{bottom:810.533333pt;}
.y3b3{bottom:813.413333pt;}
.y24b{bottom:815.013333pt;}
.y2a7{bottom:818.053333pt;}
.y2f1{bottom:818.213333pt;}
.y1d4{bottom:818.373333pt;}
.y220{bottom:818.693333pt;}
.y270{bottom:819.013333pt;}
.y200{bottom:819.653333pt;}
.y11f{bottom:819.973333pt;}
.y5f{bottom:820.773333pt;}
.y38d{bottom:821.413333pt;}
.y8a{bottom:821.733333pt;}
.y1bb{bottom:823.360000pt;}
.y17{bottom:829.573333pt;}
.y3b2{bottom:832.453333pt;}
.y24a{bottom:834.053333pt;}
.y2a6{bottom:837.093333pt;}
.y2f0{bottom:837.253333pt;}
.y1d3{bottom:837.413333pt;}
.y26f{bottom:838.533333pt;}
.y1ff{bottom:838.693333pt;}
.y11e{bottom:839.013333pt;}
.y5e{bottom:839.813333pt;}
.y38c{bottom:840.613333pt;}
.y89{bottom:840.773333pt;}
.y1ba{bottom:841.600000pt;}
.y16{bottom:848.613333pt;}
.y3b1{bottom:851.493333pt;}
.y249{bottom:853.093333pt;}
.y3d8{bottom:853.893333pt;}
.y2a5{bottom:855.973333pt;}
.y2ef{bottom:856.133333pt;}
.y1d2{bottom:857.253333pt;}
.y1fe{bottom:857.733333pt;}
.y26e{bottom:857.893333pt;}
.y16a{bottom:858.053333pt;}
.y5d{bottom:858.853333pt;}
.y38b{bottom:859.493333pt;}
.y88{bottom:859.653333pt;}
.y1b9{bottom:860.000000pt;}
.y15{bottom:867.653333pt;}
.y3b0{bottom:870.373333pt;}
.y248{bottom:871.973333pt;}
.y3d7{bottom:872.933333pt;}
.y30a{bottom:873.093333pt;}
.y2a4{bottom:875.013333pt;}
.y2ee{bottom:875.973333pt;}
.y1d1{bottom:876.133333pt;}
.y1fd{bottom:876.773333pt;}
.y344{bottom:876.933333pt;}
.y169{bottom:877.093333pt;}
.y26d{bottom:877.413333pt;}
.y5c{bottom:877.893333pt;}
.y38a{bottom:878.533333pt;}
.y1b8{bottom:878.560000pt;}
.y87{bottom:878.693333pt;}
.y14{bottom:886.693333pt;}
.y3af{bottom:889.413333pt;}
.y247{bottom:891.013333pt;}
.y3d6{bottom:891.973333pt;}
.y2a3{bottom:894.053333pt;}
.y1d0{bottom:895.173333pt;}
.y1fc{bottom:895.813333pt;}
.y2cc{bottom:895.973333pt;}
.y168{bottom:896.133333pt;}
.y343{bottom:896.773333pt;}
.y5b{bottom:896.933333pt;}
.y1b7{bottom:896.960000pt;}
.y389{bottom:897.573333pt;}
.y86{bottom:897.733333pt;}
.y13{bottom:905.573333pt;}
.y3ae{bottom:908.453333pt;}
.y246{bottom:910.853333pt;}
.y2a2{bottom:913.253333pt;}
.y1fb{bottom:914.693333pt;}
.y1cf{bottom:915.013333pt;}
.y1b5{bottom:915.360000pt;}
.y2cb{bottom:915.813333pt;}
.y5a{bottom:915.973333pt;}
.y388{bottom:916.613333pt;}
.y85{bottom:916.773333pt;}
.y12{bottom:924.613333pt;}
.y3ad{bottom:927.493333pt;}
.y245{bottom:929.893333pt;}
.y3d5{bottom:930.693333pt;}
.y2a1{bottom:933.093333pt;}
.y1b4{bottom:933.600000pt;}
.y1ce{bottom:934.053333pt;}
.y1fa{bottom:934.693333pt;}
.y167{bottom:934.853333pt;}
.y387{bottom:935.653333pt;}
.y59{bottom:935.813333pt;}
.y11{bottom:943.653333pt;}
.y3ac{bottom:946.533333pt;}
.y244{bottom:948.933333pt;}
.y3d4{bottom:951.333333pt;}
.y1b2{bottom:951.840000pt;}
.y2a0{bottom:952.293333pt;}
.y1cd{bottom:953.093333pt;}
.y1f9{bottom:953.733333pt;}
.y166{bottom:953.893333pt;}
.y58{bottom:954.853333pt;}
.y10{bottom:964.773333pt;}
.y3{bottom:965.253333pt;}
.y3ab{bottom:965.413333pt;}
.y23e{bottom:968.773333pt;}
.y1b1{bottom:970.240000pt;}
.y29f{bottom:972.133333pt;}
.y1cc{bottom:972.933333pt;}
.y57{bottom:973.733333pt;}
.y2{bottom:985.893333pt;}
.y3aa{bottom:986.053333pt;}
.yf{bottom:987.173333pt;}
.y23d{bottom:988.613333pt;}
.y1af{bottom:988.960000pt;}
.y243{bottom:989.413333pt;}
.y1cb{bottom:991.973333pt;}
.y342{bottom:992.293333pt;}
.y56{bottom:992.773333pt;}
.ye{bottom:1007.013333pt;}
.y1{bottom:1009.093333pt;}
.y23c{bottom:1009.253333pt;}
.y55{bottom:1011.813333pt;}
.h9{height:19.200000pt;}
.hb{height:19.360000pt;}
.ha{height:19.520000pt;}
.h15{height:41.920000pt;}
.h19{height:42.080000pt;}
.h16{height:42.240000pt;}
.h18{height:42.400000pt;}
.h3{height:44.687500pt;}
.h7{height:45.156250pt;}
.h1a{height:45.281250pt;}
.h8{height:46.593750pt;}
.h5{height:52.284375pt;}
.h2{height:52.832812pt;}
.h12{height:53.280000pt;}
.h10{height:53.920000pt;}
.hc{height:55.680000pt;}
.he{height:55.840000pt;}
.hd{height:56.032000pt;}
.h14{height:60.320000pt;}
.h17{height:60.480000pt;}
.h11{height:78.240000pt;}
.h13{height:79.360000pt;}
.hf{height:90.240000pt;}
.h4{height:90.312500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.h6{height:1122.720000pt;}
.wb{width:5.440000pt;}
.wa{width:5.600000pt;}
.w13{width:7.200000pt;}
.w19{width:10.720000pt;}
.w7{width:10.880000pt;}
.w6{width:16.000000pt;}
.w31{width:31.520000pt;}
.w2e{width:32.960000pt;}
.wf{width:36.160000pt;}
.w20{width:36.480000pt;}
.w1d{width:42.720000pt;}
.w21{width:46.720000pt;}
.w2d{width:48.800000pt;}
.w2f{width:49.280000pt;}
.w30{width:50.592000pt;}
.w29{width:50.880000pt;}
.w2c{width:55.392000pt;}
.w15{width:60.320000pt;}
.w1c{width:62.720000pt;}
.w27{width:63.552000pt;}
.w12{width:64.000000pt;}
.w2a{width:64.512000pt;}
.w10{width:64.800000pt;}
.w28{width:66.400000pt;}
.w1e{width:67.200000pt;}
.w2b{width:71.680000pt;}
.we{width:72.800000pt;}
.w9{width:77.120000pt;}
.w14{width:78.880000pt;}
.w16{width:79.360000pt;}
.w24{width:81.440000pt;}
.w18{width:84.320000pt;}
.w26{width:87.840000pt;}
.w25{width:89.152000pt;}
.w22{width:89.760000pt;}
.w1b{width:95.360000pt;}
.w33{width:100.320000pt;}
.wd{width:105.120000pt;}
.w11{width:105.600000pt;}
.w32{width:107.712000pt;}
.w1f{width:116.160000pt;}
.w23{width:181.600000pt;}
.w17{width:292.480000pt;}
.w8{width:331.520000pt;}
.w1a{width:335.040000pt;}
.wc{width:374.080000pt;}
.w4{width:793.333333pt;}
.w5{width:793.599988pt;}
.w3{width:793.600000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x31{left:1.440000pt;}
.x2f{left:3.200000pt;}
.x40{left:65.279988pt;}
.xb{left:71.999988pt;}
.x2{left:96.031988pt;}
.x5{left:99.071988pt;}
.x2e{left:101.312000pt;}
.xf{left:107.840000pt;}
.x10{left:116.160000pt;}
.x11{left:128.000000pt;}
.x6{left:136.666655pt;}
.x12{left:153.760000pt;}
.x1a{left:157.280000pt;}
.x1b{left:159.680000pt;}
.x3d{left:164.186667pt;}
.x13{left:174.560000pt;}
.x9{left:177.626655pt;}
.x30{left:188.186667pt;}
.x16{left:189.920000pt;}
.x1{left:205.786655pt;}
.x7{left:227.066655pt;}
.x19{left:252.640000pt;}
.x3e{left:272.866667pt;}
.x14{left:277.600000pt;}
.x32{left:282.626667pt;}
.x8{left:291.106655pt;}
.x2d{left:300.066655pt;}
.x17{left:312.480000pt;}
.x18{left:317.920000pt;}
.x15{left:328.640000pt;}
.x2b{left:373.186655pt;}
.x41{left:390.466655pt;}
.x1c{left:393.600000pt;}
.x4{left:396.866655pt;}
.x3f{left:398.466655pt;}
.xe{left:411.586655pt;}
.xa{left:420.546655pt;}
.x33{left:421.666667pt;}
.x37{left:424.386667pt;}
.x1d{left:432.640000pt;}
.xd{left:438.146655pt;}
.x1e{left:440.480000pt;}
.x2c{left:445.213322pt;}
.x1f{left:449.920000pt;}
.x29{left:452.640000pt;}
.x24{left:464.800000pt;}
.x38{left:480.893333pt;}
.x28{left:488.320000pt;}
.x20{left:492.160000pt;}
.x27{left:527.520000pt;}
.x39{left:530.813333pt;}
.x21{left:539.200000pt;}
.x22{left:543.200000pt;}
.x3{left:555.933322pt;}
.x34{left:558.813333pt;}
.x3a{left:564.893333pt;}
.x25{left:574.880000pt;}
.x23{left:590.400000pt;}
.x35{left:613.373333pt;}
.x3b{left:615.133333pt;}
.x3c{left:666.693333pt;}
.x26{left:674.240000pt;}
.x36{left:681.733333pt;}
.xc{left:698.373322pt;}
.x2a{left:715.333322pt;}
}




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