
    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_fd40276f0693b2e3315a4835.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.120605;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_763ca364a1ec785097338ec4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.120117;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_1b781491f98543a7d26058a1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.925781;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_568d7c40ec153748696ad686.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.111816;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_c98136c4408b1f8bb9b92609.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_536633b04c97ceda2e854871.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_1ea857c4c3db011aa486c2ff.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.148926;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_05c896d52a20a3b26a7a81ec.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_5064dad8a92da62e6ac22130.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.111816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_9eb2316b037e0ac52a458fdb.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_18c2d0767f6de69fa305d5f9.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_e8a982e2f0b64f7ece05aa90.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.767578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v2{vertical-align:-78.000000px;}
.v1{vertical-align:-16.680000px;}
.v0{vertical-align:0.000000px;}
.ls2d{letter-spacing:-1.656000px;}
.lse{letter-spacing:-1.302000px;}
.ls26{letter-spacing:-1.296000px;}
.ls3d{letter-spacing:-1.212000px;}
.ls47{letter-spacing:-0.984000px;}
.ls48{letter-spacing:-0.960000px;}
.ls3b{letter-spacing:-0.852000px;}
.ls9{letter-spacing:-0.816000px;}
.lsf{letter-spacing:-0.666000px;}
.ls39{letter-spacing:-0.648000px;}
.ls21{letter-spacing:-0.504000px;}
.ls27{letter-spacing:-0.480000px;}
.ls3{letter-spacing:-0.456000px;}
.ls2{letter-spacing:-0.432000px;}
.ls44{letter-spacing:-0.420000px;}
.ls25{letter-spacing:-0.408000px;}
.ls3a{letter-spacing:-0.312000px;}
.ls46{letter-spacing:-0.120000px;}
.ls6{letter-spacing:-0.096000px;}
.ls4{letter-spacing:-0.072000px;}
.ls40{letter-spacing:-0.018000px;}
.ls3f{letter-spacing:-0.012000px;}
.ls1{letter-spacing:0.000000px;}
.ls35{letter-spacing:0.024000px;}
.ls3e{letter-spacing:0.048000px;}
.ls34{letter-spacing:0.084000px;}
.lsc{letter-spacing:0.138000px;}
.lsb{letter-spacing:0.168000px;}
.ls24{letter-spacing:0.180000px;}
.ls31{letter-spacing:0.204000px;}
.ls18{letter-spacing:0.216000px;}
.ls23{letter-spacing:0.240000px;}
.ls14{letter-spacing:0.276000px;}
.ls1a{letter-spacing:0.324000px;}
.ls3c{letter-spacing:0.348000px;}
.ls0{letter-spacing:0.384000px;}
.lsa{letter-spacing:0.462000px;}
.ls15{letter-spacing:0.480000px;}
.ls2c{letter-spacing:0.507600px;}
.ls36{letter-spacing:0.522000px;}
.ls2f{letter-spacing:0.528000px;}
.ls38{letter-spacing:0.534000px;}
.ls7{letter-spacing:0.552000px;}
.ls29{letter-spacing:0.576000px;}
.ls45{letter-spacing:0.600000px;}
.ls33{letter-spacing:0.612000px;}
.ls10{letter-spacing:0.624000px;}
.lsd{letter-spacing:0.684000px;}
.ls37{letter-spacing:0.708000px;}
.ls28{letter-spacing:0.720000px;}
.ls8{letter-spacing:0.768000px;}
.ls19{letter-spacing:1.584000px;}
.ls1b{letter-spacing:3.924000px;}
.ls13{letter-spacing:3.984000px;}
.ls2b{letter-spacing:5.184000px;}
.ls41{letter-spacing:5.304000px;}
.ls30{letter-spacing:5.352000px;}
.ls1e{letter-spacing:12.384000px;}
.ls1d{letter-spacing:13.584000px;}
.ls20{letter-spacing:15.984000px;}
.ls5{letter-spacing:17.184000px;}
.ls1f{letter-spacing:23.184000px;}
.ls22{letter-spacing:32.964000px;}
.ls12{letter-spacing:37.764000px;}
.ls11{letter-spacing:38.904000px;}
.ls2e{letter-spacing:44.232000px;}
.ls2a{letter-spacing:48.504000px;}
.ls1c{letter-spacing:53.304000px;}
.ls16{letter-spacing:54.564000px;}
.ls42{letter-spacing:65.184000px;}
.ls43{letter-spacing:95.184000px;}
.ls32{letter-spacing:173.802000px;}
.ls17{letter-spacing:844.314000px;}
.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;}
}
.ws1d{word-spacing:-16.896000px;}
.ws4{word-spacing:-16.800000px;}
.wsb{word-spacing:-16.632000px;}
.ws0{word-spacing:-16.416000px;}
.ws28{word-spacing:-16.344000px;}
.ws2{word-spacing:-15.984000px;}
.ws3{word-spacing:-15.960000px;}
.wsf{word-spacing:-15.768000px;}
.ws22{word-spacing:-15.570000px;}
.ws6{word-spacing:-15.510000px;}
.ws27{word-spacing:-15.432000px;}
.ws7{word-spacing:-15.084000px;}
.ws10{word-spacing:-15.082200px;}
.ws9{word-spacing:-15.054000px;}
.ws8{word-spacing:-15.048000px;}
.ws23{word-spacing:-15.030000px;}
.ws5{word-spacing:-14.952000px;}
.ws18{word-spacing:-14.760000px;}
.wsa{word-spacing:-14.382000px;}
.ws26{word-spacing:-14.280000px;}
.ws25{word-spacing:-14.160000px;}
.wsd{word-spacing:-13.920000px;}
.ws12{word-spacing:-13.752000px;}
.wse{word-spacing:-13.714200px;}
.wsc{word-spacing:-13.680000px;}
.ws24{word-spacing:-13.260000px;}
.ws21{word-spacing:-12.774000px;}
.ws29{word-spacing:-12.720000px;}
.ws20{word-spacing:-12.660000px;}
.ws15{word-spacing:-12.312000px;}
.ws1e{word-spacing:-12.000000px;}
.ws1f{word-spacing:-11.460000px;}
.ws1b{word-spacing:-10.944000px;}
.ws1{word-spacing:0.000000px;}
.ws14{word-spacing:37.482000px;}
.ws17{word-spacing:39.164400px;}
.ws13{word-spacing:47.970000px;}
.ws16{word-spacing:49.583250px;}
.ws11{word-spacing:98.130000px;}
.ws1c{word-spacing:176.460000px;}
.ws1a{word-spacing:288.900000px;}
.ws19{word-spacing:303.360000px;}
._13{margin-left:-13.560000px;}
._e{margin-left:-12.090000px;}
._10{margin-left:-9.222000px;}
._f{margin-left:-6.840000px;}
._12{margin-left:-4.248000px;}
._11{margin-left:-3.228000px;}
._d{margin-left:-2.190000px;}
._0{margin-left:-1.056000px;}
._2{width:1.056000px;}
._1{width:2.064000px;}
._8{width:3.336000px;}
._6{width:4.392000px;}
._7{width:6.240000px;}
._4{width:7.338000px;}
._9{width:8.412000px;}
._3{width:9.768000px;}
._5{width:10.950000px;}
._a{width:12.900000px;}
._b{width:14.880000px;}
._3a{width:16.164000px;}
._c{width:17.688000px;}
._1a{width:18.984000px;}
._1c{width:20.148000px;}
._17{width:21.420000px;}
._16{width:22.662000px;}
._1b{width:23.862000px;}
._14{width:25.254000px;}
._15{width:26.310000px;}
._1d{width:28.068000px;}
._1e{width:29.688000px;}
._22{width:31.728000px;}
._21{width:33.678000px;}
._20{width:38.376000px;}
._1f{width:39.408000px;}
._35{width:50.398350px;}
._31{width:78.918000px;}
._19{width:97.212000px;}
._18{width:98.262000px;}
._37{width:107.520000px;}
._29{width:109.152000px;}
._34{width:113.460000px;}
._36{width:119.976000px;}
._24{width:121.602000px;}
._2c{width:122.880000px;}
._33{width:126.156000px;}
._30{width:127.164000px;}
._25{width:153.300000px;}
._23{width:162.510000px;}
._2f{width:172.440000px;}
._2a{width:182.574000px;}
._32{width:197.604000px;}
._2b{width:226.050000px;}
._28{width:237.840000px;}
._2d{width:280.776000px;}
._2e{width:290.772000px;}
._38{width:310.644000px;}
._39{width:330.840000px;}
._26{width:337.248000px;}
._27{width:346.176000px;}
.fc8{color:rgb(40,44,49);}
.fc7{color:transparent;}
.fca{color:rgb(31,73,125);}
.fc5{color:rgb(36,63,96);}
.fc4{color:rgb(28,29,30);}
.fc2{color:rgb(54,95,145);}
.fcb{color:rgb(64,64,64);}
.fc9{color:rgb(89,89,89);}
.fc6{color:rgb(255,255,255);}
.fc3{color:rgb(51,51,51);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:48.000000px;}
.fsb{font-size:48.150000px;}
.fs8{font-size:54.000000px;}
.fs9{font-size:54.150000px;}
.fs3{font-size:57.600000px;}
.fs4{font-size:60.000000px;}
.fs5{font-size:60.150000px;}
.fs0{font-size:66.000000px;}
.fs7{font-size:66.150000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:72.150000px;}
.fs2{font-size:96.000000px;}
.y100{bottom:-21.420000px;}
.y0{bottom:0.000000px;}
.y481{bottom:2.985000px;}
.y226{bottom:3.000000px;}
.y4bc{bottom:3.015000px;}
.y45b{bottom:3.285000px;}
.y218{bottom:3.300000px;}
.y396{bottom:3.315000px;}
.y243{bottom:3.600000px;}
.y16e{bottom:3.900000px;}
.y25c{bottom:4.200000px;}
.y3ce{bottom:4.485000px;}
.y3c2{bottom:4.500000px;}
.y180{bottom:4.785000px;}
.y174{bottom:4.800000px;}
.y179{bottom:4.815000px;}
.y43d{bottom:5.100000px;}
.y444{bottom:5.115000px;}
.y438{bottom:5.145000px;}
.y172{bottom:5.400000px;}
.y35c{bottom:5.685000px;}
.y387{bottom:5.692500px;}
.y34c{bottom:5.700000px;}
.y350{bottom:5.715000px;}
.y489{bottom:5.730000px;}
.y353{bottom:5.745000px;}
.y186{bottom:6.000000px;}
.y203{bottom:6.015000px;}
.y513{bottom:6.285000px;}
.y211{bottom:6.300000px;}
.y3e4{bottom:6.315000px;}
.y1c1{bottom:6.420000px;}
.y410{bottom:6.585000px;}
.y3a7{bottom:6.600000px;}
.y401{bottom:6.885000px;}
.y21c{bottom:6.900000px;}
.y17e{bottom:6.915000px;}
.y24f{bottom:6.930000px;}
.y260{bottom:7.200000px;}
.y22d{bottom:7.215000px;}
.y25f{bottom:7.500000px;}
.y22c{bottom:7.515000px;}
.y265{bottom:7.800000px;}
.y40b{bottom:8.100000px;}
.y433{bottom:8.115000px;}
.y427{bottom:8.145000px;}
.y34b{bottom:8.385000px;}
.y386{bottom:8.392500px;}
.y20f{bottom:8.400000px;}
.y361{bottom:8.415000px;}
.y352{bottom:8.430000px;}
.y378{bottom:8.445000px;}
.y20e{bottom:8.700000px;}
.y216{bottom:9.000000px;}
.y215{bottom:9.300000px;}
.y46a{bottom:9.315000px;}
.y246{bottom:9.600000px;}
.y476{bottom:9.615000px;}
.y208{bottom:9.885000px;}
.y20b{bottom:9.900000px;}
.y24c{bottom:9.915000px;}
.y4d8{bottom:9.945000px;}
.y207{bottom:10.185000px;}
.y230{bottom:10.200000px;}
.y24b{bottom:10.215000px;}
.y252{bottom:10.500000px;}
.y4e5{bottom:10.785000px;}
.y184{bottom:10.800000px;}
.y4f9{bottom:10.815000px;}
.y213{bottom:11.100000px;}
.y22a{bottom:11.385000px;}
.y219{bottom:11.400000px;}
.y258{bottom:11.415000px;}
.y233{bottom:11.445000px;}
.y484{bottom:11.685000px;}
.y368{bottom:11.700000px;}
.y380{bottom:11.715000px;}
.y4b7{bottom:11.745000px;}
.y2b7{bottom:11.820000px;}
.y249{bottom:12.000000px;}
.y3d0{bottom:12.285000px;}
.y248{bottom:12.300000px;}
.y3bd{bottom:12.315000px;}
.y224{bottom:12.600000px;}
.y223{bottom:12.900000px;}
.y3b4{bottom:13.200000px;}
.y267{bottom:13.500000px;}
.y415{bottom:13.530000px;}
.y420{bottom:13.545000px;}
.y3b8{bottom:13.800000px;}
.y404{bottom:13.815000px;}
.y41a{bottom:14.100000px;}
.y428{bottom:14.145000px;}
.y45d{bottom:14.385000px;}
.y40c{bottom:14.400000px;}
.y434{bottom:14.445000px;}
.y1a3{bottom:14.550000px;}
.y19f{bottom:14.580000px;}
.y19a{bottom:14.625000px;}
.y3a6{bottom:14.730000px;}
.y250{bottom:15.030000px;}
.y3ff{bottom:15.285000px;}
.y204{bottom:15.300000px;}
.y362{bottom:15.600000px;}
.y42b{bottom:15.615000px;}
.y39b{bottom:15.645000px;}
.y198{bottom:15.825000px;}
.y297{bottom:16.620000px;}
.y1cf{bottom:17.100000px;}
.y1e5{bottom:17.175000px;}
.y1ef{bottom:17.430000px;}
.y21e{bottom:17.985000px;}
.y20c{bottom:18.000000px;}
.y108{bottom:18.015000px;}
.y21f{bottom:18.300000px;}
.yfb{bottom:18.585000px;}
.y4e4{bottom:18.885000px;}
.y4e0{bottom:18.900000px;}
.y502{bottom:18.915000px;}
.y102{bottom:19.080000px;}
.y4ec{bottom:19.200000px;}
.y227{bottom:19.845000px;}
.y229{bottom:20.085000px;}
.y237{bottom:20.100000px;}
.y36b{bottom:20.115000px;}
.y232{bottom:20.130000px;}
.y48c{bottom:20.145000px;}
.y4a2{bottom:20.385000px;}
.y236{bottom:20.400000px;}
.y37f{bottom:20.415000px;}
.y217{bottom:20.445000px;}
.y3ed{bottom:21.285000px;}
.y3f3{bottom:21.292500px;}
.y185{bottom:21.300000px;}
.y487{bottom:21.315000px;}
.y3c8{bottom:21.330000px;}
.y500{bottom:21.345000px;}
.y2f0{bottom:21.525000px;}
.y25b{bottom:21.600000px;}
.y3cd{bottom:21.885000px;}
.ybe{bottom:21.900000px;}
.yc5{bottom:21.915000px;}
.yc3{bottom:21.930000px;}
.y3bc{bottom:21.945000px;}
.yc7{bottom:22.185000px;}
.yc1{bottom:22.200000px;}
.ybc{bottom:22.230000px;}
.y437{bottom:22.245000px;}
.y244{bottom:22.500000px;}
.y3f2{bottom:22.507500px;}
.y3c7{bottom:22.530000px;}
.y4ff{bottom:22.545000px;}
.y44a{bottom:22.800000px;}
.y4e8{bottom:23.385000px;}
.y3b3{bottom:23.400000px;}
.y3d6{bottom:23.445000px;}
.y41d{bottom:23.685000px;}
.y40f{bottom:23.700000px;}
.y400{bottom:23.985000px;}
.y406{bottom:24.000000px;}
.y414{bottom:24.030000px;}
.y24e{bottom:24.045000px;}
.y408{bottom:24.300000px;}
.y21b{bottom:24.315000px;}
.y16d{bottom:24.600000px;}
.y3b7{bottom:24.900000px;}
.y205{bottom:24.915000px;}
.y40a{bottom:25.200000px;}
.y426{bottom:25.245000px;}
.y1c0{bottom:25.350000px;}
.y45f{bottom:25.515000px;}
.y432{bottom:25.545000px;}
.y3a5{bottom:26.430000px;}
.y20a{bottom:27.000000px;}
.y4f4{bottom:27.300000px;}
.y259{bottom:27.315000px;}
.y221{bottom:27.600000px;}
.y176{bottom:27.900000px;}
.y39a{bottom:27.930000px;}
.y465{bottom:28.200000px;}
.y263{bottom:28.800000px;}
.y170{bottom:28.845000px;}
.y4a6{bottom:29.085000px;}
.y4e9{bottom:30.285000px;}
.y3dd{bottom:30.300000px;}
.y3d7{bottom:30.345000px;}
.y497{bottom:30.600000px;}
.y3ac{bottom:30.637500px;}
.y3b1{bottom:31.215000px;}
.y183{bottom:31.500000px;}
.y451{bottom:32.700000px;}
.y466{bottom:33.000000px;}
.y19e{bottom:34.395000px;}
.y4f3{bottom:34.500000px;}
.y4eb{bottom:35.400000px;}
.y50b{bottom:35.415000px;}
.y235{bottom:37.500000px;}
.y4bb{bottom:37.515000px;}
.y480{bottom:37.530000px;}
.y225{bottom:37.545000px;}
.y239{bottom:37.800000px;}
.y4d4{bottom:37.845000px;}
.y508{bottom:39.300000px;}
.y3c1{bottom:39.315000px;}
.y442{bottom:39.585000px;}
.y4ac{bottom:39.600000px;}
.y3ec{bottom:39.885000px;}
.y3a9{bottom:39.900000px;}
.y486{bottom:39.915000px;}
.y3c6{bottom:39.930000px;}
.y3f1{bottom:39.937500px;}
.y4fe{bottom:39.945000px;}
.y3dc{bottom:40.500000px;}
.y3d5{bottom:40.545000px;}
.y496{bottom:40.800000px;}
.y43a{bottom:41.100000px;}
.y3ba{bottom:41.400000px;}
.y4ab{bottom:41.700000px;}
.y441{bottom:41.730000px;}
.y3f6{bottom:42.300000px;}
.y2ee{bottom:43.305000px;}
.y30e{bottom:43.380000px;}
.y1bf{bottom:44.280000px;}
.y22f{bottom:44.700000px;}
.y450{bottom:45.000000px;}
.y464{bottom:45.300000px;}
.y28e{bottom:45.630000px;}
.y2ae{bottom:45.645000px;}
.y3f7{bottom:48.300000px;}
.y1e4{bottom:49.455000px;}
.y1ce{bottom:50.250000px;}
.y1ee{bottom:51.375000px;}
.y4f2{bottom:51.900000px;}
.y504{bottom:51.930000px;}
.y4c4{bottom:54.600000px;}
.y492{bottom:54.630000px;}
.y47c{bottom:54.645000px;}
.y4a5{bottom:54.885000px;}
.y262{bottom:54.900000px;}
.y2c{bottom:57.337500px;}
.y4e7{bottom:57.885000px;}
.y3df{bottom:57.900000px;}
.y49a{bottom:57.915000px;}
.y3ab{bottom:57.937500px;}
.y3d4{bottom:57.945000px;}
.y507{bottom:58.500000px;}
.y4aa{bottom:58.800000px;}
.y440{bottom:58.830000px;}
.y3b0{bottom:59.415000px;}
.y17c{bottom:60.900000px;}
.y2e6{bottom:61.545000px;}
.y306{bottom:61.620000px;}
.y463{bottom:62.400000px;}
.y44f{bottom:62.415000px;}
.y1b6{bottom:64.305000px;}
.y1e3{bottom:68.400000px;}
.y1cd{bottom:69.180000px;}
.y4c3{bottom:72.000000px;}
.y47b{bottom:72.030000px;}
.y1ed{bottom:72.045000px;}
.y28f{bottom:75.900000px;}
.y3c0{bottom:75.915000px;}
.y43f{bottom:76.230000px;}
.y2af{bottom:76.500000px;}
.y2b{bottom:76.537500px;}
.y17b{bottom:81.630000px;}
.y1d9{bottom:88.425000px;}
.y47a{bottom:89.145000px;}
.y1c3{bottom:89.205000px;}
.y1b7{bottom:90.255000px;}
.y1e7{bottom:93.900000px;}
.y3f5{bottom:93.915000px;}
.y2a{bottom:95.437500px;}
.y290{bottom:103.680000px;}
.y307{bottom:103.800000px;}
.y2b0{bottom:105.525000px;}
.y2e7{bottom:106.500000px;}
.y3f4{bottom:107.737500px;}
.y4b9{bottom:109.537500px;}
.y1c4{bottom:111.750000px;}
.y70{bottom:112.237500px;}
.ydb{bottom:113.137500px;}
.y1d7{bottom:114.037500px;}
.y3d8{bottom:115.237500px;}
.y1b8{bottom:116.205000px;}
.y1da{bottom:116.730000px;}
.y1fd{bottom:118.237500px;}
.y499{bottom:118.837500px;}
.y27c{bottom:120.037500px;}
.y2c1{bottom:122.137500px;}
.y388{bottom:123.937500px;}
.yf9{bottom:124.237500px;}
.y311{bottom:124.837500px;}
.y344{bottom:127.237500px;}
.y167{bottom:130.237500px;}
.y143{bottom:130.837500px;}
.y4d9{bottom:131.137500px;}
.y291{bottom:131.430000px;}
.y4b8{bottom:133.537500px;}
.y1e8{bottom:133.905000px;}
.y1c5{bottom:134.250000px;}
.yba{bottom:134.437500px;}
.y2b1{bottom:134.550000px;}
.y305{bottom:135.525000px;}
.y29{bottom:135.637500px;}
.y122{bottom:136.537500px;}
.y2fb{bottom:137.737500px;}
.y3aa{bottom:138.937500px;}
.y6f{bottom:141.637500px;}
.y1b9{bottom:142.155000px;}
.y330{bottom:143.437500px;}
.y27b{bottom:143.737500px;}
.y1db{bottom:145.020000px;}
.yda{bottom:145.837500px;}
.y308{bottom:146.025000px;}
.y1d6{bottom:146.137500px;}
.y385{bottom:146.437500px;}
.yf8{bottom:147.937500px;}
.y1e6{bottom:148.500000px;}
.y459{bottom:149.137500px;}
.y2e5{bottom:149.250000px;}
.y1fc{bottom:150.930000px;}
.y3d3{bottom:151.230000px;}
.y2e8{bottom:151.455000px;}
.ya0{bottom:151.830000px;}
.y431{bottom:152.130000px;}
.y4fd{bottom:153.030000px;}
.y498{bottom:153.330000px;}
.y166{bottom:153.930000px;}
.y18a{bottom:154.830000px;}
.y4d7{bottom:155.130000px;}
.y377{bottom:155.430000px;}
.y241{bottom:155.745000px;}
.y4b6{bottom:156.030000px;}
.y1c6{bottom:156.750000px;}
.y310{bottom:157.530000px;}
.yb9{bottom:158.130000px;}
.y292{bottom:159.225000px;}
.y28{bottom:159.345000px;}
.y121{bottom:160.245000px;}
.y2fa{bottom:161.430000px;}
.y2e4{bottom:163.050000px;}
.y2b2{bottom:163.530000px;}
.y142{bottom:163.575000px;}
.y27a{bottom:167.475000px;}
.y1b4{bottom:167.775000px;}
.y1ba{bottom:168.150000px;}
.y2ef{bottom:168.675000px;}
.y384{bottom:168.975000px;}
.y196{bottom:169.875000px;}
.y6e{bottom:170.775000px;}
.y32f{bottom:171.975000px;}
.yfd{bottom:172.425000px;}
.y30f{bottom:172.500000px;}
.y1dc{bottom:173.280000px;}
.y1e9{bottom:173.925000px;}
.y1fb{bottom:174.675000px;}
.y9f{bottom:175.575000px;}
.y495{bottom:175.875000px;}
.y165{bottom:177.675000px;}
.y376{bottom:177.975000px;}
.y189{bottom:178.575000px;}
.y4d6{bottom:179.175000px;}
.y1c7{bottom:179.280000px;}
.yb8{bottom:182.175000px;}
.y27{bottom:183.075000px;}
.y120{bottom:184.275000px;}
.y2f9{bottom:185.475000px;}
.y293{bottom:186.975000px;}
.y141{bottom:187.275000px;}
.y2c0{bottom:187.875000px;}
.y309{bottom:188.250000px;}
.yf7{bottom:189.975000px;}
.y4b5{bottom:190.275000px;}
.y458{bottom:190.875000px;}
.y383{bottom:191.475000px;}
.y255{bottom:191.775000px;}
.y2b3{bottom:192.570000px;}
.yac{bottom:193.575000px;}
.y2ac{bottom:193.875000px;}
.y1bb{bottom:194.100000px;}
.yd9{bottom:195.975000px;}
.y2e9{bottom:196.425000px;}
.y240{bottom:197.775000px;}
.y9e{bottom:199.275000px;}
.y1b3{bottom:199.875000px;}
.y6d{bottom:200.175000px;}
.y375{bottom:200.475000px;}
.y1c2{bottom:201.000000px;}
.y164{bottom:201.375000px;}
.y1dd{bottom:201.600000px;}
.y1c8{bottom:201.780000px;}
.y188{bottom:202.575000px;}
.y349{bottom:205.275000px;}
.yb7{bottom:205.875000px;}
.y26{bottom:206.775000px;}
.y4fc{bottom:207.075000px;}
.y11f{bottom:207.975000px;}
.y279{bottom:209.175000px;}
.y3a8{bottom:210.975000px;}
.y140{bottom:211.275000px;}
.y2bf{bottom:211.575000px;}
.y4b4{bottom:212.775000px;}
.yf6{bottom:213.675000px;}
.y1ea{bottom:213.900000px;}
.y294{bottom:214.755000px;}
.y1fa{bottom:216.675000px;}
.yab{bottom:217.275000px;}
.y2ab{bottom:217.875000px;}
.y1bc{bottom:220.050000px;}
.y3f0{bottom:220.275000px;}
.yd8{bottom:220.875000px;}
.y2b4{bottom:221.550000px;}
.y374{bottom:222.975000px;}
.y3d2{bottom:223.275000px;}
.y238{bottom:223.875000px;}
.y4c{bottom:224.175000px;}
.y1c9{bottom:224.280000px;}
.y163{bottom:225.075000px;}
.y300{bottom:225.600000px;}
.y32e{bottom:228.675000px;}
.y6c{bottom:229.275000px;}
.yb6{bottom:229.575000px;}
.y1de{bottom:229.875000px;}
.y30a{bottom:230.430000px;}
.y25{bottom:230.775000px;}
.y304{bottom:231.555000px;}
.y11e{bottom:231.675000px;}
.y457{bottom:232.575000px;}
.y278{bottom:232.875000px;}
.y254{bottom:233.175000px;}
.y382{bottom:233.475000px;}
.y348{bottom:234.075000px;}
.y13f{bottom:234.975000px;}
.y2be{bottom:235.275000px;}
.y2e3{bottom:237.225000px;}
.yf5{bottom:237.375000px;}
.y301{bottom:238.620000px;}
.y4fb{bottom:240.075000px;}
.y187{bottom:240.375000px;}
.y9d{bottom:240.975000px;}
.y2ea{bottom:241.380000px;}
.y2aa{bottom:241.575000px;}
.y295{bottom:242.550000px;}
.y3ef{bottom:242.775000px;}
.y105{bottom:243.255000px;}
.y373{bottom:245.475000px;}
.yd7{bottom:245.775000px;}
.y1bd{bottom:246.000000px;}
.y1ca{bottom:246.825000px;}
.y494{bottom:247.875000px;}
.y162{bottom:249.075000px;}
.y2b5{bottom:250.575000px;}
.y2f8{bottom:250.875000px;}
.y430{bottom:252.375000px;}
.yb5{bottom:253.275000px;}
.y1eb{bottom:253.920000px;}
.y24{bottom:254.475000px;}
.y17a{bottom:255.075000px;}
.y2e2{bottom:255.195000px;}
.y11d{bottom:255.375000px;}
.y32d{bottom:257.175000px;}
.y1df{bottom:258.180000px;}
.y6b{bottom:258.675000px;}
.y2bd{bottom:258.975000px;}
.yf4{bottom:261.075000px;}
.y4fa{bottom:262.575000px;}
.y253{bottom:264.375000px;}
.y4b3{bottom:264.675000px;}
.y4b{bottom:264.975000px;}
.y2a9{bottom:265.275000px;}
.y372{bottom:267.975000px;}
.y3d1{bottom:268.275000px;}
.y1cb{bottom:269.325000px;}
.y296{bottom:270.300000px;}
.y493{bottom:270.375000px;}
.y1be{bottom:271.950000px;}
.y30b{bottom:272.655000px;}
.y161{bottom:272.775000px;}
.y302{bottom:273.900000px;}
.y456{bottom:274.275000px;}
.y277{bottom:274.575000px;}
.y42f{bottom:274.875000px;}
.y4d5{bottom:275.775000px;}
.y345{bottom:276.075000px;}
.y234{bottom:276.375000px;}
.yb4{bottom:276.975000px;}
.y23{bottom:278.175000px;}
.y2b6{bottom:279.600000px;}
.y11c{bottom:280.275000px;}
.y182{bottom:280.575000px;}
.y1f9{bottom:282.075000px;}
.y2fe{bottom:282.495000px;}
.yaa{bottom:282.975000px;}
.y13e{bottom:283.575000px;}
.y32c{bottom:285.375000px;}
.y2eb{bottom:286.350000px;}
.y1e0{bottom:286.455000px;}
.y4b2{bottom:287.175000px;}
.y6a{bottom:287.775000px;}
.yd6{bottom:288.675000px;}
.y2a8{bottom:288.975000px;}
.y2df{bottom:289.425000px;}
.y371{bottom:290.475000px;}
.y1cc{bottom:291.855000px;}
.y303{bottom:292.620000px;}
.y491{bottom:292.875000px;}
.y1ec{bottom:293.925000px;}
.y2e1{bottom:294.375000px;}
.y2cd{bottom:294.975000px;}
.y2fd{bottom:296.280000px;}
.y251{bottom:296.775000px;}
.y2f7{bottom:298.275000px;}
.y276{bottom:298.575000px;}
.yb3{bottom:300.675000px;}
.y2bc{bottom:300.975000px;}
.y22{bottom:301.875000px;}
.yf3{bottom:302.775000px;}
.y2de{bottom:303.225000px;}
.y11b{bottom:303.975000px;}
.y1f8{bottom:305.775000px;}
.y4a{bottom:306.675000px;}
.y13d{bottom:307.275000px;}
.y2dc{bottom:308.130000px;}
.y4b1{bottom:309.675000px;}
.y455{bottom:311.475000px;}
.yd5{bottom:312.675000px;}
.y370{bottom:312.975000px;}
.y42e{bottom:313.275000px;}
.y32b{bottom:313.875000px;}
.y160{bottom:314.475000px;}
.y1e1{bottom:314.730000px;}
.y30c{bottom:314.880000px;}
.y69{bottom:316.875000px;}
.y2ff{bottom:318.825000px;}
.y4d3{bottom:320.775000px;}
.y275{bottom:322.275000px;}
.ya9{bottom:324.675000px;}
.y3a4{bottom:324.975000px;}
.y21{bottom:325.575000px;}
.y11a{bottom:327.975000px;}
.y231{bottom:328.875000px;}
.y2e0{bottom:329.025000px;}
.y24d{bottom:329.775000px;}
.y49{bottom:330.375000px;}
.y13c{bottom:331.275000px;}
.y2ec{bottom:331.320000px;}
.y1ab{bottom:332.175000px;}
.y4f8{bottom:334.605000px;}
.y454{bottom:335.205000px;}
.y36f{bottom:335.505000px;}
.yd4{bottom:336.405000px;}
.y181{bottom:336.705000px;}
.y2cc{bottom:337.005000px;}
.y3ee{bottom:337.320000px;}
.y15f{bottom:338.220000px;}
.y2f6{bottom:340.005000px;}
.y32a{bottom:342.420000px;}
.y1e2{bottom:343.050000px;}
.yf2{bottom:344.505000px;}
.y3cf{bottom:344.820000px;}
.y68{bottom:346.320000px;}
.y1f7{bottom:347.505000px;}
.ya8{bottom:348.420000px;}
.y20{bottom:349.320000px;}
.y42d{bottom:351.405000px;}
.y119{bottom:351.720000px;}
.y9c{bottom:354.105000px;}
.y2a7{bottom:354.720000px;}
.y1aa{bottom:355.920000px;}
.y13b{bottom:356.205000px;}
.y30d{bottom:357.120000px;}
.y453{bottom:357.705000px;}
.y36e{bottom:358.005000px;}
.y2dd{bottom:358.830000px;}
.y17f{bottom:359.820000px;}
.yd3{bottom:360.120000px;}
.y2cb{bottom:360.705000px;}
.y4b0{bottom:361.320000px;}
.y490{bottom:361.605000px;}
.y15e{bottom:361.920000px;}
.y22e{bottom:364.005000px;}
.y3a3{bottom:367.605000px;}
.yf1{bottom:368.505000px;}
.y2da{bottom:370.005000px;}
.y329{bottom:370.605000px;}
.y1f6{bottom:371.205000px;}
.y48{bottom:372.120000px;}
.y24a{bottom:372.705000px;}
.y1f{bottom:373.320000px;}
.y42c{bottom:373.905000px;}
.y67{bottom:375.420000px;}
.y2ed{bottom:376.320000px;}
.y9b{bottom:377.805000px;}
.y2a6{bottom:378.405000px;}
.y13a{bottom:379.905000px;}
.y452{bottom:380.205000px;}
.y36d{bottom:380.505000px;}
.y3cc{bottom:380.820000px;}
.y28c{bottom:381.720000px;}
.y17d{bottom:383.205000px;}
.yd2{bottom:383.820000px;}
.y48f{bottom:384.105000px;}
.y2ca{bottom:384.405000px;}
.y15d{bottom:385.620000px;}
.y274{bottom:387.705000px;}
.y514{bottom:388.620000px;}
.y4f7{bottom:390.105000px;}
.yb2{bottom:390.120000px;}
.yf0{bottom:392.220000px;}
.y2d9{bottom:393.705000px;}
.y4d2{bottom:395.205000px;}
.ya7{bottom:395.820000px;}
.y1e{bottom:397.005000px;}
.y477{bottom:397.320000px;}
.y328{bottom:399.120000px;}
.y42a{bottom:399.705000px;}
.y118{bottom:400.320000px;}
.y195{bottom:401.505000px;}
.y2a5{bottom:402.120000px;}
.y44e{bottom:402.705000px;}
.y36c{bottom:403.005000px;}
.y139{bottom:403.605000px;}
.y66{bottom:404.820000px;}
.y28b{bottom:405.405000px;}
.yd1{bottom:407.505000px;}
.y2c9{bottom:408.120000px;}
.y15c{bottom:409.620000px;}
.y175{bottom:411.105000px;}
.y273{bottom:411.405000px;}
.y1f5{bottom:413.205000px;}
.y47{bottom:413.820000px;}
.y381{bottom:414.705000px;}
.yef{bottom:415.920000px;}
.y3cb{bottom:416.820000px;}
.y2d8{bottom:417.420000px;}
.y4d1{bottom:417.705000px;}
.y9a{bottom:419.505000px;}
.y1d{bottom:420.705000px;}
.y117{bottom:424.005000px;}
.y194{bottom:425.505000px;}
.y2a4{bottom:425.820000px;}
.y1a9{bottom:427.320000px;}
.y327{bottom:427.620000px;}
.y138{bottom:428.820000px;}
.y22b{bottom:430.605000px;}
.yd0{bottom:431.205000px;}
.y2c8{bottom:431.820000px;}
.y15b{bottom:433.320000px;}
.y65{bottom:433.905000px;}
.y178{bottom:434.205000px;}
.y272{bottom:435.120000px;}
.y48e{bottom:436.005000px;}
.y1f4{bottom:436.905000px;}
.y247{bottom:437.205000px;}
.y46{bottom:437.505000px;}
.y3ca{bottom:439.320000px;}
.yee{bottom:439.620000px;}
.y4d0{bottom:440.205000px;}
.y2d7{bottom:441.120000px;}
.y3a2{bottom:441.405000px;}
.y429{bottom:442.320000px;}
.y99{bottom:443.505000px;}
.y1c{bottom:444.420000px;}
.y28a{bottom:447.120000px;}
.y116{bottom:448.005000px;}
.y4af{bottom:448.905000px;}
.y193{bottom:449.205000px;}
.y2a3{bottom:449.505000px;}
.y3eb{bottom:449.820000px;}
.y137{bottom:452.505000px;}
.ycf{bottom:455.205000px;}
.y2c7{bottom:455.505000px;}
.y326{bottom:455.820000px;}
.y228{bottom:457.320000px;}
.y177{bottom:457.605000px;}
.y475{bottom:457.905000px;}
.y37e{bottom:459.705000px;}
.yb1{bottom:461.205000px;}
.y45{bottom:461.505000px;}
.y3c9{bottom:461.820000px;}
.y4f6{bottom:462.105000px;}
.y4cf{bottom:462.705000px;}
.y64{bottom:463.320000px;}
.y2d6{bottom:464.820000px;}
.y98{bottom:467.205000px;}
.y1b{bottom:468.120000px;}
.y1a8{bottom:469.005000px;}
.y289{bottom:470.820000px;}
.y4ae{bottom:471.405000px;}
.y115{bottom:471.705000px;}
.y48d{bottom:472.005000px;}
.y3ea{bottom:472.320000px;}
.y192{bottom:472.905000px;}
.y2a2{bottom:473.205000px;}
.y245{bottom:473.820000px;}
.y15a{bottom:475.005000px;}
.y136{bottom:476.205000px;}
.y2f5{bottom:476.820000px;}
.y3a1{bottom:477.105000px;}
.y271{bottom:477.120000px;}
.y1f3{bottom:478.620000px;}
.yce{bottom:478.905000px;}
.y44d{bottom:479.205000px;}
.y2c6{bottom:479.505000px;}
.y474{bottom:480.405000px;}
.y16f{bottom:480.705000px;}
.y1d5{bottom:481.905000px;}
.y36a{bottom:482.205000px;}
.y325{bottom:484.320000px;}
.y4f5{bottom:484.605000px;}
.ya6{bottom:485.205000px;}
.yed{bottom:487.005000px;}
.y97{bottom:490.905000px;}
.y1a{bottom:491.820000px;}
.y63{bottom:492.405000px;}
.y4ad{bottom:493.905000px;}
.y37d{bottom:494.205000px;}
.y288{bottom:494.505000px;}
.y3e9{bottom:494.805000px;}
.y114{bottom:495.405000px;}
.y191{bottom:496.605000px;}
.y425{bottom:497.805000px;}
.y159{bottom:498.705000px;}
.y3a0{bottom:499.605000px;}
.y2f4{bottom:500.505000px;}
.y270{bottom:500.820000px;}
.y44c{bottom:501.750000px;}
.y1f2{bottom:502.350000px;}
.ycd{bottom:502.650000px;}
.y473{bottom:502.950000px;}
.y44{bottom:503.250000px;}
.y173{bottom:504.150000px;}
.y369{bottom:504.750000px;}
.y242{bottom:505.050000px;}
.y512{bottom:505.350000px;}
.y2d5{bottom:506.850000px;}
.y4f1{bottom:507.150000px;}
.y2bb{bottom:508.950000px;}
.y1a7{bottom:510.750000px;}
.yec{bottom:511.050000px;}
.y324{bottom:512.850000px;}
.y409{bottom:514.050000px;}
.y4ce{bottom:514.350000px;}
.y2a1{bottom:515.250000px;}
.y19{bottom:515.850000px;}
.y37c{bottom:516.750000px;}
.y3e8{bottom:517.350000px;}
.y287{bottom:518.250000px;}
.y113{bottom:519.150000px;}
.y190{bottom:520.350000px;}
.y62{bottom:521.850000px;}
.y39f{bottom:522.150000px;}
.y1d4{bottom:523.650000px;}
.y44b{bottom:524.250000px;}
.y26f{bottom:524.550000px;}
.y342{bottom:525.150000px;}
.y472{bottom:525.450000px;}
.y43{bottom:526.950000px;}
.y171{bottom:527.250000px;}
.y511{bottom:527.850000px;}
.y2d4{bottom:530.550000px;}
.y85{bottom:531.750000px;}
.y96{bottom:532.650000px;}
.y4cd{bottom:536.850000px;}
.y424{bottom:537.150000px;}
.y3c5{bottom:538.350000px;}
.y2a0{bottom:538.950000px;}
.y37b{bottom:539.250000px;}
.y18{bottom:539.550000px;}
.y158{bottom:540.450000px;}
.y323{bottom:541.050000px;}
.y112{bottom:542.850000px;}
.y1f1{bottom:544.050000px;}
.ycc{bottom:544.350000px;}
.y222{bottom:544.650000px;}
.y2c5{bottom:544.950000px;}
.y48b{bottom:546.150000px;}
.y1d3{bottom:547.350000px;}
.y26e{bottom:548.250000px;}
.y1a6{bottom:549.150000px;}
.y42{bottom:550.650000px;}
.y61{bottom:550.950000px;}
.y16c{bottom:551.550000px;}
.yeb{bottom:552.750000px;}
.y3e7{bottom:553.350000px;}
.y2d3{bottom:554.250000px;}
.y84{bottom:554.850000px;}
.y95{bottom:556.350000px;}
.y347{bottom:559.050000px;}
.y4cc{bottom:559.350000px;}
.y286{bottom:560.250000px;}
.y135{bottom:560.850000px;}
.y367{bottom:561.750000px;}
.y18f{bottom:562.050000px;}
.y3c4{bottom:562.350000px;}
.y29f{bottom:562.650000px;}
.y17{bottom:563.250000px;}
.y157{bottom:565.650000px;}
.y1a5{bottom:566.250000px;}
.y39e{bottom:567.150000px;}
.y2c4{bottom:568.650000px;}
.y322{bottom:569.550000px;}
.y1d2{bottom:571.050000px;}
.y341{bottom:572.550000px;}
.y4f0{bottom:573.150000px;}
.y23f{bottom:573.750000px;}
.y41{bottom:574.350000px;}
.y423{bottom:575.250000px;}
.y1b2{bottom:575.850000px;}
.yea{bottom:576.450000px;}
.y83{bottom:577.950000px;}
.y94{bottom:580.050000px;}
.y60{bottom:580.350000px;}
.y1a4{bottom:581.100000px;}
.y220{bottom:582.150000px;}
.y510{bottom:583.350000px;}
.y285{bottom:583.950000px;}
.y366{bottom:584.250000px;}
.ycb{bottom:584.850000px;}
.y4a9{bottom:585.150000px;}
.y111{bottom:586.050000px;}
.y29e{bottom:586.350000px;}
.y16{bottom:586.950000px;}
.y156{bottom:589.650000px;}
.y26d{bottom:589.950000px;}
.y39d{bottom:591.750000px;}
.y2c3{bottom:592.350000px;}
.y4cb{bottom:593.550000px;}
.y4ef{bottom:595.650000px;}
.y422{bottom:597.750000px;}
.y40{bottom:598.050000px;}
.y3e6{bottom:598.350000px;}
.y82{bottom:599.850000px;}
.ye9{bottom:600.150000px;}
.y340{bottom:601.050000px;}
.y2d2{bottom:601.650000px;}
.y471{bottom:601.950000px;}
.y93{bottom:604.050000px;}
.y449{bottom:605.850000px;}
.y365{bottom:606.750000px;}
.y284{bottom:607.650000px;}
.y134{bottom:608.550000px;}
.y5f{bottom:609.450000px;}
.y16b{bottom:609.750000px;}
.y15{bottom:610.650000px;}
.y1d1{bottom:611.550000px;}
.y26c{bottom:613.650000px;}
.y407{bottom:614.250000px;}
.y155{bottom:614.550000px;}
.y23e{bottom:615.450000px;}
.y2ba{bottom:616.050000px;}
.y1b1{bottom:617.550000px;}
.y48a{bottom:618.150000px;}
.y421{bottom:620.250000px;}
.y3e5{bottom:620.850000px;}
.y3f{bottom:622.050000px;}
.y3c3{bottom:622.350000px;}
.y81{bottom:622.950000px;}
.ye8{bottom:623.850000px;}
.y470{bottom:624.450000px;}
.y2d1{bottom:625.350000px;}
.y321{bottom:626.250000px;}
.y110{bottom:627.750000px;}
.y29d{bottom:628.050000px;}
.y4ee{bottom:628.650000px;}
.y1a2{bottom:628.800000px;}
.y364{bottom:629.250000px;}
.y33f{bottom:629.550000px;}
.y283{bottom:631.350000px;}
.y14{bottom:634.350000px;}
.y405{bottom:636.750000px;}
.y2f3{bottom:637.350000px;}
.y26b{bottom:637.650000px;}
.y154{bottom:638.250000px;}
.y5e{bottom:638.550000px;}
.yca{bottom:639.150000px;}
.y2b9{bottom:640.050000px;}
.y1b0{bottom:641.550000px;}
.y39c{bottom:643.350000px;}
.y1d0{bottom:643.650000px;}
.y1d8{bottom:645.300000px;}
.y3e{bottom:645.750000px;}
.y80{bottom:646.050000px;}
.y46f{bottom:646.950000px;}
.ye7{bottom:647.550000px;}
.y2d0{bottom:649.350000px;}
.y133{bottom:650.250000px;}
.y10f{bottom:651.450000px;}
.y29c{bottom:651.750000px;}
.y320{bottom:654.750000px;}
.y282{bottom:655.050000px;}
.y50f{bottom:655.350000px;}
.y33e{bottom:657.750000px;}
.y13{bottom:658.350000px;}
.y41f{bottom:658.650000px;}
.y26a{bottom:661.350000px;}
.y448{bottom:661.950000px;}
.y153{bottom:663.150000px;}
.ya5{bottom:663.750000px;}
.y4ed{bottom:664.650000px;}
.y1af{bottom:665.250000px;}
.y201{bottom:665.550000px;}
.y399{bottom:665.850000px;}
.y5d{bottom:667.950000px;}
.y3d{bottom:669.450000px;}
.y488{bottom:669.750000px;}
.y37a{bottom:671.280000px;}
.ye6{bottom:671.595000px;}
.y363{bottom:674.280000px;}
.y403{bottom:674.880000px;}
.y4a8{bottom:675.180000px;}
.y10e{bottom:675.195000px;}
.y1a1{bottom:676.200000px;}
.yc9{bottom:678.780000px;}
.y3e3{bottom:679.380000px;}
.y23d{bottom:680.880000px;}
.y12{bottom:682.080000px;}
.y31f{bottom:683.280000px;}
.y269{bottom:685.095000px;}
.y200{bottom:686.280000px;}
.y4ea{bottom:687.180000px;}
.y152{bottom:687.195000px;}
.ya4{bottom:687.480000px;}
.y46e{bottom:688.680000px;}
.y46c{bottom:688.695000px;}
.y1ae{bottom:688.980000px;}
.y4ca{bottom:690.480000px;}
.y50e{bottom:691.380000px;}
.y132{bottom:691.980000px;}
.y485{bottom:692.280000px;}
.y7f{bottom:692.580000px;}
.y16a{bottom:693.195000px;}
.y29b{bottom:693.780000px;}
.y3bf{bottom:694.380000px;}
.y281{bottom:696.780000px;}
.y5c{bottom:697.095000px;}
.y4a7{bottom:697.680000px;}
.y10d{bottom:698.880000px;}
.y447{bottom:699.180000px;}
.y2f2{bottom:699.195000px;}
.y23c{bottom:704.580000px;}
.y11{bottom:705.780000px;}
.y398{bottom:707.880000px;}
.y3c{bottom:711.180000px;}
.y31e{bottom:711.480000px;}
.y1ad{bottom:712.695000px;}
.y4c9{bottom:712.980000px;}
.ye5{bottom:713.280000px;}
.y33d{bottom:714.780000px;}
.y131{bottom:715.695000px;}
.y2cf{bottom:715.980000px;}
.y379{bottom:716.280000px;}
.y169{bottom:716.880000px;}
.y2db{bottom:717.000000px;}
.yc8{bottom:718.380000px;}
.y41e{bottom:719.280000px;}
.y4a4{bottom:720.195000px;}
.y280{bottom:720.780000px;}
.y446{bottom:721.380000px;}
.y1a0{bottom:723.900000px;}
.y7e{bottom:724.095000px;}
.y50d{bottom:724.380000px;}
.y2f1{bottom:724.980000px;}
.y268{bottom:725.595000px;}
.y1ff{bottom:725.880000px;}
.y5b{bottom:726.480000px;}
.y2fc{bottom:727.200000px;}
.y46d{bottom:728.595000px;}
.y2b8{bottom:729.195000px;}
.y10{bottom:729.480000px;}
.y151{bottom:730.080000px;}
.y397{bottom:730.380000px;}
.y92{bottom:734.880000px;}
.y4c8{bottom:735.480000px;}
.y29a{bottom:735.495000px;}
.y402{bottom:735.780000px;}
.y4e6{bottom:736.695000px;}
.y360{bottom:738.780000px;}
.y31d{bottom:739.980000px;}
.y10c{bottom:740.595000px;}
.y445{bottom:742.695000px;}
.y107{bottom:742.980000px;}
.y27f{bottom:744.480000px;}
.y41c{bottom:745.395000px;}
.y21d{bottom:745.695000px;}
.y483{bottom:746.295000px;}
.y23b{bottom:746.580000px;}
.y50c{bottom:746.880000px;}
.y3e2{bottom:751.380000px;}
.y3b{bottom:752.880000px;}
.yf{bottom:753.195000px;}
.ye4{bottom:754.980000px;}
.y5a{bottom:755.580000px;}
.y130{bottom:757.380000px;}
.yc6{bottom:757.695000px;}
.y4c7{bottom:757.980000px;}
.y266{bottom:758.295000px;}
.y91{bottom:758.580000px;}
.y346{bottom:760.380000px;}
.y35f{bottom:761.295000px;}
.y3fe{bottom:761.595000px;}
.y1fe{bottom:763.995000px;}
.y10b{bottom:764.595000px;}
.y7d{bottom:766.380000px;}
.y31c{bottom:768.780000px;}
.y50a{bottom:769.380000px;}
.y19d{bottom:771.300000px;}
.y33c{bottom:771.480000px;}
.y150{bottom:771.795000px;}
.y299{bottom:773.295000px;}
.y3e1{bottom:773.880000px;}
.y395{bottom:775.380000px;}
.y3a{bottom:776.580000px;}
.ye{bottom:777.195000px;}
.y443{bottom:778.680000px;}
.y1ac{bottom:779.280000px;}
.y1b5{bottom:779.700000px;}
.y21a{bottom:780.180000px;}
.y482{bottom:780.795000px;}
.y12f{bottom:781.380000px;}
.y27e{bottom:782.280000px;}
.y90{bottom:782.580000px;}
.y35e{bottom:783.795000px;}
.y3be{bottom:784.380000px;}
.y46b{bottom:784.695000px;}
.y59{bottom:784.980000px;}
.y41b{bottom:787.695000px;}
.y10a{bottom:788.295000px;}
.y4a3{bottom:789.195000px;}
.y14f{bottom:795.480000px;}
.ye3{bottom:796.695000px;}
.y31b{bottom:796.980000px;}
.yc4{bottom:797.280000px;}
.y101{bottom:798.000000px;}
.y298{bottom:799.380000px;}
.y2ad{bottom:799.800000px;}
.y33b{bottom:799.980000px;}
.y43e{bottom:799.995000px;}
.y39{bottom:800.580000px;}
.yd{bottom:800.880000px;}
.y47f{bottom:803.295000px;}
.y3fd{bottom:803.880000px;}
.y8f{bottom:806.280000px;}
.y35d{bottom:806.295000px;}
.yfc{bottom:807.000000px;}
.y7c{bottom:807.480000px;}
.y27d{bottom:808.380000px;}
.y4e3{bottom:808.695000px;}
.y4c6{bottom:809.580000px;}
.y28d{bottom:809.700000px;}
.y394{bottom:809.880000px;}
.y4a1{bottom:811.695000px;}
.y23a{bottom:811.980000px;}
.y58{bottom:814.080000px;}
.y509{bottom:818.880000px;}
.y3bb{bottom:820.380000px;}
.y469{bottom:821.880000px;}
.y12e{bottom:823.080000px;}
.y104{bottom:823.200000px;}
.y264{bottom:823.980000px;}
.y38{bottom:824.295000px;}
.yc{bottom:824.580000px;}
.y31a{bottom:825.795000px;}
.y33a{bottom:828.195000px;}
.y35b{bottom:828.795000px;}
.y8e{bottom:829.995000px;}
.y7b{bottom:830.880000px;}
.y4c5{bottom:832.080000px;}
.y393{bottom:832.380000px;}
.ye2{bottom:835.380000px;}
.yc2{bottom:836.895000px;}
.y14e{bottom:837.195000px;}
.y19c{bottom:838.800000px;}
.y506{bottom:841.425000px;}
.y4e2{bottom:841.725000px;}
.y103{bottom:843.195000px;}
.y3fc{bottom:843.225000px;}
.y57{bottom:843.525000px;}
.y468{bottom:845.325000px;}
.y3e0{bottom:845.925000px;}
.y12d{bottom:846.825000px;}
.y419{bottom:847.125000px;}
.ya3{bottom:848.025000px;}
.yb{bottom:848.325000px;}
.y35a{bottom:851.325000px;}
.y261{bottom:853.425000px;}
.y109{bottom:853.725000px;}
.y7a{bottom:854.025000px;}
.y4c2{bottom:854.625000px;}
.y392{bottom:854.925000px;}
.y3b9{bottom:856.425000px;}
.y339{bottom:856.725000px;}
.y214{bottom:858.225000px;}
.yff{bottom:863.025000px;}
.y4a0{bottom:863.325000px;}
.y4e1{bottom:864.225000px;}
.y37{bottom:866.025000px;}
.y467{bottom:867.825000px;}
.y12c{bottom:870.525000px;}
.y8d{bottom:871.725000px;}
.ya{bottom:872.025000px;}
.y56{bottom:872.625000px;}
.y359{bottom:873.825000px;}
.ye1{bottom:874.425000px;}
.yc0{bottom:876.225000px;}
.y79{bottom:877.125000px;}
.y168{bottom:877.425000px;}
.y14d{bottom:879.225000px;}
.y3fb{bottom:880.425000px;}
.y3de{bottom:881.925000px;}
.y319{bottom:882.525000px;}
.y338{bottom:885.225000px;}
.y19b{bottom:886.200000px;}
.y418{bottom:886.425000px;}
.y212{bottom:888.225000px;}
.y36{bottom:889.725000px;}
.y43c{bottom:890.325000px;}
.y12b{bottom:894.225000px;}
.y8c{bottom:895.425000px;}
.y9{bottom:895.725000px;}
.y358{bottom:896.325000px;}
.y391{bottom:896.925000px;}
.y49f{bottom:899.325000px;}
.y47e{bottom:899.925000px;}
.y78{bottom:900.225000px;}
.y55{bottom:902.025000px;}
.y14c{bottom:902.925000px;}
.y3fa{bottom:904.425000px;}
.y318{bottom:911.025000px;}
.y43b{bottom:911.325000px;}
.y3b6{bottom:911.925000px;}
.y462{bottom:912.825000px;}
.ye0{bottom:913.125000px;}
.y35{bottom:913.425000px;}
.ybf{bottom:915.825000px;}
.y4df{bottom:918.225000px;}
.y357{bottom:918.825000px;}
.y1f0{bottom:919.125000px;}
.y8b{bottom:919.425000px;}
.y8{bottom:919.725000px;}
.y49e{bottom:921.825000px;}
.y210{bottom:922.425000px;}
.y25e{bottom:923.025000px;}
.y77{bottom:923.325000px;}
.y417{bottom:924.525000px;}
.y47d{bottom:926.025000px;}
.y14b{bottom:926.625000px;}
.y54{bottom:931.125000px;}
.y505{bottom:931.425000px;}
.y199{bottom:933.900000px;}
.y12a{bottom:935.925000px;}
.yb0{bottom:937.125000px;}
.y34{bottom:937.425000px;}
.y317{bottom:939.225000px;}
.y3f9{bottom:940.425000px;}
.yfe{bottom:940.725000px;}
.y356{bottom:941.325000px;}
.y337{bottom:941.925000px;}
.y8a{bottom:943.125000px;}
.y7{bottom:943.425000px;}
.y76{bottom:946.725000px;}
.y20d{bottom:947.025000px;}
.y439{bottom:947.625000px;}
.y25d{bottom:949.725000px;}
.y14a{bottom:950.325000px;}
.y3b5{bottom:950.925000px;}
.y4de{bottom:951.225000px;}
.ydf{bottom:951.825000px;}
.y3db{bottom:953.925000px;}
.ybd{bottom:955.425000px;}
.y49d{bottom:956.325000px;}
.y129{bottom:959.925000px;}
.y53{bottom:960.225000px;}
.y33{bottom:961.125000px;}
.y4c1{bottom:963.225000px;}
.y355{bottom:963.825000px;}
.y390{bottom:964.425000px;}
.y89{bottom:966.825000px;}
.y479{bottom:967.425000px;}
.y316{bottom:967.725000px;}
.y6{bottom:969.225000px;}
.y416{bottom:969.525000px;}
.y75{bottom:969.825000px;}
.y336{bottom:970.425000px;}
.y3b2{bottom:973.425000px;}
.y4dd{bottom:973.725000px;}
.y149{bottom:975.225000px;}
.y209{bottom:976.425000px;}
.y2c2{bottom:979.125000px;}
.y197{bottom:982.800000px;}
.y128{bottom:983.625000px;}
.y32{bottom:984.825000px;}
.y354{bottom:986.325000px;}
.y38f{bottom:986.925000px;}
.y461{bottom:989.325000px;}
.y52{bottom:989.625000px;}
.y88{bottom:990.525000px;}
.ybb{bottom:994.725000px;}
.y106{bottom:996.225000px;}
.y335{bottom:998.625000px;}
.y148{bottom:999.225000px;}
.y5{bottom:1001.025000px;}
.y74{bottom:1001.325000px;}
.y18e{bottom:1002.825000px;}
.y435{bottom:1004.925000px;}
.y413{bottom:1007.925000px;}
.y31{bottom:1008.525000px;}
.y351{bottom:1008.825000px;}
.y38e{bottom:1009.455000px;}
.y4dc{bottom:1009.755000px;}
.y49c{bottom:1010.355000px;}
.y3af{bottom:1010.955000px;}
.y460{bottom:1011.855000px;}
.y3f8{bottom:1012.455000px;}
.y25a{bottom:1014.255000px;}
.y4c0{bottom:1014.855000px;}
.y51{bottom:1018.755000px;}
.y147{bottom:1024.155000px;}
.y315{bottom:1024.455000px;}
.y206{bottom:1025.070000px;}
.y127{bottom:1025.370000px;}
.y3da{bottom:1025.955000px;}
.yaf{bottom:1026.570000px;}
.y334{bottom:1027.170000px;}
.yde{bottom:1029.255000px;}
.y4{bottom:1030.455000px;}
.y34f{bottom:1031.355000px;}
.y38d{bottom:1031.955000px;}
.y30{bottom:1032.255000px;}
.y45e{bottom:1034.355000px;}
.y4bf{bottom:1037.355000px;}
.y503{bottom:1042.455000px;}
.y73{bottom:1043.655000px;}
.y436{bottom:1043.955000px;}
.y18d{bottom:1044.570000px;}
.y412{bottom:1046.070000px;}
.y146{bottom:1047.855000px;}
.y50{bottom:1048.170000px;}
.y3d9{bottom:1048.455000px;}
.y126{bottom:1049.070000px;}
.yae{bottom:1050.255000px;}
.y257{bottom:1051.755000px;}
.y314{bottom:1052.955000px;}
.y34e{bottom:1053.870000px;}
.y3{bottom:1054.170000px;}
.y38c{bottom:1054.455000px;}
.y4db{bottom:1054.755000px;}
.y333{bottom:1055.670000px;}
.y2f{bottom:1055.955000px;}
.y202{bottom:1057.155000px;}
.y4be{bottom:1059.870000px;}
.y49b{bottom:1061.955000px;}
.y501{bottom:1064.955000px;}
.ydd{bottom:1067.955000px;}
.y18c{bottom:1068.255000px;}
.y411{bottom:1068.570000px;}
.y145{bottom:1072.755000px;}
.ya2{bottom:1073.955000px;}
.y45a{bottom:1076.070000px;}
.y34d{bottom:1076.370000px;}
.y38b{bottom:1076.955000px;}
.y4f{bottom:1077.255000px;}
.y2{bottom:1078.170000px;}
.y87{bottom:1079.955000px;}
.y4da{bottom:1080.870000px;}
.y313{bottom:1081.455000px;}
.y4bd{bottom:1082.370000px;}
.y332{bottom:1083.870000px;}
.y3ae{bottom:1084.455000px;}
.y72{bottom:1084.755000px;}
.y478{bottom:1088.955000px;}
.y343{bottom:1089.255000px;}
.y125{bottom:1090.755000px;}
.y18b{bottom:1091.955000px;}
.y40e{bottom:1094.670000px;}
.y1{bottom:1094.955000px;}
.y144{bottom:1096.755000px;}
.yad{bottom:1097.655000px;}
.y2e{bottom:1097.955000px;}
.y4e{bottom:1098.570000px;}
.y34a{bottom:1098.870000px;}
.y38a{bottom:1099.455000px;}
.yfa{bottom:1100.670000px;}
.y312{bottom:1100.955000px;}
.y4ba{bottom:1104.855000px;}
.ydc{bottom:1106.955000px;}
.y71{bottom:1107.570000px;}
.y331{bottom:1112.370000px;}
.y124{bottom:1114.455000px;}
.ya1{bottom:1115.955000px;}
.y45c{bottom:1116.255000px;}
.y256{bottom:1118.955000px;}
.y3ad{bottom:1120.455000px;}
.y86{bottom:1121.670000px;}
.y2ce{bottom:1130.655000px;}
.y389{bottom:1133.955000px;}
.y40d{bottom:1136.955000px;}
.y123{bottom:1138.455000px;}
.y2d{bottom:1139.655000px;}
.y4d{bottom:1140.870000px;}
.h75{height:21.000000px;}
.h77{height:21.300000px;}
.h79{height:22.200000px;}
.h57{height:22.485000px;}
.h1b{height:22.500000px;}
.h58{height:22.522500px;}
.h1c{height:22.537500px;}
.h7f{height:23.437500px;}
.h1a{height:23.700000px;}
.h7d{height:23.737500px;}
.h32{height:24.000000px;}
.h89{height:24.037500px;}
.h5b{height:24.600000px;}
.h21{height:24.900000px;}
.h3c{height:25.800000px;}
.h4a{height:26.400000px;}
.h1f{height:27.000000px;}
.h31{height:28.500000px;}
.h49{height:28.837500px;}
.h34{height:29.400000px;}
.h42{height:30.337500px;}
.h47{height:30.600000px;}
.h45{height:31.200000px;}
.h2f{height:31.500000px;}
.h44{height:31.800000px;}
.h17{height:32.100000px;}
.h36{height:32.400000px;}
.h8b{height:33.000000px;}
.h8c{height:33.037500px;}
.h33{height:33.300000px;}
.h3b{height:34.200000px;}
.h3e{height:34.237500px;}
.h83{height:34.485000px;}
.h5a{height:34.500000px;}
.h35{height:34.537500px;}
.h12{height:35.400000px;}
.h43{height:35.700000px;}
.h78{height:35.985000px;}
.h5e{height:36.000000px;}
.h64{height:36.037500px;}
.h74{height:36.300000px;}
.h39{height:36.900000px;}
.h71{height:37.200000px;}
.h4b{height:37.500000px;}
.h62{height:37.537500px;}
.h41{height:37.800000px;}
.h6d{height:38.100000px;}
.h6b{height:38.137500px;}
.h6a{height:38.400000px;}
.h72{height:38.437500px;}
.hd{height:38.700000px;}
.hf{height:38.737500px;}
.he{height:39.000000px;}
.hc{height:39.037500px;}
.h7e{height:39.285000px;}
.h6c{height:39.300000px;}
.h6e{height:39.337500px;}
.h7b{height:39.600000px;}
.h6f{height:39.637500px;}
.h8a{height:40.485000px;}
.h81{height:40.500000px;}
.h5d{height:40.537500px;}
.h18{height:41.400000px;}
.h69{height:41.700000px;}
.h59{height:42.000000px;}
.h46{height:42.037500px;}
.h2e{height:42.300000px;}
.h51{height:43.265625px;}
.h54{height:43.400830px;}
.h10{height:43.681641px;}
.h23{height:46.800000px;}
.h48{height:47.400000px;}
.h37{height:47.700000px;}
.h30{height:48.037500px;}
.h4d{height:48.673828px;}
.h4e{height:48.809033px;}
.h8d{height:49.500000px;}
.h22{height:50.700000px;}
.h3f{height:51.600000px;}
.h82{height:51.622500px;}
.h3a{height:51.637500px;}
.h40{height:51.900000px;}
.h88{height:51.937500px;}
.h11{height:52.417969px;}
.h5f{height:54.000000px;}
.h66{height:54.037500px;}
.h28{height:54.082031px;}
.h52{height:54.217236px;}
.h24{height:54.580078px;}
.h25{height:54.716528px;}
.h73{height:55.200000px;}
.h20{height:55.237500px;}
.h63{height:55.500000px;}
.h38{height:56.214844px;}
.h5c{height:57.000000px;}
.h7{height:59.490234px;}
.h2a{height:59.625439px;}
.ha{height:60.038086px;}
.h5{height:64.898438px;}
.h16{height:64.898452px;}
.h26{height:65.033643px;}
.h3{height:65.496094px;}
.h2{height:65.645508px;}
.h3d{height:66.000000px;}
.h8e{height:66.037500px;}
.h27{height:66.600000px;}
.h8{height:67.579102px;}
.h56{height:67.837600px;}
.h55{height:68.707031px;}
.h84{height:68.737500px;}
.h85{height:68.985000px;}
.h1d{height:69.000000px;}
.h19{height:70.237500px;}
.h9{height:71.613281px;}
.h67{height:72.000000px;}
.h60{height:72.037500px;}
.h61{height:73.500000px;}
.hb{height:74.004654px;}
.h6{height:74.953125px;}
.h70{height:76.237500px;}
.h7c{height:76.500000px;}
.h7a{height:79.500000px;}
.h87{height:86.100000px;}
.h4{height:87.328125px;}
.h65{height:90.000000px;}
.h86{height:90.037500px;}
.h76{height:90.322500px;}
.h80{height:103.237500px;}
.h68{height:108.000000px;}
.h1e{height:155.130000px;}
.h13{height:189.600000px;}
.h14{height:260.400000px;}
.h15{height:262.500000px;}
.h4c{height:305.100000px;}
.h4f{height:315.000000px;}
.h2d{height:317.400000px;}
.h29{height:335.100000px;}
.h2b{height:359.100000px;}
.h2c{height:365.400000px;}
.h53{height:378.600000px;}
.h50{height:397.500000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w4f{width:43.800000px;}
.w7{width:49.800000px;}
.w4e{width:53.400000px;}
.w6{width:54.900000px;}
.w51{width:55.200000px;}
.w56{width:64.837500px;}
.w52{width:65.437500px;}
.w53{width:66.037500px;}
.w2d{width:67.200000px;}
.w55{width:68.137500px;}
.w50{width:70.537500px;}
.w54{width:71.400000px;}
.w4d{width:82.237500px;}
.w29{width:85.200000px;}
.w43{width:88.837500px;}
.w4b{width:89.400000px;}
.w3e{width:89.437500px;}
.w3f{width:89.700000px;}
.w40{width:89.737500px;}
.w46{width:90.000000px;}
.w47{width:90.037500px;}
.w25{width:92.700000px;}
.w4c{width:93.337500px;}
.w20{width:93.600000px;}
.w3b{width:93.637500px;}
.w38{width:94.237500px;}
.w3a{width:94.537500px;}
.w39{width:94.800000px;}
.w1b{width:94.837500px;}
.w26{width:95.737500px;}
.w36{width:96.037500px;}
.w21{width:96.337500px;}
.w58{width:97.200000px;}
.w57{width:97.237500px;}
.w1a{width:105.900000px;}
.w2e{width:107.437500px;}
.w37{width:109.537500px;}
.w1c{width:112.237500px;}
.w17{width:112.537500px;}
.w16{width:113.137500px;}
.w2f{width:113.737500px;}
.w2b{width:114.337500px;}
.w27{width:117.937500px;}
.w23{width:118.237500px;}
.w31{width:118.537500px;}
.w22{width:118.837500px;}
.w35{width:120.337500px;}
.wa{width:122.437500px;}
.w19{width:122.775000px;}
.w4a{width:137.175000px;}
.w48{width:138.075000px;}
.w8{width:138.337500px;}
.w49{width:138.975000px;}
.w44{width:139.275000px;}
.wd{width:139.575000px;}
.w9{width:139.875000px;}
.wc{width:141.037500px;}
.wb{width:144.637500px;}
.w24{width:145.275000px;}
.w1f{width:145.575000px;}
.w14{width:145.875000px;}
.w30{width:172.230000px;}
.w1d{width:172.275000px;}
.w15{width:191.130000px;}
.w2a{width:193.575000px;}
.w34{width:202.845000px;}
.w33{width:202.875000px;}
.w3c{width:207.675000px;}
.w13{width:243.975000px;}
.w28{width:246.675000px;}
.w2c{width:251.775000px;}
.w18{width:254.775000px;}
.w5{width:306.300000px;}
.we{width:323.400000px;}
.w1e{width:430.005000px;}
.wf{width:564.900000px;}
.w12{width:566.400000px;}
.w11{width:588.900000px;}
.w10{width:594.000000px;}
.w4{width:613.095000px;}
.w42{width:628.995000px;}
.w41{width:629.880000px;}
.w3d{width:629.895000px;}
.w45{width:632.580000px;}
.w3{width:637.080000px;}
.w32{width:637.800000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x95{left:4.200000px;}
.x46{left:5.775000px;}
.x12{left:7.500000px;}
.x4d{left:8.730000px;}
.x54{left:9.870000px;}
.x1a{left:10.920000px;}
.x1c{left:12.630000px;}
.x72{left:14.400000px;}
.x4c{left:16.275000px;}
.x53{left:17.400000px;}
.x6f{left:19.200000px;}
.x6b{left:20.700000px;}
.xa2{left:22.200000px;}
.x66{left:23.400000px;}
.x32{left:25.500000px;}
.x60{left:27.000000px;}
.x2b{left:28.500000px;}
.x31{left:30.000000px;}
.x26{left:31.200000px;}
.x29{left:32.685000px;}
.x42{left:34.530000px;}
.xbf{left:36.045000px;}
.x33{left:37.500000px;}
.xc0{left:38.985000px;}
.x1f{left:40.125000px;}
.x28{left:42.300000px;}
.x2a{left:43.830000px;}
.x2e{left:45.000000px;}
.x40{left:47.130000px;}
.xa1{left:48.300000px;}
.x2d{left:49.485000px;}
.x2c{left:51.000000px;}
.x3b{left:53.130000px;}
.x78{left:54.780000px;}
.xa8{left:56.700000px;}
.x30{left:58.185000px;}
.x2f{left:59.700000px;}
.x24{left:61.200000px;}
.xb6{left:63.000000px;}
.x64{left:64.237500px;}
.xc1{left:65.730000px;}
.xa0{left:68.100000px;}
.x22{left:69.630000px;}
.xc6{left:72.000000px;}
.x86{left:74.220000px;}
.x55{left:76.425000px;}
.x47{left:80.130000px;}
.x97{left:81.645000px;}
.xc5{left:85.500000px;}
.x39{left:86.850000px;}
.x99{left:88.545000px;}
.x3e{left:93.375000px;}
.x98{left:96.030000px;}
.x35{left:98.775000px;}
.x15{left:100.020000px;}
.x37{left:101.280000px;}
.x4e{left:104.070000px;}
.x3a{left:106.875000px;}
.x7b{left:110.220000px;}
.x58{left:111.225000px;}
.x5a{left:114.525000px;}
.x11{left:120.037500px;}
.x5c{left:121.830000px;}
.x6d{left:123.037500px;}
.x3d{left:126.495000px;}
.x2{left:127.537487px;}
.x79{left:128.595000px;}
.x81{left:130.545000px;}
.x7d{left:131.745000px;}
.x38{left:132.975000px;}
.x8b{left:135.030000px;}
.x3c{left:136.980000px;}
.x5{left:138.337487px;}
.x3f{left:140.280000px;}
.xe{left:144.037487px;}
.x41{left:145.095000px;}
.x7c{left:147.750000px;}
.x77{left:151.470000px;}
.x10{left:154.529987px;}
.xd{left:161.144987px;}
.x45{left:162.900000px;}
.x21{left:171.645000px;}
.x1b{left:176.400000px;}
.x13{left:181.574987px;}
.x56{left:184.500000px;}
.x82{left:196.470000px;}
.x65{left:198.375000px;}
.x80{left:199.425000px;}
.x7f{left:200.700000px;}
.x8d{left:203.445000px;}
.x7e{left:206.820000px;}
.xa9{left:208.574987px;}
.x1d{left:213.644987px;}
.x5b{left:216.074987px;}
.xb7{left:223.275000px;}
.x9a{left:225.975000px;}
.x50{left:231.030000px;}
.xaa{left:236.475000px;}
.x93{left:242.174987px;}
.x6c{left:247.874987px;}
.x7a{left:249.420000px;}
.x3{left:251.774987px;}
.x76{left:253.725000px;}
.x89{left:257.070000px;}
.x8a{left:266.505000px;}
.x9{left:269.774987px;}
.x83{left:281.325000px;}
.x57{left:284.625000px;}
.xb0{left:285.975000px;}
.x5d{left:287.175000px;}
.x67{left:291.975000px;}
.xa3{left:295.275000px;}
.xc{left:296.474987px;}
.x62{left:298.575000px;}
.x14{left:303.600000px;}
.xb8{left:306.720000px;}
.x87{left:308.895000px;}
.x23{left:311.820000px;}
.x6e{left:316.320000px;}
.x1{left:322.019987px;}
.x84{left:324.450000px;}
.xab{left:326.520000px;}
.x6{left:328.919987px;}
.x7{left:333.404987px;}
.x9b{left:337.020000px;}
.xa{left:347.219987px;}
.xb9{left:360.420000px;}
.xb3{left:376.020000px;}
.xb{left:377.504987px;}
.x8{left:379.619987px;}
.x17{left:385.319987px;}
.x49{left:386.970000px;}
.x68{left:388.320000px;}
.x73{left:390.120000px;}
.x48{left:401.625000px;}
.xba{left:404.520000px;}
.xa4{left:411.120000px;}
.x18{left:414.749987px;}
.xac{left:416.520000px;}
.x16{left:419.849987px;}
.x19{left:422.249987px;}
.x9c{left:431.550000px;}
.x5e{left:433.050000px;}
.x25{left:435.150000px;}
.x36{left:444.000000px;}
.x4{left:446.549987px;}
.x88{left:452.475000px;}
.x59{left:467.025000px;}
.x4b{left:473.805000px;}
.xbb{left:475.350000px;}
.x69{left:484.650000px;}
.x4a{left:488.475000px;}
.x4f{left:490.005000px;}
.x74{left:498.150000px;}
.xa5{left:501.150000px;}
.x85{left:507.450000px;}
.xc2{left:518.850000px;}
.x9d{left:526.650000px;}
.x63{left:528.750000px;}
.xbc{left:531.150000px;}
.x96{left:536.850000px;}
.x8c{left:540.525000px;}
.xb4{left:556.095000px;}
.xb1{left:557.280000px;}
.x94{left:568.694987px;}
.x27{left:580.395000px;}
.xa6{left:591.195000px;}
.x70{left:595.095000px;}
.xad{left:596.595000px;}
.x6a{left:603.195000px;}
.xc3{left:616.395000px;}
.x9e{left:621.780000px;}
.x5f{left:624.195000px;}
.x92{left:645.194987px;}
.xb2{left:647.595000px;}
.xbd{left:662.925000px;}
.x1e{left:665.400000px;}
.x20{left:680.924987px;}
.xae{left:686.625000px;}
.x8e{left:705.824987px;}
.x71{left:709.425000px;}
.xc4{left:713.925000px;}
.x9f{left:716.625000px;}
.x90{left:718.124987px;}
.x8f{left:719.324987px;}
.x52{left:721.724987px;}
.x43{left:730.124987px;}
.xbe{left:734.625000px;}
.xb5{left:736.125000px;}
.x61{left:737.325000px;}
.x91{left:743.024987px;}
.x51{left:744.224987px;}
.x44{left:748.724987px;}
.x34{left:750.524987px;}
.xf{left:758.024987px;}
.x75{left:766.724987px;}
.xa7{left:771.225000px;}
.xaf{left:776.625000px;}
@media print{
.v2{vertical-align:-69.333333pt;}
.v1{vertical-align:-14.826667pt;}
.v0{vertical-align:0.000000pt;}
.ls2d{letter-spacing:-1.472000pt;}
.lse{letter-spacing:-1.157333pt;}
.ls26{letter-spacing:-1.152000pt;}
.ls3d{letter-spacing:-1.077333pt;}
.ls47{letter-spacing:-0.874667pt;}
.ls48{letter-spacing:-0.853333pt;}
.ls3b{letter-spacing:-0.757333pt;}
.ls9{letter-spacing:-0.725333pt;}
.lsf{letter-spacing:-0.592000pt;}
.ls39{letter-spacing:-0.576000pt;}
.ls21{letter-spacing:-0.448000pt;}
.ls27{letter-spacing:-0.426667pt;}
.ls3{letter-spacing:-0.405333pt;}
.ls2{letter-spacing:-0.384000pt;}
.ls44{letter-spacing:-0.373333pt;}
.ls25{letter-spacing:-0.362667pt;}
.ls3a{letter-spacing:-0.277333pt;}
.ls46{letter-spacing:-0.106667pt;}
.ls6{letter-spacing:-0.085333pt;}
.ls4{letter-spacing:-0.064000pt;}
.ls40{letter-spacing:-0.016000pt;}
.ls3f{letter-spacing:-0.010667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls35{letter-spacing:0.021333pt;}
.ls3e{letter-spacing:0.042667pt;}
.ls34{letter-spacing:0.074667pt;}
.lsc{letter-spacing:0.122667pt;}
.lsb{letter-spacing:0.149333pt;}
.ls24{letter-spacing:0.160000pt;}
.ls31{letter-spacing:0.181333pt;}
.ls18{letter-spacing:0.192000pt;}
.ls23{letter-spacing:0.213333pt;}
.ls14{letter-spacing:0.245333pt;}
.ls1a{letter-spacing:0.288000pt;}
.ls3c{letter-spacing:0.309333pt;}
.ls0{letter-spacing:0.341333pt;}
.lsa{letter-spacing:0.410667pt;}
.ls15{letter-spacing:0.426667pt;}
.ls2c{letter-spacing:0.451200pt;}
.ls36{letter-spacing:0.464000pt;}
.ls2f{letter-spacing:0.469333pt;}
.ls38{letter-spacing:0.474667pt;}
.ls7{letter-spacing:0.490667pt;}
.ls29{letter-spacing:0.512000pt;}
.ls45{letter-spacing:0.533333pt;}
.ls33{letter-spacing:0.544000pt;}
.ls10{letter-spacing:0.554667pt;}
.lsd{letter-spacing:0.608000pt;}
.ls37{letter-spacing:0.629333pt;}
.ls28{letter-spacing:0.640000pt;}
.ls8{letter-spacing:0.682667pt;}
.ls19{letter-spacing:1.408000pt;}
.ls1b{letter-spacing:3.488000pt;}
.ls13{letter-spacing:3.541333pt;}
.ls2b{letter-spacing:4.608000pt;}
.ls41{letter-spacing:4.714667pt;}
.ls30{letter-spacing:4.757333pt;}
.ls1e{letter-spacing:11.008000pt;}
.ls1d{letter-spacing:12.074667pt;}
.ls20{letter-spacing:14.208000pt;}
.ls5{letter-spacing:15.274667pt;}
.ls1f{letter-spacing:20.608000pt;}
.ls22{letter-spacing:29.301333pt;}
.ls12{letter-spacing:33.568000pt;}
.ls11{letter-spacing:34.581333pt;}
.ls2e{letter-spacing:39.317333pt;}
.ls2a{letter-spacing:43.114667pt;}
.ls1c{letter-spacing:47.381333pt;}
.ls16{letter-spacing:48.501333pt;}
.ls42{letter-spacing:57.941333pt;}
.ls43{letter-spacing:84.608000pt;}
.ls32{letter-spacing:154.490667pt;}
.ls17{letter-spacing:750.501333pt;}
.ws1d{word-spacing:-15.018667pt;}
.ws4{word-spacing:-14.933333pt;}
.wsb{word-spacing:-14.784000pt;}
.ws0{word-spacing:-14.592000pt;}
.ws28{word-spacing:-14.528000pt;}
.ws2{word-spacing:-14.208000pt;}
.ws3{word-spacing:-14.186667pt;}
.wsf{word-spacing:-14.016000pt;}
.ws22{word-spacing:-13.840000pt;}
.ws6{word-spacing:-13.786667pt;}
.ws27{word-spacing:-13.717333pt;}
.ws7{word-spacing:-13.408000pt;}
.ws10{word-spacing:-13.406400pt;}
.ws9{word-spacing:-13.381333pt;}
.ws8{word-spacing:-13.376000pt;}
.ws23{word-spacing:-13.360000pt;}
.ws5{word-spacing:-13.290667pt;}
.ws18{word-spacing:-13.120000pt;}
.wsa{word-spacing:-12.784000pt;}
.ws26{word-spacing:-12.693333pt;}
.ws25{word-spacing:-12.586667pt;}
.wsd{word-spacing:-12.373333pt;}
.ws12{word-spacing:-12.224000pt;}
.wse{word-spacing:-12.190400pt;}
.wsc{word-spacing:-12.160000pt;}
.ws24{word-spacing:-11.786667pt;}
.ws21{word-spacing:-11.354667pt;}
.ws29{word-spacing:-11.306667pt;}
.ws20{word-spacing:-11.253333pt;}
.ws15{word-spacing:-10.944000pt;}
.ws1e{word-spacing:-10.666667pt;}
.ws1f{word-spacing:-10.186667pt;}
.ws1b{word-spacing:-9.728000pt;}
.ws1{word-spacing:0.000000pt;}
.ws14{word-spacing:33.317333pt;}
.ws17{word-spacing:34.812800pt;}
.ws13{word-spacing:42.640000pt;}
.ws16{word-spacing:44.074000pt;}
.ws11{word-spacing:87.226667pt;}
.ws1c{word-spacing:156.853333pt;}
.ws1a{word-spacing:256.800000pt;}
.ws19{word-spacing:269.653333pt;}
._13{margin-left:-12.053333pt;}
._e{margin-left:-10.746667pt;}
._10{margin-left:-8.197333pt;}
._f{margin-left:-6.080000pt;}
._12{margin-left:-3.776000pt;}
._11{margin-left:-2.869333pt;}
._d{margin-left:-1.946667pt;}
._0{margin-left:-0.938667pt;}
._2{width:0.938667pt;}
._1{width:1.834667pt;}
._8{width:2.965333pt;}
._6{width:3.904000pt;}
._7{width:5.546667pt;}
._4{width:6.522667pt;}
._9{width:7.477333pt;}
._3{width:8.682667pt;}
._5{width:9.733333pt;}
._a{width:11.466667pt;}
._b{width:13.226667pt;}
._3a{width:14.368000pt;}
._c{width:15.722667pt;}
._1a{width:16.874667pt;}
._1c{width:17.909333pt;}
._17{width:19.040000pt;}
._16{width:20.144000pt;}
._1b{width:21.210667pt;}
._14{width:22.448000pt;}
._15{width:23.386667pt;}
._1d{width:24.949333pt;}
._1e{width:26.389333pt;}
._22{width:28.202667pt;}
._21{width:29.936000pt;}
._20{width:34.112000pt;}
._1f{width:35.029333pt;}
._35{width:44.798533pt;}
._31{width:70.149333pt;}
._19{width:86.410667pt;}
._18{width:87.344000pt;}
._37{width:95.573333pt;}
._29{width:97.024000pt;}
._34{width:100.853333pt;}
._36{width:106.645333pt;}
._24{width:108.090667pt;}
._2c{width:109.226667pt;}
._33{width:112.138667pt;}
._30{width:113.034667pt;}
._25{width:136.266667pt;}
._23{width:144.453333pt;}
._2f{width:153.280000pt;}
._2a{width:162.288000pt;}
._32{width:175.648000pt;}
._2b{width:200.933333pt;}
._28{width:211.413333pt;}
._2d{width:249.578667pt;}
._2e{width:258.464000pt;}
._38{width:276.128000pt;}
._39{width:294.080000pt;}
._26{width:299.776000pt;}
._27{width:307.712000pt;}
.fsa{font-size:42.666667pt;}
.fsb{font-size:42.800000pt;}
.fs8{font-size:48.000000pt;}
.fs9{font-size:48.133333pt;}
.fs3{font-size:51.200000pt;}
.fs4{font-size:53.333333pt;}
.fs5{font-size:53.466667pt;}
.fs0{font-size:58.666667pt;}
.fs7{font-size:58.800000pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:64.133333pt;}
.fs2{font-size:85.333333pt;}
.y100{bottom:-19.040000pt;}
.y0{bottom:0.000000pt;}
.y481{bottom:2.653333pt;}
.y226{bottom:2.666667pt;}
.y4bc{bottom:2.680000pt;}
.y45b{bottom:2.920000pt;}
.y218{bottom:2.933333pt;}
.y396{bottom:2.946667pt;}
.y243{bottom:3.200000pt;}
.y16e{bottom:3.466667pt;}
.y25c{bottom:3.733333pt;}
.y3ce{bottom:3.986667pt;}
.y3c2{bottom:4.000000pt;}
.y180{bottom:4.253333pt;}
.y174{bottom:4.266667pt;}
.y179{bottom:4.280000pt;}
.y43d{bottom:4.533333pt;}
.y444{bottom:4.546667pt;}
.y438{bottom:4.573333pt;}
.y172{bottom:4.800000pt;}
.y35c{bottom:5.053333pt;}
.y387{bottom:5.060000pt;}
.y34c{bottom:5.066667pt;}
.y350{bottom:5.080000pt;}
.y489{bottom:5.093333pt;}
.y353{bottom:5.106667pt;}
.y186{bottom:5.333333pt;}
.y203{bottom:5.346667pt;}
.y513{bottom:5.586667pt;}
.y211{bottom:5.600000pt;}
.y3e4{bottom:5.613333pt;}
.y1c1{bottom:5.706667pt;}
.y410{bottom:5.853333pt;}
.y3a7{bottom:5.866667pt;}
.y401{bottom:6.120000pt;}
.y21c{bottom:6.133333pt;}
.y17e{bottom:6.146667pt;}
.y24f{bottom:6.160000pt;}
.y260{bottom:6.400000pt;}
.y22d{bottom:6.413333pt;}
.y25f{bottom:6.666667pt;}
.y22c{bottom:6.680000pt;}
.y265{bottom:6.933333pt;}
.y40b{bottom:7.200000pt;}
.y433{bottom:7.213333pt;}
.y427{bottom:7.240000pt;}
.y34b{bottom:7.453333pt;}
.y386{bottom:7.460000pt;}
.y20f{bottom:7.466667pt;}
.y361{bottom:7.480000pt;}
.y352{bottom:7.493333pt;}
.y378{bottom:7.506667pt;}
.y20e{bottom:7.733333pt;}
.y216{bottom:8.000000pt;}
.y215{bottom:8.266667pt;}
.y46a{bottom:8.280000pt;}
.y246{bottom:8.533333pt;}
.y476{bottom:8.546667pt;}
.y208{bottom:8.786667pt;}
.y20b{bottom:8.800000pt;}
.y24c{bottom:8.813333pt;}
.y4d8{bottom:8.840000pt;}
.y207{bottom:9.053333pt;}
.y230{bottom:9.066667pt;}
.y24b{bottom:9.080000pt;}
.y252{bottom:9.333333pt;}
.y4e5{bottom:9.586667pt;}
.y184{bottom:9.600000pt;}
.y4f9{bottom:9.613333pt;}
.y213{bottom:9.866667pt;}
.y22a{bottom:10.120000pt;}
.y219{bottom:10.133333pt;}
.y258{bottom:10.146667pt;}
.y233{bottom:10.173333pt;}
.y484{bottom:10.386667pt;}
.y368{bottom:10.400000pt;}
.y380{bottom:10.413333pt;}
.y4b7{bottom:10.440000pt;}
.y2b7{bottom:10.506667pt;}
.y249{bottom:10.666667pt;}
.y3d0{bottom:10.920000pt;}
.y248{bottom:10.933333pt;}
.y3bd{bottom:10.946667pt;}
.y224{bottom:11.200000pt;}
.y223{bottom:11.466667pt;}
.y3b4{bottom:11.733333pt;}
.y267{bottom:12.000000pt;}
.y415{bottom:12.026667pt;}
.y420{bottom:12.040000pt;}
.y3b8{bottom:12.266667pt;}
.y404{bottom:12.280000pt;}
.y41a{bottom:12.533333pt;}
.y428{bottom:12.573333pt;}
.y45d{bottom:12.786667pt;}
.y40c{bottom:12.800000pt;}
.y434{bottom:12.840000pt;}
.y1a3{bottom:12.933333pt;}
.y19f{bottom:12.960000pt;}
.y19a{bottom:13.000000pt;}
.y3a6{bottom:13.093333pt;}
.y250{bottom:13.360000pt;}
.y3ff{bottom:13.586667pt;}
.y204{bottom:13.600000pt;}
.y362{bottom:13.866667pt;}
.y42b{bottom:13.880000pt;}
.y39b{bottom:13.906667pt;}
.y198{bottom:14.066667pt;}
.y297{bottom:14.773333pt;}
.y1cf{bottom:15.200000pt;}
.y1e5{bottom:15.266667pt;}
.y1ef{bottom:15.493333pt;}
.y21e{bottom:15.986667pt;}
.y20c{bottom:16.000000pt;}
.y108{bottom:16.013333pt;}
.y21f{bottom:16.266667pt;}
.yfb{bottom:16.520000pt;}
.y4e4{bottom:16.786667pt;}
.y4e0{bottom:16.800000pt;}
.y502{bottom:16.813333pt;}
.y102{bottom:16.960000pt;}
.y4ec{bottom:17.066667pt;}
.y227{bottom:17.640000pt;}
.y229{bottom:17.853333pt;}
.y237{bottom:17.866667pt;}
.y36b{bottom:17.880000pt;}
.y232{bottom:17.893333pt;}
.y48c{bottom:17.906667pt;}
.y4a2{bottom:18.120000pt;}
.y236{bottom:18.133333pt;}
.y37f{bottom:18.146667pt;}
.y217{bottom:18.173333pt;}
.y3ed{bottom:18.920000pt;}
.y3f3{bottom:18.926667pt;}
.y185{bottom:18.933333pt;}
.y487{bottom:18.946667pt;}
.y3c8{bottom:18.960000pt;}
.y500{bottom:18.973333pt;}
.y2f0{bottom:19.133333pt;}
.y25b{bottom:19.200000pt;}
.y3cd{bottom:19.453333pt;}
.ybe{bottom:19.466667pt;}
.yc5{bottom:19.480000pt;}
.yc3{bottom:19.493333pt;}
.y3bc{bottom:19.506667pt;}
.yc7{bottom:19.720000pt;}
.yc1{bottom:19.733333pt;}
.ybc{bottom:19.760000pt;}
.y437{bottom:19.773333pt;}
.y244{bottom:20.000000pt;}
.y3f2{bottom:20.006667pt;}
.y3c7{bottom:20.026667pt;}
.y4ff{bottom:20.040000pt;}
.y44a{bottom:20.266667pt;}
.y4e8{bottom:20.786667pt;}
.y3b3{bottom:20.800000pt;}
.y3d6{bottom:20.840000pt;}
.y41d{bottom:21.053333pt;}
.y40f{bottom:21.066667pt;}
.y400{bottom:21.320000pt;}
.y406{bottom:21.333333pt;}
.y414{bottom:21.360000pt;}
.y24e{bottom:21.373333pt;}
.y408{bottom:21.600000pt;}
.y21b{bottom:21.613333pt;}
.y16d{bottom:21.866667pt;}
.y3b7{bottom:22.133333pt;}
.y205{bottom:22.146667pt;}
.y40a{bottom:22.400000pt;}
.y426{bottom:22.440000pt;}
.y1c0{bottom:22.533333pt;}
.y45f{bottom:22.680000pt;}
.y432{bottom:22.706667pt;}
.y3a5{bottom:23.493333pt;}
.y20a{bottom:24.000000pt;}
.y4f4{bottom:24.266667pt;}
.y259{bottom:24.280000pt;}
.y221{bottom:24.533333pt;}
.y176{bottom:24.800000pt;}
.y39a{bottom:24.826667pt;}
.y465{bottom:25.066667pt;}
.y263{bottom:25.600000pt;}
.y170{bottom:25.640000pt;}
.y4a6{bottom:25.853333pt;}
.y4e9{bottom:26.920000pt;}
.y3dd{bottom:26.933333pt;}
.y3d7{bottom:26.973333pt;}
.y497{bottom:27.200000pt;}
.y3ac{bottom:27.233333pt;}
.y3b1{bottom:27.746667pt;}
.y183{bottom:28.000000pt;}
.y451{bottom:29.066667pt;}
.y466{bottom:29.333333pt;}
.y19e{bottom:30.573333pt;}
.y4f3{bottom:30.666667pt;}
.y4eb{bottom:31.466667pt;}
.y50b{bottom:31.480000pt;}
.y235{bottom:33.333333pt;}
.y4bb{bottom:33.346667pt;}
.y480{bottom:33.360000pt;}
.y225{bottom:33.373333pt;}
.y239{bottom:33.600000pt;}
.y4d4{bottom:33.640000pt;}
.y508{bottom:34.933333pt;}
.y3c1{bottom:34.946667pt;}
.y442{bottom:35.186667pt;}
.y4ac{bottom:35.200000pt;}
.y3ec{bottom:35.453333pt;}
.y3a9{bottom:35.466667pt;}
.y486{bottom:35.480000pt;}
.y3c6{bottom:35.493333pt;}
.y3f1{bottom:35.500000pt;}
.y4fe{bottom:35.506667pt;}
.y3dc{bottom:36.000000pt;}
.y3d5{bottom:36.040000pt;}
.y496{bottom:36.266667pt;}
.y43a{bottom:36.533333pt;}
.y3ba{bottom:36.800000pt;}
.y4ab{bottom:37.066667pt;}
.y441{bottom:37.093333pt;}
.y3f6{bottom:37.600000pt;}
.y2ee{bottom:38.493333pt;}
.y30e{bottom:38.560000pt;}
.y1bf{bottom:39.360000pt;}
.y22f{bottom:39.733333pt;}
.y450{bottom:40.000000pt;}
.y464{bottom:40.266667pt;}
.y28e{bottom:40.560000pt;}
.y2ae{bottom:40.573333pt;}
.y3f7{bottom:42.933333pt;}
.y1e4{bottom:43.960000pt;}
.y1ce{bottom:44.666667pt;}
.y1ee{bottom:45.666667pt;}
.y4f2{bottom:46.133333pt;}
.y504{bottom:46.160000pt;}
.y4c4{bottom:48.533333pt;}
.y492{bottom:48.560000pt;}
.y47c{bottom:48.573333pt;}
.y4a5{bottom:48.786667pt;}
.y262{bottom:48.800000pt;}
.y2c{bottom:50.966667pt;}
.y4e7{bottom:51.453333pt;}
.y3df{bottom:51.466667pt;}
.y49a{bottom:51.480000pt;}
.y3ab{bottom:51.500000pt;}
.y3d4{bottom:51.506667pt;}
.y507{bottom:52.000000pt;}
.y4aa{bottom:52.266667pt;}
.y440{bottom:52.293333pt;}
.y3b0{bottom:52.813333pt;}
.y17c{bottom:54.133333pt;}
.y2e6{bottom:54.706667pt;}
.y306{bottom:54.773333pt;}
.y463{bottom:55.466667pt;}
.y44f{bottom:55.480000pt;}
.y1b6{bottom:57.160000pt;}
.y1e3{bottom:60.800000pt;}
.y1cd{bottom:61.493333pt;}
.y4c3{bottom:64.000000pt;}
.y47b{bottom:64.026667pt;}
.y1ed{bottom:64.040000pt;}
.y28f{bottom:67.466667pt;}
.y3c0{bottom:67.480000pt;}
.y43f{bottom:67.760000pt;}
.y2af{bottom:68.000000pt;}
.y2b{bottom:68.033333pt;}
.y17b{bottom:72.560000pt;}
.y1d9{bottom:78.600000pt;}
.y47a{bottom:79.240000pt;}
.y1c3{bottom:79.293333pt;}
.y1b7{bottom:80.226667pt;}
.y1e7{bottom:83.466667pt;}
.y3f5{bottom:83.480000pt;}
.y2a{bottom:84.833333pt;}
.y290{bottom:92.160000pt;}
.y307{bottom:92.266667pt;}
.y2b0{bottom:93.800000pt;}
.y2e7{bottom:94.666667pt;}
.y3f4{bottom:95.766667pt;}
.y4b9{bottom:97.366667pt;}
.y1c4{bottom:99.333333pt;}
.y70{bottom:99.766667pt;}
.ydb{bottom:100.566667pt;}
.y1d7{bottom:101.366667pt;}
.y3d8{bottom:102.433333pt;}
.y1b8{bottom:103.293333pt;}
.y1da{bottom:103.760000pt;}
.y1fd{bottom:105.100000pt;}
.y499{bottom:105.633333pt;}
.y27c{bottom:106.700000pt;}
.y2c1{bottom:108.566667pt;}
.y388{bottom:110.166667pt;}
.yf9{bottom:110.433333pt;}
.y311{bottom:110.966667pt;}
.y344{bottom:113.100000pt;}
.y167{bottom:115.766667pt;}
.y143{bottom:116.300000pt;}
.y4d9{bottom:116.566667pt;}
.y291{bottom:116.826667pt;}
.y4b8{bottom:118.700000pt;}
.y1e8{bottom:119.026667pt;}
.y1c5{bottom:119.333333pt;}
.yba{bottom:119.500000pt;}
.y2b1{bottom:119.600000pt;}
.y305{bottom:120.466667pt;}
.y29{bottom:120.566667pt;}
.y122{bottom:121.366667pt;}
.y2fb{bottom:122.433333pt;}
.y3aa{bottom:123.500000pt;}
.y6f{bottom:125.900000pt;}
.y1b9{bottom:126.360000pt;}
.y330{bottom:127.500000pt;}
.y27b{bottom:127.766667pt;}
.y1db{bottom:128.906667pt;}
.yda{bottom:129.633333pt;}
.y308{bottom:129.800000pt;}
.y1d6{bottom:129.900000pt;}
.y385{bottom:130.166667pt;}
.yf8{bottom:131.500000pt;}
.y1e6{bottom:132.000000pt;}
.y459{bottom:132.566667pt;}
.y2e5{bottom:132.666667pt;}
.y1fc{bottom:134.160000pt;}
.y3d3{bottom:134.426667pt;}
.y2e8{bottom:134.626667pt;}
.ya0{bottom:134.960000pt;}
.y431{bottom:135.226667pt;}
.y4fd{bottom:136.026667pt;}
.y498{bottom:136.293333pt;}
.y166{bottom:136.826667pt;}
.y18a{bottom:137.626667pt;}
.y4d7{bottom:137.893333pt;}
.y377{bottom:138.160000pt;}
.y241{bottom:138.440000pt;}
.y4b6{bottom:138.693333pt;}
.y1c6{bottom:139.333333pt;}
.y310{bottom:140.026667pt;}
.yb9{bottom:140.560000pt;}
.y292{bottom:141.533333pt;}
.y28{bottom:141.640000pt;}
.y121{bottom:142.440000pt;}
.y2fa{bottom:143.493333pt;}
.y2e4{bottom:144.933333pt;}
.y2b2{bottom:145.360000pt;}
.y142{bottom:145.400000pt;}
.y27a{bottom:148.866667pt;}
.y1b4{bottom:149.133333pt;}
.y1ba{bottom:149.466667pt;}
.y2ef{bottom:149.933333pt;}
.y384{bottom:150.200000pt;}
.y196{bottom:151.000000pt;}
.y6e{bottom:151.800000pt;}
.y32f{bottom:152.866667pt;}
.yfd{bottom:153.266667pt;}
.y30f{bottom:153.333333pt;}
.y1dc{bottom:154.026667pt;}
.y1e9{bottom:154.600000pt;}
.y1fb{bottom:155.266667pt;}
.y9f{bottom:156.066667pt;}
.y495{bottom:156.333333pt;}
.y165{bottom:157.933333pt;}
.y376{bottom:158.200000pt;}
.y189{bottom:158.733333pt;}
.y4d6{bottom:159.266667pt;}
.y1c7{bottom:159.360000pt;}
.yb8{bottom:161.933333pt;}
.y27{bottom:162.733333pt;}
.y120{bottom:163.800000pt;}
.y2f9{bottom:164.866667pt;}
.y293{bottom:166.200000pt;}
.y141{bottom:166.466667pt;}
.y2c0{bottom:167.000000pt;}
.y309{bottom:167.333333pt;}
.yf7{bottom:168.866667pt;}
.y4b5{bottom:169.133333pt;}
.y458{bottom:169.666667pt;}
.y383{bottom:170.200000pt;}
.y255{bottom:170.466667pt;}
.y2b3{bottom:171.173333pt;}
.yac{bottom:172.066667pt;}
.y2ac{bottom:172.333333pt;}
.y1bb{bottom:172.533333pt;}
.yd9{bottom:174.200000pt;}
.y2e9{bottom:174.600000pt;}
.y240{bottom:175.800000pt;}
.y9e{bottom:177.133333pt;}
.y1b3{bottom:177.666667pt;}
.y6d{bottom:177.933333pt;}
.y375{bottom:178.200000pt;}
.y1c2{bottom:178.666667pt;}
.y164{bottom:179.000000pt;}
.y1dd{bottom:179.200000pt;}
.y1c8{bottom:179.360000pt;}
.y188{bottom:180.066667pt;}
.y349{bottom:182.466667pt;}
.yb7{bottom:183.000000pt;}
.y26{bottom:183.800000pt;}
.y4fc{bottom:184.066667pt;}
.y11f{bottom:184.866667pt;}
.y279{bottom:185.933333pt;}
.y3a8{bottom:187.533333pt;}
.y140{bottom:187.800000pt;}
.y2bf{bottom:188.066667pt;}
.y4b4{bottom:189.133333pt;}
.yf6{bottom:189.933333pt;}
.y1ea{bottom:190.133333pt;}
.y294{bottom:190.893333pt;}
.y1fa{bottom:192.600000pt;}
.yab{bottom:193.133333pt;}
.y2ab{bottom:193.666667pt;}
.y1bc{bottom:195.600000pt;}
.y3f0{bottom:195.800000pt;}
.yd8{bottom:196.333333pt;}
.y2b4{bottom:196.933333pt;}
.y374{bottom:198.200000pt;}
.y3d2{bottom:198.466667pt;}
.y238{bottom:199.000000pt;}
.y4c{bottom:199.266667pt;}
.y1c9{bottom:199.360000pt;}
.y163{bottom:200.066667pt;}
.y300{bottom:200.533333pt;}
.y32e{bottom:203.266667pt;}
.y6c{bottom:203.800000pt;}
.yb6{bottom:204.066667pt;}
.y1de{bottom:204.333333pt;}
.y30a{bottom:204.826667pt;}
.y25{bottom:205.133333pt;}
.y304{bottom:205.826667pt;}
.y11e{bottom:205.933333pt;}
.y457{bottom:206.733333pt;}
.y278{bottom:207.000000pt;}
.y254{bottom:207.266667pt;}
.y382{bottom:207.533333pt;}
.y348{bottom:208.066667pt;}
.y13f{bottom:208.866667pt;}
.y2be{bottom:209.133333pt;}
.y2e3{bottom:210.866667pt;}
.yf5{bottom:211.000000pt;}
.y301{bottom:212.106667pt;}
.y4fb{bottom:213.400000pt;}
.y187{bottom:213.666667pt;}
.y9d{bottom:214.200000pt;}
.y2ea{bottom:214.560000pt;}
.y2aa{bottom:214.733333pt;}
.y295{bottom:215.600000pt;}
.y3ef{bottom:215.800000pt;}
.y105{bottom:216.226667pt;}
.y373{bottom:218.200000pt;}
.yd7{bottom:218.466667pt;}
.y1bd{bottom:218.666667pt;}
.y1ca{bottom:219.400000pt;}
.y494{bottom:220.333333pt;}
.y162{bottom:221.400000pt;}
.y2b5{bottom:222.733333pt;}
.y2f8{bottom:223.000000pt;}
.y430{bottom:224.333333pt;}
.yb5{bottom:225.133333pt;}
.y1eb{bottom:225.706667pt;}
.y24{bottom:226.200000pt;}
.y17a{bottom:226.733333pt;}
.y2e2{bottom:226.840000pt;}
.y11d{bottom:227.000000pt;}
.y32d{bottom:228.600000pt;}
.y1df{bottom:229.493333pt;}
.y6b{bottom:229.933333pt;}
.y2bd{bottom:230.200000pt;}
.yf4{bottom:232.066667pt;}
.y4fa{bottom:233.400000pt;}
.y253{bottom:235.000000pt;}
.y4b3{bottom:235.266667pt;}
.y4b{bottom:235.533333pt;}
.y2a9{bottom:235.800000pt;}
.y372{bottom:238.200000pt;}
.y3d1{bottom:238.466667pt;}
.y1cb{bottom:239.400000pt;}
.y296{bottom:240.266667pt;}
.y493{bottom:240.333333pt;}
.y1be{bottom:241.733333pt;}
.y30b{bottom:242.360000pt;}
.y161{bottom:242.466667pt;}
.y302{bottom:243.466667pt;}
.y456{bottom:243.800000pt;}
.y277{bottom:244.066667pt;}
.y42f{bottom:244.333333pt;}
.y4d5{bottom:245.133333pt;}
.y345{bottom:245.400000pt;}
.y234{bottom:245.666667pt;}
.yb4{bottom:246.200000pt;}
.y23{bottom:247.266667pt;}
.y2b6{bottom:248.533333pt;}
.y11c{bottom:249.133333pt;}
.y182{bottom:249.400000pt;}
.y1f9{bottom:250.733333pt;}
.y2fe{bottom:251.106667pt;}
.yaa{bottom:251.533333pt;}
.y13e{bottom:252.066667pt;}
.y32c{bottom:253.666667pt;}
.y2eb{bottom:254.533333pt;}
.y1e0{bottom:254.626667pt;}
.y4b2{bottom:255.266667pt;}
.y6a{bottom:255.800000pt;}
.yd6{bottom:256.600000pt;}
.y2a8{bottom:256.866667pt;}
.y2df{bottom:257.266667pt;}
.y371{bottom:258.200000pt;}
.y1cc{bottom:259.426667pt;}
.y303{bottom:260.106667pt;}
.y491{bottom:260.333333pt;}
.y1ec{bottom:261.266667pt;}
.y2e1{bottom:261.666667pt;}
.y2cd{bottom:262.200000pt;}
.y2fd{bottom:263.360000pt;}
.y251{bottom:263.800000pt;}
.y2f7{bottom:265.133333pt;}
.y276{bottom:265.400000pt;}
.yb3{bottom:267.266667pt;}
.y2bc{bottom:267.533333pt;}
.y22{bottom:268.333333pt;}
.yf3{bottom:269.133333pt;}
.y2de{bottom:269.533333pt;}
.y11b{bottom:270.200000pt;}
.y1f8{bottom:271.800000pt;}
.y4a{bottom:272.600000pt;}
.y13d{bottom:273.133333pt;}
.y2dc{bottom:273.893333pt;}
.y4b1{bottom:275.266667pt;}
.y455{bottom:276.866667pt;}
.yd5{bottom:277.933333pt;}
.y370{bottom:278.200000pt;}
.y42e{bottom:278.466667pt;}
.y32b{bottom:279.000000pt;}
.y160{bottom:279.533333pt;}
.y1e1{bottom:279.760000pt;}
.y30c{bottom:279.893333pt;}
.y69{bottom:281.666667pt;}
.y2ff{bottom:283.400000pt;}
.y4d3{bottom:285.133333pt;}
.y275{bottom:286.466667pt;}
.ya9{bottom:288.600000pt;}
.y3a4{bottom:288.866667pt;}
.y21{bottom:289.400000pt;}
.y11a{bottom:291.533333pt;}
.y231{bottom:292.333333pt;}
.y2e0{bottom:292.466667pt;}
.y24d{bottom:293.133333pt;}
.y49{bottom:293.666667pt;}
.y13c{bottom:294.466667pt;}
.y2ec{bottom:294.506667pt;}
.y1ab{bottom:295.266667pt;}
.y4f8{bottom:297.426667pt;}
.y454{bottom:297.960000pt;}
.y36f{bottom:298.226667pt;}
.yd4{bottom:299.026667pt;}
.y181{bottom:299.293333pt;}
.y2cc{bottom:299.560000pt;}
.y3ee{bottom:299.840000pt;}
.y15f{bottom:300.640000pt;}
.y2f6{bottom:302.226667pt;}
.y32a{bottom:304.373333pt;}
.y1e2{bottom:304.933333pt;}
.yf2{bottom:306.226667pt;}
.y3cf{bottom:306.506667pt;}
.y68{bottom:307.840000pt;}
.y1f7{bottom:308.893333pt;}
.ya8{bottom:309.706667pt;}
.y20{bottom:310.506667pt;}
.y42d{bottom:312.360000pt;}
.y119{bottom:312.640000pt;}
.y9c{bottom:314.760000pt;}
.y2a7{bottom:315.306667pt;}
.y1aa{bottom:316.373333pt;}
.y13b{bottom:316.626667pt;}
.y30d{bottom:317.440000pt;}
.y453{bottom:317.960000pt;}
.y36e{bottom:318.226667pt;}
.y2dd{bottom:318.960000pt;}
.y17f{bottom:319.840000pt;}
.yd3{bottom:320.106667pt;}
.y2cb{bottom:320.626667pt;}
.y4b0{bottom:321.173333pt;}
.y490{bottom:321.426667pt;}
.y15e{bottom:321.706667pt;}
.y22e{bottom:323.560000pt;}
.y3a3{bottom:326.760000pt;}
.yf1{bottom:327.560000pt;}
.y2da{bottom:328.893333pt;}
.y329{bottom:329.426667pt;}
.y1f6{bottom:329.960000pt;}
.y48{bottom:330.773333pt;}
.y24a{bottom:331.293333pt;}
.y1f{bottom:331.840000pt;}
.y42c{bottom:332.360000pt;}
.y67{bottom:333.706667pt;}
.y2ed{bottom:334.506667pt;}
.y9b{bottom:335.826667pt;}
.y2a6{bottom:336.360000pt;}
.y13a{bottom:337.693333pt;}
.y452{bottom:337.960000pt;}
.y36d{bottom:338.226667pt;}
.y3cc{bottom:338.506667pt;}
.y28c{bottom:339.306667pt;}
.y17d{bottom:340.626667pt;}
.yd2{bottom:341.173333pt;}
.y48f{bottom:341.426667pt;}
.y2ca{bottom:341.693333pt;}
.y15d{bottom:342.773333pt;}
.y274{bottom:344.626667pt;}
.y514{bottom:345.440000pt;}
.y4f7{bottom:346.760000pt;}
.yb2{bottom:346.773333pt;}
.yf0{bottom:348.640000pt;}
.y2d9{bottom:349.960000pt;}
.y4d2{bottom:351.293333pt;}
.ya7{bottom:351.840000pt;}
.y1e{bottom:352.893333pt;}
.y477{bottom:353.173333pt;}
.y328{bottom:354.773333pt;}
.y42a{bottom:355.293333pt;}
.y118{bottom:355.840000pt;}
.y195{bottom:356.893333pt;}
.y2a5{bottom:357.440000pt;}
.y44e{bottom:357.960000pt;}
.y36c{bottom:358.226667pt;}
.y139{bottom:358.760000pt;}
.y66{bottom:359.840000pt;}
.y28b{bottom:360.360000pt;}
.yd1{bottom:362.226667pt;}
.y2c9{bottom:362.773333pt;}
.y15c{bottom:364.106667pt;}
.y175{bottom:365.426667pt;}
.y273{bottom:365.693333pt;}
.y1f5{bottom:367.293333pt;}
.y47{bottom:367.840000pt;}
.y381{bottom:368.626667pt;}
.yef{bottom:369.706667pt;}
.y3cb{bottom:370.506667pt;}
.y2d8{bottom:371.040000pt;}
.y4d1{bottom:371.293333pt;}
.y9a{bottom:372.893333pt;}
.y1d{bottom:373.960000pt;}
.y117{bottom:376.893333pt;}
.y194{bottom:378.226667pt;}
.y2a4{bottom:378.506667pt;}
.y1a9{bottom:379.840000pt;}
.y327{bottom:380.106667pt;}
.y138{bottom:381.173333pt;}
.y22b{bottom:382.760000pt;}
.yd0{bottom:383.293333pt;}
.y2c8{bottom:383.840000pt;}
.y15b{bottom:385.173333pt;}
.y65{bottom:385.693333pt;}
.y178{bottom:385.960000pt;}
.y272{bottom:386.773333pt;}
.y48e{bottom:387.560000pt;}
.y1f4{bottom:388.360000pt;}
.y247{bottom:388.626667pt;}
.y46{bottom:388.893333pt;}
.y3ca{bottom:390.506667pt;}
.yee{bottom:390.773333pt;}
.y4d0{bottom:391.293333pt;}
.y2d7{bottom:392.106667pt;}
.y3a2{bottom:392.360000pt;}
.y429{bottom:393.173333pt;}
.y99{bottom:394.226667pt;}
.y1c{bottom:395.040000pt;}
.y28a{bottom:397.440000pt;}
.y116{bottom:398.226667pt;}
.y4af{bottom:399.026667pt;}
.y193{bottom:399.293333pt;}
.y2a3{bottom:399.560000pt;}
.y3eb{bottom:399.840000pt;}
.y137{bottom:402.226667pt;}
.ycf{bottom:404.626667pt;}
.y2c7{bottom:404.893333pt;}
.y326{bottom:405.173333pt;}
.y228{bottom:406.506667pt;}
.y177{bottom:406.760000pt;}
.y475{bottom:407.026667pt;}
.y37e{bottom:408.626667pt;}
.yb1{bottom:409.960000pt;}
.y45{bottom:410.226667pt;}
.y3c9{bottom:410.506667pt;}
.y4f6{bottom:410.760000pt;}
.y4cf{bottom:411.293333pt;}
.y64{bottom:411.840000pt;}
.y2d6{bottom:413.173333pt;}
.y98{bottom:415.293333pt;}
.y1b{bottom:416.106667pt;}
.y1a8{bottom:416.893333pt;}
.y289{bottom:418.506667pt;}
.y4ae{bottom:419.026667pt;}
.y115{bottom:419.293333pt;}
.y48d{bottom:419.560000pt;}
.y3ea{bottom:419.840000pt;}
.y192{bottom:420.360000pt;}
.y2a2{bottom:420.626667pt;}
.y245{bottom:421.173333pt;}
.y15a{bottom:422.226667pt;}
.y136{bottom:423.293333pt;}
.y2f5{bottom:423.840000pt;}
.y3a1{bottom:424.093333pt;}
.y271{bottom:424.106667pt;}
.y1f3{bottom:425.440000pt;}
.yce{bottom:425.693333pt;}
.y44d{bottom:425.960000pt;}
.y2c6{bottom:426.226667pt;}
.y474{bottom:427.026667pt;}
.y16f{bottom:427.293333pt;}
.y1d5{bottom:428.360000pt;}
.y36a{bottom:428.626667pt;}
.y325{bottom:430.506667pt;}
.y4f5{bottom:430.760000pt;}
.ya6{bottom:431.293333pt;}
.yed{bottom:432.893333pt;}
.y97{bottom:436.360000pt;}
.y1a{bottom:437.173333pt;}
.y63{bottom:437.693333pt;}
.y4ad{bottom:439.026667pt;}
.y37d{bottom:439.293333pt;}
.y288{bottom:439.560000pt;}
.y3e9{bottom:439.826667pt;}
.y114{bottom:440.360000pt;}
.y191{bottom:441.426667pt;}
.y425{bottom:442.493333pt;}
.y159{bottom:443.293333pt;}
.y3a0{bottom:444.093333pt;}
.y2f4{bottom:444.893333pt;}
.y270{bottom:445.173333pt;}
.y44c{bottom:446.000000pt;}
.y1f2{bottom:446.533333pt;}
.ycd{bottom:446.800000pt;}
.y473{bottom:447.066667pt;}
.y44{bottom:447.333333pt;}
.y173{bottom:448.133333pt;}
.y369{bottom:448.666667pt;}
.y242{bottom:448.933333pt;}
.y512{bottom:449.200000pt;}
.y2d5{bottom:450.533333pt;}
.y4f1{bottom:450.800000pt;}
.y2bb{bottom:452.400000pt;}
.y1a7{bottom:454.000000pt;}
.yec{bottom:454.266667pt;}
.y324{bottom:455.866667pt;}
.y409{bottom:456.933333pt;}
.y4ce{bottom:457.200000pt;}
.y2a1{bottom:458.000000pt;}
.y19{bottom:458.533333pt;}
.y37c{bottom:459.333333pt;}
.y3e8{bottom:459.866667pt;}
.y287{bottom:460.666667pt;}
.y113{bottom:461.466667pt;}
.y190{bottom:462.533333pt;}
.y62{bottom:463.866667pt;}
.y39f{bottom:464.133333pt;}
.y1d4{bottom:465.466667pt;}
.y44b{bottom:466.000000pt;}
.y26f{bottom:466.266667pt;}
.y342{bottom:466.800000pt;}
.y472{bottom:467.066667pt;}
.y43{bottom:468.400000pt;}
.y171{bottom:468.666667pt;}
.y511{bottom:469.200000pt;}
.y2d4{bottom:471.600000pt;}
.y85{bottom:472.666667pt;}
.y96{bottom:473.466667pt;}
.y4cd{bottom:477.200000pt;}
.y424{bottom:477.466667pt;}
.y3c5{bottom:478.533333pt;}
.y2a0{bottom:479.066667pt;}
.y37b{bottom:479.333333pt;}
.y18{bottom:479.600000pt;}
.y158{bottom:480.400000pt;}
.y323{bottom:480.933333pt;}
.y112{bottom:482.533333pt;}
.y1f1{bottom:483.600000pt;}
.ycc{bottom:483.866667pt;}
.y222{bottom:484.133333pt;}
.y2c5{bottom:484.400000pt;}
.y48b{bottom:485.466667pt;}
.y1d3{bottom:486.533333pt;}
.y26e{bottom:487.333333pt;}
.y1a6{bottom:488.133333pt;}
.y42{bottom:489.466667pt;}
.y61{bottom:489.733333pt;}
.y16c{bottom:490.266667pt;}
.yeb{bottom:491.333333pt;}
.y3e7{bottom:491.866667pt;}
.y2d3{bottom:492.666667pt;}
.y84{bottom:493.200000pt;}
.y95{bottom:494.533333pt;}
.y347{bottom:496.933333pt;}
.y4cc{bottom:497.200000pt;}
.y286{bottom:498.000000pt;}
.y135{bottom:498.533333pt;}
.y367{bottom:499.333333pt;}
.y18f{bottom:499.600000pt;}
.y3c4{bottom:499.866667pt;}
.y29f{bottom:500.133333pt;}
.y17{bottom:500.666667pt;}
.y157{bottom:502.800000pt;}
.y1a5{bottom:503.333333pt;}
.y39e{bottom:504.133333pt;}
.y2c4{bottom:505.466667pt;}
.y322{bottom:506.266667pt;}
.y1d2{bottom:507.600000pt;}
.y341{bottom:508.933333pt;}
.y4f0{bottom:509.466667pt;}
.y23f{bottom:510.000000pt;}
.y41{bottom:510.533333pt;}
.y423{bottom:511.333333pt;}
.y1b2{bottom:511.866667pt;}
.yea{bottom:512.400000pt;}
.y83{bottom:513.733333pt;}
.y94{bottom:515.600000pt;}
.y60{bottom:515.866667pt;}
.y1a4{bottom:516.533333pt;}
.y220{bottom:517.466667pt;}
.y510{bottom:518.533333pt;}
.y285{bottom:519.066667pt;}
.y366{bottom:519.333333pt;}
.ycb{bottom:519.866667pt;}
.y4a9{bottom:520.133333pt;}
.y111{bottom:520.933333pt;}
.y29e{bottom:521.200000pt;}
.y16{bottom:521.733333pt;}
.y156{bottom:524.133333pt;}
.y26d{bottom:524.400000pt;}
.y39d{bottom:526.000000pt;}
.y2c3{bottom:526.533333pt;}
.y4cb{bottom:527.600000pt;}
.y4ef{bottom:529.466667pt;}
.y422{bottom:531.333333pt;}
.y40{bottom:531.600000pt;}
.y3e6{bottom:531.866667pt;}
.y82{bottom:533.200000pt;}
.ye9{bottom:533.466667pt;}
.y340{bottom:534.266667pt;}
.y2d2{bottom:534.800000pt;}
.y471{bottom:535.066667pt;}
.y93{bottom:536.933333pt;}
.y449{bottom:538.533333pt;}
.y365{bottom:539.333333pt;}
.y284{bottom:540.133333pt;}
.y134{bottom:540.933333pt;}
.y5f{bottom:541.733333pt;}
.y16b{bottom:542.000000pt;}
.y15{bottom:542.800000pt;}
.y1d1{bottom:543.600000pt;}
.y26c{bottom:545.466667pt;}
.y407{bottom:546.000000pt;}
.y155{bottom:546.266667pt;}
.y23e{bottom:547.066667pt;}
.y2ba{bottom:547.600000pt;}
.y1b1{bottom:548.933333pt;}
.y48a{bottom:549.466667pt;}
.y421{bottom:551.333333pt;}
.y3e5{bottom:551.866667pt;}
.y3f{bottom:552.933333pt;}
.y3c3{bottom:553.200000pt;}
.y81{bottom:553.733333pt;}
.ye8{bottom:554.533333pt;}
.y470{bottom:555.066667pt;}
.y2d1{bottom:555.866667pt;}
.y321{bottom:556.666667pt;}
.y110{bottom:558.000000pt;}
.y29d{bottom:558.266667pt;}
.y4ee{bottom:558.800000pt;}
.y1a2{bottom:558.933333pt;}
.y364{bottom:559.333333pt;}
.y33f{bottom:559.600000pt;}
.y283{bottom:561.200000pt;}
.y14{bottom:563.866667pt;}
.y405{bottom:566.000000pt;}
.y2f3{bottom:566.533333pt;}
.y26b{bottom:566.800000pt;}
.y154{bottom:567.333333pt;}
.y5e{bottom:567.600000pt;}
.yca{bottom:568.133333pt;}
.y2b9{bottom:568.933333pt;}
.y1b0{bottom:570.266667pt;}
.y39c{bottom:571.866667pt;}
.y1d0{bottom:572.133333pt;}
.y1d8{bottom:573.600000pt;}
.y3e{bottom:574.000000pt;}
.y80{bottom:574.266667pt;}
.y46f{bottom:575.066667pt;}
.ye7{bottom:575.600000pt;}
.y2d0{bottom:577.200000pt;}
.y133{bottom:578.000000pt;}
.y10f{bottom:579.066667pt;}
.y29c{bottom:579.333333pt;}
.y320{bottom:582.000000pt;}
.y282{bottom:582.266667pt;}
.y50f{bottom:582.533333pt;}
.y33e{bottom:584.666667pt;}
.y13{bottom:585.200000pt;}
.y41f{bottom:585.466667pt;}
.y26a{bottom:587.866667pt;}
.y448{bottom:588.400000pt;}
.y153{bottom:589.466667pt;}
.ya5{bottom:590.000000pt;}
.y4ed{bottom:590.800000pt;}
.y1af{bottom:591.333333pt;}
.y201{bottom:591.600000pt;}
.y399{bottom:591.866667pt;}
.y5d{bottom:593.733333pt;}
.y3d{bottom:595.066667pt;}
.y488{bottom:595.333333pt;}
.y37a{bottom:596.693333pt;}
.ye6{bottom:596.973333pt;}
.y363{bottom:599.360000pt;}
.y403{bottom:599.893333pt;}
.y4a8{bottom:600.160000pt;}
.y10e{bottom:600.173333pt;}
.y1a1{bottom:601.066667pt;}
.yc9{bottom:603.360000pt;}
.y3e3{bottom:603.893333pt;}
.y23d{bottom:605.226667pt;}
.y12{bottom:606.293333pt;}
.y31f{bottom:607.360000pt;}
.y269{bottom:608.973333pt;}
.y200{bottom:610.026667pt;}
.y4ea{bottom:610.826667pt;}
.y152{bottom:610.840000pt;}
.ya4{bottom:611.093333pt;}
.y46e{bottom:612.160000pt;}
.y46c{bottom:612.173333pt;}
.y1ae{bottom:612.426667pt;}
.y4ca{bottom:613.760000pt;}
.y50e{bottom:614.560000pt;}
.y132{bottom:615.093333pt;}
.y485{bottom:615.360000pt;}
.y7f{bottom:615.626667pt;}
.y16a{bottom:616.173333pt;}
.y29b{bottom:616.693333pt;}
.y3bf{bottom:617.226667pt;}
.y281{bottom:619.360000pt;}
.y5c{bottom:619.640000pt;}
.y4a7{bottom:620.160000pt;}
.y10d{bottom:621.226667pt;}
.y447{bottom:621.493333pt;}
.y2f2{bottom:621.506667pt;}
.y23c{bottom:626.293333pt;}
.y11{bottom:627.360000pt;}
.y398{bottom:629.226667pt;}
.y3c{bottom:632.160000pt;}
.y31e{bottom:632.426667pt;}
.y1ad{bottom:633.506667pt;}
.y4c9{bottom:633.760000pt;}
.ye5{bottom:634.026667pt;}
.y33d{bottom:635.360000pt;}
.y131{bottom:636.173333pt;}
.y2cf{bottom:636.426667pt;}
.y379{bottom:636.693333pt;}
.y169{bottom:637.226667pt;}
.y2db{bottom:637.333333pt;}
.yc8{bottom:638.560000pt;}
.y41e{bottom:639.360000pt;}
.y4a4{bottom:640.173333pt;}
.y280{bottom:640.693333pt;}
.y446{bottom:641.226667pt;}
.y1a0{bottom:643.466667pt;}
.y7e{bottom:643.640000pt;}
.y50d{bottom:643.893333pt;}
.y2f1{bottom:644.426667pt;}
.y268{bottom:644.973333pt;}
.y1ff{bottom:645.226667pt;}
.y5b{bottom:645.760000pt;}
.y2fc{bottom:646.400000pt;}
.y46d{bottom:647.640000pt;}
.y2b8{bottom:648.173333pt;}
.y10{bottom:648.426667pt;}
.y151{bottom:648.960000pt;}
.y397{bottom:649.226667pt;}
.y92{bottom:653.226667pt;}
.y4c8{bottom:653.760000pt;}
.y29a{bottom:653.773333pt;}
.y402{bottom:654.026667pt;}
.y4e6{bottom:654.840000pt;}
.y360{bottom:656.693333pt;}
.y31d{bottom:657.760000pt;}
.y10c{bottom:658.306667pt;}
.y445{bottom:660.173333pt;}
.y107{bottom:660.426667pt;}
.y27f{bottom:661.760000pt;}
.y41c{bottom:662.573333pt;}
.y21d{bottom:662.840000pt;}
.y483{bottom:663.373333pt;}
.y23b{bottom:663.626667pt;}
.y50c{bottom:663.893333pt;}
.y3e2{bottom:667.893333pt;}
.y3b{bottom:669.226667pt;}
.yf{bottom:669.506667pt;}
.ye4{bottom:671.093333pt;}
.y5a{bottom:671.626667pt;}
.y130{bottom:673.226667pt;}
.yc6{bottom:673.506667pt;}
.y4c7{bottom:673.760000pt;}
.y266{bottom:674.040000pt;}
.y91{bottom:674.293333pt;}
.y346{bottom:675.893333pt;}
.y35f{bottom:676.706667pt;}
.y3fe{bottom:676.973333pt;}
.y1fe{bottom:679.106667pt;}
.y10b{bottom:679.640000pt;}
.y7d{bottom:681.226667pt;}
.y31c{bottom:683.360000pt;}
.y50a{bottom:683.893333pt;}
.y19d{bottom:685.600000pt;}
.y33c{bottom:685.760000pt;}
.y150{bottom:686.040000pt;}
.y299{bottom:687.373333pt;}
.y3e1{bottom:687.893333pt;}
.y395{bottom:689.226667pt;}
.y3a{bottom:690.293333pt;}
.ye{bottom:690.840000pt;}
.y443{bottom:692.160000pt;}
.y1ac{bottom:692.693333pt;}
.y1b5{bottom:693.066667pt;}
.y21a{bottom:693.493333pt;}
.y482{bottom:694.040000pt;}
.y12f{bottom:694.560000pt;}
.y27e{bottom:695.360000pt;}
.y90{bottom:695.626667pt;}
.y35e{bottom:696.706667pt;}
.y3be{bottom:697.226667pt;}
.y46b{bottom:697.506667pt;}
.y59{bottom:697.760000pt;}
.y41b{bottom:700.173333pt;}
.y10a{bottom:700.706667pt;}
.y4a3{bottom:701.506667pt;}
.y14f{bottom:707.093333pt;}
.ye3{bottom:708.173333pt;}
.y31b{bottom:708.426667pt;}
.yc4{bottom:708.693333pt;}
.y101{bottom:709.333333pt;}
.y298{bottom:710.560000pt;}
.y2ad{bottom:710.933333pt;}
.y33b{bottom:711.093333pt;}
.y43e{bottom:711.106667pt;}
.y39{bottom:711.626667pt;}
.yd{bottom:711.893333pt;}
.y47f{bottom:714.040000pt;}
.y3fd{bottom:714.560000pt;}
.y8f{bottom:716.693333pt;}
.y35d{bottom:716.706667pt;}
.yfc{bottom:717.333333pt;}
.y7c{bottom:717.760000pt;}
.y27d{bottom:718.560000pt;}
.y4e3{bottom:718.840000pt;}
.y4c6{bottom:719.626667pt;}
.y28d{bottom:719.733333pt;}
.y394{bottom:719.893333pt;}
.y4a1{bottom:721.506667pt;}
.y23a{bottom:721.760000pt;}
.y58{bottom:723.626667pt;}
.y509{bottom:727.893333pt;}
.y3bb{bottom:729.226667pt;}
.y469{bottom:730.560000pt;}
.y12e{bottom:731.626667pt;}
.y104{bottom:731.733333pt;}
.y264{bottom:732.426667pt;}
.y38{bottom:732.706667pt;}
.yc{bottom:732.960000pt;}
.y31a{bottom:734.040000pt;}
.y33a{bottom:736.173333pt;}
.y35b{bottom:736.706667pt;}
.y8e{bottom:737.773333pt;}
.y7b{bottom:738.560000pt;}
.y4c5{bottom:739.626667pt;}
.y393{bottom:739.893333pt;}
.ye2{bottom:742.560000pt;}
.yc2{bottom:743.906667pt;}
.y14e{bottom:744.173333pt;}
.y19c{bottom:745.600000pt;}
.y506{bottom:747.933333pt;}
.y4e2{bottom:748.200000pt;}
.y103{bottom:749.506667pt;}
.y3fc{bottom:749.533333pt;}
.y57{bottom:749.800000pt;}
.y468{bottom:751.400000pt;}
.y3e0{bottom:751.933333pt;}
.y12d{bottom:752.733333pt;}
.y419{bottom:753.000000pt;}
.ya3{bottom:753.800000pt;}
.yb{bottom:754.066667pt;}
.y35a{bottom:756.733333pt;}
.y261{bottom:758.600000pt;}
.y109{bottom:758.866667pt;}
.y7a{bottom:759.133333pt;}
.y4c2{bottom:759.666667pt;}
.y392{bottom:759.933333pt;}
.y3b9{bottom:761.266667pt;}
.y339{bottom:761.533333pt;}
.y214{bottom:762.866667pt;}
.yff{bottom:767.133333pt;}
.y4a0{bottom:767.400000pt;}
.y4e1{bottom:768.200000pt;}
.y37{bottom:769.800000pt;}
.y467{bottom:771.400000pt;}
.y12c{bottom:773.800000pt;}
.y8d{bottom:774.866667pt;}
.ya{bottom:775.133333pt;}
.y56{bottom:775.666667pt;}
.y359{bottom:776.733333pt;}
.ye1{bottom:777.266667pt;}
.yc0{bottom:778.866667pt;}
.y79{bottom:779.666667pt;}
.y168{bottom:779.933333pt;}
.y14d{bottom:781.533333pt;}
.y3fb{bottom:782.600000pt;}
.y3de{bottom:783.933333pt;}
.y319{bottom:784.466667pt;}
.y338{bottom:786.866667pt;}
.y19b{bottom:787.733333pt;}
.y418{bottom:787.933333pt;}
.y212{bottom:789.533333pt;}
.y36{bottom:790.866667pt;}
.y43c{bottom:791.400000pt;}
.y12b{bottom:794.866667pt;}
.y8c{bottom:795.933333pt;}
.y9{bottom:796.200000pt;}
.y358{bottom:796.733333pt;}
.y391{bottom:797.266667pt;}
.y49f{bottom:799.400000pt;}
.y47e{bottom:799.933333pt;}
.y78{bottom:800.200000pt;}
.y55{bottom:801.800000pt;}
.y14c{bottom:802.600000pt;}
.y3fa{bottom:803.933333pt;}
.y318{bottom:809.800000pt;}
.y43b{bottom:810.066667pt;}
.y3b6{bottom:810.600000pt;}
.y462{bottom:811.400000pt;}
.ye0{bottom:811.666667pt;}
.y35{bottom:811.933333pt;}
.ybf{bottom:814.066667pt;}
.y4df{bottom:816.200000pt;}
.y357{bottom:816.733333pt;}
.y1f0{bottom:817.000000pt;}
.y8b{bottom:817.266667pt;}
.y8{bottom:817.533333pt;}
.y49e{bottom:819.400000pt;}
.y210{bottom:819.933333pt;}
.y25e{bottom:820.466667pt;}
.y77{bottom:820.733333pt;}
.y417{bottom:821.800000pt;}
.y47d{bottom:823.133333pt;}
.y14b{bottom:823.666667pt;}
.y54{bottom:827.666667pt;}
.y505{bottom:827.933333pt;}
.y199{bottom:830.133333pt;}
.y12a{bottom:831.933333pt;}
.yb0{bottom:833.000000pt;}
.y34{bottom:833.266667pt;}
.y317{bottom:834.866667pt;}
.y3f9{bottom:835.933333pt;}
.yfe{bottom:836.200000pt;}
.y356{bottom:836.733333pt;}
.y337{bottom:837.266667pt;}
.y8a{bottom:838.333333pt;}
.y7{bottom:838.600000pt;}
.y76{bottom:841.533333pt;}
.y20d{bottom:841.800000pt;}
.y439{bottom:842.333333pt;}
.y25d{bottom:844.200000pt;}
.y14a{bottom:844.733333pt;}
.y3b5{bottom:845.266667pt;}
.y4de{bottom:845.533333pt;}
.ydf{bottom:846.066667pt;}
.y3db{bottom:847.933333pt;}
.ybd{bottom:849.266667pt;}
.y49d{bottom:850.066667pt;}
.y129{bottom:853.266667pt;}
.y53{bottom:853.533333pt;}
.y33{bottom:854.333333pt;}
.y4c1{bottom:856.200000pt;}
.y355{bottom:856.733333pt;}
.y390{bottom:857.266667pt;}
.y89{bottom:859.400000pt;}
.y479{bottom:859.933333pt;}
.y316{bottom:860.200000pt;}
.y6{bottom:861.533333pt;}
.y416{bottom:861.800000pt;}
.y75{bottom:862.066667pt;}
.y336{bottom:862.600000pt;}
.y3b2{bottom:865.266667pt;}
.y4dd{bottom:865.533333pt;}
.y149{bottom:866.866667pt;}
.y209{bottom:867.933333pt;}
.y2c2{bottom:870.333333pt;}
.y197{bottom:873.600000pt;}
.y128{bottom:874.333333pt;}
.y32{bottom:875.400000pt;}
.y354{bottom:876.733333pt;}
.y38f{bottom:877.266667pt;}
.y461{bottom:879.400000pt;}
.y52{bottom:879.666667pt;}
.y88{bottom:880.466667pt;}
.ybb{bottom:884.200000pt;}
.y106{bottom:885.533333pt;}
.y335{bottom:887.666667pt;}
.y148{bottom:888.200000pt;}
.y5{bottom:889.800000pt;}
.y74{bottom:890.066667pt;}
.y18e{bottom:891.400000pt;}
.y435{bottom:893.266667pt;}
.y413{bottom:895.933333pt;}
.y31{bottom:896.466667pt;}
.y351{bottom:896.733333pt;}
.y38e{bottom:897.293333pt;}
.y4dc{bottom:897.560000pt;}
.y49c{bottom:898.093333pt;}
.y3af{bottom:898.626667pt;}
.y460{bottom:899.426667pt;}
.y3f8{bottom:899.960000pt;}
.y25a{bottom:901.560000pt;}
.y4c0{bottom:902.093333pt;}
.y51{bottom:905.560000pt;}
.y147{bottom:910.360000pt;}
.y315{bottom:910.626667pt;}
.y206{bottom:911.173333pt;}
.y127{bottom:911.440000pt;}
.y3da{bottom:911.960000pt;}
.yaf{bottom:912.506667pt;}
.y334{bottom:913.040000pt;}
.yde{bottom:914.893333pt;}
.y4{bottom:915.960000pt;}
.y34f{bottom:916.760000pt;}
.y38d{bottom:917.293333pt;}
.y30{bottom:917.560000pt;}
.y45e{bottom:919.426667pt;}
.y4bf{bottom:922.093333pt;}
.y503{bottom:926.626667pt;}
.y73{bottom:927.693333pt;}
.y436{bottom:927.960000pt;}
.y18d{bottom:928.506667pt;}
.y412{bottom:929.840000pt;}
.y146{bottom:931.426667pt;}
.y50{bottom:931.706667pt;}
.y3d9{bottom:931.960000pt;}
.y126{bottom:932.506667pt;}
.yae{bottom:933.560000pt;}
.y257{bottom:934.893333pt;}
.y314{bottom:935.960000pt;}
.y34e{bottom:936.773333pt;}
.y3{bottom:937.040000pt;}
.y38c{bottom:937.293333pt;}
.y4db{bottom:937.560000pt;}
.y333{bottom:938.373333pt;}
.y2f{bottom:938.626667pt;}
.y202{bottom:939.693333pt;}
.y4be{bottom:942.106667pt;}
.y49b{bottom:943.960000pt;}
.y501{bottom:946.626667pt;}
.ydd{bottom:949.293333pt;}
.y18c{bottom:949.560000pt;}
.y411{bottom:949.840000pt;}
.y145{bottom:953.560000pt;}
.ya2{bottom:954.626667pt;}
.y45a{bottom:956.506667pt;}
.y34d{bottom:956.773333pt;}
.y38b{bottom:957.293333pt;}
.y4f{bottom:957.560000pt;}
.y2{bottom:958.373333pt;}
.y87{bottom:959.960000pt;}
.y4da{bottom:960.773333pt;}
.y313{bottom:961.293333pt;}
.y4bd{bottom:962.106667pt;}
.y332{bottom:963.440000pt;}
.y3ae{bottom:963.960000pt;}
.y72{bottom:964.226667pt;}
.y478{bottom:967.960000pt;}
.y343{bottom:968.226667pt;}
.y125{bottom:969.560000pt;}
.y18b{bottom:970.626667pt;}
.y40e{bottom:973.040000pt;}
.y1{bottom:973.293333pt;}
.y144{bottom:974.893333pt;}
.yad{bottom:975.693333pt;}
.y2e{bottom:975.960000pt;}
.y4e{bottom:976.506667pt;}
.y34a{bottom:976.773333pt;}
.y38a{bottom:977.293333pt;}
.yfa{bottom:978.373333pt;}
.y312{bottom:978.626667pt;}
.y4ba{bottom:982.093333pt;}
.ydc{bottom:983.960000pt;}
.y71{bottom:984.506667pt;}
.y331{bottom:988.773333pt;}
.y124{bottom:990.626667pt;}
.ya1{bottom:991.960000pt;}
.y45c{bottom:992.226667pt;}
.y256{bottom:994.626667pt;}
.y3ad{bottom:995.960000pt;}
.y86{bottom:997.040000pt;}
.y2ce{bottom:1005.026667pt;}
.y389{bottom:1007.960000pt;}
.y40d{bottom:1010.626667pt;}
.y123{bottom:1011.960000pt;}
.y2d{bottom:1013.026667pt;}
.y4d{bottom:1014.106667pt;}
.h75{height:18.666667pt;}
.h77{height:18.933333pt;}
.h79{height:19.733333pt;}
.h57{height:19.986667pt;}
.h1b{height:20.000000pt;}
.h58{height:20.020000pt;}
.h1c{height:20.033333pt;}
.h7f{height:20.833333pt;}
.h1a{height:21.066667pt;}
.h7d{height:21.100000pt;}
.h32{height:21.333333pt;}
.h89{height:21.366667pt;}
.h5b{height:21.866667pt;}
.h21{height:22.133333pt;}
.h3c{height:22.933333pt;}
.h4a{height:23.466667pt;}
.h1f{height:24.000000pt;}
.h31{height:25.333333pt;}
.h49{height:25.633333pt;}
.h34{height:26.133333pt;}
.h42{height:26.966667pt;}
.h47{height:27.200000pt;}
.h45{height:27.733333pt;}
.h2f{height:28.000000pt;}
.h44{height:28.266667pt;}
.h17{height:28.533333pt;}
.h36{height:28.800000pt;}
.h8b{height:29.333333pt;}
.h8c{height:29.366667pt;}
.h33{height:29.600000pt;}
.h3b{height:30.400000pt;}
.h3e{height:30.433333pt;}
.h83{height:30.653333pt;}
.h5a{height:30.666667pt;}
.h35{height:30.700000pt;}
.h12{height:31.466667pt;}
.h43{height:31.733333pt;}
.h78{height:31.986667pt;}
.h5e{height:32.000000pt;}
.h64{height:32.033333pt;}
.h74{height:32.266667pt;}
.h39{height:32.800000pt;}
.h71{height:33.066667pt;}
.h4b{height:33.333333pt;}
.h62{height:33.366667pt;}
.h41{height:33.600000pt;}
.h6d{height:33.866667pt;}
.h6b{height:33.900000pt;}
.h6a{height:34.133333pt;}
.h72{height:34.166667pt;}
.hd{height:34.400000pt;}
.hf{height:34.433333pt;}
.he{height:34.666667pt;}
.hc{height:34.700000pt;}
.h7e{height:34.920000pt;}
.h6c{height:34.933333pt;}
.h6e{height:34.966667pt;}
.h7b{height:35.200000pt;}
.h6f{height:35.233333pt;}
.h8a{height:35.986667pt;}
.h81{height:36.000000pt;}
.h5d{height:36.033333pt;}
.h18{height:36.800000pt;}
.h69{height:37.066667pt;}
.h59{height:37.333333pt;}
.h46{height:37.366667pt;}
.h2e{height:37.600000pt;}
.h51{height:38.458333pt;}
.h54{height:38.578516pt;}
.h10{height:38.828125pt;}
.h23{height:41.600000pt;}
.h48{height:42.133333pt;}
.h37{height:42.400000pt;}
.h30{height:42.700000pt;}
.h4d{height:43.265625pt;}
.h4e{height:43.385807pt;}
.h8d{height:44.000000pt;}
.h22{height:45.066667pt;}
.h3f{height:45.866667pt;}
.h82{height:45.886667pt;}
.h3a{height:45.900000pt;}
.h40{height:46.133333pt;}
.h88{height:46.166667pt;}
.h11{height:46.593750pt;}
.h5f{height:48.000000pt;}
.h66{height:48.033333pt;}
.h28{height:48.072917pt;}
.h52{height:48.193099pt;}
.h24{height:48.515625pt;}
.h25{height:48.636914pt;}
.h73{height:49.066667pt;}
.h20{height:49.100000pt;}
.h63{height:49.333333pt;}
.h38{height:49.968750pt;}
.h5c{height:50.666667pt;}
.h7{height:52.880208pt;}
.h2a{height:53.000391pt;}
.ha{height:53.367188pt;}
.h5{height:57.687500pt;}
.h16{height:57.687513pt;}
.h26{height:57.807682pt;}
.h3{height:58.218750pt;}
.h2{height:58.351562pt;}
.h3d{height:58.666667pt;}
.h8e{height:58.700000pt;}
.h27{height:59.200000pt;}
.h8{height:60.070312pt;}
.h56{height:60.300089pt;}
.h55{height:61.072917pt;}
.h84{height:61.100000pt;}
.h85{height:61.320000pt;}
.h1d{height:61.333333pt;}
.h19{height:62.433333pt;}
.h9{height:63.656250pt;}
.h67{height:64.000000pt;}
.h60{height:64.033333pt;}
.h61{height:65.333333pt;}
.hb{height:65.781915pt;}
.h6{height:66.625000pt;}
.h70{height:67.766667pt;}
.h7c{height:68.000000pt;}
.h7a{height:70.666667pt;}
.h87{height:76.533333pt;}
.h4{height:77.625000pt;}
.h65{height:80.000000pt;}
.h86{height:80.033333pt;}
.h76{height:80.286667pt;}
.h80{height:91.766667pt;}
.h68{height:96.000000pt;}
.h1e{height:137.893333pt;}
.h13{height:168.533333pt;}
.h14{height:231.466667pt;}
.h15{height:233.333333pt;}
.h4c{height:271.200000pt;}
.h4f{height:280.000000pt;}
.h2d{height:282.133333pt;}
.h29{height:297.866667pt;}
.h2b{height:319.200000pt;}
.h2c{height:324.800000pt;}
.h53{height:336.533333pt;}
.h50{height:353.333333pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w4f{width:38.933333pt;}
.w7{width:44.266667pt;}
.w4e{width:47.466667pt;}
.w6{width:48.800000pt;}
.w51{width:49.066667pt;}
.w56{width:57.633333pt;}
.w52{width:58.166667pt;}
.w53{width:58.700000pt;}
.w2d{width:59.733333pt;}
.w55{width:60.566667pt;}
.w50{width:62.700000pt;}
.w54{width:63.466667pt;}
.w4d{width:73.100000pt;}
.w29{width:75.733333pt;}
.w43{width:78.966667pt;}
.w4b{width:79.466667pt;}
.w3e{width:79.500000pt;}
.w3f{width:79.733333pt;}
.w40{width:79.766667pt;}
.w46{width:80.000000pt;}
.w47{width:80.033333pt;}
.w25{width:82.400000pt;}
.w4c{width:82.966667pt;}
.w20{width:83.200000pt;}
.w3b{width:83.233333pt;}
.w38{width:83.766667pt;}
.w3a{width:84.033333pt;}
.w39{width:84.266667pt;}
.w1b{width:84.300000pt;}
.w26{width:85.100000pt;}
.w36{width:85.366667pt;}
.w21{width:85.633333pt;}
.w58{width:86.400000pt;}
.w57{width:86.433333pt;}
.w1a{width:94.133333pt;}
.w2e{width:95.500000pt;}
.w37{width:97.366667pt;}
.w1c{width:99.766667pt;}
.w17{width:100.033333pt;}
.w16{width:100.566667pt;}
.w2f{width:101.100000pt;}
.w2b{width:101.633333pt;}
.w27{width:104.833333pt;}
.w23{width:105.100000pt;}
.w31{width:105.366667pt;}
.w22{width:105.633333pt;}
.w35{width:106.966667pt;}
.wa{width:108.833333pt;}
.w19{width:109.133333pt;}
.w4a{width:121.933333pt;}
.w48{width:122.733333pt;}
.w8{width:122.966667pt;}
.w49{width:123.533333pt;}
.w44{width:123.800000pt;}
.wd{width:124.066667pt;}
.w9{width:124.333333pt;}
.wc{width:125.366667pt;}
.wb{width:128.566667pt;}
.w24{width:129.133333pt;}
.w1f{width:129.400000pt;}
.w14{width:129.666667pt;}
.w30{width:153.093333pt;}
.w1d{width:153.133333pt;}
.w15{width:169.893333pt;}
.w2a{width:172.066667pt;}
.w34{width:180.306667pt;}
.w33{width:180.333333pt;}
.w3c{width:184.600000pt;}
.w13{width:216.866667pt;}
.w28{width:219.266667pt;}
.w2c{width:223.800000pt;}
.w18{width:226.466667pt;}
.w5{width:272.266667pt;}
.we{width:287.466667pt;}
.w1e{width:382.226667pt;}
.wf{width:502.133333pt;}
.w12{width:503.466667pt;}
.w11{width:523.466667pt;}
.w10{width:528.000000pt;}
.w4{width:544.973333pt;}
.w42{width:559.106667pt;}
.w41{width:559.893333pt;}
.w3d{width:559.906667pt;}
.w45{width:562.293333pt;}
.w3{width:566.293333pt;}
.w32{width:566.933333pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x95{left:3.733333pt;}
.x46{left:5.133333pt;}
.x12{left:6.666667pt;}
.x4d{left:7.760000pt;}
.x54{left:8.773333pt;}
.x1a{left:9.706667pt;}
.x1c{left:11.226667pt;}
.x72{left:12.800000pt;}
.x4c{left:14.466667pt;}
.x53{left:15.466667pt;}
.x6f{left:17.066667pt;}
.x6b{left:18.400000pt;}
.xa2{left:19.733333pt;}
.x66{left:20.800000pt;}
.x32{left:22.666667pt;}
.x60{left:24.000000pt;}
.x2b{left:25.333333pt;}
.x31{left:26.666667pt;}
.x26{left:27.733333pt;}
.x29{left:29.053333pt;}
.x42{left:30.693333pt;}
.xbf{left:32.040000pt;}
.x33{left:33.333333pt;}
.xc0{left:34.653333pt;}
.x1f{left:35.666667pt;}
.x28{left:37.600000pt;}
.x2a{left:38.960000pt;}
.x2e{left:40.000000pt;}
.x40{left:41.893333pt;}
.xa1{left:42.933333pt;}
.x2d{left:43.986667pt;}
.x2c{left:45.333333pt;}
.x3b{left:47.226667pt;}
.x78{left:48.693333pt;}
.xa8{left:50.400000pt;}
.x30{left:51.720000pt;}
.x2f{left:53.066667pt;}
.x24{left:54.400000pt;}
.xb6{left:56.000000pt;}
.x64{left:57.100000pt;}
.xc1{left:58.426667pt;}
.xa0{left:60.533333pt;}
.x22{left:61.893333pt;}
.xc6{left:64.000000pt;}
.x86{left:65.973333pt;}
.x55{left:67.933333pt;}
.x47{left:71.226667pt;}
.x97{left:72.573333pt;}
.xc5{left:76.000000pt;}
.x39{left:77.200000pt;}
.x99{left:78.706667pt;}
.x3e{left:83.000000pt;}
.x98{left:85.360000pt;}
.x35{left:87.800000pt;}
.x15{left:88.906667pt;}
.x37{left:90.026667pt;}
.x4e{left:92.506667pt;}
.x3a{left:95.000000pt;}
.x7b{left:97.973333pt;}
.x58{left:98.866667pt;}
.x5a{left:101.800000pt;}
.x11{left:106.700000pt;}
.x5c{left:108.293333pt;}
.x6d{left:109.366667pt;}
.x3d{left:112.440000pt;}
.x2{left:113.366655pt;}
.x79{left:114.306667pt;}
.x81{left:116.040000pt;}
.x7d{left:117.106667pt;}
.x38{left:118.200000pt;}
.x8b{left:120.026667pt;}
.x3c{left:121.760000pt;}
.x5{left:122.966655pt;}
.x3f{left:124.693333pt;}
.xe{left:128.033322pt;}
.x41{left:128.973333pt;}
.x7c{left:131.333333pt;}
.x77{left:134.640000pt;}
.x10{left:137.359988pt;}
.xd{left:143.239988pt;}
.x45{left:144.800000pt;}
.x21{left:152.573333pt;}
.x1b{left:156.800000pt;}
.x13{left:161.399988pt;}
.x56{left:164.000000pt;}
.x82{left:174.640000pt;}
.x65{left:176.333333pt;}
.x80{left:177.266667pt;}
.x7f{left:178.400000pt;}
.x8d{left:180.840000pt;}
.x7e{left:183.840000pt;}
.xa9{left:185.399988pt;}
.x1d{left:189.906655pt;}
.x5b{left:192.066655pt;}
.xb7{left:198.466667pt;}
.x9a{left:200.866667pt;}
.x50{left:205.360000pt;}
.xaa{left:210.200000pt;}
.x93{left:215.266655pt;}
.x6c{left:220.333322pt;}
.x7a{left:221.706667pt;}
.x3{left:223.799988pt;}
.x76{left:225.533333pt;}
.x89{left:228.506667pt;}
.x8a{left:236.893333pt;}
.x9{left:239.799988pt;}
.x83{left:250.066667pt;}
.x57{left:253.000000pt;}
.xb0{left:254.200000pt;}
.x5d{left:255.266667pt;}
.x67{left:259.533333pt;}
.xa3{left:262.466667pt;}
.xc{left:263.533322pt;}
.x62{left:265.400000pt;}
.x14{left:269.866667pt;}
.xb8{left:272.640000pt;}
.x87{left:274.573333pt;}
.x23{left:277.173333pt;}
.x6e{left:281.173333pt;}
.x1{left:286.239988pt;}
.x84{left:288.400000pt;}
.xab{left:290.240000pt;}
.x6{left:292.373322pt;}
.x7{left:296.359988pt;}
.x9b{left:299.573333pt;}
.xa{left:308.639988pt;}
.xb9{left:320.373333pt;}
.xb3{left:334.240000pt;}
.xb{left:335.559988pt;}
.x8{left:337.439988pt;}
.x17{left:342.506655pt;}
.x49{left:343.973333pt;}
.x68{left:345.173333pt;}
.x73{left:346.773333pt;}
.x48{left:357.000000pt;}
.xba{left:359.573333pt;}
.xa4{left:365.440000pt;}
.x18{left:368.666655pt;}
.xac{left:370.240000pt;}
.x16{left:373.199988pt;}
.x19{left:375.333322pt;}
.x9c{left:383.600000pt;}
.x5e{left:384.933333pt;}
.x25{left:386.800000pt;}
.x36{left:394.666667pt;}
.x4{left:396.933322pt;}
.x88{left:402.200000pt;}
.x59{left:415.133333pt;}
.x4b{left:421.160000pt;}
.xbb{left:422.533333pt;}
.x69{left:430.800000pt;}
.x4a{left:434.200000pt;}
.x4f{left:435.560000pt;}
.x74{left:442.800000pt;}
.xa5{left:445.466667pt;}
.x85{left:451.066667pt;}
.xc2{left:461.200000pt;}
.x9d{left:468.133333pt;}
.x63{left:470.000000pt;}
.xbc{left:472.133333pt;}
.x96{left:477.200000pt;}
.x8c{left:480.466667pt;}
.xb4{left:494.306667pt;}
.xb1{left:495.360000pt;}
.x94{left:505.506655pt;}
.x27{left:515.906667pt;}
.xa6{left:525.506667pt;}
.x70{left:528.973333pt;}
.xad{left:530.306667pt;}
.x6a{left:536.173333pt;}
.xc3{left:547.906667pt;}
.x9e{left:552.693333pt;}
.x5f{left:554.840000pt;}
.x92{left:573.506655pt;}
.xb2{left:575.640000pt;}
.xbd{left:589.266667pt;}
.x1e{left:591.466667pt;}
.x20{left:605.266655pt;}
.xae{left:610.333333pt;}
.x8e{left:627.399988pt;}
.x71{left:630.600000pt;}
.xc4{left:634.600000pt;}
.x9f{left:637.000000pt;}
.x90{left:638.333322pt;}
.x8f{left:639.399988pt;}
.x52{left:641.533322pt;}
.x43{left:648.999988pt;}
.xbe{left:653.000000pt;}
.xb5{left:654.333333pt;}
.x61{left:655.400000pt;}
.x91{left:660.466655pt;}
.x51{left:661.533322pt;}
.x44{left:665.533322pt;}
.x34{left:667.133322pt;}
.xf{left:673.799988pt;}
.x75{left:681.533322pt;}
.xa7{left:685.533333pt;}
.xaf{left:690.333333pt;}
}




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