
    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_2b4adb49f13de561893af556.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_755e154dae7ff47aa825997c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_9f45ffbcb8c983fb1172d9a2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.045410;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_dcd34fd0b8cb98f82a1cfda8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_999398b85522965d7d763369.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.115234;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_ff8499ecfa4cb089b02ddd75.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.107422;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_b3634251a487936f55b42c85.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_016d47b8a104374f34cc751d.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_afaa6da4c3ee207a9dd8ea7a.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.104492;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_890afa4464b640d7d9186d16.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.432129;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_4c61a2642eea6aa620812c1d.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.401855;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_49ca4182a1c6d37df8a939ab.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.901855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1f{letter-spacing:-9.840000px;}
.ls1b{letter-spacing:-6.240000px;}
.ls27{letter-spacing:-5.472000px;}
.ls28{letter-spacing:-4.032000px;}
.ls1e{letter-spacing:-0.936000px;}
.ls15{letter-spacing:-0.864000px;}
.ls9{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.576000px;}
.ls14{letter-spacing:-0.504000px;}
.ls13{letter-spacing:-0.432000px;}
.ls7{letter-spacing:-0.288000px;}
.ls11{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.144000px;}
.ls21{letter-spacing:-0.109200px;}
.lsf{letter-spacing:-0.106800px;}
.ls26{letter-spacing:-0.100200px;}
.ls1d{letter-spacing:-0.072000px;}
.ls10{letter-spacing:-0.058320px;}
.ls4{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.037440px;}
.lsc{letter-spacing:0.060600px;}
.ls2{letter-spacing:0.134400px;}
.ls0{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.163920px;}
.lsd{letter-spacing:0.174240px;}
.ls5{letter-spacing:0.181200px;}
.ls16{letter-spacing:0.216000px;}
.ls22{letter-spacing:0.262080px;}
.ls1a{letter-spacing:0.264000px;}
.ls8{letter-spacing:0.288000px;}
.ls24{letter-spacing:0.360000px;}
.ls25{letter-spacing:0.460080px;}
.ls29{letter-spacing:0.468000px;}
.ls18{letter-spacing:0.612000px;}
.ls19{letter-spacing:0.756000px;}
.ls12{letter-spacing:5.880000px;}
.ls20{letter-spacing:8.784000px;}
.lse{letter-spacing:44.184000px;}
.ls1c{letter-spacing:54.000000px;}
.lsb{letter-spacing:77.304000px;}
.ls3{letter-spacing:830.693280px;}
.ls23{letter-spacing:845.741280px;}
.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;}
}
.wsb{word-spacing:-72.000000px;}
.ws1{word-spacing:-39.888000px;}
.ws3{word-spacing:-39.060000px;}
.ws0{word-spacing:-36.810480px;}
.ws2{word-spacing:-29.736000px;}
.wsc{word-spacing:-20.304000px;}
.wsf{word-spacing:-20.232000px;}
.ws1b{word-spacing:-20.160000px;}
.ws5{word-spacing:-20.016000px;}
.ws16{word-spacing:-19.944000px;}
.wse{word-spacing:-19.872000px;}
.ws10{word-spacing:-19.800000px;}
.ws14{word-spacing:-19.584000px;}
.wsd{word-spacing:-19.512000px;}
.ws18{word-spacing:-19.296000px;}
.ws19{word-spacing:-19.152000px;}
.ws17{word-spacing:-19.080000px;}
.ws1d{word-spacing:-18.414720px;}
.ws1c{word-spacing:-18.305520px;}
.wsa{word-spacing:-17.784000px;}
.ws13{word-spacing:-17.369280px;}
.ws12{word-spacing:-17.225280px;}
.ws1e{word-spacing:-16.973280px;}
.ws11{word-spacing:-16.650720px;}
.ws7{word-spacing:-16.613280px;}
.ws1f{word-spacing:-16.513080px;}
.ws6{word-spacing:-16.506480px;}
.ws21{word-spacing:-15.984000px;}
.ws20{word-spacing:-14.544000px;}
.ws15{word-spacing:-13.776000px;}
.ws8{word-spacing:-13.566360px;}
.ws9{word-spacing:-13.447440px;}
.ws1a{word-spacing:-10.176000px;}
.ws4{word-spacing:0.000000px;}
._21{margin-left:-16.764000px;}
._22{margin-left:-14.646720px;}
._43{margin-left:-12.960000px;}
._1d{margin-left:-11.374080px;}
._20{margin-left:-9.920880px;}
._1e{margin-left:-8.721960px;}
._1f{margin-left:-7.194480px;}
._8{margin-left:-5.472000px;}
._12{margin-left:-4.329360px;}
._7{margin-left:-3.240000px;}
._1{margin-left:-1.718640px;}
._0{width:1.449360px;}
._4{width:2.688000px;}
._14{width:3.724080px;}
._10{width:4.949280px;}
._f{width:5.976000px;}
._1a{width:7.193280px;}
._3{width:8.424000px;}
._6{width:9.432000px;}
._c{width:10.512000px;}
._d{width:11.520000px;}
._1b{width:13.061280px;}
._2{width:14.592000px;}
._27{width:15.912000px;}
._13{width:17.280000px;}
._b{width:18.648000px;}
._34{width:20.136960px;}
._19{width:21.168000px;}
._5{width:22.392000px;}
._1c{width:23.748000px;}
._16{width:25.032000px;}
._15{width:26.208000px;}
._25{width:27.360000px;}
._11{width:29.203920px;}
._4b{width:30.230640px;}
._a{width:31.320000px;}
._9{width:32.328000px;}
._18{width:33.816000px;}
._32{width:35.280000px;}
._33{width:36.370560px;}
._31{width:38.160000px;}
._28{width:40.176000px;}
._e{width:42.120000px;}
._44{width:43.233360px;}
._29{width:44.318640px;}
._26{width:45.552000px;}
._48{width:46.742640px;}
._4d{width:47.952000px;}
._46{width:48.960000px;}
._45{width:50.184000px;}
._4a{width:51.840000px;}
._3c{width:53.546400px;}
._24{width:54.864000px;}
._2b{width:56.088000px;}
._41{width:61.135920px;}
._3f{width:62.530560px;}
._2a{width:64.008000px;}
._49{width:65.416320px;}
._3d{width:67.366080px;}
._3e{width:69.283440px;}
._4f{width:70.488000px;}
._4e{width:71.712000px;}
._2d{width:73.296000px;}
._2c{width:74.592000px;}
._3b{width:75.702960px;}
._4c{width:76.918320px;}
._50{width:80.640000px;}
._30{width:85.176000px;}
._42{width:86.837040px;}
._2f{width:89.136000px;}
._2e{width:90.648000px;}
._3a{width:110.418480px;}
._47{width:111.600000px;}
._39{width:121.020480px;}
._40{width:144.668160px;}
._37{width:220.049280px;}
._38{width:221.470800px;}
._35{width:257.276160px;}
._36{width:258.729840px;}
._17{width:844.140000px;}
._23{width:2521.356000px;}
.fc5{color:rgb(0,0,255);}
.fc4{color:rgb(54,95,145);}
.fc3{color:transparent;}
.fc2{color:rgb(191,191,191);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(154,0,64);}
.fs7{font-size:59.760000px;}
.fs8{font-size:59.904000px;}
.fs9{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:95.760000px;}
.fs3{font-size:108.000000px;}
.fs5{font-size:120.240000px;}
.fs0{font-size:131.760000px;}
.fs2{font-size:144.000000px;}
.fs4{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y11f{bottom:2.550000px;}
.y117{bottom:3.165000px;}
.y1f0{bottom:3.240000px;}
.y2b4{bottom:3.780000px;}
.y323{bottom:3.810000px;}
.y32e{bottom:3.825000px;}
.y114{bottom:4.290000px;}
.y366{bottom:4.500000px;}
.y34c{bottom:4.680000px;}
.y11a{bottom:4.785000px;}
.y277{bottom:5.400000px;}
.y29c{bottom:5.580000px;}
.y128{bottom:7.125000px;}
.y122{bottom:9.615000px;}
.y379{bottom:11.700000px;}
.y25e{bottom:17.280000px;}
.y25b{bottom:17.454000px;}
.y257{bottom:17.460000px;}
.y2a3{bottom:17.490000px;}
.y12a{bottom:18.900000px;}
.yf2{bottom:18.945000px;}
.y1ef{bottom:20.340000px;}
.y22e{bottom:20.385000px;}
.y1f9{bottom:20.520000px;}
.y240{bottom:20.550000px;}
.y248{bottom:20.565000px;}
.y1df{bottom:21.060000px;}
.y20f{bottom:21.240000px;}
.yec{bottom:23.040000px;}
.yef{bottom:23.220000px;}
.y336{bottom:24.300000px;}
.y307{bottom:24.474000px;}
.y2ce{bottom:24.480000px;}
.y2ec{bottom:24.510000px;}
.y2f5{bottom:24.525000px;}
.y365{bottom:25.200000px;}
.y34b{bottom:25.380000px;}
.y276{bottom:27.714000px;}
.y29b{bottom:27.900000px;}
.y1ee{bottom:37.620000px;}
.y22d{bottom:37.665000px;}
.y20c{bottom:37.794000px;}
.y21d{bottom:37.800000px;}
.y23f{bottom:37.830000px;}
.y247{bottom:37.845000px;}
.y1de{bottom:38.340000px;}
.y20e{bottom:38.550000px;}
.y261{bottom:39.600000px;}
.y25d{bottom:39.630000px;}
.y266{bottom:39.645000px;}
.y287{bottom:39.774000px;}
.y259{bottom:39.780000px;}
.y26e{bottom:39.810000px;}
.y2af{bottom:39.825000px;}
.y35f{bottom:45.000000px;}
.y2ea{bottom:45.174000px;}
.y2d3{bottom:45.180000px;}
.y2fd{bottom:45.210000px;}
.y367{bottom:45.225000px;}
.y351{bottom:45.900000px;}
.y8f{bottom:48.600000px;}
.y29a{bottom:50.214000px;}
.yfc{bottom:54.210000px;}
.y1ed{bottom:54.900000px;}
.y23e{bottom:54.930000px;}
.y22c{bottom:54.945000px;}
.y20b{bottom:55.074000px;}
.y21c{bottom:55.080000px;}
.y24e{bottom:55.110000px;}
.y246{bottom:55.125000px;}
.y265{bottom:61.965000px;}
.y286{bottom:62.094000px;}
.y26a{bottom:62.100000px;}
.y26d{bottom:62.130000px;}
.y283{bottom:62.145000px;}
.y100{bottom:63.210000px;}
.y35e{bottom:65.700000px;}
.y2e9{bottom:65.874000px;}
.y2e3{bottom:65.880000px;}
.y2fc{bottom:65.910000px;}
.y2e6{bottom:65.925000px;}
.y2d1{bottom:66.600000px;}
.y364{bottom:66.645000px;}
.y20a{bottom:72.174000px;}
.y1ec{bottom:72.180000px;}
.y23d{bottom:72.210000px;}
.y22b{bottom:72.225000px;}
.y24c{bottom:72.354000px;}
.y227{bottom:72.360000px;}
.y252{bottom:72.390000px;}
.y245{bottom:72.405000px;}
.y8{bottom:76.356000px;}
.y285{bottom:84.414000px;}
.y269{bottom:84.420000px;}
.y26c{bottom:84.450000px;}
.y295{bottom:84.465000px;}
.y2aa{bottom:84.645000px;}
.yfb{bottom:85.170000px;}
.y35d{bottom:86.400000px;}
.y2e2{bottom:86.580000px;}
.y2fb{bottom:86.610000px;}
.y2e5{bottom:86.625000px;}
.y2d0{bottom:87.300000px;}
.y363{bottom:87.345000px;}
.y8e{bottom:88.776000px;}
.y209{bottom:89.454000px;}
.y1eb{bottom:89.460000px;}
.y23c{bottom:89.490000px;}
.y21b{bottom:89.505000px;}
.y24b{bottom:89.634000px;}
.y244{bottom:89.685000px;}
.yff{bottom:94.170000px;}
.y1ea{bottom:106.560000px;}
.y22a{bottom:106.605000px;}
.y208{bottom:106.734000px;}
.y1f8{bottom:106.740000px;}
.y23b{bottom:106.770000px;}
.y21a{bottom:106.785000px;}
.y27d{bottom:106.920000px;}
.y35c{bottom:107.145000px;}
.y2e1{bottom:107.280000px;}
.y2e4{bottom:107.325000px;}
.y298{bottom:107.634000px;}
.y348{bottom:108.000000px;}
.y355{bottom:108.030000px;}
.y362{bottom:108.045000px;}
.y7{bottom:116.316000px;}
.y321{bottom:117.036000px;}
.y249{bottom:118.476000px;}
.y2e8{bottom:120.276000px;}
.y296{bottom:121.896000px;}
.y1fa{bottom:122.796000px;}
.y2cc{bottom:122.976000px;}
.y190{bottom:123.156000px;}
.y1e9{bottom:123.840000px;}
.y229{bottom:123.885000px;}
.y207{bottom:124.014000px;}
.y1f7{bottom:124.020000px;}
.y23a{bottom:124.050000px;}
.y219{bottom:124.065000px;}
.yea{bottom:124.776000px;}
.yfa{bottom:125.310000px;}
.yac{bottom:127.116000px;}
.y2e0{bottom:127.980000px;}
.y36c{bottom:128.700000px;}
.y284{bottom:129.054000px;}
.y268{bottom:129.060000px;}
.y2a6{bottom:129.096000px;}
.y294{bottom:129.105000px;}
.y271{bottom:129.240000px;}
.y306{bottom:129.456000px;}
.y301{bottom:129.600000px;}
.y297{bottom:129.954000px;}
.y10e{bottom:130.716000px;}
.y361{bottom:132.156000px;}
.y1b8{bottom:133.236000px;}
.yfe{bottom:134.310000px;}
.y275{bottom:134.676000px;}
.y168{bottom:136.116000px;}
.y320{bottom:138.456000px;}
.y27f{bottom:138.636000px;}
.y14a{bottom:139.176000px;}
.y1e8{bottom:141.120000px;}
.y1f6{bottom:141.150000px;}
.y206{bottom:141.294000px;}
.y231{bottom:141.300000px;}
.y226{bottom:141.330000px;}
.y218{bottom:141.345000px;}
.y2cb{bottom:144.576000px;}
.y1da{bottom:144.936000px;}
.ycc{bottom:145.116000px;}
.y68{bottom:147.456000px;}
.y15e{bottom:148.176000px;}
.y2df{bottom:148.680000px;}
.y305{bottom:148.725000px;}
.y140{bottom:149.256000px;}
.y25a{bottom:149.796000px;}
.y2f9{bottom:150.150000px;}
.y300{bottom:150.300000px;}
.y274{bottom:151.380000px;}
.y2ae{bottom:151.425000px;}
.y270{bottom:151.560000px;}
.y22f{bottom:151.590000px;}
.y345{bottom:155.550000px;}
.ye9{bottom:155.730000px;}
.yab{bottom:158.250000px;}
.y1e7{bottom:158.400000px;}
.y1f5{bottom:158.430000px;}
.y205{bottom:158.574000px;}
.y230{bottom:158.580000px;}
.y225{bottom:158.610000px;}
.y217{bottom:158.625000px;}
.y31f{bottom:159.870000px;}
.y1b7{bottom:161.670000px;}
.y18f{bottom:163.110000px;}
.y28f{bottom:164.190000px;}
.yf9{bottom:165.270000px;}
.y2ca{bottom:165.990000px;}
.y167{bottom:167.250000px;}
.y2de{bottom:169.380000px;}
.y149{bottom:170.130000px;}
.y1d9{bottom:173.370000px;}
.y273{bottom:173.745000px;}
.y26f{bottom:173.880000px;}
.y10d{bottom:173.910000px;}
.y360{bottom:174.270000px;}
.y204{bottom:175.674000px;}
.y237{bottom:175.680000px;}
.y1f4{bottom:175.710000px;}
.y1e6{bottom:175.725000px;}
.y24a{bottom:175.854000px;}
.y224{bottom:175.890000px;}
.y243{bottom:175.905000px;}
.ycb{bottom:176.250000px;}
.y15d{bottom:179.130000px;}
.y13f{bottom:180.210000px;}
.y31e{bottom:181.470000px;}
.y258{bottom:184.890000px;}
.y28e{bottom:186.510000px;}
.ye8{bottom:186.870000px;}
.y7d{bottom:187.050000px;}
.y2c9{bottom:187.410000px;}
.y67{bottom:187.770000px;}
.yaa{bottom:189.210000px;}
.y299{bottom:189.750000px;}
.y2dd{bottom:190.080000px;}
.y1b6{bottom:190.290000px;}
.y10b{bottom:190.650000px;}
.y304{bottom:192.270000px;}
.y203{bottom:192.954000px;}
.y236{bottom:192.960000px;}
.y1f3{bottom:192.990000px;}
.y1e5{bottom:193.005000px;}
.y242{bottom:193.185000px;}
.y18e{bottom:194.250000px;}
.y272{bottom:196.065000px;}
.yf8{bottom:196.410000px;}
.y166{bottom:198.210000px;}
.y2a8{bottom:199.254000px;}
.y1d8{bottom:201.810000px;}
.y31d{bottom:202.890000px;}
.y14{bottom:203.610000px;}
.y2e7{bottom:203.790000px;}
.yfd{bottom:205.410000px;}
.yca{bottom:207.210000px;}
.y344{bottom:207.390000px;}
.y2ab{bottom:208.830000px;}
.y1e4{bottom:210.105000px;}
.y202{bottom:210.234000px;}
.y235{bottom:210.240000px;}
.y15c{bottom:210.270000px;}
.y216{bottom:210.285000px;}
.y2dc{bottom:210.810000px;}
.y13e{bottom:211.170000px;}
.y36f{bottom:212.250000px;}
.y148{bottom:213.150000px;}
.y129{bottom:214.230000px;}
.y31{bottom:214.590000px;}
.y194{bottom:216.210000px;}
.y10c{bottom:216.930000px;}
.y1b5{bottom:218.730000px;}
.ya9{bottom:220.170000px;}
.y2a7{bottom:221.799000px;}
.y31c{bottom:224.310000px;}
.y18d{bottom:225.210000px;}
.y66{bottom:226.470000px;}
.ye7{bottom:226.830000px;}
.y1e3{bottom:227.385000px;}
.y234{bottom:227.520000px;}
.y1f2{bottom:227.550000px;}
.y201{bottom:227.559000px;}
.y215{bottom:227.565000px;}
.y343{bottom:228.990000px;}
.ybc{bottom:229.170000px;}
.y1d7{bottom:230.250000px;}
.y10a{bottom:230.430000px;}
.y27a{bottom:231.120000px;}
.y2db{bottom:231.510000px;}
.y2a2{bottom:234.390000px;}
.yf7{bottom:236.370000px;}
.y35b{bottom:237.270000px;}
.yc9{bottom:238.170000px;}
.y15b{bottom:241.230000px;}
.y174{bottom:242.310000px;}
.y147{bottom:244.290000px;}
.y1e2{bottom:244.665000px;}
.y233{bottom:244.800000px;}
.y223{bottom:244.830000px;}
.y200{bottom:244.839000px;}
.y214{bottom:244.845000px;}
.y31b{bottom:245.730000px;}
.y7c{bottom:247.170000px;}
.y342{bottom:250.410000px;}
.ya8{bottom:251.310000px;}
.y2c8{bottom:251.670000px;}
.y279{bottom:253.470000px;}
.y4c{bottom:253.650000px;}
.y13d{bottom:254.370000px;}
.y2f1{bottom:255.285000px;}
.y18c{bottom:256.170000px;}
.y30{bottom:257.610000px;}
.ye6{bottom:257.970000px;}
.y1d6{bottom:258.690000px;}
.ybb{bottom:260.310000px;}
.y109{bottom:261.570000px;}
.y239{bottom:261.930000px;}
.y1ff{bottom:261.939000px;}
.y1e1{bottom:261.945000px;}
.y222{bottom:262.110000px;}
.y213{bottom:262.125000px;}
.y65{bottom:263.010000px;}
.y125{bottom:263.730000px;}
.y2a9{bottom:266.250000px;}
.y31a{bottom:267.150000px;}
.y13{bottom:268.230000px;}
.yc8{bottom:269.310000px;}
.y293{bottom:269.490000px;}
.y341{bottom:271.830000px;}
.y15a{bottom:272.370000px;}
.y2c7{bottom:273.090000px;}
.y36e{bottom:275.070000px;}
.y146{bottom:275.250000px;}
.y1b4{bottom:275.610000px;}
.y2f0{bottom:275.985000px;}
.y256{bottom:277.410000px;}
.y238{bottom:279.210000px;}
.y1fe{bottom:279.219000px;}
.y212{bottom:279.225000px;}
.y221{bottom:279.390000px;}
.y173{bottom:282.270000px;}
.y13c{bottom:285.330000px;}
.y1d5{bottom:287.130000px;}
.yd6{bottom:287.310000px;}
.y4b{bottom:288.030000px;}
.y319{bottom:288.570000px;}
.ya7{bottom:291.270000px;}
.y108{bottom:292.530000px;}
.y340{bottom:293.250000px;}
.y2c6{bottom:294.690000px;}
.y18b{bottom:296.310000px;}
.y220{bottom:296.490000px;}
.y1fd{bottom:296.499000px;}
.y211{bottom:296.505000px;}
.ye5{bottom:297.930000px;}
.y64{bottom:299.550000px;}
.yba{bottom:300.270000px;}
.y2f{bottom:300.630000px;}
.y159{bottom:303.330000px;}
.y1b3{bottom:304.050000px;}
.y145{bottom:306.390000px;}
.y7b{bottom:307.110000px;}
.y318{bottom:309.990000px;}
.y21f{bottom:313.770000px;}
.y1fc{bottom:313.779000px;}
.y250{bottom:313.785000px;}
.y33f{bottom:314.670000px;}
.y1d4{bottom:315.570000px;}
.y2c5{bottom:316.110000px;}
.y13b{bottom:316.470000px;}
.yd5{bottom:318.270000px;}
.yf1{bottom:322.230000px;}
.ya6{bottom:322.410000px;}
.y107{bottom:323.670000px;}
.y228{bottom:324.930000px;}
.y172{bottom:325.470000px;}
.y241{bottom:326.190000px;}
.y11e{bottom:326.700000px;}
.y181{bottom:327.270000px;}
.y4a{bottom:331.050000px;}
.y1fb{bottom:331.059000px;}
.y255{bottom:331.230000px;}
.yb9{bottom:331.410000px;}
.y317{bottom:331.590000px;}
.y2e{bottom:331.770000px;}
.y1b2{bottom:332.490000px;}
.y158{bottom:334.470000px;}
.y63{bottom:335.910000px;}
.y33e{bottom:336.090000px;}
.y144{bottom:337.395000px;}
.y2c4{bottom:337.575000px;}
.ye4{bottom:338.115000px;}
.y12{bottom:338.475000px;}
.y1d3{bottom:344.055000px;}
.y19c{bottom:346.395000px;}
.y13a{bottom:347.475000px;}
.yd4{bottom:349.455000px;}
.y316{bottom:353.055000px;}
.ya5{bottom:353.415000px;}
.y106{bottom:354.675000px;}
.y11d{bottom:355.035000px;}
.y171{bottom:356.475000px;}
.y33d{bottom:357.735000px;}
.y180{bottom:358.455000px;}
.y2ff{bottom:358.635000px;}
.y2c3{bottom:358.995000px;}
.y1b1{bottom:360.975000px;}
.y359{bottom:362.235000px;}
.yc7{bottom:362.415000px;}
.y2d{bottom:362.775000px;}
.yf0{bottom:364.755000px;}
.y282{bottom:365.295000px;}
.y157{bottom:365.475000px;}
.y7a{bottom:367.275000px;}
.y143{bottom:368.535000px;}
.yb8{bottom:371.415000px;}
.y62{bottom:372.495000px;}
.y1d2{bottom:372.675000px;}
.y49{bottom:374.115000px;}
.y315{bottom:374.475000px;}
.y19b{bottom:377.535000px;}
.y33c{bottom:379.155000px;}
.y36d{bottom:380.235000px;}
.yd3{bottom:380.415000px;}
.y105{bottom:385.815000px;}
.y139{bottom:387.615000px;}
.y17f{bottom:389.415000px;}
.ya4{bottom:393.555000px;}
.y2c{bottom:393.915000px;}
.y314{bottom:395.895000px;}
.y156{bottom:396.615000px;}
.y33b{bottom:400.575000px;}
.y303{bottom:400.935000px;}
.y1d1{bottom:401.115000px;}
.y2c2{bottom:401.835000px;}
.yc6{bottom:402.555000px;}
.y2a1{bottom:403.635000px;}
.y121{bottom:405.000000px;}
.y48{bottom:405.255000px;}
.y19a{bottom:408.495000px;}
.y11{bottom:408.675000px;}
.y61{bottom:408.855000px;}
.y254{bottom:411.375000px;}
.yb7{bottom:411.555000px;}
.y2da{bottom:412.275000px;}
.yee{bottom:414.435000px;}
.y292{bottom:416.235000px;}
.y104{bottom:416.775000px;}
.y313{bottom:417.315000px;}
.y1b0{bottom:417.855000px;}
.y170{bottom:418.575000px;}
.y17e{bottom:420.555000px;}
.y33a{bottom:421.995000px;}
.y2c1{bottom:423.435000px;}
.ya3{bottom:424.515000px;}
.y35a{bottom:425.055000px;}
.y79{bottom:427.215000px;}
.y155{bottom:427.575000px;}
.y253{bottom:429.015000px;}
.y1d0{bottom:429.555000px;}
.y138{bottom:430.635000px;}
.y197{bottom:433.515000px;}
.y281{bottom:435.459000px;}
.y47{bottom:436.215000px;}
.y2b{bottom:436.935000px;}
.y312{bottom:438.735000px;}
.y199{bottom:439.635000px;}
.y120{bottom:440.535000px;}
.yb6{bottom:442.515000px;}
.y302{bottom:443.055000px;}
.y339{bottom:443.415000px;}
.y2c0{bottom:444.855000px;}
.y60{bottom:445.395000px;}
.y1af{bottom:446.475000px;}
.y103{bottom:447.915000px;}
.y8d{bottom:449.535000px;}
.y16f{bottom:449.715000px;}
.y17d{bottom:451.515000px;}
.y280{bottom:457.779000px;}
.y1cf{bottom:457.995000px;}
.y154{bottom:458.715000px;}
.y311{bottom:460.335000px;}
.y137{bottom:461.595000px;}
.y21e{bottom:463.575000px;}
.y36b{bottom:463.755000px;}
.yed{bottom:464.295000px;}
.ya2{bottom:464.655000px;}
.y2bf{bottom:466.275000px;}
.y357{bottom:467.175000px;}
.y46{bottom:467.355000px;}
.y2a{bottom:468.075000px;}
.y1f1{bottom:468.615000px;}
.y198{bottom:470.595000px;}
.yb5{bottom:473.655000px;}
.y1ae{bottom:474.915000px;}
.y78{bottom:478.155000px;}
.y10{bottom:478.875000px;}
.y16e{bottom:480.675000px;}
.y5f{bottom:481.755000px;}
.y18a{bottom:482.655000px;}
.y2a5{bottom:483.375000px;}
.y338{bottom:483.735000px;}
.y1ce{bottom:486.435000px;}
.y2be{bottom:487.695000px;}
.y102{bottom:487.875000px;}
.y165{bottom:489.675000px;}
.y8c{bottom:490.755000px;}
.y136{bottom:492.735000px;}
.y17c{bottom:494.715000px;}
.ya1{bottom:495.615000px;}
.y291{bottom:496.155000px;}
.y1dc{bottom:496.875000px;}
.y29{bottom:499.035000px;}
.y11c{bottom:500.475000px;}
.y153{bottom:501.735000px;}
.y310{bottom:503.175000px;}
.y1ad{bottom:503.355000px;}
.yb4{bottom:504.615000px;}
.y2bd{bottom:509.115000px;}
.y358{bottom:509.295000px;}
.y45{bottom:510.375000px;}
.y193{bottom:513.615000px;}
.yeb{bottom:514.155000px;}
.y1cd{bottom:514.875000px;}
.y77{bottom:518.115000px;}
.y5e{bottom:518.295000px;}
.y164{bottom:520.815000px;}
.y189{bottom:522.615000px;}
.y135{bottom:523.695000px;}
.y17b{bottom:525.675000px;}
.y11b{bottom:526.395000px;}
.y2f8{bottom:526.575000px;}
.ya0{bottom:526.755000px;}
.y101{bottom:527.835000px;}
.y28{bottom:530.175000px;}
.y2bc{bottom:530.535000px;}
.y354{bottom:530.715000px;}
.y1ac{bottom:531.795000px;}
.y8b{bottom:531.975000px;}
.y152{bottom:532.695000px;}
.y1db{bottom:534.315000px;}
.yb3{bottom:535.755000px;}
.y2a4{bottom:540.795000px;}
.y44{bottom:541.515000px;}
.y1cc{bottom:543.315000px;}
.yd2{bottom:544.755000px;}
.y2fe{bottom:547.995000px;}
.yf{bottom:549.255000px;}
.y337{bottom:550.335000px;}
.y251{bottom:550.515000px;}
.y163{bottom:551.775000px;}
.y2bb{bottom:552.135000px;}
.y28d{bottom:553.575000px;}
.y188{bottom:553.755000px;}
.yf6{bottom:554.655000px;}
.y5d{bottom:554.835000px;}
.y17a{bottom:556.815000px;}
.y76{bottom:558.075000px;}
.y1ab{bottom:560.235000px;}
.y27{bottom:561.135000px;}
.y151{bottom:563.835000px;}
.y9f{bottom:566.715000px;}
.y1cb{bottom:571.755000px;}
.y335{bottom:571.935000px;}
.y43{bottom:572.475000px;}
.y8a{bottom:573.375000px;}
.y2ba{bottom:573.555000px;}
.yd1{bottom:575.715000px;}
.y30f{bottom:583.455000px;}
.y187{bottom:584.715000px;}
.y26b{bottom:585.435000px;}
.y16d{bottom:585.795000px;}
.y124{bottom:585.975000px;}
.y179{bottom:587.775000px;}
.y1aa{bottom:588.675000px;}
.ye3{bottom:589.935000px;}
.y2fa{bottom:590.115000px;}
.y5c{bottom:591.195000px;}
.y26{bottom:592.095000px;}
.y356{bottom:593.535000px;}
.y162{bottom:594.795000px;}
.y2b9{bottom:594.975000px;}
.yc5{bottom:597.855000px;}
.y75{bottom:598.215000px;}
.y1ca{bottom:600.195000px;}
.y42{bottom:603.645000px;}
.y9e{bottom:606.885000px;}
.y30e{bottom:610.125000px;}
.y123{bottom:611.925000px;}
.y27e{bottom:614.085000px;}
.y89{bottom:614.625000px;}
.y186{bottom:615.885000px;}
.y2b8{bottom:616.425000px;}
.y1a9{bottom:617.145000px;}
.y178{bottom:618.765000px;}
.ye{bottom:621.825000px;}
.y380{bottom:622.905000px;}
.y25{bottom:623.265000px;}
.y161{bottom:625.965000px;}
.y5b{bottom:627.765000px;}
.yc4{bottom:628.845000px;}
.ye2{bottom:629.925000px;}
.y290{bottom:633.345000px;}
.y41{bottom:634.605000px;}
.y334{bottom:635.505000px;}
.y9d{bottom:637.845000px;}
.y74{bottom:638.205000px;}
.y37f{bottom:640.545000px;}
.y119{bottom:640.620000px;}
.y88{bottom:645.585000px;}
.y185{bottom:646.845000px;}
.y177{bottom:649.905000px;}
.y2a0{bottom:655.665000px;}
.y353{bottom:656.385000px;}
.y160{bottom:656.925000px;}
.y1c9{bottom:657.285000px;}
.y2b7{bottom:659.265000px;}
.yc3{bottom:659.985000px;}
.y2d9{bottom:661.425000px;}
.y37e{bottom:661.965000px;}
.y5a{bottom:664.125000px;}
.y40{bottom:665.745000px;}
.y24{bottom:666.285000px;}
.y9c{bottom:668.985000px;}
.ye1{bottom:670.065000px;}
.y118{bottom:671.325000px;}
.y30d{bottom:672.945000px;}
.y1a8{bottom:674.025000px;}
.yd0{bottom:677.985000px;}
.y333{bottom:678.345000px;}
.y2b6{bottom:680.685000px;}
.y176{bottom:680.865000px;}
.y37d{bottom:683.565000px;}
.y1c8{bottom:685.725000px;}
.y87{bottom:686.985000px;}
.y267{bottom:687.525000px;}
.y73{bottom:687.705000px;}
.y15f{bottom:688.065000px;}
.yd{bottom:688.245000px;}
.y29f{bottom:690.765000px;}
.yc2{bottom:690.945000px;}
.y36a{bottom:693.645000px;}
.y2f7{bottom:694.365000px;}
.y23{bottom:697.425000px;}
.y332{bottom:699.765000px;}
.y9b{bottom:699.945000px;}
.y59{bottom:700.665000px;}
.ye0{bottom:701.025000px;}
.y2b5{bottom:702.285000px;}
.y1a7{bottom:702.645000px;}
.y37c{bottom:704.985000px;}
.y3f{bottom:708.765000px;}
.ycf{bottom:708.945000px;}
.y1e0{bottom:710.925000px;}
.y150{bottom:712.005000px;}
.y127{bottom:712.800000px;}
.y1c7{bottom:714.165000px;}
.y2ef{bottom:715.785000px;}
.y27c{bottom:716.145000px;}
.y184{bottom:717.945000px;}
.y350{bottom:719.385000px;}
.y331{bottom:721.185000px;}
.y142{bottom:722.085000px;}
.y2b3{bottom:723.705000px;}
.y2d8{bottom:724.245000px;}
.y37b{bottom:726.405000px;}
.y86{bottom:728.205000px;}
.y22{bottom:728.385000px;}
.yb2{bottom:731.085000px;}
.ydf{bottom:732.165000px;}
.y134{bottom:733.965000px;}
.y368{bottom:735.765000px;}
.y30c{bottom:736.485000px;}
.y58{bottom:737.205000px;}
.y2f6{bottom:737.385000px;}
.y72{bottom:738.465000px;}
.y3e{bottom:739.725000px;}
.y9a{bottom:740.085000px;}
.y1c6{bottom:742.605000px;}
.y14f{bottom:742.965000px;}
.y126{bottom:745.665000px;}
.y37a{bottom:747.825000px;}
.y183{bottom:749.085000px;}
.yc{bottom:754.485000px;}
.y28c{bottom:757.725000px;}
.y24f{bottom:758.265000px;}
.y21{bottom:759.525000px;}
.y352{bottom:761.505000px;}
.yb1{bottom:762.045000px;}
.y116{bottom:762.840000px;}
.y2b2{bottom:763.845000px;}
.y133{bottom:765.105000px;}
.y2d7{bottom:766.365000px;}
.y378{bottom:769.245000px;}
.y85{bottom:769.425000px;}
.y29e{bottom:770.505000px;}
.y3d{bottom:770.865000px;}
.y99{bottom:771.045000px;}
.yde{bottom:772.125000px;}
.y57{bottom:773.565000px;}
.y14e{bottom:774.105000px;}
.y369{bottom:777.885000px;}
.y71{bottom:778.605000px;}
.y182{bottom:780.045000px;}
.y34e{bottom:782.925000px;}
.y330{bottom:784.185000px;}
.y2d6{bottom:787.785000px;}
.y1a6{bottom:787.965000px;}
.y115{bottom:791.925000px;}
.y210{bottom:792.105000px;}
.y28b{bottom:792.825000px;}
.yb0{bottom:793.185000px;}
.y132{bottom:796.065000px;}
.y2b1{bottom:798.225000px;}
.y377{bottom:798.585000px;}
.y1c5{bottom:799.485000px;}
.y98{bottom:802.185000px;}
.y20{bottom:802.545000px;}
.y175{bottom:805.065000px;}
.y56{bottom:810.105000px;}
.y84{bottom:810.645000px;}
.yce{bottom:811.185000px;}
.ydd{bottom:812.265000px;}
.y3c{bottom:813.885000px;}
.y1a5{bottom:816.405000px;}
.y14d{bottom:817.125000px;}
.yf5{bottom:817.665000px;}
.y70{bottom:818.745000px;}
.y30b{bottom:820.185000px;}
.yaf{bottom:824.145000px;}
.y32f{bottom:826.305000px;}
.y16c{bottom:827.205000px;}
.y1c4{bottom:827.925000px;}
.yb{bottom:829.905000px;}
.y2d5{bottom:830.085000px;}
.y2b0{bottom:832.605000px;}
.y97{bottom:833.145000px;}
.y1f{bottom:833.505000px;}
.y264{bottom:834.405000px;}
.y131{bottom:836.205000px;}
.y376{bottom:838.725000px;}
.ycd{bottom:842.145000px;}
.y3b{bottom:844.845000px;}
.y34f{bottom:845.745000px;}
.y55{bottom:846.465000px;}
.y14c{bottom:848.265000px;}
.y2ad{bottom:850.245000px;}
.y196{bottom:851.145000px;}
.y83{bottom:851.865000px;}
.ydc{bottom:855.285000px;}
.y1c3{bottom:856.365000px;}
.y6f{bottom:858.885000px;}
.y2f4{bottom:862.305000px;}
.y96{bottom:864.285000px;}
.y32d{bottom:868.425000px;}
.y16b{bottom:870.225000px;}
.y2d4{bottom:872.250000px;}
.y28a{bottom:872.610000px;}
.y375{bottom:873.150000px;}
.yc1{bottom:873.330000px;}
.y1e{bottom:876.570000px;}
.y130{bottom:879.270000px;}
.y232{bottom:879.810000px;}
.ya{bottom:881.790000px;}
.y113{bottom:882.180000px;}
.y195{bottom:882.330000px;}
.y54{bottom:883.050000px;}
.y1c2{bottom:885.030000px;}
.y278{bottom:885.390000px;}
.ydb{bottom:886.290000px;}
.y3a{bottom:887.910000px;}
.y32c{bottom:889.890000px;}
.y82{bottom:893.310000px;}
.y2cf{bottom:893.670000px;}
.y6e{bottom:898.890000px;}
.y16a{bottom:901.410000px;}
.y1a4{bottom:901.770000px;}
.y30a{bottom:903.750000px;}
.y95{bottom:904.290000px;}
.y2f3{bottom:904.470000px;}
.y374{bottom:907.530000px;}
.y1d{bottom:907.710000px;}
.y34a{bottom:909.330000px;}
.y12f{bottom:910.410000px;}
.y32b{bottom:911.310000px;}
.y112{bottom:912.390000px;}
.y192{bottom:913.290000px;}
.y1c1{bottom:913.470000px;}
.y263{bottom:914.190000px;}
.yda{bottom:917.430000px;}
.y39{bottom:919.050000px;}
.y53{bottom:919.590000px;}
.y373{bottom:925.170000px;}
.yf4{bottom:926.430000px;}
.y9{bottom:928.230000px;}
.y1a3{bottom:930.210000px;}
.y34d{bottom:930.930000px;}
.y169{bottom:932.370000px;}
.y81{bottom:934.530000px;}
.y94{bottom:935.430000px;}
.y111{bottom:938.310000px;}
.y1c{bottom:938.670000px;}
.y6d{bottom:939.030000px;}
.y12e{bottom:941.370000px;}
.y1c0{bottom:941.910000px;}
.y191{bottom:944.430000px;}
.y309{bottom:945.870000px;}
.y2f2{bottom:946.590000px;}
.yd9{bottom:948.390000px;}
.y262{bottom:949.290000px;}
.y38{bottom:950.010000px;}
.y32a{bottom:951.630000px;}
.y29d{bottom:952.350000px;}
.y52{bottom:955.950000px;}
.y2d2{bottom:956.490000px;}
.yf3{bottom:957.390000px;}
.y1a2{bottom:958.830000px;}
.y110{bottom:964.050000px;}
.y93{bottom:966.390000px;}
.y308{bottom:967.290000px;}
.y1b{bottom:969.810000px;}
.y1bf{bottom:970.350000px;}
.y12d{bottom:972.330000px;}
.y347{bottom:973.770000px;}
.y289{bottom:974.670000px;}
.yc0{bottom:975.390000px;}
.y80{bottom:975.750000px;}
.y6c{bottom:979.170000px;}
.yd8{bottom:979.530000px;}
.y37{bottom:981.150000px;}
.y6{bottom:983.490000px;}
.y141{bottom:984.390000px;}
.y1a1{bottom:987.270000px;}
.y1dd{bottom:987.630000px;}
.y372{bottom:987.990000px;}
.y329{bottom:991.590000px;}
.y51{bottom:992.490000px;}
.y92{bottom:997.530000px;}
.y2cd{bottom:998.610000px;}
.y1be{bottom:998.790000px;}
.y10f{bottom:998.970000px;}
.y1a{bottom:1000.770000px;}
.y14b{bottom:1003.470000px;}
.ybf{bottom:1006.530000px;}
.y260{bottom:1006.710000px;}
.y2ee{bottom:1009.410000px;}
.y36{bottom:1012.110000px;}
.y12c{bottom:1015.530000px;}
.y1a0{bottom:1015.710000px;}
.y7f{bottom:1016.970000px;}
.y6b{bottom:1019.310000px;}
.yd7{bottom:1019.490000px;}
.y1bd{bottom:1027.230000px;}
.y91{bottom:1028.490000px;}
.y50{bottom:1028.850000px;}
.y371{bottom:1030.110000px;}
.y5{bottom:1030.470000px;}
.y328{bottom:1031.730000px;}
.y19{bottom:1031.910000px;}
.y27b{bottom:1032.090000px;}
.yae{bottom:1037.490000px;}
.y35{bottom:1043.250000px;}
.y19f{bottom:1044.150000px;}
.y12b{bottom:1046.490000px;}
.y327{bottom:1049.370000px;}
.y288{bottom:1054.410000px;}
.y1bc{bottom:1055.670000px;}
.y349{bottom:1057.290000px;}
.y7e{bottom:1058.370000px;}
.y6a{bottom:1059.450000px;}
.y90{bottom:1059.630000px;}
.y18{bottom:1062.870000px;}
.y25f{bottom:1064.130000px;}
.y4f{bottom:1065.390000px;}
.y4{bottom:1068.450000px;}
.yad{bottom:1068.630000px;}
.y326{bottom:1070.790000px;}
.y2ed{bottom:1072.230000px;}
.y19e{bottom:1072.590000px;}
.y34{bottom:1074.210000px;}
.y2ac{bottom:1076.730000px;}
.ybe{bottom:1077.630000px;}
.y1bb{bottom:1084.110000px;}
.y24d{bottom:1086.810000px;}
.y325{bottom:1092.210000px;}
.y370{bottom:1093.650000px;}
.y17{bottom:1094.010000px;}
.y25c{bottom:1099.230000px;}
.y346{bottom:1099.410000px;}
.y69{bottom:1099.590000px;}
.y19d{bottom:1101.030000px;}
.y4e{bottom:1101.750000px;}
.y20d{bottom:1103.370000px;}
.y3{bottom:1105.170000px;}
.y33{bottom:1105.350000px;}
.ybd{bottom:1108.590000px;}
.y1ba{bottom:1112.550000px;}
.y324{bottom:1113.630000px;}
.y2eb{bottom:1114.350000px;}
.y4d{bottom:1130.730000px;}
.y16{bottom:1133.970000px;}
.y322{bottom:1135.050000px;}
.y2{bottom:1137.960000px;}
.y32{bottom:1139.760000px;}
.y1b9{bottom:1141.200000px;}
.y15{bottom:1167.660000px;}
.y1{bottom:1178.820000px;}
.h4d{height:20.700000px;}
.h4e{height:20.736000px;}
.h68{height:28.620000px;}
.h34{height:34.200000px;}
.h31{height:34.380000px;}
.h1d{height:35.820000px;}
.h13{height:35.856000px;}
.h5e{height:41.256000px;}
.h4f{height:41.400000px;}
.h52{height:41.436000px;}
.h60{height:42.300000px;}
.h3b{height:44.640000px;}
.h11{height:48.960000px;}
.h12{height:49.140000px;}
.h1a{height:51.660000px;}
.h18{height:52.380000px;}
.h26{height:52.416000px;}
.h23{height:53.603086px;}
.h19{height:53.820000px;}
.h21{height:54.069961px;}
.h1c{height:55.980000px;}
.h35{height:56.520000px;}
.h33{height:56.556000px;}
.h32{height:56.700000px;}
.h49{height:56.736000px;}
.h1b{height:58.680000px;}
.h51{height:62.100000px;}
.h64{height:62.136000px;}
.h15{height:62.327813px;}
.h17{height:62.478000px;}
.h62{height:62.820000px;}
.hc{height:64.582031px;}
.hb{height:65.144531px;}
.h47{height:67.140000px;}
.h20{height:68.956875px;}
.h2e{height:68.976000px;}
.h1f{height:69.086250px;}
.h5{height:70.664062px;}
.he{height:71.613281px;}
.hf{height:74.953125px;}
.ha{height:75.093750px;}
.h36{height:78.876000px;}
.h43{height:79.020000px;}
.h42{height:79.056000px;}
.h56{height:82.800000px;}
.h5d{height:82.836000px;}
.h66{height:83.520000px;}
.hd{height:99.874688px;}
.h3f{height:101.340000px;}
.h38{height:101.376000px;}
.h4b{height:101.556000px;}
.h5a{height:103.536000px;}
.h50{height:104.220000px;}
.h61{height:104.256000px;}
.h10{height:105.679688px;}
.h1e{height:108.843750px;}
.h4{height:112.640625px;}
.h6{height:115.804687px;}
.h30{height:120.780000px;}
.h41{height:123.660000px;}
.h3d{height:123.696000px;}
.h65{height:124.056000px;}
.h58{height:124.200000px;}
.h55{height:124.236000px;}
.h5f{height:124.920000px;}
.h63{height:124.956000px;}
.h9{height:125.406562px;}
.h8{height:126.562500px;}
.h7{height:137.320312px;}
.h2{height:137.421562px;}
.h29{height:137.916000px;}
.h16{height:139.860000px;}
.h67{height:145.656000px;}
.h37{height:145.980000px;}
.h45{height:146.016000px;}
.h46{height:146.880000px;}
.h3{height:150.187500px;}
.h5c{height:165.630000px;}
.h59{height:167.070000px;}
.h5b{height:167.220000px;}
.h4c{height:168.330000px;}
.h3e{height:168.510000px;}
.h2a{height:172.440000px;}
.h39{height:190.800000px;}
.h44{height:203.430000px;}
.h2d{height:207.000000px;}
.h2f{height:207.030000px;}
.h3a{height:212.970000px;}
.h4a{height:238.710000px;}
.h24{height:241.410000px;}
.h54{height:248.430000px;}
.h48{height:251.310000px;}
.h2c{height:258.870000px;}
.h14{height:262.290000px;}
.h3c{height:270.390000px;}
.h22{height:275.970000px;}
.h57{height:292.890000px;}
.h2b{height:293.295000px;}
.h27{height:310.530000px;}
.h28{height:327.810000px;}
.h25{height:345.090000px;}
.h53{height:373.395000px;}
.h40{height:474.735000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3d{width:54.180000px;}
.w3c{width:58.500000px;}
.w35{width:61.560000px;}
.w36{width:61.920000px;}
.w3a{width:63.000000px;}
.w37{width:65.196000px;}
.w3b{width:65.556000px;}
.w1f{width:67.176000px;}
.w38{width:73.620000px;}
.w39{width:73.656000px;}
.w27{width:73.800000px;}
.w19{width:79.740000px;}
.w2e{width:82.980000px;}
.w16{width:83.520000px;}
.w14{width:83.880000px;}
.w11{width:100.440000px;}
.w25{width:105.120000px;}
.w2c{width:105.300000px;}
.w2b{width:105.336000px;}
.w2a{width:105.516000px;}
.w10{width:107.316000px;}
.w1b{width:112.860000px;}
.w34{width:114.480000px;}
.w28{width:115.776000px;}
.w1c{width:117.036000px;}
.w1d{width:117.216000px;}
.w12{width:119.736000px;}
.w1a{width:120.456000px;}
.w30{width:124.200000px;}
.w21{width:126.540000px;}
.w23{width:126.720000px;}
.w22{width:126.756000px;}
.w29{width:126.900000px;}
.wf{width:127.260000px;}
.w1e{width:135.540000px;}
.w32{width:137.376000px;}
.w33{width:139.356000px;}
.w31{width:139.536000px;}
.w13{width:144.756000px;}
.w15{width:155.550000px;}
.w2d{width:160.590000px;}
.wd{width:167.580000px;}
.w3{width:200.910000px;}
.wb{width:208.260000px;}
.w5{width:222.330000px;}
.wa{width:257.220000px;}
.w9{width:291.240000px;}
.wc{width:296.460000px;}
.w7{width:312.915000px;}
.w6{width:322.590000px;}
.w2f{width:412.995000px;}
.w17{width:417.675000px;}
.w4{width:434.775000px;}
.w20{width:454.035000px;}
.w26{width:530.385000px;}
.w24{width:636.405000px;}
.w18{width:658.185000px;}
.w8{width:669.600000px;}
.we{width:719.970000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:7.740000px;}
.x44{left:9.360000px;}
.x17{left:10.620000px;}
.x55{left:12.060000px;}
.x3e{left:16.380000px;}
.x4e{left:18.360000px;}
.x61{left:21.240000px;}
.x38{left:22.680000px;}
.x52{left:24.480000px;}
.x5d{left:25.734000px;}
.x37{left:26.820000px;}
.x3d{left:29.160000px;}
.x2d{left:30.705000px;}
.x3c{left:32.400000px;}
.x40{left:34.734000px;}
.x3b{left:36.720000px;}
.x5c{left:38.700000px;}
.x46{left:39.774000px;}
.x54{left:41.220000px;}
.x57{left:43.554000px;}
.x43{left:44.820000px;}
.x53{left:46.260000px;}
.x41{left:47.880000px;}
.x42{left:49.890000px;}
.x25{left:52.050000px;}
.x4c{left:53.274000px;}
.x4b{left:54.945000px;}
.x4a{left:58.314000px;}
.x20{left:75.630000px;}
.x2e{left:79.200000px;}
.x32{left:102.996000px;}
.x2a{left:104.795987px;}
.x31{left:106.415987px;}
.x30{left:121.895987px;}
.x1d{left:125.820000px;}
.x7{left:127.655987px;}
.x2f{left:132.330000px;}
.x8{left:142.415987px;}
.x1f{left:149.580000px;}
.x12{left:154.649987px;}
.x1e{left:167.609987px;}
.x21{left:170.280000px;}
.xf{left:181.649987px;}
.x3{left:191.189987px;}
.x19{left:200.549987px;}
.x24{left:202.500000px;}
.x3f{left:208.830000px;}
.x9{left:211.889987px;}
.x22{left:214.049987px;}
.x1{left:226.109987px;}
.x23{left:227.729987px;}
.x33{left:230.970000px;}
.x4d{left:234.390000px;}
.x2{left:248.969987px;}
.x58{left:253.470000px;}
.x47{left:255.630000px;}
.x5{left:258.509987px;}
.x45{left:264.630000px;}
.x39{left:284.655000px;}
.x4{left:289.694987px;}
.x4f{left:319.395000px;}
.x15{left:330.015000px;}
.x16{left:333.075000px;}
.xa{left:334.154987px;}
.x34{left:339.015000px;}
.x3a{left:368.895000px;}
.x56{left:373.575000px;}
.x48{left:383.115000px;}
.x59{left:393.915000px;}
.x1b{left:404.714987px;}
.x1c{left:408.494987px;}
.x1a{left:411.374987px;}
.xc{left:414.614987px;}
.xd{left:423.074987px;}
.x11{left:437.474987px;}
.x10{left:440.534987px;}
.x13{left:441.974987px;}
.xe{left:443.594987px;}
.x6{left:446.474987px;}
.x18{left:451.875000px;}
.x27{left:461.520000px;}
.x5e{left:468.285000px;}
.x26{left:488.084987px;}
.x28{left:497.084987px;}
.x2c{left:511.380000px;}
.x2b{left:528.224987px;}
.x5a{left:532.005000px;}
.x29{left:548.024987px;}
.x50{left:553.245000px;}
.x35{left:560.805000px;}
.x5f{left:606.525000px;}
.x49{left:638.025000px;}
.x51{left:659.490000px;}
.x5b{left:672.090000px;}
.x36{left:706.290000px;}
.x60{left:732.390000px;}
.xb{left:765.509987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1f{letter-spacing:-8.746667pt;}
.ls1b{letter-spacing:-5.546667pt;}
.ls27{letter-spacing:-4.864000pt;}
.ls28{letter-spacing:-3.584000pt;}
.ls1e{letter-spacing:-0.832000pt;}
.ls15{letter-spacing:-0.768000pt;}
.ls9{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.512000pt;}
.ls14{letter-spacing:-0.448000pt;}
.ls13{letter-spacing:-0.384000pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls11{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.128000pt;}
.ls21{letter-spacing:-0.097067pt;}
.lsf{letter-spacing:-0.094933pt;}
.ls26{letter-spacing:-0.089067pt;}
.ls1d{letter-spacing:-0.064000pt;}
.ls10{letter-spacing:-0.051840pt;}
.ls4{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.033280pt;}
.lsc{letter-spacing:0.053867pt;}
.ls2{letter-spacing:0.119467pt;}
.ls0{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.145707pt;}
.lsd{letter-spacing:0.154880pt;}
.ls5{letter-spacing:0.161067pt;}
.ls16{letter-spacing:0.192000pt;}
.ls22{letter-spacing:0.232960pt;}
.ls1a{letter-spacing:0.234667pt;}
.ls8{letter-spacing:0.256000pt;}
.ls24{letter-spacing:0.320000pt;}
.ls25{letter-spacing:0.408960pt;}
.ls29{letter-spacing:0.416000pt;}
.ls18{letter-spacing:0.544000pt;}
.ls19{letter-spacing:0.672000pt;}
.ls12{letter-spacing:5.226667pt;}
.ls20{letter-spacing:7.808000pt;}
.lse{letter-spacing:39.274667pt;}
.ls1c{letter-spacing:48.000000pt;}
.lsb{letter-spacing:68.714667pt;}
.ls3{letter-spacing:738.394027pt;}
.ls23{letter-spacing:751.770027pt;}
.wsb{word-spacing:-64.000000pt;}
.ws1{word-spacing:-35.456000pt;}
.ws3{word-spacing:-34.720000pt;}
.ws0{word-spacing:-32.720427pt;}
.ws2{word-spacing:-26.432000pt;}
.wsc{word-spacing:-18.048000pt;}
.wsf{word-spacing:-17.984000pt;}
.ws1b{word-spacing:-17.920000pt;}
.ws5{word-spacing:-17.792000pt;}
.ws16{word-spacing:-17.728000pt;}
.wse{word-spacing:-17.664000pt;}
.ws10{word-spacing:-17.600000pt;}
.ws14{word-spacing:-17.408000pt;}
.wsd{word-spacing:-17.344000pt;}
.ws18{word-spacing:-17.152000pt;}
.ws19{word-spacing:-17.024000pt;}
.ws17{word-spacing:-16.960000pt;}
.ws1d{word-spacing:-16.368640pt;}
.ws1c{word-spacing:-16.271573pt;}
.wsa{word-spacing:-15.808000pt;}
.ws13{word-spacing:-15.439360pt;}
.ws12{word-spacing:-15.311360pt;}
.ws1e{word-spacing:-15.087360pt;}
.ws11{word-spacing:-14.800640pt;}
.ws7{word-spacing:-14.767360pt;}
.ws1f{word-spacing:-14.678293pt;}
.ws6{word-spacing:-14.672427pt;}
.ws21{word-spacing:-14.208000pt;}
.ws20{word-spacing:-12.928000pt;}
.ws15{word-spacing:-12.245333pt;}
.ws8{word-spacing:-12.058987pt;}
.ws9{word-spacing:-11.953280pt;}
.ws1a{word-spacing:-9.045333pt;}
.ws4{word-spacing:0.000000pt;}
._21{margin-left:-14.901333pt;}
._22{margin-left:-13.019307pt;}
._43{margin-left:-11.520000pt;}
._1d{margin-left:-10.110293pt;}
._20{margin-left:-8.818560pt;}
._1e{margin-left:-7.752853pt;}
._1f{margin-left:-6.395093pt;}
._8{margin-left:-4.864000pt;}
._12{margin-left:-3.848320pt;}
._7{margin-left:-2.880000pt;}
._1{margin-left:-1.527680pt;}
._0{width:1.288320pt;}
._4{width:2.389333pt;}
._14{width:3.310293pt;}
._10{width:4.399360pt;}
._f{width:5.312000pt;}
._1a{width:6.394027pt;}
._3{width:7.488000pt;}
._6{width:8.384000pt;}
._c{width:9.344000pt;}
._d{width:10.240000pt;}
._1b{width:11.610027pt;}
._2{width:12.970667pt;}
._27{width:14.144000pt;}
._13{width:15.360000pt;}
._b{width:16.576000pt;}
._34{width:17.899520pt;}
._19{width:18.816000pt;}
._5{width:19.904000pt;}
._1c{width:21.109333pt;}
._16{width:22.250667pt;}
._15{width:23.296000pt;}
._25{width:24.320000pt;}
._11{width:25.959040pt;}
._4b{width:26.871680pt;}
._a{width:27.840000pt;}
._9{width:28.736000pt;}
._18{width:30.058667pt;}
._32{width:31.360000pt;}
._33{width:32.329387pt;}
._31{width:33.920000pt;}
._28{width:35.712000pt;}
._e{width:37.440000pt;}
._44{width:38.429653pt;}
._29{width:39.394347pt;}
._26{width:40.490667pt;}
._48{width:41.549013pt;}
._4d{width:42.624000pt;}
._46{width:43.520000pt;}
._45{width:44.608000pt;}
._4a{width:46.080000pt;}
._3c{width:47.596800pt;}
._24{width:48.768000pt;}
._2b{width:49.856000pt;}
._41{width:54.343040pt;}
._3f{width:55.582720pt;}
._2a{width:56.896000pt;}
._49{width:58.147840pt;}
._3d{width:59.880960pt;}
._3e{width:61.585280pt;}
._4f{width:62.656000pt;}
._4e{width:63.744000pt;}
._2d{width:65.152000pt;}
._2c{width:66.304000pt;}
._3b{width:67.291520pt;}
._4c{width:68.371840pt;}
._50{width:71.680000pt;}
._30{width:75.712000pt;}
._42{width:77.188480pt;}
._2f{width:79.232000pt;}
._2e{width:80.576000pt;}
._3a{width:98.149760pt;}
._47{width:99.200000pt;}
._39{width:107.573760pt;}
._40{width:128.593920pt;}
._37{width:195.599360pt;}
._38{width:196.862933pt;}
._35{width:228.689920pt;}
._36{width:229.982080pt;}
._17{width:750.346667pt;}
._23{width:2241.205333pt;}
.fs7{font-size:53.120000pt;}
.fs8{font-size:53.248000pt;}
.fs9{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:85.120000pt;}
.fs3{font-size:96.000000pt;}
.fs5{font-size:106.880000pt;}
.fs0{font-size:117.120000pt;}
.fs2{font-size:128.000000pt;}
.fs4{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y11f{bottom:2.266667pt;}
.y117{bottom:2.813333pt;}
.y1f0{bottom:2.880000pt;}
.y2b4{bottom:3.360000pt;}
.y323{bottom:3.386667pt;}
.y32e{bottom:3.400000pt;}
.y114{bottom:3.813333pt;}
.y366{bottom:4.000000pt;}
.y34c{bottom:4.160000pt;}
.y11a{bottom:4.253333pt;}
.y277{bottom:4.800000pt;}
.y29c{bottom:4.960000pt;}
.y128{bottom:6.333333pt;}
.y122{bottom:8.546667pt;}
.y379{bottom:10.400000pt;}
.y25e{bottom:15.360000pt;}
.y25b{bottom:15.514667pt;}
.y257{bottom:15.520000pt;}
.y2a3{bottom:15.546667pt;}
.y12a{bottom:16.800000pt;}
.yf2{bottom:16.840000pt;}
.y1ef{bottom:18.080000pt;}
.y22e{bottom:18.120000pt;}
.y1f9{bottom:18.240000pt;}
.y240{bottom:18.266667pt;}
.y248{bottom:18.280000pt;}
.y1df{bottom:18.720000pt;}
.y20f{bottom:18.880000pt;}
.yec{bottom:20.480000pt;}
.yef{bottom:20.640000pt;}
.y336{bottom:21.600000pt;}
.y307{bottom:21.754667pt;}
.y2ce{bottom:21.760000pt;}
.y2ec{bottom:21.786667pt;}
.y2f5{bottom:21.800000pt;}
.y365{bottom:22.400000pt;}
.y34b{bottom:22.560000pt;}
.y276{bottom:24.634667pt;}
.y29b{bottom:24.800000pt;}
.y1ee{bottom:33.440000pt;}
.y22d{bottom:33.480000pt;}
.y20c{bottom:33.594667pt;}
.y21d{bottom:33.600000pt;}
.y23f{bottom:33.626667pt;}
.y247{bottom:33.640000pt;}
.y1de{bottom:34.080000pt;}
.y20e{bottom:34.266667pt;}
.y261{bottom:35.200000pt;}
.y25d{bottom:35.226667pt;}
.y266{bottom:35.240000pt;}
.y287{bottom:35.354667pt;}
.y259{bottom:35.360000pt;}
.y26e{bottom:35.386667pt;}
.y2af{bottom:35.400000pt;}
.y35f{bottom:40.000000pt;}
.y2ea{bottom:40.154667pt;}
.y2d3{bottom:40.160000pt;}
.y2fd{bottom:40.186667pt;}
.y367{bottom:40.200000pt;}
.y351{bottom:40.800000pt;}
.y8f{bottom:43.200000pt;}
.y29a{bottom:44.634667pt;}
.yfc{bottom:48.186667pt;}
.y1ed{bottom:48.800000pt;}
.y23e{bottom:48.826667pt;}
.y22c{bottom:48.840000pt;}
.y20b{bottom:48.954667pt;}
.y21c{bottom:48.960000pt;}
.y24e{bottom:48.986667pt;}
.y246{bottom:49.000000pt;}
.y265{bottom:55.080000pt;}
.y286{bottom:55.194667pt;}
.y26a{bottom:55.200000pt;}
.y26d{bottom:55.226667pt;}
.y283{bottom:55.240000pt;}
.y100{bottom:56.186667pt;}
.y35e{bottom:58.400000pt;}
.y2e9{bottom:58.554667pt;}
.y2e3{bottom:58.560000pt;}
.y2fc{bottom:58.586667pt;}
.y2e6{bottom:58.600000pt;}
.y2d1{bottom:59.200000pt;}
.y364{bottom:59.240000pt;}
.y20a{bottom:64.154667pt;}
.y1ec{bottom:64.160000pt;}
.y23d{bottom:64.186667pt;}
.y22b{bottom:64.200000pt;}
.y24c{bottom:64.314667pt;}
.y227{bottom:64.320000pt;}
.y252{bottom:64.346667pt;}
.y245{bottom:64.360000pt;}
.y8{bottom:67.872000pt;}
.y285{bottom:75.034667pt;}
.y269{bottom:75.040000pt;}
.y26c{bottom:75.066667pt;}
.y295{bottom:75.080000pt;}
.y2aa{bottom:75.240000pt;}
.yfb{bottom:75.706667pt;}
.y35d{bottom:76.800000pt;}
.y2e2{bottom:76.960000pt;}
.y2fb{bottom:76.986667pt;}
.y2e5{bottom:77.000000pt;}
.y2d0{bottom:77.600000pt;}
.y363{bottom:77.640000pt;}
.y8e{bottom:78.912000pt;}
.y209{bottom:79.514667pt;}
.y1eb{bottom:79.520000pt;}
.y23c{bottom:79.546667pt;}
.y21b{bottom:79.560000pt;}
.y24b{bottom:79.674667pt;}
.y244{bottom:79.720000pt;}
.yff{bottom:83.706667pt;}
.y1ea{bottom:94.720000pt;}
.y22a{bottom:94.760000pt;}
.y208{bottom:94.874667pt;}
.y1f8{bottom:94.880000pt;}
.y23b{bottom:94.906667pt;}
.y21a{bottom:94.920000pt;}
.y27d{bottom:95.040000pt;}
.y35c{bottom:95.240000pt;}
.y2e1{bottom:95.360000pt;}
.y2e4{bottom:95.400000pt;}
.y298{bottom:95.674667pt;}
.y348{bottom:96.000000pt;}
.y355{bottom:96.026667pt;}
.y362{bottom:96.040000pt;}
.y7{bottom:103.392000pt;}
.y321{bottom:104.032000pt;}
.y249{bottom:105.312000pt;}
.y2e8{bottom:106.912000pt;}
.y296{bottom:108.352000pt;}
.y1fa{bottom:109.152000pt;}
.y2cc{bottom:109.312000pt;}
.y190{bottom:109.472000pt;}
.y1e9{bottom:110.080000pt;}
.y229{bottom:110.120000pt;}
.y207{bottom:110.234667pt;}
.y1f7{bottom:110.240000pt;}
.y23a{bottom:110.266667pt;}
.y219{bottom:110.280000pt;}
.yea{bottom:110.912000pt;}
.yfa{bottom:111.386667pt;}
.yac{bottom:112.992000pt;}
.y2e0{bottom:113.760000pt;}
.y36c{bottom:114.400000pt;}
.y284{bottom:114.714667pt;}
.y268{bottom:114.720000pt;}
.y2a6{bottom:114.752000pt;}
.y294{bottom:114.760000pt;}
.y271{bottom:114.880000pt;}
.y306{bottom:115.072000pt;}
.y301{bottom:115.200000pt;}
.y297{bottom:115.514667pt;}
.y10e{bottom:116.192000pt;}
.y361{bottom:117.472000pt;}
.y1b8{bottom:118.432000pt;}
.yfe{bottom:119.386667pt;}
.y275{bottom:119.712000pt;}
.y168{bottom:120.992000pt;}
.y320{bottom:123.072000pt;}
.y27f{bottom:123.232000pt;}
.y14a{bottom:123.712000pt;}
.y1e8{bottom:125.440000pt;}
.y1f6{bottom:125.466667pt;}
.y206{bottom:125.594667pt;}
.y231{bottom:125.600000pt;}
.y226{bottom:125.626667pt;}
.y218{bottom:125.640000pt;}
.y2cb{bottom:128.512000pt;}
.y1da{bottom:128.832000pt;}
.ycc{bottom:128.992000pt;}
.y68{bottom:131.072000pt;}
.y15e{bottom:131.712000pt;}
.y2df{bottom:132.160000pt;}
.y305{bottom:132.200000pt;}
.y140{bottom:132.672000pt;}
.y25a{bottom:133.152000pt;}
.y2f9{bottom:133.466667pt;}
.y300{bottom:133.600000pt;}
.y274{bottom:134.560000pt;}
.y2ae{bottom:134.600000pt;}
.y270{bottom:134.720000pt;}
.y22f{bottom:134.746667pt;}
.y345{bottom:138.266667pt;}
.ye9{bottom:138.426667pt;}
.yab{bottom:140.666667pt;}
.y1e7{bottom:140.800000pt;}
.y1f5{bottom:140.826667pt;}
.y205{bottom:140.954667pt;}
.y230{bottom:140.960000pt;}
.y225{bottom:140.986667pt;}
.y217{bottom:141.000000pt;}
.y31f{bottom:142.106667pt;}
.y1b7{bottom:143.706667pt;}
.y18f{bottom:144.986667pt;}
.y28f{bottom:145.946667pt;}
.yf9{bottom:146.906667pt;}
.y2ca{bottom:147.546667pt;}
.y167{bottom:148.666667pt;}
.y2de{bottom:150.560000pt;}
.y149{bottom:151.226667pt;}
.y1d9{bottom:154.106667pt;}
.y273{bottom:154.440000pt;}
.y26f{bottom:154.560000pt;}
.y10d{bottom:154.586667pt;}
.y360{bottom:154.906667pt;}
.y204{bottom:156.154667pt;}
.y237{bottom:156.160000pt;}
.y1f4{bottom:156.186667pt;}
.y1e6{bottom:156.200000pt;}
.y24a{bottom:156.314667pt;}
.y224{bottom:156.346667pt;}
.y243{bottom:156.360000pt;}
.ycb{bottom:156.666667pt;}
.y15d{bottom:159.226667pt;}
.y13f{bottom:160.186667pt;}
.y31e{bottom:161.306667pt;}
.y258{bottom:164.346667pt;}
.y28e{bottom:165.786667pt;}
.ye8{bottom:166.106667pt;}
.y7d{bottom:166.266667pt;}
.y2c9{bottom:166.586667pt;}
.y67{bottom:166.906667pt;}
.yaa{bottom:168.186667pt;}
.y299{bottom:168.666667pt;}
.y2dd{bottom:168.960000pt;}
.y1b6{bottom:169.146667pt;}
.y10b{bottom:169.466667pt;}
.y304{bottom:170.906667pt;}
.y203{bottom:171.514667pt;}
.y236{bottom:171.520000pt;}
.y1f3{bottom:171.546667pt;}
.y1e5{bottom:171.560000pt;}
.y242{bottom:171.720000pt;}
.y18e{bottom:172.666667pt;}
.y272{bottom:174.280000pt;}
.yf8{bottom:174.586667pt;}
.y166{bottom:176.186667pt;}
.y2a8{bottom:177.114667pt;}
.y1d8{bottom:179.386667pt;}
.y31d{bottom:180.346667pt;}
.y14{bottom:180.986667pt;}
.y2e7{bottom:181.146667pt;}
.yfd{bottom:182.586667pt;}
.yca{bottom:184.186667pt;}
.y344{bottom:184.346667pt;}
.y2ab{bottom:185.626667pt;}
.y1e4{bottom:186.760000pt;}
.y202{bottom:186.874667pt;}
.y235{bottom:186.880000pt;}
.y15c{bottom:186.906667pt;}
.y216{bottom:186.920000pt;}
.y2dc{bottom:187.386667pt;}
.y13e{bottom:187.706667pt;}
.y36f{bottom:188.666667pt;}
.y148{bottom:189.466667pt;}
.y129{bottom:190.426667pt;}
.y31{bottom:190.746667pt;}
.y194{bottom:192.186667pt;}
.y10c{bottom:192.826667pt;}
.y1b5{bottom:194.426667pt;}
.ya9{bottom:195.706667pt;}
.y2a7{bottom:197.154667pt;}
.y31c{bottom:199.386667pt;}
.y18d{bottom:200.186667pt;}
.y66{bottom:201.306667pt;}
.ye7{bottom:201.626667pt;}
.y1e3{bottom:202.120000pt;}
.y234{bottom:202.240000pt;}
.y1f2{bottom:202.266667pt;}
.y201{bottom:202.274667pt;}
.y215{bottom:202.280000pt;}
.y343{bottom:203.546667pt;}
.ybc{bottom:203.706667pt;}
.y1d7{bottom:204.666667pt;}
.y10a{bottom:204.826667pt;}
.y27a{bottom:205.440000pt;}
.y2db{bottom:205.786667pt;}
.y2a2{bottom:208.346667pt;}
.yf7{bottom:210.106667pt;}
.y35b{bottom:210.906667pt;}
.yc9{bottom:211.706667pt;}
.y15b{bottom:214.426667pt;}
.y174{bottom:215.386667pt;}
.y147{bottom:217.146667pt;}
.y1e2{bottom:217.480000pt;}
.y233{bottom:217.600000pt;}
.y223{bottom:217.626667pt;}
.y200{bottom:217.634667pt;}
.y214{bottom:217.640000pt;}
.y31b{bottom:218.426667pt;}
.y7c{bottom:219.706667pt;}
.y342{bottom:222.586667pt;}
.ya8{bottom:223.386667pt;}
.y2c8{bottom:223.706667pt;}
.y279{bottom:225.306667pt;}
.y4c{bottom:225.466667pt;}
.y13d{bottom:226.106667pt;}
.y2f1{bottom:226.920000pt;}
.y18c{bottom:227.706667pt;}
.y30{bottom:228.986667pt;}
.ye6{bottom:229.306667pt;}
.y1d6{bottom:229.946667pt;}
.ybb{bottom:231.386667pt;}
.y109{bottom:232.506667pt;}
.y239{bottom:232.826667pt;}
.y1ff{bottom:232.834667pt;}
.y1e1{bottom:232.840000pt;}
.y222{bottom:232.986667pt;}
.y213{bottom:233.000000pt;}
.y65{bottom:233.786667pt;}
.y125{bottom:234.426667pt;}
.y2a9{bottom:236.666667pt;}
.y31a{bottom:237.466667pt;}
.y13{bottom:238.426667pt;}
.yc8{bottom:239.386667pt;}
.y293{bottom:239.546667pt;}
.y341{bottom:241.626667pt;}
.y15a{bottom:242.106667pt;}
.y2c7{bottom:242.746667pt;}
.y36e{bottom:244.506667pt;}
.y146{bottom:244.666667pt;}
.y1b4{bottom:244.986667pt;}
.y2f0{bottom:245.320000pt;}
.y256{bottom:246.586667pt;}
.y238{bottom:248.186667pt;}
.y1fe{bottom:248.194667pt;}
.y212{bottom:248.200000pt;}
.y221{bottom:248.346667pt;}
.y173{bottom:250.906667pt;}
.y13c{bottom:253.626667pt;}
.y1d5{bottom:255.226667pt;}
.yd6{bottom:255.386667pt;}
.y4b{bottom:256.026667pt;}
.y319{bottom:256.506667pt;}
.ya7{bottom:258.906667pt;}
.y108{bottom:260.026667pt;}
.y340{bottom:260.666667pt;}
.y2c6{bottom:261.946667pt;}
.y18b{bottom:263.386667pt;}
.y220{bottom:263.546667pt;}
.y1fd{bottom:263.554667pt;}
.y211{bottom:263.560000pt;}
.ye5{bottom:264.826667pt;}
.y64{bottom:266.266667pt;}
.yba{bottom:266.906667pt;}
.y2f{bottom:267.226667pt;}
.y159{bottom:269.626667pt;}
.y1b3{bottom:270.266667pt;}
.y145{bottom:272.346667pt;}
.y7b{bottom:272.986667pt;}
.y318{bottom:275.546667pt;}
.y21f{bottom:278.906667pt;}
.y1fc{bottom:278.914667pt;}
.y250{bottom:278.920000pt;}
.y33f{bottom:279.706667pt;}
.y1d4{bottom:280.506667pt;}
.y2c5{bottom:280.986667pt;}
.y13b{bottom:281.306667pt;}
.yd5{bottom:282.906667pt;}
.yf1{bottom:286.426667pt;}
.ya6{bottom:286.586667pt;}
.y107{bottom:287.706667pt;}
.y228{bottom:288.826667pt;}
.y172{bottom:289.306667pt;}
.y241{bottom:289.946667pt;}
.y11e{bottom:290.400000pt;}
.y181{bottom:290.906667pt;}
.y4a{bottom:294.266667pt;}
.y1fb{bottom:294.274667pt;}
.y255{bottom:294.426667pt;}
.yb9{bottom:294.586667pt;}
.y317{bottom:294.746667pt;}
.y2e{bottom:294.906667pt;}
.y1b2{bottom:295.546667pt;}
.y158{bottom:297.306667pt;}
.y63{bottom:298.586667pt;}
.y33e{bottom:298.746667pt;}
.y144{bottom:299.906667pt;}
.y2c4{bottom:300.066667pt;}
.ye4{bottom:300.546667pt;}
.y12{bottom:300.866667pt;}
.y1d3{bottom:305.826667pt;}
.y19c{bottom:307.906667pt;}
.y13a{bottom:308.866667pt;}
.yd4{bottom:310.626667pt;}
.y316{bottom:313.826667pt;}
.ya5{bottom:314.146667pt;}
.y106{bottom:315.266667pt;}
.y11d{bottom:315.586667pt;}
.y171{bottom:316.866667pt;}
.y33d{bottom:317.986667pt;}
.y180{bottom:318.626667pt;}
.y2ff{bottom:318.786667pt;}
.y2c3{bottom:319.106667pt;}
.y1b1{bottom:320.866667pt;}
.y359{bottom:321.986667pt;}
.yc7{bottom:322.146667pt;}
.y2d{bottom:322.466667pt;}
.yf0{bottom:324.226667pt;}
.y282{bottom:324.706667pt;}
.y157{bottom:324.866667pt;}
.y7a{bottom:326.466667pt;}
.y143{bottom:327.586667pt;}
.yb8{bottom:330.146667pt;}
.y62{bottom:331.106667pt;}
.y1d2{bottom:331.266667pt;}
.y49{bottom:332.546667pt;}
.y315{bottom:332.866667pt;}
.y19b{bottom:335.586667pt;}
.y33c{bottom:337.026667pt;}
.y36d{bottom:337.986667pt;}
.yd3{bottom:338.146667pt;}
.y105{bottom:342.946667pt;}
.y139{bottom:344.546667pt;}
.y17f{bottom:346.146667pt;}
.ya4{bottom:349.826667pt;}
.y2c{bottom:350.146667pt;}
.y314{bottom:351.906667pt;}
.y156{bottom:352.546667pt;}
.y33b{bottom:356.066667pt;}
.y303{bottom:356.386667pt;}
.y1d1{bottom:356.546667pt;}
.y2c2{bottom:357.186667pt;}
.yc6{bottom:357.826667pt;}
.y2a1{bottom:358.786667pt;}
.y121{bottom:360.000000pt;}
.y48{bottom:360.226667pt;}
.y19a{bottom:363.106667pt;}
.y11{bottom:363.266667pt;}
.y61{bottom:363.426667pt;}
.y254{bottom:365.666667pt;}
.yb7{bottom:365.826667pt;}
.y2da{bottom:366.466667pt;}
.yee{bottom:368.386667pt;}
.y292{bottom:369.986667pt;}
.y104{bottom:370.466667pt;}
.y313{bottom:370.946667pt;}
.y1b0{bottom:371.426667pt;}
.y170{bottom:372.066667pt;}
.y17e{bottom:373.826667pt;}
.y33a{bottom:375.106667pt;}
.y2c1{bottom:376.386667pt;}
.ya3{bottom:377.346667pt;}
.y35a{bottom:377.826667pt;}
.y79{bottom:379.746667pt;}
.y155{bottom:380.066667pt;}
.y253{bottom:381.346667pt;}
.y1d0{bottom:381.826667pt;}
.y138{bottom:382.786667pt;}
.y197{bottom:385.346667pt;}
.y281{bottom:387.074667pt;}
.y47{bottom:387.746667pt;}
.y2b{bottom:388.386667pt;}
.y312{bottom:389.986667pt;}
.y199{bottom:390.786667pt;}
.y120{bottom:391.586667pt;}
.yb6{bottom:393.346667pt;}
.y302{bottom:393.826667pt;}
.y339{bottom:394.146667pt;}
.y2c0{bottom:395.426667pt;}
.y60{bottom:395.906667pt;}
.y1af{bottom:396.866667pt;}
.y103{bottom:398.146667pt;}
.y8d{bottom:399.586667pt;}
.y16f{bottom:399.746667pt;}
.y17d{bottom:401.346667pt;}
.y280{bottom:406.914667pt;}
.y1cf{bottom:407.106667pt;}
.y154{bottom:407.746667pt;}
.y311{bottom:409.186667pt;}
.y137{bottom:410.306667pt;}
.y21e{bottom:412.066667pt;}
.y36b{bottom:412.226667pt;}
.yed{bottom:412.706667pt;}
.ya2{bottom:413.026667pt;}
.y2bf{bottom:414.466667pt;}
.y357{bottom:415.266667pt;}
.y46{bottom:415.426667pt;}
.y2a{bottom:416.066667pt;}
.y1f1{bottom:416.546667pt;}
.y198{bottom:418.306667pt;}
.yb5{bottom:421.026667pt;}
.y1ae{bottom:422.146667pt;}
.y78{bottom:425.026667pt;}
.y10{bottom:425.666667pt;}
.y16e{bottom:427.266667pt;}
.y5f{bottom:428.226667pt;}
.y18a{bottom:429.026667pt;}
.y2a5{bottom:429.666667pt;}
.y338{bottom:429.986667pt;}
.y1ce{bottom:432.386667pt;}
.y2be{bottom:433.506667pt;}
.y102{bottom:433.666667pt;}
.y165{bottom:435.266667pt;}
.y8c{bottom:436.226667pt;}
.y136{bottom:437.986667pt;}
.y17c{bottom:439.746667pt;}
.ya1{bottom:440.546667pt;}
.y291{bottom:441.026667pt;}
.y1dc{bottom:441.666667pt;}
.y29{bottom:443.586667pt;}
.y11c{bottom:444.866667pt;}
.y153{bottom:445.986667pt;}
.y310{bottom:447.266667pt;}
.y1ad{bottom:447.426667pt;}
.yb4{bottom:448.546667pt;}
.y2bd{bottom:452.546667pt;}
.y358{bottom:452.706667pt;}
.y45{bottom:453.666667pt;}
.y193{bottom:456.546667pt;}
.yeb{bottom:457.026667pt;}
.y1cd{bottom:457.666667pt;}
.y77{bottom:460.546667pt;}
.y5e{bottom:460.706667pt;}
.y164{bottom:462.946667pt;}
.y189{bottom:464.546667pt;}
.y135{bottom:465.506667pt;}
.y17b{bottom:467.266667pt;}
.y11b{bottom:467.906667pt;}
.y2f8{bottom:468.066667pt;}
.ya0{bottom:468.226667pt;}
.y101{bottom:469.186667pt;}
.y28{bottom:471.266667pt;}
.y2bc{bottom:471.586667pt;}
.y354{bottom:471.746667pt;}
.y1ac{bottom:472.706667pt;}
.y8b{bottom:472.866667pt;}
.y152{bottom:473.506667pt;}
.y1db{bottom:474.946667pt;}
.yb3{bottom:476.226667pt;}
.y2a4{bottom:480.706667pt;}
.y44{bottom:481.346667pt;}
.y1cc{bottom:482.946667pt;}
.yd2{bottom:484.226667pt;}
.y2fe{bottom:487.106667pt;}
.yf{bottom:488.226667pt;}
.y337{bottom:489.186667pt;}
.y251{bottom:489.346667pt;}
.y163{bottom:490.466667pt;}
.y2bb{bottom:490.786667pt;}
.y28d{bottom:492.066667pt;}
.y188{bottom:492.226667pt;}
.yf6{bottom:493.026667pt;}
.y5d{bottom:493.186667pt;}
.y17a{bottom:494.946667pt;}
.y76{bottom:496.066667pt;}
.y1ab{bottom:497.986667pt;}
.y27{bottom:498.786667pt;}
.y151{bottom:501.186667pt;}
.y9f{bottom:503.746667pt;}
.y1cb{bottom:508.226667pt;}
.y335{bottom:508.386667pt;}
.y43{bottom:508.866667pt;}
.y8a{bottom:509.666667pt;}
.y2ba{bottom:509.826667pt;}
.yd1{bottom:511.746667pt;}
.y30f{bottom:518.626667pt;}
.y187{bottom:519.746667pt;}
.y26b{bottom:520.386667pt;}
.y16d{bottom:520.706667pt;}
.y124{bottom:520.866667pt;}
.y179{bottom:522.466667pt;}
.y1aa{bottom:523.266667pt;}
.ye3{bottom:524.386667pt;}
.y2fa{bottom:524.546667pt;}
.y5c{bottom:525.506667pt;}
.y26{bottom:526.306667pt;}
.y356{bottom:527.586667pt;}
.y162{bottom:528.706667pt;}
.y2b9{bottom:528.866667pt;}
.yc5{bottom:531.426667pt;}
.y75{bottom:531.746667pt;}
.y1ca{bottom:533.506667pt;}
.y42{bottom:536.573333pt;}
.y9e{bottom:539.453333pt;}
.y30e{bottom:542.333333pt;}
.y123{bottom:543.933333pt;}
.y27e{bottom:545.853333pt;}
.y89{bottom:546.333333pt;}
.y186{bottom:547.453333pt;}
.y2b8{bottom:547.933333pt;}
.y1a9{bottom:548.573333pt;}
.y178{bottom:550.013333pt;}
.ye{bottom:552.733333pt;}
.y380{bottom:553.693333pt;}
.y25{bottom:554.013333pt;}
.y161{bottom:556.413333pt;}
.y5b{bottom:558.013333pt;}
.yc4{bottom:558.973333pt;}
.ye2{bottom:559.933333pt;}
.y290{bottom:562.973333pt;}
.y41{bottom:564.093333pt;}
.y334{bottom:564.893333pt;}
.y9d{bottom:566.973333pt;}
.y74{bottom:567.293333pt;}
.y37f{bottom:569.373333pt;}
.y119{bottom:569.440000pt;}
.y88{bottom:573.853333pt;}
.y185{bottom:574.973333pt;}
.y177{bottom:577.693333pt;}
.y2a0{bottom:582.813333pt;}
.y353{bottom:583.453333pt;}
.y160{bottom:583.933333pt;}
.y1c9{bottom:584.253333pt;}
.y2b7{bottom:586.013333pt;}
.yc3{bottom:586.653333pt;}
.y2d9{bottom:587.933333pt;}
.y37e{bottom:588.413333pt;}
.y5a{bottom:590.333333pt;}
.y40{bottom:591.773333pt;}
.y24{bottom:592.253333pt;}
.y9c{bottom:594.653333pt;}
.ye1{bottom:595.613333pt;}
.y118{bottom:596.733333pt;}
.y30d{bottom:598.173333pt;}
.y1a8{bottom:599.133333pt;}
.yd0{bottom:602.653333pt;}
.y333{bottom:602.973333pt;}
.y2b6{bottom:605.053333pt;}
.y176{bottom:605.213333pt;}
.y37d{bottom:607.613333pt;}
.y1c8{bottom:609.533333pt;}
.y87{bottom:610.653333pt;}
.y267{bottom:611.133333pt;}
.y73{bottom:611.293333pt;}
.y15f{bottom:611.613333pt;}
.yd{bottom:611.773333pt;}
.y29f{bottom:614.013333pt;}
.yc2{bottom:614.173333pt;}
.y36a{bottom:616.573333pt;}
.y2f7{bottom:617.213333pt;}
.y23{bottom:619.933333pt;}
.y332{bottom:622.013333pt;}
.y9b{bottom:622.173333pt;}
.y59{bottom:622.813333pt;}
.ye0{bottom:623.133333pt;}
.y2b5{bottom:624.253333pt;}
.y1a7{bottom:624.573333pt;}
.y37c{bottom:626.653333pt;}
.y3f{bottom:630.013333pt;}
.ycf{bottom:630.173333pt;}
.y1e0{bottom:631.933333pt;}
.y150{bottom:632.893333pt;}
.y127{bottom:633.600000pt;}
.y1c7{bottom:634.813333pt;}
.y2ef{bottom:636.253333pt;}
.y27c{bottom:636.573333pt;}
.y184{bottom:638.173333pt;}
.y350{bottom:639.453333pt;}
.y331{bottom:641.053333pt;}
.y142{bottom:641.853333pt;}
.y2b3{bottom:643.293333pt;}
.y2d8{bottom:643.773333pt;}
.y37b{bottom:645.693333pt;}
.y86{bottom:647.293333pt;}
.y22{bottom:647.453333pt;}
.yb2{bottom:649.853333pt;}
.ydf{bottom:650.813333pt;}
.y134{bottom:652.413333pt;}
.y368{bottom:654.013333pt;}
.y30c{bottom:654.653333pt;}
.y58{bottom:655.293333pt;}
.y2f6{bottom:655.453333pt;}
.y72{bottom:656.413333pt;}
.y3e{bottom:657.533333pt;}
.y9a{bottom:657.853333pt;}
.y1c6{bottom:660.093333pt;}
.y14f{bottom:660.413333pt;}
.y126{bottom:662.813333pt;}
.y37a{bottom:664.733333pt;}
.y183{bottom:665.853333pt;}
.yc{bottom:670.653333pt;}
.y28c{bottom:673.533333pt;}
.y24f{bottom:674.013333pt;}
.y21{bottom:675.133333pt;}
.y352{bottom:676.893333pt;}
.yb1{bottom:677.373333pt;}
.y116{bottom:678.080000pt;}
.y2b2{bottom:678.973333pt;}
.y133{bottom:680.093333pt;}
.y2d7{bottom:681.213333pt;}
.y378{bottom:683.773333pt;}
.y85{bottom:683.933333pt;}
.y29e{bottom:684.893333pt;}
.y3d{bottom:685.213333pt;}
.y99{bottom:685.373333pt;}
.yde{bottom:686.333333pt;}
.y57{bottom:687.613333pt;}
.y14e{bottom:688.093333pt;}
.y369{bottom:691.453333pt;}
.y71{bottom:692.093333pt;}
.y182{bottom:693.373333pt;}
.y34e{bottom:695.933333pt;}
.y330{bottom:697.053333pt;}
.y2d6{bottom:700.253333pt;}
.y1a6{bottom:700.413333pt;}
.y115{bottom:703.933333pt;}
.y210{bottom:704.093333pt;}
.y28b{bottom:704.733333pt;}
.yb0{bottom:705.053333pt;}
.y132{bottom:707.613333pt;}
.y2b1{bottom:709.533333pt;}
.y377{bottom:709.853333pt;}
.y1c5{bottom:710.653333pt;}
.y98{bottom:713.053333pt;}
.y20{bottom:713.373333pt;}
.y175{bottom:715.613333pt;}
.y56{bottom:720.093333pt;}
.y84{bottom:720.573333pt;}
.yce{bottom:721.053333pt;}
.ydd{bottom:722.013333pt;}
.y3c{bottom:723.453333pt;}
.y1a5{bottom:725.693333pt;}
.y14d{bottom:726.333333pt;}
.yf5{bottom:726.813333pt;}
.y70{bottom:727.773333pt;}
.y30b{bottom:729.053333pt;}
.yaf{bottom:732.573333pt;}
.y32f{bottom:734.493333pt;}
.y16c{bottom:735.293333pt;}
.y1c4{bottom:735.933333pt;}
.yb{bottom:737.693333pt;}
.y2d5{bottom:737.853333pt;}
.y2b0{bottom:740.093333pt;}
.y97{bottom:740.573333pt;}
.y1f{bottom:740.893333pt;}
.y264{bottom:741.693333pt;}
.y131{bottom:743.293333pt;}
.y376{bottom:745.533333pt;}
.ycd{bottom:748.573333pt;}
.y3b{bottom:750.973333pt;}
.y34f{bottom:751.773333pt;}
.y55{bottom:752.413333pt;}
.y14c{bottom:754.013333pt;}
.y2ad{bottom:755.773333pt;}
.y196{bottom:756.573333pt;}
.y83{bottom:757.213333pt;}
.ydc{bottom:760.253333pt;}
.y1c3{bottom:761.213333pt;}
.y6f{bottom:763.453333pt;}
.y2f4{bottom:766.493333pt;}
.y96{bottom:768.253333pt;}
.y32d{bottom:771.933333pt;}
.y16b{bottom:773.533333pt;}
.y2d4{bottom:775.333333pt;}
.y28a{bottom:775.653333pt;}
.y375{bottom:776.133333pt;}
.yc1{bottom:776.293333pt;}
.y1e{bottom:779.173333pt;}
.y130{bottom:781.573333pt;}
.y232{bottom:782.053333pt;}
.ya{bottom:783.813333pt;}
.y113{bottom:784.160000pt;}
.y195{bottom:784.293333pt;}
.y54{bottom:784.933333pt;}
.y1c2{bottom:786.693333pt;}
.y278{bottom:787.013333pt;}
.ydb{bottom:787.813333pt;}
.y3a{bottom:789.253333pt;}
.y32c{bottom:791.013333pt;}
.y82{bottom:794.053333pt;}
.y2cf{bottom:794.373333pt;}
.y6e{bottom:799.013333pt;}
.y16a{bottom:801.253333pt;}
.y1a4{bottom:801.573333pt;}
.y30a{bottom:803.333333pt;}
.y95{bottom:803.813333pt;}
.y2f3{bottom:803.973333pt;}
.y374{bottom:806.693333pt;}
.y1d{bottom:806.853333pt;}
.y34a{bottom:808.293333pt;}
.y12f{bottom:809.253333pt;}
.y32b{bottom:810.053333pt;}
.y112{bottom:811.013333pt;}
.y192{bottom:811.813333pt;}
.y1c1{bottom:811.973333pt;}
.y263{bottom:812.613333pt;}
.yda{bottom:815.493333pt;}
.y39{bottom:816.933333pt;}
.y53{bottom:817.413333pt;}
.y373{bottom:822.373333pt;}
.yf4{bottom:823.493333pt;}
.y9{bottom:825.093333pt;}
.y1a3{bottom:826.853333pt;}
.y34d{bottom:827.493333pt;}
.y169{bottom:828.773333pt;}
.y81{bottom:830.693333pt;}
.y94{bottom:831.493333pt;}
.y111{bottom:834.053333pt;}
.y1c{bottom:834.373333pt;}
.y6d{bottom:834.693333pt;}
.y12e{bottom:836.773333pt;}
.y1c0{bottom:837.253333pt;}
.y191{bottom:839.493333pt;}
.y309{bottom:840.773333pt;}
.y2f2{bottom:841.413333pt;}
.yd9{bottom:843.013333pt;}
.y262{bottom:843.813333pt;}
.y38{bottom:844.453333pt;}
.y32a{bottom:845.893333pt;}
.y29d{bottom:846.533333pt;}
.y52{bottom:849.733333pt;}
.y2d2{bottom:850.213333pt;}
.yf3{bottom:851.013333pt;}
.y1a2{bottom:852.293333pt;}
.y110{bottom:856.933333pt;}
.y93{bottom:859.013333pt;}
.y308{bottom:859.813333pt;}
.y1b{bottom:862.053333pt;}
.y1bf{bottom:862.533333pt;}
.y12d{bottom:864.293333pt;}
.y347{bottom:865.573333pt;}
.y289{bottom:866.373333pt;}
.yc0{bottom:867.013333pt;}
.y80{bottom:867.333333pt;}
.y6c{bottom:870.373333pt;}
.yd8{bottom:870.693333pt;}
.y37{bottom:872.133333pt;}
.y6{bottom:874.213333pt;}
.y141{bottom:875.013333pt;}
.y1a1{bottom:877.573333pt;}
.y1dd{bottom:877.893333pt;}
.y372{bottom:878.213333pt;}
.y329{bottom:881.413333pt;}
.y51{bottom:882.213333pt;}
.y92{bottom:886.693333pt;}
.y2cd{bottom:887.653333pt;}
.y1be{bottom:887.813333pt;}
.y10f{bottom:887.973333pt;}
.y1a{bottom:889.573333pt;}
.y14b{bottom:891.973333pt;}
.ybf{bottom:894.693333pt;}
.y260{bottom:894.853333pt;}
.y2ee{bottom:897.253333pt;}
.y36{bottom:899.653333pt;}
.y12c{bottom:902.693333pt;}
.y1a0{bottom:902.853333pt;}
.y7f{bottom:903.973333pt;}
.y6b{bottom:906.053333pt;}
.yd7{bottom:906.213333pt;}
.y1bd{bottom:913.093333pt;}
.y91{bottom:914.213333pt;}
.y50{bottom:914.533333pt;}
.y371{bottom:915.653333pt;}
.y5{bottom:915.973333pt;}
.y328{bottom:917.093333pt;}
.y19{bottom:917.253333pt;}
.y27b{bottom:917.413333pt;}
.yae{bottom:922.213333pt;}
.y35{bottom:927.333333pt;}
.y19f{bottom:928.133333pt;}
.y12b{bottom:930.213333pt;}
.y327{bottom:932.773333pt;}
.y288{bottom:937.253333pt;}
.y1bc{bottom:938.373333pt;}
.y349{bottom:939.813333pt;}
.y7e{bottom:940.773333pt;}
.y6a{bottom:941.733333pt;}
.y90{bottom:941.893333pt;}
.y18{bottom:944.773333pt;}
.y25f{bottom:945.893333pt;}
.y4f{bottom:947.013333pt;}
.y4{bottom:949.733333pt;}
.yad{bottom:949.893333pt;}
.y326{bottom:951.813333pt;}
.y2ed{bottom:953.093333pt;}
.y19e{bottom:953.413333pt;}
.y34{bottom:954.853333pt;}
.y2ac{bottom:957.093333pt;}
.ybe{bottom:957.893333pt;}
.y1bb{bottom:963.653333pt;}
.y24d{bottom:966.053333pt;}
.y325{bottom:970.853333pt;}
.y370{bottom:972.133333pt;}
.y17{bottom:972.453333pt;}
.y25c{bottom:977.093333pt;}
.y346{bottom:977.253333pt;}
.y69{bottom:977.413333pt;}
.y19d{bottom:978.693333pt;}
.y4e{bottom:979.333333pt;}
.y20d{bottom:980.773333pt;}
.y3{bottom:982.373333pt;}
.y33{bottom:982.533333pt;}
.ybd{bottom:985.413333pt;}
.y1ba{bottom:988.933333pt;}
.y324{bottom:989.893333pt;}
.y2eb{bottom:990.533333pt;}
.y4d{bottom:1005.093333pt;}
.y16{bottom:1007.973333pt;}
.y322{bottom:1008.933333pt;}
.y2{bottom:1011.520000pt;}
.y32{bottom:1013.120000pt;}
.y1b9{bottom:1014.400000pt;}
.y15{bottom:1037.920000pt;}
.y1{bottom:1047.840000pt;}
.h4d{height:18.400000pt;}
.h4e{height:18.432000pt;}
.h68{height:25.440000pt;}
.h34{height:30.400000pt;}
.h31{height:30.560000pt;}
.h1d{height:31.840000pt;}
.h13{height:31.872000pt;}
.h5e{height:36.672000pt;}
.h4f{height:36.800000pt;}
.h52{height:36.832000pt;}
.h60{height:37.600000pt;}
.h3b{height:39.680000pt;}
.h11{height:43.520000pt;}
.h12{height:43.680000pt;}
.h1a{height:45.920000pt;}
.h18{height:46.560000pt;}
.h26{height:46.592000pt;}
.h23{height:47.647188pt;}
.h19{height:47.840000pt;}
.h21{height:48.062188pt;}
.h1c{height:49.760000pt;}
.h35{height:50.240000pt;}
.h33{height:50.272000pt;}
.h32{height:50.400000pt;}
.h49{height:50.432000pt;}
.h1b{height:52.160000pt;}
.h51{height:55.200000pt;}
.h64{height:55.232000pt;}
.h15{height:55.402500pt;}
.h17{height:55.536000pt;}
.h62{height:55.840000pt;}
.hc{height:57.406250pt;}
.hb{height:57.906250pt;}
.h47{height:59.680000pt;}
.h20{height:61.295000pt;}
.h2e{height:61.312000pt;}
.h1f{height:61.410000pt;}
.h5{height:62.812500pt;}
.he{height:63.656250pt;}
.hf{height:66.625000pt;}
.ha{height:66.750000pt;}
.h36{height:70.112000pt;}
.h43{height:70.240000pt;}
.h42{height:70.272000pt;}
.h56{height:73.600000pt;}
.h5d{height:73.632000pt;}
.h66{height:74.240000pt;}
.hd{height:88.777500pt;}
.h3f{height:90.080000pt;}
.h38{height:90.112000pt;}
.h4b{height:90.272000pt;}
.h5a{height:92.032000pt;}
.h50{height:92.640000pt;}
.h61{height:92.672000pt;}
.h10{height:93.937500pt;}
.h1e{height:96.750000pt;}
.h4{height:100.125000pt;}
.h6{height:102.937500pt;}
.h30{height:107.360000pt;}
.h41{height:109.920000pt;}
.h3d{height:109.952000pt;}
.h65{height:110.272000pt;}
.h58{height:110.400000pt;}
.h55{height:110.432000pt;}
.h5f{height:111.040000pt;}
.h63{height:111.072000pt;}
.h9{height:111.472500pt;}
.h8{height:112.500000pt;}
.h7{height:122.062500pt;}
.h2{height:122.152500pt;}
.h29{height:122.592000pt;}
.h16{height:124.320000pt;}
.h67{height:129.472000pt;}
.h37{height:129.760000pt;}
.h45{height:129.792000pt;}
.h46{height:130.560000pt;}
.h3{height:133.500000pt;}
.h5c{height:147.226667pt;}
.h59{height:148.506667pt;}
.h5b{height:148.640000pt;}
.h4c{height:149.626667pt;}
.h3e{height:149.786667pt;}
.h2a{height:153.280000pt;}
.h39{height:169.600000pt;}
.h44{height:180.826667pt;}
.h2d{height:184.000000pt;}
.h2f{height:184.026667pt;}
.h3a{height:189.306667pt;}
.h4a{height:212.186667pt;}
.h24{height:214.586667pt;}
.h54{height:220.826667pt;}
.h48{height:223.386667pt;}
.h2c{height:230.106667pt;}
.h14{height:233.146667pt;}
.h3c{height:240.346667pt;}
.h22{height:245.306667pt;}
.h57{height:260.346667pt;}
.h2b{height:260.706667pt;}
.h27{height:276.026667pt;}
.h28{height:291.386667pt;}
.h25{height:306.746667pt;}
.h53{height:331.906667pt;}
.h40{height:421.986667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3d{width:48.160000pt;}
.w3c{width:52.000000pt;}
.w35{width:54.720000pt;}
.w36{width:55.040000pt;}
.w3a{width:56.000000pt;}
.w37{width:57.952000pt;}
.w3b{width:58.272000pt;}
.w1f{width:59.712000pt;}
.w38{width:65.440000pt;}
.w39{width:65.472000pt;}
.w27{width:65.600000pt;}
.w19{width:70.880000pt;}
.w2e{width:73.760000pt;}
.w16{width:74.240000pt;}
.w14{width:74.560000pt;}
.w11{width:89.280000pt;}
.w25{width:93.440000pt;}
.w2c{width:93.600000pt;}
.w2b{width:93.632000pt;}
.w2a{width:93.792000pt;}
.w10{width:95.392000pt;}
.w1b{width:100.320000pt;}
.w34{width:101.760000pt;}
.w28{width:102.912000pt;}
.w1c{width:104.032000pt;}
.w1d{width:104.192000pt;}
.w12{width:106.432000pt;}
.w1a{width:107.072000pt;}
.w30{width:110.400000pt;}
.w21{width:112.480000pt;}
.w23{width:112.640000pt;}
.w22{width:112.672000pt;}
.w29{width:112.800000pt;}
.wf{width:113.120000pt;}
.w1e{width:120.480000pt;}
.w32{width:122.112000pt;}
.w33{width:123.872000pt;}
.w31{width:124.032000pt;}
.w13{width:128.672000pt;}
.w15{width:138.266667pt;}
.w2d{width:142.746667pt;}
.wd{width:148.960000pt;}
.w3{width:178.586667pt;}
.wb{width:185.120000pt;}
.w5{width:197.626667pt;}
.wa{width:228.640000pt;}
.w9{width:258.880000pt;}
.wc{width:263.520000pt;}
.w7{width:278.146667pt;}
.w6{width:286.746667pt;}
.w2f{width:367.106667pt;}
.w17{width:371.266667pt;}
.w4{width:386.466667pt;}
.w20{width:403.586667pt;}
.w26{width:471.453333pt;}
.w24{width:565.693333pt;}
.w18{width:585.053333pt;}
.w8{width:595.200000pt;}
.we{width:639.973333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:6.880000pt;}
.x44{left:8.320000pt;}
.x17{left:9.440000pt;}
.x55{left:10.720000pt;}
.x3e{left:14.560000pt;}
.x4e{left:16.320000pt;}
.x61{left:18.880000pt;}
.x38{left:20.160000pt;}
.x52{left:21.760000pt;}
.x5d{left:22.874667pt;}
.x37{left:23.840000pt;}
.x3d{left:25.920000pt;}
.x2d{left:27.293333pt;}
.x3c{left:28.800000pt;}
.x40{left:30.874667pt;}
.x3b{left:32.640000pt;}
.x5c{left:34.400000pt;}
.x46{left:35.354667pt;}
.x54{left:36.640000pt;}
.x57{left:38.714667pt;}
.x43{left:39.840000pt;}
.x53{left:41.120000pt;}
.x41{left:42.560000pt;}
.x42{left:44.346667pt;}
.x25{left:46.266667pt;}
.x4c{left:47.354667pt;}
.x4b{left:48.840000pt;}
.x4a{left:51.834667pt;}
.x20{left:67.226667pt;}
.x2e{left:70.400000pt;}
.x32{left:91.552000pt;}
.x2a{left:93.151988pt;}
.x31{left:94.591988pt;}
.x30{left:108.351988pt;}
.x1d{left:111.840000pt;}
.x7{left:113.471988pt;}
.x2f{left:117.626667pt;}
.x8{left:126.591988pt;}
.x1f{left:132.960000pt;}
.x12{left:137.466655pt;}
.x1e{left:148.986655pt;}
.x21{left:151.360000pt;}
.xf{left:161.466655pt;}
.x3{left:169.946655pt;}
.x19{left:178.266655pt;}
.x24{left:180.000000pt;}
.x3f{left:185.626667pt;}
.x9{left:188.346655pt;}
.x22{left:190.266655pt;}
.x1{left:200.986655pt;}
.x23{left:202.426655pt;}
.x33{left:205.306667pt;}
.x4d{left:208.346667pt;}
.x2{left:221.306655pt;}
.x58{left:225.306667pt;}
.x47{left:227.226667pt;}
.x5{left:229.786655pt;}
.x45{left:235.226667pt;}
.x39{left:253.026667pt;}
.x4{left:257.506655pt;}
.x4f{left:283.906667pt;}
.x15{left:293.346667pt;}
.x16{left:296.066667pt;}
.xa{left:297.026655pt;}
.x34{left:301.346667pt;}
.x3a{left:327.906667pt;}
.x56{left:332.066667pt;}
.x48{left:340.546667pt;}
.x59{left:350.146667pt;}
.x1b{left:359.746655pt;}
.x1c{left:363.106655pt;}
.x1a{left:365.666655pt;}
.xc{left:368.546655pt;}
.xd{left:376.066655pt;}
.x11{left:388.866655pt;}
.x10{left:391.586655pt;}
.x13{left:392.866655pt;}
.xe{left:394.306655pt;}
.x6{left:396.866655pt;}
.x18{left:401.666667pt;}
.x27{left:410.240000pt;}
.x5e{left:416.253333pt;}
.x26{left:433.853322pt;}
.x28{left:441.853322pt;}
.x2c{left:454.560000pt;}
.x2b{left:469.533322pt;}
.x5a{left:472.893333pt;}
.x29{left:487.133322pt;}
.x50{left:491.773333pt;}
.x35{left:498.493333pt;}
.x5f{left:539.133333pt;}
.x49{left:567.133333pt;}
.x51{left:586.213333pt;}
.x5b{left:597.413333pt;}
.x36{left:627.813333pt;}
.x60{left:651.013333pt;}
.xb{left:680.453322pt;}
}




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