
    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_3b007edea6cfe3d55e66eab6.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.884277;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_3c3da3799648b24fdef5080f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.106934;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_caa19db807be689b065309cc.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_97c470a99a2d8506c1e50271.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_cd8a36ad79d73c675c8b7fd6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.119629;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_a544f4fb08967d8b557dc18c.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2b7f1953ad943eb2158c7400.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.981934;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_705cbf9f4c805543513c84e1.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_adc3637f112c47ec304e0e0a.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_26fe157b85e15a84fbc19212.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.853027;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_817d03ff0f58aaeca514c59e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.850586;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_5ad6cc1bf506c59baf75e5de.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_e4b41d69040dcd4e26ffe7f8.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.933105;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);}
.v3{vertical-align:-33.120000px;}
.v1{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:5.760000px;}
.v2{vertical-align:27.360000px;}
.ls34{letter-spacing:-1.746000px;}
.ls11{letter-spacing:-1.026000px;}
.ls7{letter-spacing:-0.984000px;}
.ls5{letter-spacing:-0.828000px;}
.ls9{letter-spacing:-0.720000px;}
.ls1e{letter-spacing:-0.457800px;}
.ls3c{letter-spacing:-0.450600px;}
.ls4{letter-spacing:-0.414600px;}
.ls1a{letter-spacing:-0.378600px;}
.ls23{letter-spacing:-0.366000px;}
.ls1d{letter-spacing:-0.350400px;}
.ls25{letter-spacing:-0.306600px;}
.ls12{letter-spacing:-0.305400px;}
.ls3b{letter-spacing:-0.269400px;}
.ls1b{letter-spacing:-0.262200px;}
.ls2f{letter-spacing:-0.259800px;}
.ls30{letter-spacing:-0.223800px;}
.ls2d{letter-spacing:-0.181200px;}
.lsd{letter-spacing:-0.152400px;}
.ls3a{letter-spacing:-0.137400px;}
.ls8{letter-spacing:-0.132600px;}
.lsc{letter-spacing:-0.118200px;}
.ls6{letter-spacing:-0.109200px;}
.ls1{letter-spacing:-0.106800px;}
.ls2e{letter-spacing:-0.053280px;}
.ls1c{letter-spacing:-0.037440px;}
.ls0{letter-spacing:0.000000px;}
.ls27{letter-spacing:0.010560px;}
.ls3d{letter-spacing:0.017280px;}
.ls39{letter-spacing:0.028800px;}
.ls38{letter-spacing:0.045360px;}
.lse{letter-spacing:0.070560px;}
.ls26{letter-spacing:0.106800px;}
.ls37{letter-spacing:0.136080px;}
.ls35{letter-spacing:0.137280px;}
.ls29{letter-spacing:0.195600px;}
.ls33{letter-spacing:0.206400px;}
.ls32{letter-spacing:0.206640px;}
.ls2{letter-spacing:0.216000px;}
.ls16{letter-spacing:0.256200px;}
.ls31{letter-spacing:0.259800px;}
.lsf{letter-spacing:0.262080px;}
.ls10{letter-spacing:0.262200px;}
.ls36{letter-spacing:0.269280px;}
.lsb{letter-spacing:0.305400px;}
.ls19{letter-spacing:0.341400px;}
.ls22{letter-spacing:0.354000px;}
.ls13{letter-spacing:0.612000px;}
.ls1f{letter-spacing:1.548000px;}
.ls2a{letter-spacing:1.745280px;}
.lsa{letter-spacing:5.214240px;}
.ls28{letter-spacing:5.345280px;}
.ls21{letter-spacing:8.225280px;}
.ls2b{letter-spacing:8.945280px;}
.ls3{letter-spacing:9.665280px;}
.ls15{letter-spacing:11.669760px;}
.ls20{letter-spacing:16.145280px;}
.ls17{letter-spacing:26.201280px;}
.ls14{letter-spacing:27.665280px;}
.ls2c{letter-spacing:31.985280px;}
.ls18{letter-spacing:69.989760px;}
.ls24{letter-spacing:193.961280px;}
.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;}
}
.ws13{word-spacing:-23.760120px;}
.ws12{word-spacing:-23.418720px;}
.ws16{word-spacing:-23.381280px;}
.ws18{word-spacing:-19.962720px;}
.ws15{word-spacing:-19.026720px;}
.ws8{word-spacing:-18.720120px;}
.wsb{word-spacing:-18.676920px;}
.ws19{word-spacing:-18.610320px;}
.ws5{word-spacing:-18.414720px;}
.ws6{word-spacing:-18.305520px;}
.wsa{word-spacing:-18.262320px;}
.ws14{word-spacing:-18.152520px;}
.wsd{word-spacing:-18.109320px;}
.wse{word-spacing:-18.000120px;}
.ws17{word-spacing:-17.956920px;}
.ws1a{word-spacing:-17.694720px;}
.wsf{word-spacing:-17.586720px;}
.wsc{word-spacing:-17.388720px;}
.ws1e{word-spacing:-16.873080px;}
.ws1f{word-spacing:-16.819680px;}
.ws20{word-spacing:-16.668720px;}
.ws0{word-spacing:-16.613280px;}
.ws1b{word-spacing:-16.560000px;}
.ws1{word-spacing:-16.506480px;}
.ws1c{word-spacing:-16.353480px;}
.ws27{word-spacing:-15.275640px;}
.ws3{word-spacing:-15.228000px;}
.ws10{word-spacing:-15.226440px;}
.ws21{word-spacing:-14.999040px;}
.ws26{word-spacing:-14.987520px;}
.ws4{word-spacing:-14.970240px;}
.ws9{word-spacing:-14.852040px;}
.ws7{word-spacing:-14.837640px;}
.ws23{word-spacing:-13.410720px;}
.ws22{word-spacing:-13.368360px;}
.ws24{word-spacing:-13.229520px;}
.ws1d{word-spacing:-13.186920px;}
.ws25{word-spacing:-13.141320px;}
.ws11{word-spacing:-11.609280px;}
.ws2{word-spacing:0.000000px;}
._2b{margin-left:-21.787200px;}
._1e{margin-left:-17.505480px;}
._1b{margin-left:-16.189440px;}
._22{margin-left:-14.541360px;}
._1f{margin-left:-12.001920px;}
._1c{margin-left:-10.027560px;}
._23{margin-left:-8.963520px;}
._1d{margin-left:-7.702080px;}
._d{margin-left:-5.497920px;}
._8{margin-left:-4.040640px;}
._6{margin-left:-2.119680px;}
._2{margin-left:-1.062000px;}
._0{width:1.075680px;}
._1{width:2.958000px;}
._9{width:4.527120px;}
._c{width:5.785920px;}
._7{width:7.257600px;}
._5{width:9.015120px;}
._4{width:10.068480px;}
._16{width:11.284320px;}
._18{width:13.117680px;}
._e{width:14.506560px;}
._a{width:15.883200px;}
._b{width:16.925760px;}
._3d{width:18.279120px;}
._1a{width:19.792080px;}
._17{width:21.731040px;}
._f{width:23.117760px;}
._10{width:24.452400px;}
._24{width:26.429760px;}
._12{width:27.555840px;}
._11{width:29.344320px;}
._2e{width:30.404160px;}
._26{width:31.662720px;}
._25{width:33.186240px;}
._2d{width:34.202880px;}
._14{width:35.305920px;}
._15{width:36.564480px;}
._13{width:37.756800px;}
._19{width:39.548160px;}
._2f{width:41.002560px;}
._2c{width:42.128640px;}
._2a{width:44.132160px;}
._28{width:45.271200px;}
._29{width:46.510320px;}
._27{width:48.468960px;}
._32{width:49.944960px;}
._33{width:51.203520px;}
._40{width:53.196240px;}
._3b{width:54.366240px;}
._3c{width:55.502400px;}
._39{width:62.201520px;}
._3a{width:63.325440px;}
._44{width:64.540800px;}
._31{width:66.545280px;}
._20{width:69.072960px;}
._21{width:80.092800px;}
._46{width:88.149600px;}
._45{width:89.291520px;}
._37{width:92.985120px;}
._38{width:94.076640px;}
._30{width:109.001280px;}
._47{width:115.390080px;}
._48{width:117.815520px;}
._3f{width:120.506880px;}
._3e{width:121.941120px;}
._34{width:162.925200px;}
._35{width:164.007360px;}
._36{width:165.124800px;}
._42{width:167.328000px;}
._41{width:187.384800px;}
._3{width:193.961280px;}
._43{width:325.490160px;}
._4a{width:652.381920px;}
._49{width:653.656320px;}
.fc3{color:rgb(54,95,145);}
.fc2{color:rgb(255,0,0);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:5.760000px;}
.fsc{font-size:41.760000px;}
.fs8{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fsb{font-size:84.240000px;}
.fsa{font-size:95.760000px;}
.fs1{font-size:108.000000px;}
.fs9{font-size:120.240000px;}
.fs4{font-size:167.760000px;}
.fs5{font-size:167.904000px;}
.fs6{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y3c{bottom:2.700000px;}
.y38{bottom:2.985000px;}
.y236{bottom:3.225000px;}
.y202{bottom:3.240000px;}
.y20c{bottom:3.405000px;}
.y1ff{bottom:3.420000px;}
.y22e{bottom:3.435000px;}
.y1ef{bottom:3.585000px;}
.y1d5{bottom:3.600000px;}
.y2f4{bottom:3.780000px;}
.y32d{bottom:3.795000px;}
.y23{bottom:3.951150px;}
.y2fc{bottom:3.960000px;}
.y30b{bottom:4.125000px;}
.y301{bottom:4.140000px;}
.y2c6{bottom:4.305000px;}
.y2b2{bottom:4.320000px;}
.y2b3{bottom:4.500000px;}
.y2f3{bottom:4.680000px;}
.y2f2{bottom:4.695000px;}
.y1d7{bottom:5.040000px;}
.y2cb{bottom:5.220000px;}
.y2c5{bottom:5.385000px;}
.y2b7{bottom:5.400000px;}
.y2f8{bottom:5.760000px;}
.y2f6{bottom:5.940000px;}
.y334{bottom:6.300000px;}
.y337{bottom:6.480000px;}
.y338{bottom:6.660000px;}
.y342{bottom:6.825000px;}
.y32f{bottom:6.840000px;}
.y2fe{bottom:7.020000px;}
.y30c{bottom:7.185000px;}
.y2fd{bottom:7.200000px;}
.y24d{bottom:7.560000px;}
.y343{bottom:7.725000px;}
.y1f6{bottom:7.731000px;}
.y1d9{bottom:7.740000px;}
.y331{bottom:9.000000px;}
.y17{bottom:10.484850px;}
.y1d1{bottom:10.980000px;}
.y237{bottom:11.865000px;}
.y203{bottom:11.880000px;}
.y233{bottom:12.045000px;}
.y1e4{bottom:12.060000px;}
.y1ed{bottom:12.225000px;}
.y1f5{bottom:12.231000px;}
.y1d3{bottom:12.240000px;}
.y1cb{bottom:13.320000px;}
.y1eb{bottom:14.385000px;}
.y3b{bottom:16.560000px;}
.y309{bottom:17.805000px;}
.y2fa{bottom:17.820000px;}
.y332{bottom:19.080000px;}
.y243{bottom:19.260000px;}
.y33a{bottom:19.440000px;}
.y235{bottom:20.505000px;}
.y201{bottom:20.520000px;}
.y231{bottom:20.685000px;}
.y1fe{bottom:20.700000px;}
.y20b{bottom:20.730000px;}
.y1fb{bottom:20.880000px;}
.y32b{bottom:21.960000px;}
.y22{bottom:22.131150px;}
.y247{bottom:22.140000px;}
.y2f0{bottom:24.840000px;}
.y3d{bottom:25.920000px;}
.y212{bottom:29.160000px;}
.y20d{bottom:29.190000px;}
.y232{bottom:29.325000px;}
.y229{bottom:29.520000px;}
.y3a{bottom:30.420000px;}
.y2c{bottom:32.295000px;}
.y2e{bottom:32.430000px;}
.y1d0{bottom:35.280000px;}
.y239{bottom:37.785000px;}
.y211{bottom:37.800000px;}
.y20a{bottom:37.830000px;}
.y207{bottom:37.980000px;}
.y230{bottom:38.010000px;}
.y1fc{bottom:38.160000px;}
.y1ea{bottom:38.865000px;}
.y241{bottom:41.940000px;}
.y36{bottom:42.585000px;}
.y21{bottom:43.191150px;}
.y246{bottom:47.880000px;}
.y210{bottom:55.080000px;}
.y209{bottom:55.110000px;}
.y206{bottom:55.260000px;}
.y1cf{bottom:61.200000px;}
.y20{bottom:62.811150px;}
.y1e9{bottom:64.785000px;}
.y205{bottom:72.360000px;}
.y245{bottom:73.800000px;}
.y1f{bottom:80.811150px;}
.y1ce{bottom:87.120000px;}
.y1e8{bottom:90.525000px;}
.y2b{bottom:93.135000px;}
.y1e{bottom:101.871150px;}
.y1c5{bottom:111.456000px;}
.y1e7{bottom:116.445000px;}
.y114{bottom:116.676000px;}
.y2e1{bottom:117.036000px;}
.y61{bottom:120.816000px;}
.y1f4{bottom:120.825000px;}
.y1d{bottom:121.491150px;}
.y10d{bottom:123.516000px;}
.y1b1{bottom:124.416000px;}
.y18e{bottom:126.576000px;}
.y254{bottom:126.936000px;}
.y70{bottom:127.116000px;}
.y16f{bottom:129.456000px;}
.y225{bottom:131.076000px;}
.y23a{bottom:131.976000px;}
.y145{bottom:132.156000px;}
.y124{bottom:134.316000px;}
.y93{bottom:136.476000px;}
.y329{bottom:136.836000px;}
.yd6{bottom:137.376000px;}
.y1c{bottom:138.771150px;}
.y1c4{bottom:139.896000px;}
.y6a{bottom:142.776000px;}
.y322{bottom:144.756000px;}
.y113{bottom:145.116000px;}
.y1e6{bottom:147.465000px;}
.y238{bottom:148.005000px;}
.y2e0{bottom:151.050000px;}
.y10c{bottom:151.950000px;}
.y1b0{bottom:152.850000px;}
.y2a{bottom:154.155000px;}
.y18d{bottom:155.010000px;}
.y253{bottom:155.370000px;}
.y1b{bottom:156.045150px;}
.y16e{bottom:158.070000px;}
.y28b{bottom:158.790000px;}
.y60{bottom:158.970000px;}
.y224{bottom:159.510000px;}
.y2ee{bottom:160.410000px;}
.y144{bottom:160.770000px;}
.y123{bottom:162.750000px;}
.y26a{bottom:163.110000px;}
.y92{bottom:164.910000px;}
.y1f3{bottom:165.465000px;}
.yd5{bottom:165.810000px;}
.y1c3{bottom:171.930000px;}
.y112{bottom:173.550000px;}
.y328{bottom:173.730000px;}
.y1a{bottom:174.045150px;}
.y10b{bottom:180.390000px;}
.y1af{bottom:181.290000px;}
.y321{bottom:181.650000px;}
.y6f{bottom:181.830000px;}
.y2ac{bottom:182.370000px;}
.y18c{bottom:183.450000px;}
.y1f2{bottom:183.465000px;}
.y69{bottom:183.810000px;}
.y2df{bottom:184.890000px;}
.y16d{bottom:186.510000px;}
.y32{bottom:186.690000px;}
.y66{bottom:186.870000px;}
.y28a{bottom:187.230000px;}
.y223{bottom:187.950000px;}
.y2b0{bottom:188.490000px;}
.y143{bottom:189.210000px;}
.y122{bottom:191.190000px;}
.y269{bottom:191.550000px;}
.y91{bottom:193.350000px;}
.yd4{bottom:194.250000px;}
.y19{bottom:194.745150px;}
.y5f{bottom:197.130000px;}
.y234{bottom:200.565000px;}
.y1f1{bottom:201.465000px;}
.y111{bottom:201.990000px;}
.yaf{bottom:205.590000px;}
.y10a{bottom:208.830000px;}
.y1ae{bottom:209.730000px;}
.y327{bottom:210.450000px;}
.y2ab{bottom:210.810000px;}
.y18b{bottom:211.890000px;}
.y68{bottom:212.250000px;}
.y158{bottom:214.950000px;}
.y29{bottom:214.995000px;}
.y1c2{bottom:215.310000px;}
.y289{bottom:215.670000px;}
.y222{bottom:216.390000px;}
.y18{bottom:217.245150px;}
.y1bf{bottom:217.650000px;}
.y320{bottom:218.550000px;}
.y2af{bottom:218.730000px;}
.y2de{bottom:218.910000px;}
.y1f0{bottom:219.465000px;}
.y121{bottom:219.630000px;}
.y268{bottom:220.170000px;}
.y142{bottom:221.250000px;}
.y90{bottom:221.790000px;}
.yd3{bottom:222.690000px;}
.y1a6{bottom:222.870000px;}
.y31{bottom:224.850000px;}
.y110{bottom:230.430000px;}
.y5e{bottom:235.290000px;}
.y22f{bottom:235.665000px;}
.y109{bottom:237.450000px;}
.y1ee{bottom:237.465000px;}
.y6e{bottom:237.810000px;}
.y1ad{bottom:238.170000px;}
.y65{bottom:238.530000px;}
.y2aa{bottom:239.250000px;}
.y18a{bottom:240.330000px;}
.y252{bottom:240.690000px;}
.y157{bottom:243.390000px;}
.yae{bottom:243.750000px;}
.y288{bottom:244.110000px;}
.y221{bottom:244.830000px;}
.y1be{bottom:246.090000px;}
.y326{bottom:247.350000px;}
.y120{bottom:248.070000px;}
.y267{bottom:248.610000px;}
.y8f{bottom:250.230000px;}
.yd2{bottom:251.130000px;}
.y1a5{bottom:251.310000px;}
.y67{bottom:251.490000px;}
.y2dd{bottom:252.930000px;}
.y141{bottom:253.830000px;}
.y2d{bottom:254.385000px;}
.y24{bottom:254.520000px;}
.y31f{bottom:255.270000px;}
.y1ec{bottom:255.465000px;}
.y2ae{bottom:256.710000px;}
.y10f{bottom:258.870000px;}
.y30{bottom:263.010000px;}
.y5d{bottom:264.090000px;}
.y108{bottom:265.890000px;}
.y6d{bottom:266.250000px;}
.y1ac{bottom:266.610000px;}
.y1c1{bottom:266.970000px;}
.y2a9{bottom:267.690000px;}
.y189{bottom:268.770000px;}
.y251{bottom:269.130000px;}
.y156{bottom:271.830000px;}
.y287{bottom:272.550000px;}
.y220{bottom:273.495000px;}
.y1bd{bottom:274.575000px;}
.y28{bottom:275.835000px;}
.y11f{bottom:276.555000px;}
.y266{bottom:277.095000px;}
.y8e{bottom:278.895000px;}
.yd1{bottom:279.615000px;}
.yad{bottom:281.955000px;}
.y1e5{bottom:282.135000px;}
.y140{bottom:282.315000px;}
.yf5{bottom:283.215000px;}
.y1a4{bottom:283.395000px;}
.y2dc{bottom:286.995000px;}
.y2ad{bottom:287.175000px;}
.y10e{bottom:287.355000px;}
.y22d{bottom:288.240000px;}
.y22c{bottom:288.255000px;}
.y64{bottom:290.235000px;}
.y31e{bottom:292.215000px;}
.y5c{bottom:292.575000px;}
.y107{bottom:294.375000px;}
.y2a8{bottom:296.175000px;}
.y188{bottom:297.255000px;}
.y250{bottom:297.615000px;}
.y325{bottom:297.975000px;}
.y1ab{bottom:298.695000px;}
.y155{bottom:300.315000px;}
.y2f{bottom:301.215000px;}
.y21f{bottom:301.935000px;}
.y1bc{bottom:303.015000px;}
.y11e{bottom:305.175000px;}
.y265{bottom:305.535000px;}
.y8d{bottom:307.335000px;}
.yd0{bottom:308.055000px;}
.y6c{bottom:308.415000px;}
.y1e3{bottom:308.775000px;}
.y13f{bottom:310.755000px;}
.y324{bottom:313.995000px;}
.yf4{bottom:315.795000px;}
.y1a3{bottom:319.575000px;}
.yac{bottom:320.295000px;}
.y2db{bottom:320.835000px;}
.y5b{bottom:321.015000px;}
.y106{bottom:322.815000px;}
.y22b{bottom:323.535000px;}
.y2a7{bottom:324.615000px;}
.y187{bottom:325.875000px;}
.y24f{bottom:326.055000px;}
.y154{bottom:328.755000px;}
.y31d{bottom:328.935000px;}
.y286{bottom:329.655000px;}
.y21e{bottom:330.375000px;}
.y1bb{bottom:331.455000px;}
.y11d{bottom:333.615000px;}
.y1aa{bottom:335.055000px;}
.y8c{bottom:335.775000px;}
.ycf{bottom:336.495000px;}
.y27{bottom:336.705000px;}
.y264{bottom:337.575000px;}
.y13e{bottom:339.195000px;}
.y16{bottom:339.375000px;}
.y63{bottom:342.075000px;}
.yf3{bottom:344.235000px;}
.y323{bottom:346.755000px;}
.y1a2{bottom:348.735000px;}
.y5a{bottom:349.455000px;}
.y105{bottom:351.255000px;}
.y1e2{bottom:353.235000px;}
.y186{bottom:354.315000px;}
.y24e{bottom:354.675000px;}
.y2da{bottom:354.855000px;}
.y153{bottom:357.195000px;}
.y285{bottom:358.095000px;}
.yab{bottom:358.455000px;}
.y21d{bottom:358.815000px;}
.y1ba{bottom:359.895000px;}
.y11c{bottom:362.055000px;}
.y352{bottom:363.495000px;}
.y31c{bottom:363.855000px;}
.y8b{bottom:364.215000px;}
.yce{bottom:364.935000px;}
.y1a9{bottom:366.375000px;}
.y1e1{bottom:367.095000px;}
.y13d{bottom:367.635000px;}
.y263{bottom:370.155000px;}
.y24c{bottom:370.695000px;}
.y1a1{bottom:371.955000px;}
.yf2{bottom:372.855000px;}
.y22a{bottom:375.915000px;}
.y15{bottom:377.535000px;}
.y59{bottom:377.895000px;}
.y104{bottom:379.695000px;}
.y2a6{bottom:381.675000px;}
.y185{bottom:382.755000px;}
.y152{bottom:385.635000px;}
.y284{bottom:386.535000px;}
.y21c{bottom:387.255000px;}
.y1b9{bottom:388.335000px;}
.y353{bottom:388.515000px;}
.y2d9{bottom:388.875000px;}
.y11b{bottom:390.495000px;}
.y1e0{bottom:391.035000px;}
.y8a{bottom:392.655000px;}
.ycd{bottom:393.555000px;}
.y62{bottom:393.735000px;}
.y13c{bottom:396.255000px;}
.yaa{bottom:396.615000px;}
.y244{bottom:397.335000px;}
.y26{bottom:397.725000px;}
.y1a0{bottom:397.875000px;}
.y262{bottom:398.595000px;}
.yf1{bottom:401.295000px;}
.y58{bottom:406.335000px;}
.y103{bottom:408.135000px;}
.y2a5{bottom:410.115000px;}
.y184{bottom:411.195000px;}
.y31b{bottom:412.455000px;}
.y350{bottom:413.715000px;}
.y151{bottom:414.255000px;}
.y283{bottom:414.975000px;}
.y24b{bottom:415.335000px;}
.y14{bottom:415.695000px;}
.y1b8{bottom:416.955000px;}
.y11a{bottom:418.935000px;}
.y1df{bottom:419.655000px;}
.y89{bottom:421.095000px;}
.ycc{bottom:421.995000px;}
.y2d8{bottom:422.715000px;}
.y13b{bottom:424.695000px;}
.y261{bottom:427.035000px;}
.y19f{bottom:428.295000px;}
.y319{bottom:428.475000px;}
.yf0{bottom:429.735000px;}
.y24a{bottom:433.335000px;}
.ya9{bottom:434.775000px;}
.y57{bottom:434.955000px;}
.y102{bottom:436.575000px;}
.y2a4{bottom:438.555000px;}
.y351{bottom:438.735000px;}
.y2d7{bottom:439.455000px;}
.y183{bottom:439.635000px;}
.y150{bottom:442.695000px;}
.y282{bottom:443.415000px;}
.y21b{bottom:444.135000px;}
.y1b7{bottom:445.395000px;}
.y119{bottom:447.375000px;}
.y1de{bottom:448.095000px;}
.y88{bottom:449.535000px;}
.ycb{bottom:450.435000px;}
.y249{bottom:451.335000px;}
.y31a{bottom:451.695000px;}
.y13a{bottom:453.135000px;}
.y13{bottom:453.855000px;}
.y260{bottom:455.655000px;}
.yef{bottom:458.175000px;}
.y25{bottom:458.565000px;}
.y2d6{bottom:460.155000px;}
.y19e{bottom:460.875000px;}
.y56{bottom:463.395000px;}
.y228{bottom:463.755000px;}
.y34e{bottom:463.935000px;}
.y101{bottom:465.015000px;}
.y2a3{bottom:466.995000px;}
.y248{bottom:469.335000px;}
.y14f{bottom:471.135000px;}
.y182{bottom:471.675000px;}
.y281{bottom:471.855000px;}
.y21a{bottom:472.575000px;}
.ya8{bottom:472.935000px;}
.y1b6{bottom:473.835000px;}
.y317{bottom:474.915000px;}
.y118{bottom:475.815000px;}
.y1dd{bottom:476.535000px;}
.y87{bottom:477.975000px;}
.yca{bottom:478.875000px;}
.y2d5{bottom:480.855000px;}
.y139{bottom:481.575000px;}
.y1c6{bottom:482.475000px;}
.y25f{bottom:484.095000px;}
.yee{bottom:486.615000px;}
.y34f{bottom:488.955000px;}
.y19d{bottom:489.315000px;}
.y55{bottom:491.835000px;}
.y12{bottom:492.015000px;}
.y100{bottom:493.635000px;}
.y2a2{bottom:495.435000px;}
.y240{bottom:495.795000px;}
.y318{bottom:498.135000px;}
.y14e{bottom:499.575000px;}
.y280{bottom:500.295000px;}
.y219{bottom:501.015000px;}
.y2d4{bottom:501.555000px;}
.y1b5{bottom:502.275000px;}
.y117{bottom:504.255000px;}
.y1dc{bottom:504.975000px;}
.y86{bottom:506.415000px;}
.yc9{bottom:507.315000px;}
.y138{bottom:510.015000px;}
.ya7{bottom:511.095000px;}
.y25e{bottom:512.535000px;}
.y34c{bottom:514.155000px;}
.yed{bottom:515.055000px;}
.y19c{bottom:517.755000px;}
.y54{bottom:520.275000px;}
.y315{bottom:521.355000px;}
.yff{bottom:522.075000px;}
.y2d3{bottom:522.255000px;}
.y2a1{bottom:523.875000px;}
.y14d{bottom:528.015000px;}
.y27f{bottom:528.735000px;}
.y242{bottom:529.455000px;}
.y218{bottom:529.635000px;}
.y11{bottom:530.175000px;}
.y116{bottom:532.695000px;}
.y1db{bottom:533.415000px;}
.y227{bottom:534.135000px;}
.y1b4{bottom:534.315000px;}
.y85{bottom:535.035000px;}
.yc8{bottom:535.755000px;}
.y137{bottom:538.455000px;}
.y34d{bottom:539.355000px;}
.y25d{bottom:540.975000px;}
.y2d2{bottom:542.955000px;}
.yec{bottom:543.495000px;}
.y316{bottom:544.575000px;}
.y19b{bottom:546.195000px;}
.y226{bottom:547.995000px;}
.y53{bottom:548.715000px;}
.ya6{bottom:549.255000px;}
.yfe{bottom:550.515000px;}
.y2a0{bottom:552.315000px;}
.y14c{bottom:556.485000px;}
.y27e{bottom:557.385000px;}
.y217{bottom:558.105000px;}
.y181{bottom:561.345000px;}
.y1da{bottom:561.885000px;}
.y84{bottom:563.505000px;}
.y2d1{bottom:563.685000px;}
.yc7{bottom:564.225000px;}
.y34a{bottom:564.405000px;}
.y115{bottom:564.945000px;}
.y136{bottom:566.925000px;}
.y313{bottom:568.005000px;}
.y10{bottom:568.365000px;}
.y25c{bottom:569.445000px;}
.yeb{bottom:571.965000px;}
.y19a{bottom:574.665000px;}
.y52{bottom:577.185000px;}
.y1d8{bottom:577.905000px;}
.yfd{bottom:578.985000px;}
.y29f{bottom:580.785000px;}
.y23f{bottom:581.865000px;}
.y2d0{bottom:584.385000px;}
.y16c{bottom:584.925000px;}
.y27d{bottom:585.825000px;}
.y216{bottom:586.545000px;}
.ya5{bottom:587.445000px;}
.y14b{bottom:588.525000px;}
.y34b{bottom:589.605000px;}
.y180{bottom:589.785000px;}
.y314{bottom:591.225000px;}
.y83{bottom:591.945000px;}
.yc6{bottom:592.665000px;}
.y135{bottom:595.365000px;}
.y25b{bottom:597.885000px;}
.yea{bottom:600.405000px;}
.y199{bottom:603.105000px;}
.y1cd{bottom:604.545000px;}
.y2cf{bottom:605.085000px;}
.y51{bottom:605.625000px;}
.yf{bottom:606.525000px;}
.yfc{bottom:607.425000px;}
.y29e{bottom:609.405000px;}
.y16b{bottom:613.365000px;}
.y27c{bottom:614.265000px;}
.y311{bottom:614.445000px;}
.y348{bottom:614.625000px;}
.y215{bottom:614.985000px;}
.y14a{bottom:617.685000px;}
.y17f{bottom:618.225000px;}
.y82{bottom:620.385000px;}
.yc5{bottom:621.105000px;}
.y134{bottom:623.805000px;}
.y1f7{bottom:624.885000px;}
.ya4{bottom:625.605000px;}
.y2ce{bottom:625.785000px;}
.y23e{bottom:626.325000px;}
.ye9{bottom:629.025000px;}
.y198{bottom:631.725000px;}
.y50{bottom:634.065000px;}
.y35{bottom:637.560000px;}
.y312{bottom:637.665000px;}
.y29d{bottom:637.845000px;}
.yfb{bottom:639.645000px;}
.y349{bottom:639.825000px;}
.y23d{bottom:640.185000px;}
.y149{bottom:640.905000px;}
.y16a{bottom:641.805000px;}
.y27b{bottom:642.705000px;}
.y214{bottom:643.425000px;}
.y1d6{bottom:643.605000px;}
.ye{bottom:644.685000px;}
.y2cd{bottom:646.485000px;}
.y17e{bottom:646.665000px;}
.y81{bottom:648.825000px;}
.yc4{bottom:649.725000px;}
.y133{bottom:652.425000px;}
.y26b{bottom:653.325000px;}
.y23c{bottom:654.225000px;}
.y25a{bottom:654.765000px;}
.ye8{bottom:657.465000px;}
.y213{bottom:659.445000px;}
.y197{bottom:660.165000px;}
.y30f{bottom:660.885000px;}
.y1d4{bottom:661.605000px;}
.y4f{bottom:662.505000px;}
.y37{bottom:663.585000px;}
.ya3{bottom:663.765000px;}
.y346{bottom:665.025000px;}
.y29c{bottom:666.285000px;}
.y148{bottom:666.825000px;}
.y2cc{bottom:667.185000px;}
.y169{bottom:670.425000px;}
.y27a{bottom:671.145000px;}
.y17d{bottom:675.105000px;}
.y80{bottom:677.265000px;}
.yc3{bottom:678.165000px;}
.yfa{bottom:678.885000px;}
.y1d2{bottom:679.605000px;}
.y34{bottom:680.145000px;}
.y132{bottom:680.865000px;}
.y1a7{bottom:681.765000px;}
.yd{bottom:682.845000px;}
.y259{bottom:683.205000px;}
.y310{bottom:684.105000px;}
.ye7{bottom:685.905000px;}
.y2ca{bottom:687.885000px;}
.y196{bottom:688.605000px;}
.y347{bottom:690.045000px;}
.y4e{bottom:691.125000px;}
.y147{bottom:692.745000px;}
.y29b{bottom:694.725000px;}
.y168{bottom:698.865000px;}
.y33{bottom:699.585000px;}
.ya2{bottom:701.925000px;}
.y17c{bottom:703.545000px;}
.y7f{bottom:705.705000px;}
.y35d{bottom:705.885000px;}
.y1cc{bottom:706.245000px;}
.yc2{bottom:706.605000px;}
.y30d{bottom:707.505000px;}
.y2c9{bottom:708.585000px;}
.y131{bottom:709.305000px;}
.y18f{bottom:710.205000px;}
.y258{bottom:711.825000px;}
.y20f{bottom:712.005000px;}
.ye6{bottom:714.345000px;}
.y344{bottom:715.245000px;}
.y195{bottom:717.045000px;}
.y4d{bottom:719.565000px;}
.yc{bottom:721.005000px;}
.y29a{bottom:723.165000px;}
.y167{bottom:727.305000px;}
.y279{bottom:728.025000px;}
.y2c8{bottom:729.285000px;}
.y146{bottom:730.185000px;}
.y30e{bottom:730.725000px;}
.y17b{bottom:731.985000px;}
.y7e{bottom:734.145000px;}
.yc1{bottom:735.045000px;}
.y1ca{bottom:735.405000px;}
.y130{bottom:737.745000px;}
.ya1{bottom:740.085000px;}
.y345{bottom:740.265000px;}
.y1b3{bottom:741.345000px;}
.ye5{bottom:742.785000px;}
.y257{bottom:743.865000px;}
.y194{bottom:745.485000px;}
.y2ed{bottom:746.385000px;}
.y4c{bottom:748.005000px;}
.y35c{bottom:748.365000px;}
.y2c7{bottom:749.985000px;}
.y299{bottom:751.605000px;}
.y308{bottom:753.960000px;}
.y166{bottom:755.745000px;}
.y278{bottom:756.465000px;}
.yb{bottom:759.165000px;}
.y17a{bottom:760.425000px;}
.y7d{bottom:762.585000px;}
.yc0{bottom:763.485000px;}
.y340{bottom:765.465000px;}
.y12f{bottom:766.185000px;}
.y2c4{bottom:770.700000px;}
.ye4{bottom:771.225000px;}
.y193{bottom:773.925000px;}
.y4b{bottom:776.445000px;}
.yb4{bottom:776.625000px;}
.y30a{bottom:777.165000px;}
.ya0{bottom:778.245000px;}
.y298{bottom:780.045000px;}
.y20e{bottom:781.665000px;}
.y1c9{bottom:782.385000px;}
.y2ec{bottom:783.105000px;}
.y165{bottom:784.185000px;}
.y277{bottom:784.905000px;}
.y256{bottom:787.065000px;}
.y2ea{bottom:787.425000px;}
.y179{bottom:788.865000px;}
.y341{bottom:790.500000px;}
.y7c{bottom:791.205000px;}
.y2c3{bottom:791.385000px;}
.ybf{bottom:791.925000px;}
.y12e{bottom:794.625000px;}
.yf6{bottom:795.525000px;}
.y1c8{bottom:796.425000px;}
.ya{bottom:797.325000px;}
.y35b{bottom:798.765000px;}
.ye3{bottom:799.665000px;}
.y306{bottom:800.385000px;}
.y192{bottom:802.365000px;}
.y4a{bottom:804.885000px;}
.y297{bottom:808.485000px;}
.y2c2{bottom:812.085000px;}
.y164{bottom:812.625000px;}
.y276{bottom:813.525000px;}
.y33e{bottom:815.685000px;}
.y9f{bottom:816.405000px;}
.y178{bottom:817.485000px;}
.y7b{bottom:819.645000px;}
.y2eb{bottom:820.005000px;}
.ybe{bottom:820.365000px;}
.y2e9{bottom:821.445000px;}
.y307{bottom:823.605000px;}
.y12d{bottom:826.665000px;}
.ye2{bottom:828.105000px;}
.y191{bottom:830.805000px;}
.y2c1{bottom:832.785000px;}
.y49{bottom:833.325000px;}
.y208{bottom:834.240000px;}
.y9{bottom:835.485000px;}
.y296{bottom:836.925000px;}
.y33f{bottom:840.930000px;}
.y163{bottom:841.110000px;}
.y275{bottom:842.010000px;}
.y177{bottom:845.970000px;}
.y304{bottom:847.050000px;}
.y7a{bottom:848.130000px;}
.ybd{bottom:848.850000px;}
.y2c0{bottom:853.530000px;}
.y9e{bottom:854.610000px;}
.ye1{bottom:856.590000px;}
.y2e8{bottom:858.030000px;}
.y12c{bottom:859.290000px;}
.y48{bottom:861.810000px;}
.yb3{bottom:861.990000px;}
.y295{bottom:865.590000px;}
.y33c{bottom:865.950000px;}
.y162{bottom:869.550000px;}
.y305{bottom:870.270000px;}
.y274{bottom:870.450000px;}
.y8{bottom:873.690000px;}
.y2bf{bottom:874.230000px;}
.y176{bottom:874.410000px;}
.y35a{bottom:875.130000px;}
.y79{bottom:876.570000px;}
.ybc{bottom:877.290000px;}
.y9d{bottom:885.030000px;}
.ye0{bottom:885.210000px;}
.y12b{bottom:887.910000px;}
.y47{bottom:890.250000px;}
.y33d{bottom:891.150000px;}
.y302{bottom:893.490000px;}
.y294{bottom:894.030000px;}
.y2be{bottom:894.930000px;}
.y161{bottom:897.990000px;}
.y273{bottom:898.890000px;}
.y175{bottom:902.850000px;}
.y204{bottom:903.930000px;}
.y78{bottom:905.010000px;}
.ybb{bottom:905.910000px;}
.y23b{bottom:909.510000px;}
.y7{bottom:911.850000px;}
.y359{bottom:913.290000px;}
.ydf{bottom:913.650000px;}
.y9c{bottom:913.830000px;}
.y2bd{bottom:915.630000px;}
.y339{bottom:916.170000px;}
.y12a{bottom:916.350000px;}
.y303{bottom:916.710000px;}
.y46{bottom:918.690000px;}
.y293{bottom:922.470000px;}
.y160{bottom:926.610000px;}
.y272{bottom:927.330000px;}
.y174{bottom:931.290000px;}
.y2e7{bottom:931.830000px;}
.y77{bottom:933.450000px;}
.yba{bottom:934.350000px;}
.y2bc{bottom:936.330000px;}
.y1b2{bottom:937.950000px;}
.y2ff{bottom:939.930000px;}
.y33b{bottom:941.370000px;}
.yde{bottom:942.090000px;}
.y9b{bottom:942.270000px;}
.y129{bottom:944.790000px;}
.y45{bottom:947.310000px;}
.yb2{bottom:947.490000px;}
.y6{bottom:950.190000px;}
.y358{bottom:951.450000px;}
.y15f{bottom:955.050000px;}
.y271{bottom:955.770000px;}
.y2bb{bottom:957.030000px;}
.y292{bottom:959.190000px;}
.y173{bottom:959.730000px;}
.y76{bottom:961.890000px;}
.yb9{bottom:962.790000px;}
.y300{bottom:963.150000px;}
.y335{bottom:966.570000px;}
.y2e6{bottom:968.550000px;}
.ydd{bottom:970.530000px;}
.y9a{bottom:970.710000px;}
.y128{bottom:973.230000px;}
.y44{bottom:975.750000px;}
.y2ba{bottom:977.730000px;}
.y291{bottom:981.150000px;}
.y15e{bottom:983.490000px;}
.y270{bottom:984.210000px;}
.y2f9{bottom:986.550000px;}
.y172{bottom:988.170000px;}
.y5{bottom:988.350000px;}
.y357{bottom:989.610000px;}
.y75{bottom:990.330000px;}
.y200{bottom:991.050000px;}
.yb8{bottom:991.230000px;}
.y336{bottom:991.590000px;}
.y255{bottom:994.830000px;}
.y2b9{bottom:998.430000px;}
.ydc{bottom:998.970000px;}
.y99{bottom:999.150000px;}
.y127{bottom:1001.670000px;}
.y2e5{bottom:1002.750000px;}
.y290{bottom:1002.930000px;}
.y43{bottom:1004.190000px;}
.yb1{bottom:1004.370000px;}
.y2fb{bottom:1009.770000px;}
.y15d{bottom:1011.930000px;}
.y26f{bottom:1012.650000px;}
.y171{bottom:1016.610000px;}
.y333{bottom:1016.790000px;}
.y74{bottom:1018.770000px;}
.y2b8{bottom:1019.130000px;}
.yb7{bottom:1019.670000px;}
.y1c0{bottom:1023.270000px;}
.y1fd{bottom:1026.150000px;}
.y4{bottom:1026.510000px;}
.ydb{bottom:1027.410000px;}
.y98{bottom:1027.590000px;}
.y356{bottom:1027.770000px;}
.y126{bottom:1030.110000px;}
.y42{bottom:1032.630000px;}
.y2f7{bottom:1032.990000px;}
.y190{bottom:1033.710000px;}
.y2e4{bottom:1039.470000px;}
.y2b6{bottom:1039.830000px;}
.y15c{bottom:1040.370000px;}
.y26e{bottom:1041.090000px;}
.y28f{bottom:1041.450000px;}
.y330{bottom:1041.810000px;}
.yb6{bottom:1044.690000px;}
.y73{bottom:1047.390000px;}
.yf9{bottom:1048.110000px;}
.y170{bottom:1048.830000px;}
.yda{bottom:1055.850000px;}
.y97{bottom:1056.030000px;}
.y2f5{bottom:1056.210000px;}
.y2b5{bottom:1060.530000px;}
.y41{bottom:1061.070000px;}
.y1fa{bottom:1061.430000px;}
.y28e{bottom:1061.790000px;}
.y125{bottom:1062.150000px;}
.y3{bottom:1064.670000px;}
.yb5{bottom:1065.390000px;}
.y355{bottom:1065.930000px;}
.y32e{bottom:1067.010000px;}
.y15b{bottom:1068.810000px;}
.y26d{bottom:1069.710000px;}
.y2e3{bottom:1073.490000px;}
.y72{bottom:1075.830000px;}
.yf8{bottom:1076.550000px;}
.y2f1{bottom:1079.415000px;}
.y2ef{bottom:1079.430000px;}
.y1c7{bottom:1080.150000px;}
.y2b4{bottom:1081.230000px;}
.yd9{bottom:1084.290000px;}
.y96{bottom:1084.470000px;}
.y26c{bottom:1085.550000px;}
.y40{bottom:1089.510000px;}
.yb0{bottom:1089.690000px;}
.y32c{bottom:1092.015000px;}
.y32a{bottom:1092.030000px;}
.y28d{bottom:1100.310000px;}
.y15a{bottom:1100.850000px;}
.y2b1{bottom:1101.930000px;}
.y2{bottom:1102.830000px;}
.y354{bottom:1104.090000px;}
.y71{bottom:1104.270000px;}
.y1a8{bottom:1104.990000px;}
.y2e2{bottom:1107.510000px;}
.yf7{bottom:1108.590000px;}
.yd8{bottom:1112.730000px;}
.y95{bottom:1112.910000px;}
.y28c{bottom:1120.830000px;}
.y6b{bottom:1128.600000px;}
.y3f{bottom:1128.780000px;}
.y1f9{bottom:1131.840000px;}
.y159{bottom:1137.240000px;}
.y1{bottom:1141.020000px;}
.yd7{bottom:1141.380000px;}
.y94{bottom:1141.560000px;}
.y1f8{bottom:1145.880000px;}
.y3e{bottom:1163.520000px;}
.y39{bottom:1179.000000px;}
.h3b{height:4.854375px;}
.h3a{height:17.085000px;}
.h23{height:17.265000px;}
.h24{height:17.271000px;}
.h1c{height:17.280000px;}
.h41{height:19.065000px;}
.h3f{height:19.080000px;}
.h40{height:19.110000px;}
.h3c{height:19.245000px;}
.h3e{height:19.260000px;}
.h3d{height:19.282500px;}
.h1d{height:20.340000px;}
.h46{height:22.485000px;}
.h4d{height:22.500000px;}
.h4c{height:22.522500px;}
.h50{height:22.530000px;}
.h53{height:23.565000px;}
.h5a{height:23.580000px;}
.h58{height:23.602500px;}
.h5e{height:23.610000px;}
.h55{height:23.745000px;}
.h5b{height:23.760000px;}
.h1e{height:25.725000px;}
.h1f{height:25.905000px;}
.h25{height:25.911000px;}
.h1b{height:25.920000px;}
.h22{height:25.941000px;}
.h18{height:28.440000px;}
.h38{height:32.925000px;}
.h28{height:34.365000px;}
.h33{height:34.371000px;}
.h34{height:34.380000px;}
.h27{height:34.545000px;}
.h2f{height:34.555500px;}
.h30{height:34.560000px;}
.h51{height:37.476000px;}
.h52{height:37.485000px;}
.h44{height:40.305000px;}
.h42{height:40.311000px;}
.h43{height:40.320000px;}
.h10{height:41.400000px;}
.h49{height:45.170156px;}
.h48{height:45.705000px;}
.h4e{height:45.720000px;}
.h4b{height:45.742500px;}
.h4f{height:45.750000px;}
.h4a{height:48.029766px;}
.h56{height:48.585000px;}
.h5c{height:48.600000px;}
.h54{height:48.765000px;}
.h59{height:48.780000px;}
.h57{height:48.802500px;}
.h5d{height:48.810000px;}
.h47{height:50.068125px;}
.h2{height:50.229844px;}
.h11{height:50.312812px;}
.h2e{height:51.645000px;}
.h35{height:51.651000px;}
.h37{height:51.690000px;}
.h26{height:51.825000px;}
.h2d{height:51.835500px;}
.h2b{height:51.840000px;}
.h31{height:51.861000px;}
.h32{height:51.862500px;}
.h12{height:53.237812px;}
.h21{height:53.573906px;}
.he{height:56.320312px;}
.h15{height:59.383125px;}
.h45{height:61.423863px;}
.h7{height:62.327813px;}
.h5{height:64.546875px;}
.h2c{height:68.940000px;}
.h2a{height:68.961000px;}
.h14{height:69.086250px;}
.h17{height:70.914375px;}
.h8{height:74.004654px;}
.h6{height:75.093750px;}
.h36{height:85.350000px;}
.h29{height:86.205000px;}
.hf{height:86.760000px;}
.h16{height:87.859687px;}
.h4{height:96.820312px;}
.h39{height:97.725000px;}
.h19{height:100.975500px;}
.h1a{height:100.980000px;}
.h13{height:125.406562px;}
.h20{height:133.942500px;}
.ha{height:174.968437px;}
.hb{height:175.118625px;}
.hd{height:225.281250px;}
.h3{height:242.280000px;}
.h9{height:498.780000px;}
.hc{height:498.855000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3d{width:34.920000px;}
.w2f{width:35.280000px;}
.w30{width:35.640000px;}
.w34{width:37.605000px;}
.w28{width:38.865000px;}
.w29{width:39.045000px;}
.w52{width:41.745000px;}
.w59{width:42.465000px;}
.w27{width:47.196000px;}
.w2a{width:47.325000px;}
.w3b{width:50.220000px;}
.w3c{width:50.580000px;}
.w55{width:51.696000px;}
.w51{width:52.185000px;}
.w54{width:52.365000px;}
.w53{width:52.401000px;}
.w5b{width:52.545000px;}
.w5a{width:53.121000px;}
.w58{width:53.265000px;}
.w48{width:53.316000px;}
.w50{width:55.080000px;}
.w4d{width:60.321000px;}
.w4e{width:60.660000px;}
.w57{width:60.681000px;}
.w4f{width:61.380000px;}
.w40{width:64.251000px;}
.w35{width:64.971000px;}
.w1e{width:65.685000px;}
.w3e{width:67.716000px;}
.w31{width:68.076000px;}
.w38{width:70.560000px;}
.w26{width:71.820000px;}
.w2c{width:72.540000px;}
.w33{width:76.161000px;}
.w7{width:85.845000px;}
.w1f{width:90.921000px;}
.w4a{width:94.665000px;}
.w56{width:94.851000px;}
.w49{width:95.211000px;}
.w4c{width:95.571000px;}
.w37{width:101.160000px;}
.w4b{width:105.501000px;}
.w3f{width:107.805000px;}
.w32{width:108.165000px;}
.w46{width:109.476000px;}
.w41{width:109.641000px;}
.w36{width:110.001000px;}
.w3a{width:113.421000px;}
.w45{width:117.180000px;}
.w44{width:122.061000px;}
.w23{width:126.885000px;}
.w12{width:128.901000px;}
.w11{width:136.425000px;}
.w17{width:137.001000px;}
.w10{width:140.976000px;}
.w18{width:148.135500px;}
.w15{width:148.140000px;}
.w16{width:148.176000px;}
.w19{width:148.185000px;}
.w43{width:148.536000px;}
.w1d{width:157.335000px;}
.w22{width:159.690000px;}
.w25{width:160.410000px;}
.w39{width:175.890000px;}
.w2d{width:176.595000px;}
.w2b{width:176.955000px;}
.w24{width:177.495000px;}
.w21{width:178.215000px;}
.w47{width:200.895000px;}
.w14{width:200.901000px;}
.w1b{width:212.601000px;}
.w20{width:213.141000px;}
.wf{width:227.901000px;}
.w13{width:227.910000px;}
.wc{width:243.381000px;}
.we{width:243.390000px;}
.w5{width:250.740000px;}
.w9{width:264.621000px;}
.wb{width:264.630000px;}
.w1c{width:266.790000px;}
.w2e{width:276.870000px;}
.wa{width:370.875000px;}
.wd{width:392.115000px;}
.w3{width:509.400000px;}
.w4{width:509.520000px;}
.w6{width:550.890000px;}
.w2{width:630.660000px;}
.w8{width:636.390000px;}
.w1a{width:638.190000px;}
.w42{width:701.775000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:3.420000px;}
.x50{left:5.385000px;}
.xf{left:7.560000px;}
.x2e{left:9.531000px;}
.x4{left:10.800000px;}
.x22{left:13.491000px;}
.xc{left:14.565000px;}
.x34{left:16.185000px;}
.x5{left:17.640000px;}
.x71{left:18.900000px;}
.x24{left:20.151000px;}
.x2a{left:21.765000px;}
.x2b{left:23.745000px;}
.x72{left:25.005000px;}
.x48{left:26.085000px;}
.x47{left:27.885000px;}
.x67{left:29.520000px;}
.x4b{left:30.810000px;}
.x33{left:31.845000px;}
.x6a{left:33.645000px;}
.x53{left:34.740000px;}
.x65{left:36.345000px;}
.x31{left:37.980000px;}
.x29{left:40.125000px;}
.x35{left:41.565000px;}
.x3b{left:43.185000px;}
.x38{left:45.165000px;}
.x37{left:46.965000px;}
.x39{left:49.140000px;}
.x21{left:50.745000px;}
.x3a{left:53.085000px;}
.x2d{left:55.605000px;}
.x40{left:59.040000px;}
.x4a{left:63.165000px;}
.x23{left:65.145000px;}
.x3c{left:70.365000px;}
.x43{left:71.445000px;}
.x41{left:73.980000px;}
.x2c{left:78.825000px;}
.x2f{left:83.865000px;}
.x26{left:87.105000px;}
.x54{left:89.130000px;}
.x45{left:91.260000px;}
.x1e{left:94.305000px;}
.x70{left:95.760000px;}
.x4c{left:106.545000px;}
.x4d{left:116.640000px;}
.x42{left:126.585000px;}
.x2{left:127.656000px;}
.x1a{left:136.656000px;}
.x20{left:138.990000px;}
.x11{left:144.216000px;}
.xd{left:149.250000px;}
.x28{left:153.930000px;}
.x12{left:160.590000px;}
.x5a{left:170.130000px;}
.x10{left:180.750000px;}
.x16{left:185.970000px;}
.x15{left:191.550000px;}
.x62{left:192.645000px;}
.x17{left:212.610000px;}
.xa{left:214.065000px;}
.x1d{left:222.870000px;}
.x25{left:231.510000px;}
.x13{left:233.490000px;}
.x1c{left:235.650000px;}
.x9{left:239.010000px;}
.x64{left:244.305000px;}
.x1{left:297.210000px;}
.x6{left:302.655000px;}
.x6c{left:305.715000px;}
.x3d{left:330.015000px;}
.x44{left:339.915000px;}
.x63{left:353.595000px;}
.x30{left:357.015000px;}
.x66{left:367.095000px;}
.x27{left:372.675000px;}
.x51{left:391.575000px;}
.x1f{left:393.915000px;}
.x5c{left:396.975000px;}
.x59{left:400.215000px;}
.x4f{left:402.555000px;}
.x4e{left:404.715000px;}
.x6d{left:429.195000px;}
.x5d{left:439.815000px;}
.x5b{left:446.475000px;}
.x55{left:464.295000px;}
.x5e{left:475.455000px;}
.x3e{left:478.875000px;}
.x68{left:484.995000px;}
.x32{left:498.720000px;}
.xb{left:510.765000px;}
.x56{left:512.400000px;}
.x5f{left:543.540000px;}
.x52{left:552.000000px;}
.x57{left:591.780000px;}
.x69{left:595.200000px;}
.x18{left:599.685000px;}
.x46{left:607.440000px;}
.x3f{left:627.780000px;}
.x36{left:635.880000px;}
.x58{left:639.840000px;}
.x8{left:642.240000px;}
.x6e{left:648.120000px;}
.x60{left:651.720000px;}
.x7{left:653.145000px;}
.x1b{left:654.765000px;}
.x49{left:673.860000px;}
.x19{left:677.445000px;}
.x6b{left:690.600000px;}
.x14{left:692.025000px;}
.x61{left:727.890000px;}
.x6f{left:743.730000px;}
.xe{left:766.050000px;}
@media print{
.v3{vertical-align:-29.440000pt;}
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:5.120000pt;}
.v2{vertical-align:24.320000pt;}
.ls34{letter-spacing:-1.552000pt;}
.ls11{letter-spacing:-0.912000pt;}
.ls7{letter-spacing:-0.874667pt;}
.ls5{letter-spacing:-0.736000pt;}
.ls9{letter-spacing:-0.640000pt;}
.ls1e{letter-spacing:-0.406933pt;}
.ls3c{letter-spacing:-0.400533pt;}
.ls4{letter-spacing:-0.368533pt;}
.ls1a{letter-spacing:-0.336533pt;}
.ls23{letter-spacing:-0.325333pt;}
.ls1d{letter-spacing:-0.311467pt;}
.ls25{letter-spacing:-0.272533pt;}
.ls12{letter-spacing:-0.271467pt;}
.ls3b{letter-spacing:-0.239467pt;}
.ls1b{letter-spacing:-0.233067pt;}
.ls2f{letter-spacing:-0.230933pt;}
.ls30{letter-spacing:-0.198933pt;}
.ls2d{letter-spacing:-0.161067pt;}
.lsd{letter-spacing:-0.135467pt;}
.ls3a{letter-spacing:-0.122133pt;}
.ls8{letter-spacing:-0.117867pt;}
.lsc{letter-spacing:-0.105067pt;}
.ls6{letter-spacing:-0.097067pt;}
.ls1{letter-spacing:-0.094933pt;}
.ls2e{letter-spacing:-0.047360pt;}
.ls1c{letter-spacing:-0.033280pt;}
.ls0{letter-spacing:0.000000pt;}
.ls27{letter-spacing:0.009387pt;}
.ls3d{letter-spacing:0.015360pt;}
.ls39{letter-spacing:0.025600pt;}
.ls38{letter-spacing:0.040320pt;}
.lse{letter-spacing:0.062720pt;}
.ls26{letter-spacing:0.094933pt;}
.ls37{letter-spacing:0.120960pt;}
.ls35{letter-spacing:0.122027pt;}
.ls29{letter-spacing:0.173867pt;}
.ls33{letter-spacing:0.183467pt;}
.ls32{letter-spacing:0.183680pt;}
.ls2{letter-spacing:0.192000pt;}
.ls16{letter-spacing:0.227733pt;}
.ls31{letter-spacing:0.230933pt;}
.lsf{letter-spacing:0.232960pt;}
.ls10{letter-spacing:0.233067pt;}
.ls36{letter-spacing:0.239360pt;}
.lsb{letter-spacing:0.271467pt;}
.ls19{letter-spacing:0.303467pt;}
.ls22{letter-spacing:0.314667pt;}
.ls13{letter-spacing:0.544000pt;}
.ls1f{letter-spacing:1.376000pt;}
.ls2a{letter-spacing:1.551360pt;}
.lsa{letter-spacing:4.634880pt;}
.ls28{letter-spacing:4.751360pt;}
.ls21{letter-spacing:7.311360pt;}
.ls2b{letter-spacing:7.951360pt;}
.ls3{letter-spacing:8.591360pt;}
.ls15{letter-spacing:10.373120pt;}
.ls20{letter-spacing:14.351360pt;}
.ls17{letter-spacing:23.290027pt;}
.ls14{letter-spacing:24.591360pt;}
.ls2c{letter-spacing:28.431360pt;}
.ls18{letter-spacing:62.213120pt;}
.ls24{letter-spacing:172.410027pt;}
.ws13{word-spacing:-21.120107pt;}
.ws12{word-spacing:-20.816640pt;}
.ws16{word-spacing:-20.783360pt;}
.ws18{word-spacing:-17.744640pt;}
.ws15{word-spacing:-16.912640pt;}
.ws8{word-spacing:-16.640107pt;}
.wsb{word-spacing:-16.601707pt;}
.ws19{word-spacing:-16.542507pt;}
.ws5{word-spacing:-16.368640pt;}
.ws6{word-spacing:-16.271573pt;}
.wsa{word-spacing:-16.233173pt;}
.ws14{word-spacing:-16.135573pt;}
.wsd{word-spacing:-16.097173pt;}
.wse{word-spacing:-16.000107pt;}
.ws17{word-spacing:-15.961707pt;}
.ws1a{word-spacing:-15.728640pt;}
.wsf{word-spacing:-15.632640pt;}
.wsc{word-spacing:-15.456640pt;}
.ws1e{word-spacing:-14.998293pt;}
.ws1f{word-spacing:-14.950827pt;}
.ws20{word-spacing:-14.816640pt;}
.ws0{word-spacing:-14.767360pt;}
.ws1b{word-spacing:-14.720000pt;}
.ws1{word-spacing:-14.672427pt;}
.ws1c{word-spacing:-14.536427pt;}
.ws27{word-spacing:-13.578347pt;}
.ws3{word-spacing:-13.536000pt;}
.ws10{word-spacing:-13.534613pt;}
.ws21{word-spacing:-13.332480pt;}
.ws26{word-spacing:-13.322240pt;}
.ws4{word-spacing:-13.306880pt;}
.ws9{word-spacing:-13.201813pt;}
.ws7{word-spacing:-13.189013pt;}
.ws23{word-spacing:-11.920640pt;}
.ws22{word-spacing:-11.882987pt;}
.ws24{word-spacing:-11.759573pt;}
.ws1d{word-spacing:-11.721707pt;}
.ws25{word-spacing:-11.681173pt;}
.ws11{word-spacing:-10.319360pt;}
.ws2{word-spacing:0.000000pt;}
._2b{margin-left:-19.366400pt;}
._1e{margin-left:-15.560427pt;}
._1b{margin-left:-14.390613pt;}
._22{margin-left:-12.925653pt;}
._1f{margin-left:-10.668373pt;}
._1c{margin-left:-8.913387pt;}
._23{margin-left:-7.967573pt;}
._1d{margin-left:-6.846293pt;}
._d{margin-left:-4.887040pt;}
._8{margin-left:-3.591680pt;}
._6{margin-left:-1.884160pt;}
._2{margin-left:-0.944000pt;}
._0{width:0.956160pt;}
._1{width:2.629333pt;}
._9{width:4.024107pt;}
._c{width:5.143040pt;}
._7{width:6.451200pt;}
._5{width:8.013440pt;}
._4{width:8.949760pt;}
._16{width:10.030507pt;}
._18{width:11.660160pt;}
._e{width:12.894720pt;}
._a{width:14.118400pt;}
._b{width:15.045120pt;}
._3d{width:16.248107pt;}
._1a{width:17.592960pt;}
._17{width:19.316480pt;}
._f{width:20.549120pt;}
._10{width:21.735467pt;}
._24{width:23.493120pt;}
._12{width:24.494080pt;}
._11{width:26.083840pt;}
._2e{width:27.025920pt;}
._26{width:28.144640pt;}
._25{width:29.498880pt;}
._2d{width:30.402560pt;}
._14{width:31.383040pt;}
._15{width:32.501760pt;}
._13{width:33.561600pt;}
._19{width:35.153920pt;}
._2f{width:36.446720pt;}
._2c{width:37.447680pt;}
._2a{width:39.228587pt;}
._28{width:40.241067pt;}
._29{width:41.342507pt;}
._27{width:43.083520pt;}
._32{width:44.395520pt;}
._33{width:45.514240pt;}
._40{width:47.285547pt;}
._3b{width:48.325547pt;}
._3c{width:49.335467pt;}
._39{width:55.290240pt;}
._3a{width:56.289280pt;}
._44{width:57.369600pt;}
._31{width:59.151360pt;}
._20{width:61.398187pt;}
._21{width:71.193600pt;}
._46{width:78.355200pt;}
._45{width:79.370240pt;}
._37{width:82.653440pt;}
._38{width:83.623680pt;}
._30{width:96.890027pt;}
._47{width:102.568960pt;}
._48{width:104.724907pt;}
._3f{width:107.117227pt;}
._3e{width:108.392107pt;}
._34{width:144.822400pt;}
._35{width:145.784320pt;}
._36{width:146.777600pt;}
._42{width:148.736000pt;}
._41{width:166.564267pt;}
._3{width:172.410027pt;}
._43{width:289.324587pt;}
._4a{width:579.895040pt;}
._49{width:581.027840pt;}
.fsd{font-size:5.120000pt;}
.fsc{font-size:37.120000pt;}
.fs8{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fsb{font-size:74.880000pt;}
.fsa{font-size:85.120000pt;}
.fs1{font-size:96.000000pt;}
.fs9{font-size:106.880000pt;}
.fs4{font-size:149.120000pt;}
.fs5{font-size:149.248000pt;}
.fs6{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y3c{bottom:2.400000pt;}
.y38{bottom:2.653333pt;}
.y236{bottom:2.866667pt;}
.y202{bottom:2.880000pt;}
.y20c{bottom:3.026667pt;}
.y1ff{bottom:3.040000pt;}
.y22e{bottom:3.053333pt;}
.y1ef{bottom:3.186667pt;}
.y1d5{bottom:3.200000pt;}
.y2f4{bottom:3.360000pt;}
.y32d{bottom:3.373333pt;}
.y23{bottom:3.512133pt;}
.y2fc{bottom:3.520000pt;}
.y30b{bottom:3.666667pt;}
.y301{bottom:3.680000pt;}
.y2c6{bottom:3.826667pt;}
.y2b2{bottom:3.840000pt;}
.y2b3{bottom:4.000000pt;}
.y2f3{bottom:4.160000pt;}
.y2f2{bottom:4.173333pt;}
.y1d7{bottom:4.480000pt;}
.y2cb{bottom:4.640000pt;}
.y2c5{bottom:4.786667pt;}
.y2b7{bottom:4.800000pt;}
.y2f8{bottom:5.120000pt;}
.y2f6{bottom:5.280000pt;}
.y334{bottom:5.600000pt;}
.y337{bottom:5.760000pt;}
.y338{bottom:5.920000pt;}
.y342{bottom:6.066667pt;}
.y32f{bottom:6.080000pt;}
.y2fe{bottom:6.240000pt;}
.y30c{bottom:6.386667pt;}
.y2fd{bottom:6.400000pt;}
.y24d{bottom:6.720000pt;}
.y343{bottom:6.866667pt;}
.y1f6{bottom:6.872000pt;}
.y1d9{bottom:6.880000pt;}
.y331{bottom:8.000000pt;}
.y17{bottom:9.319867pt;}
.y1d1{bottom:9.760000pt;}
.y237{bottom:10.546667pt;}
.y203{bottom:10.560000pt;}
.y233{bottom:10.706667pt;}
.y1e4{bottom:10.720000pt;}
.y1ed{bottom:10.866667pt;}
.y1f5{bottom:10.872000pt;}
.y1d3{bottom:10.880000pt;}
.y1cb{bottom:11.840000pt;}
.y1eb{bottom:12.786667pt;}
.y3b{bottom:14.720000pt;}
.y309{bottom:15.826667pt;}
.y2fa{bottom:15.840000pt;}
.y332{bottom:16.960000pt;}
.y243{bottom:17.120000pt;}
.y33a{bottom:17.280000pt;}
.y235{bottom:18.226667pt;}
.y201{bottom:18.240000pt;}
.y231{bottom:18.386667pt;}
.y1fe{bottom:18.400000pt;}
.y20b{bottom:18.426667pt;}
.y1fb{bottom:18.560000pt;}
.y32b{bottom:19.520000pt;}
.y22{bottom:19.672133pt;}
.y247{bottom:19.680000pt;}
.y2f0{bottom:22.080000pt;}
.y3d{bottom:23.040000pt;}
.y212{bottom:25.920000pt;}
.y20d{bottom:25.946667pt;}
.y232{bottom:26.066667pt;}
.y229{bottom:26.240000pt;}
.y3a{bottom:27.040000pt;}
.y2c{bottom:28.706667pt;}
.y2e{bottom:28.826667pt;}
.y1d0{bottom:31.360000pt;}
.y239{bottom:33.586667pt;}
.y211{bottom:33.600000pt;}
.y20a{bottom:33.626667pt;}
.y207{bottom:33.760000pt;}
.y230{bottom:33.786667pt;}
.y1fc{bottom:33.920000pt;}
.y1ea{bottom:34.546667pt;}
.y241{bottom:37.280000pt;}
.y36{bottom:37.853333pt;}
.y21{bottom:38.392133pt;}
.y246{bottom:42.560000pt;}
.y210{bottom:48.960000pt;}
.y209{bottom:48.986667pt;}
.y206{bottom:49.120000pt;}
.y1cf{bottom:54.400000pt;}
.y20{bottom:55.832133pt;}
.y1e9{bottom:57.586667pt;}
.y205{bottom:64.320000pt;}
.y245{bottom:65.600000pt;}
.y1f{bottom:71.832133pt;}
.y1ce{bottom:77.440000pt;}
.y1e8{bottom:80.466667pt;}
.y2b{bottom:82.786667pt;}
.y1e{bottom:90.552133pt;}
.y1c5{bottom:99.072000pt;}
.y1e7{bottom:103.506667pt;}
.y114{bottom:103.712000pt;}
.y2e1{bottom:104.032000pt;}
.y61{bottom:107.392000pt;}
.y1f4{bottom:107.400000pt;}
.y1d{bottom:107.992133pt;}
.y10d{bottom:109.792000pt;}
.y1b1{bottom:110.592000pt;}
.y18e{bottom:112.512000pt;}
.y254{bottom:112.832000pt;}
.y70{bottom:112.992000pt;}
.y16f{bottom:115.072000pt;}
.y225{bottom:116.512000pt;}
.y23a{bottom:117.312000pt;}
.y145{bottom:117.472000pt;}
.y124{bottom:119.392000pt;}
.y93{bottom:121.312000pt;}
.y329{bottom:121.632000pt;}
.yd6{bottom:122.112000pt;}
.y1c{bottom:123.352133pt;}
.y1c4{bottom:124.352000pt;}
.y6a{bottom:126.912000pt;}
.y322{bottom:128.672000pt;}
.y113{bottom:128.992000pt;}
.y1e6{bottom:131.080000pt;}
.y238{bottom:131.560000pt;}
.y2e0{bottom:134.266667pt;}
.y10c{bottom:135.066667pt;}
.y1b0{bottom:135.866667pt;}
.y2a{bottom:137.026667pt;}
.y18d{bottom:137.786667pt;}
.y253{bottom:138.106667pt;}
.y1b{bottom:138.706800pt;}
.y16e{bottom:140.506667pt;}
.y28b{bottom:141.146667pt;}
.y60{bottom:141.306667pt;}
.y224{bottom:141.786667pt;}
.y2ee{bottom:142.586667pt;}
.y144{bottom:142.906667pt;}
.y123{bottom:144.666667pt;}
.y26a{bottom:144.986667pt;}
.y92{bottom:146.586667pt;}
.y1f3{bottom:147.080000pt;}
.yd5{bottom:147.386667pt;}
.y1c3{bottom:152.826667pt;}
.y112{bottom:154.266667pt;}
.y328{bottom:154.426667pt;}
.y1a{bottom:154.706800pt;}
.y10b{bottom:160.346667pt;}
.y1af{bottom:161.146667pt;}
.y321{bottom:161.466667pt;}
.y6f{bottom:161.626667pt;}
.y2ac{bottom:162.106667pt;}
.y18c{bottom:163.066667pt;}
.y1f2{bottom:163.080000pt;}
.y69{bottom:163.386667pt;}
.y2df{bottom:164.346667pt;}
.y16d{bottom:165.786667pt;}
.y32{bottom:165.946667pt;}
.y66{bottom:166.106667pt;}
.y28a{bottom:166.426667pt;}
.y223{bottom:167.066667pt;}
.y2b0{bottom:167.546667pt;}
.y143{bottom:168.186667pt;}
.y122{bottom:169.946667pt;}
.y269{bottom:170.266667pt;}
.y91{bottom:171.866667pt;}
.yd4{bottom:172.666667pt;}
.y19{bottom:173.106800pt;}
.y5f{bottom:175.226667pt;}
.y234{bottom:178.280000pt;}
.y1f1{bottom:179.080000pt;}
.y111{bottom:179.546667pt;}
.yaf{bottom:182.746667pt;}
.y10a{bottom:185.626667pt;}
.y1ae{bottom:186.426667pt;}
.y327{bottom:187.066667pt;}
.y2ab{bottom:187.386667pt;}
.y18b{bottom:188.346667pt;}
.y68{bottom:188.666667pt;}
.y158{bottom:191.066667pt;}
.y29{bottom:191.106667pt;}
.y1c2{bottom:191.386667pt;}
.y289{bottom:191.706667pt;}
.y222{bottom:192.346667pt;}
.y18{bottom:193.106800pt;}
.y1bf{bottom:193.466667pt;}
.y320{bottom:194.266667pt;}
.y2af{bottom:194.426667pt;}
.y2de{bottom:194.586667pt;}
.y1f0{bottom:195.080000pt;}
.y121{bottom:195.226667pt;}
.y268{bottom:195.706667pt;}
.y142{bottom:196.666667pt;}
.y90{bottom:197.146667pt;}
.yd3{bottom:197.946667pt;}
.y1a6{bottom:198.106667pt;}
.y31{bottom:199.866667pt;}
.y110{bottom:204.826667pt;}
.y5e{bottom:209.146667pt;}
.y22f{bottom:209.480000pt;}
.y109{bottom:211.066667pt;}
.y1ee{bottom:211.080000pt;}
.y6e{bottom:211.386667pt;}
.y1ad{bottom:211.706667pt;}
.y65{bottom:212.026667pt;}
.y2aa{bottom:212.666667pt;}
.y18a{bottom:213.626667pt;}
.y252{bottom:213.946667pt;}
.y157{bottom:216.346667pt;}
.yae{bottom:216.666667pt;}
.y288{bottom:216.986667pt;}
.y221{bottom:217.626667pt;}
.y1be{bottom:218.746667pt;}
.y326{bottom:219.866667pt;}
.y120{bottom:220.506667pt;}
.y267{bottom:220.986667pt;}
.y8f{bottom:222.426667pt;}
.yd2{bottom:223.226667pt;}
.y1a5{bottom:223.386667pt;}
.y67{bottom:223.546667pt;}
.y2dd{bottom:224.826667pt;}
.y141{bottom:225.626667pt;}
.y2d{bottom:226.120000pt;}
.y24{bottom:226.240000pt;}
.y31f{bottom:226.906667pt;}
.y1ec{bottom:227.080000pt;}
.y2ae{bottom:228.186667pt;}
.y10f{bottom:230.106667pt;}
.y30{bottom:233.786667pt;}
.y5d{bottom:234.746667pt;}
.y108{bottom:236.346667pt;}
.y6d{bottom:236.666667pt;}
.y1ac{bottom:236.986667pt;}
.y1c1{bottom:237.306667pt;}
.y2a9{bottom:237.946667pt;}
.y189{bottom:238.906667pt;}
.y251{bottom:239.226667pt;}
.y156{bottom:241.626667pt;}
.y287{bottom:242.266667pt;}
.y220{bottom:243.106667pt;}
.y1bd{bottom:244.066667pt;}
.y28{bottom:245.186667pt;}
.y11f{bottom:245.826667pt;}
.y266{bottom:246.306667pt;}
.y8e{bottom:247.906667pt;}
.yd1{bottom:248.546667pt;}
.yad{bottom:250.626667pt;}
.y1e5{bottom:250.786667pt;}
.y140{bottom:250.946667pt;}
.yf5{bottom:251.746667pt;}
.y1a4{bottom:251.906667pt;}
.y2dc{bottom:255.106667pt;}
.y2ad{bottom:255.266667pt;}
.y10e{bottom:255.426667pt;}
.y22d{bottom:256.213333pt;}
.y22c{bottom:256.226667pt;}
.y64{bottom:257.986667pt;}
.y31e{bottom:259.746667pt;}
.y5c{bottom:260.066667pt;}
.y107{bottom:261.666667pt;}
.y2a8{bottom:263.266667pt;}
.y188{bottom:264.226667pt;}
.y250{bottom:264.546667pt;}
.y325{bottom:264.866667pt;}
.y1ab{bottom:265.506667pt;}
.y155{bottom:266.946667pt;}
.y2f{bottom:267.746667pt;}
.y21f{bottom:268.386667pt;}
.y1bc{bottom:269.346667pt;}
.y11e{bottom:271.266667pt;}
.y265{bottom:271.586667pt;}
.y8d{bottom:273.186667pt;}
.yd0{bottom:273.826667pt;}
.y6c{bottom:274.146667pt;}
.y1e3{bottom:274.466667pt;}
.y13f{bottom:276.226667pt;}
.y324{bottom:279.106667pt;}
.yf4{bottom:280.706667pt;}
.y1a3{bottom:284.066667pt;}
.yac{bottom:284.706667pt;}
.y2db{bottom:285.186667pt;}
.y5b{bottom:285.346667pt;}
.y106{bottom:286.946667pt;}
.y22b{bottom:287.586667pt;}
.y2a7{bottom:288.546667pt;}
.y187{bottom:289.666667pt;}
.y24f{bottom:289.826667pt;}
.y154{bottom:292.226667pt;}
.y31d{bottom:292.386667pt;}
.y286{bottom:293.026667pt;}
.y21e{bottom:293.666667pt;}
.y1bb{bottom:294.626667pt;}
.y11d{bottom:296.546667pt;}
.y1aa{bottom:297.826667pt;}
.y8c{bottom:298.466667pt;}
.ycf{bottom:299.106667pt;}
.y27{bottom:299.293333pt;}
.y264{bottom:300.066667pt;}
.y13e{bottom:301.506667pt;}
.y16{bottom:301.666667pt;}
.y63{bottom:304.066667pt;}
.yf3{bottom:305.986667pt;}
.y323{bottom:308.226667pt;}
.y1a2{bottom:309.986667pt;}
.y5a{bottom:310.626667pt;}
.y105{bottom:312.226667pt;}
.y1e2{bottom:313.986667pt;}
.y186{bottom:314.946667pt;}
.y24e{bottom:315.266667pt;}
.y2da{bottom:315.426667pt;}
.y153{bottom:317.506667pt;}
.y285{bottom:318.306667pt;}
.yab{bottom:318.626667pt;}
.y21d{bottom:318.946667pt;}
.y1ba{bottom:319.906667pt;}
.y11c{bottom:321.826667pt;}
.y352{bottom:323.106667pt;}
.y31c{bottom:323.426667pt;}
.y8b{bottom:323.746667pt;}
.yce{bottom:324.386667pt;}
.y1a9{bottom:325.666667pt;}
.y1e1{bottom:326.306667pt;}
.y13d{bottom:326.786667pt;}
.y263{bottom:329.026667pt;}
.y24c{bottom:329.506667pt;}
.y1a1{bottom:330.626667pt;}
.yf2{bottom:331.426667pt;}
.y22a{bottom:334.146667pt;}
.y15{bottom:335.586667pt;}
.y59{bottom:335.906667pt;}
.y104{bottom:337.506667pt;}
.y2a6{bottom:339.266667pt;}
.y185{bottom:340.226667pt;}
.y152{bottom:342.786667pt;}
.y284{bottom:343.586667pt;}
.y21c{bottom:344.226667pt;}
.y1b9{bottom:345.186667pt;}
.y353{bottom:345.346667pt;}
.y2d9{bottom:345.666667pt;}
.y11b{bottom:347.106667pt;}
.y1e0{bottom:347.586667pt;}
.y8a{bottom:349.026667pt;}
.ycd{bottom:349.826667pt;}
.y62{bottom:349.986667pt;}
.y13c{bottom:352.226667pt;}
.yaa{bottom:352.546667pt;}
.y244{bottom:353.186667pt;}
.y26{bottom:353.533333pt;}
.y1a0{bottom:353.666667pt;}
.y262{bottom:354.306667pt;}
.yf1{bottom:356.706667pt;}
.y58{bottom:361.186667pt;}
.y103{bottom:362.786667pt;}
.y2a5{bottom:364.546667pt;}
.y184{bottom:365.506667pt;}
.y31b{bottom:366.626667pt;}
.y350{bottom:367.746667pt;}
.y151{bottom:368.226667pt;}
.y283{bottom:368.866667pt;}
.y24b{bottom:369.186667pt;}
.y14{bottom:369.506667pt;}
.y1b8{bottom:370.626667pt;}
.y11a{bottom:372.386667pt;}
.y1df{bottom:373.026667pt;}
.y89{bottom:374.306667pt;}
.ycc{bottom:375.106667pt;}
.y2d8{bottom:375.746667pt;}
.y13b{bottom:377.506667pt;}
.y261{bottom:379.586667pt;}
.y19f{bottom:380.706667pt;}
.y319{bottom:380.866667pt;}
.yf0{bottom:381.986667pt;}
.y24a{bottom:385.186667pt;}
.ya9{bottom:386.466667pt;}
.y57{bottom:386.626667pt;}
.y102{bottom:388.066667pt;}
.y2a4{bottom:389.826667pt;}
.y351{bottom:389.986667pt;}
.y2d7{bottom:390.626667pt;}
.y183{bottom:390.786667pt;}
.y150{bottom:393.506667pt;}
.y282{bottom:394.146667pt;}
.y21b{bottom:394.786667pt;}
.y1b7{bottom:395.906667pt;}
.y119{bottom:397.666667pt;}
.y1de{bottom:398.306667pt;}
.y88{bottom:399.586667pt;}
.ycb{bottom:400.386667pt;}
.y249{bottom:401.186667pt;}
.y31a{bottom:401.506667pt;}
.y13a{bottom:402.786667pt;}
.y13{bottom:403.426667pt;}
.y260{bottom:405.026667pt;}
.yef{bottom:407.266667pt;}
.y25{bottom:407.613333pt;}
.y2d6{bottom:409.026667pt;}
.y19e{bottom:409.666667pt;}
.y56{bottom:411.906667pt;}
.y228{bottom:412.226667pt;}
.y34e{bottom:412.386667pt;}
.y101{bottom:413.346667pt;}
.y2a3{bottom:415.106667pt;}
.y248{bottom:417.186667pt;}
.y14f{bottom:418.786667pt;}
.y182{bottom:419.266667pt;}
.y281{bottom:419.426667pt;}
.y21a{bottom:420.066667pt;}
.ya8{bottom:420.386667pt;}
.y1b6{bottom:421.186667pt;}
.y317{bottom:422.146667pt;}
.y118{bottom:422.946667pt;}
.y1dd{bottom:423.586667pt;}
.y87{bottom:424.866667pt;}
.yca{bottom:425.666667pt;}
.y2d5{bottom:427.426667pt;}
.y139{bottom:428.066667pt;}
.y1c6{bottom:428.866667pt;}
.y25f{bottom:430.306667pt;}
.yee{bottom:432.546667pt;}
.y34f{bottom:434.626667pt;}
.y19d{bottom:434.946667pt;}
.y55{bottom:437.186667pt;}
.y12{bottom:437.346667pt;}
.y100{bottom:438.786667pt;}
.y2a2{bottom:440.386667pt;}
.y240{bottom:440.706667pt;}
.y318{bottom:442.786667pt;}
.y14e{bottom:444.066667pt;}
.y280{bottom:444.706667pt;}
.y219{bottom:445.346667pt;}
.y2d4{bottom:445.826667pt;}
.y1b5{bottom:446.466667pt;}
.y117{bottom:448.226667pt;}
.y1dc{bottom:448.866667pt;}
.y86{bottom:450.146667pt;}
.yc9{bottom:450.946667pt;}
.y138{bottom:453.346667pt;}
.ya7{bottom:454.306667pt;}
.y25e{bottom:455.586667pt;}
.y34c{bottom:457.026667pt;}
.yed{bottom:457.826667pt;}
.y19c{bottom:460.226667pt;}
.y54{bottom:462.466667pt;}
.y315{bottom:463.426667pt;}
.yff{bottom:464.066667pt;}
.y2d3{bottom:464.226667pt;}
.y2a1{bottom:465.666667pt;}
.y14d{bottom:469.346667pt;}
.y27f{bottom:469.986667pt;}
.y242{bottom:470.626667pt;}
.y218{bottom:470.786667pt;}
.y11{bottom:471.266667pt;}
.y116{bottom:473.506667pt;}
.y1db{bottom:474.146667pt;}
.y227{bottom:474.786667pt;}
.y1b4{bottom:474.946667pt;}
.y85{bottom:475.586667pt;}
.yc8{bottom:476.226667pt;}
.y137{bottom:478.626667pt;}
.y34d{bottom:479.426667pt;}
.y25d{bottom:480.866667pt;}
.y2d2{bottom:482.626667pt;}
.yec{bottom:483.106667pt;}
.y316{bottom:484.066667pt;}
.y19b{bottom:485.506667pt;}
.y226{bottom:487.106667pt;}
.y53{bottom:487.746667pt;}
.ya6{bottom:488.226667pt;}
.yfe{bottom:489.346667pt;}
.y2a0{bottom:490.946667pt;}
.y14c{bottom:494.653333pt;}
.y27e{bottom:495.453333pt;}
.y217{bottom:496.093333pt;}
.y181{bottom:498.973333pt;}
.y1da{bottom:499.453333pt;}
.y84{bottom:500.893333pt;}
.y2d1{bottom:501.053333pt;}
.yc7{bottom:501.533333pt;}
.y34a{bottom:501.693333pt;}
.y115{bottom:502.173333pt;}
.y136{bottom:503.933333pt;}
.y313{bottom:504.893333pt;}
.y10{bottom:505.213333pt;}
.y25c{bottom:506.173333pt;}
.yeb{bottom:508.413333pt;}
.y19a{bottom:510.813333pt;}
.y52{bottom:513.053333pt;}
.y1d8{bottom:513.693333pt;}
.yfd{bottom:514.653333pt;}
.y29f{bottom:516.253333pt;}
.y23f{bottom:517.213333pt;}
.y2d0{bottom:519.453333pt;}
.y16c{bottom:519.933333pt;}
.y27d{bottom:520.733333pt;}
.y216{bottom:521.373333pt;}
.ya5{bottom:522.173333pt;}
.y14b{bottom:523.133333pt;}
.y34b{bottom:524.093333pt;}
.y180{bottom:524.253333pt;}
.y314{bottom:525.533333pt;}
.y83{bottom:526.173333pt;}
.yc6{bottom:526.813333pt;}
.y135{bottom:529.213333pt;}
.y25b{bottom:531.453333pt;}
.yea{bottom:533.693333pt;}
.y199{bottom:536.093333pt;}
.y1cd{bottom:537.373333pt;}
.y2cf{bottom:537.853333pt;}
.y51{bottom:538.333333pt;}
.yf{bottom:539.133333pt;}
.yfc{bottom:539.933333pt;}
.y29e{bottom:541.693333pt;}
.y16b{bottom:545.213333pt;}
.y27c{bottom:546.013333pt;}
.y311{bottom:546.173333pt;}
.y348{bottom:546.333333pt;}
.y215{bottom:546.653333pt;}
.y14a{bottom:549.053333pt;}
.y17f{bottom:549.533333pt;}
.y82{bottom:551.453333pt;}
.yc5{bottom:552.093333pt;}
.y134{bottom:554.493333pt;}
.y1f7{bottom:555.453333pt;}
.ya4{bottom:556.093333pt;}
.y2ce{bottom:556.253333pt;}
.y23e{bottom:556.733333pt;}
.ye9{bottom:559.133333pt;}
.y198{bottom:561.533333pt;}
.y50{bottom:563.613333pt;}
.y35{bottom:566.720000pt;}
.y312{bottom:566.813333pt;}
.y29d{bottom:566.973333pt;}
.yfb{bottom:568.573333pt;}
.y349{bottom:568.733333pt;}
.y23d{bottom:569.053333pt;}
.y149{bottom:569.693333pt;}
.y16a{bottom:570.493333pt;}
.y27b{bottom:571.293333pt;}
.y214{bottom:571.933333pt;}
.y1d6{bottom:572.093333pt;}
.ye{bottom:573.053333pt;}
.y2cd{bottom:574.653333pt;}
.y17e{bottom:574.813333pt;}
.y81{bottom:576.733333pt;}
.yc4{bottom:577.533333pt;}
.y133{bottom:579.933333pt;}
.y26b{bottom:580.733333pt;}
.y23c{bottom:581.533333pt;}
.y25a{bottom:582.013333pt;}
.ye8{bottom:584.413333pt;}
.y213{bottom:586.173333pt;}
.y197{bottom:586.813333pt;}
.y30f{bottom:587.453333pt;}
.y1d4{bottom:588.093333pt;}
.y4f{bottom:588.893333pt;}
.y37{bottom:589.853333pt;}
.ya3{bottom:590.013333pt;}
.y346{bottom:591.133333pt;}
.y29c{bottom:592.253333pt;}
.y148{bottom:592.733333pt;}
.y2cc{bottom:593.053333pt;}
.y169{bottom:595.933333pt;}
.y27a{bottom:596.573333pt;}
.y17d{bottom:600.093333pt;}
.y80{bottom:602.013333pt;}
.yc3{bottom:602.813333pt;}
.yfa{bottom:603.453333pt;}
.y1d2{bottom:604.093333pt;}
.y34{bottom:604.573333pt;}
.y132{bottom:605.213333pt;}
.y1a7{bottom:606.013333pt;}
.yd{bottom:606.973333pt;}
.y259{bottom:607.293333pt;}
.y310{bottom:608.093333pt;}
.ye7{bottom:609.693333pt;}
.y2ca{bottom:611.453333pt;}
.y196{bottom:612.093333pt;}
.y347{bottom:613.373333pt;}
.y4e{bottom:614.333333pt;}
.y147{bottom:615.773333pt;}
.y29b{bottom:617.533333pt;}
.y168{bottom:621.213333pt;}
.y33{bottom:621.853333pt;}
.ya2{bottom:623.933333pt;}
.y17c{bottom:625.373333pt;}
.y7f{bottom:627.293333pt;}
.y35d{bottom:627.453333pt;}
.y1cc{bottom:627.773333pt;}
.yc2{bottom:628.093333pt;}
.y30d{bottom:628.893333pt;}
.y2c9{bottom:629.853333pt;}
.y131{bottom:630.493333pt;}
.y18f{bottom:631.293333pt;}
.y258{bottom:632.733333pt;}
.y20f{bottom:632.893333pt;}
.ye6{bottom:634.973333pt;}
.y344{bottom:635.773333pt;}
.y195{bottom:637.373333pt;}
.y4d{bottom:639.613333pt;}
.yc{bottom:640.893333pt;}
.y29a{bottom:642.813333pt;}
.y167{bottom:646.493333pt;}
.y279{bottom:647.133333pt;}
.y2c8{bottom:648.253333pt;}
.y146{bottom:649.053333pt;}
.y30e{bottom:649.533333pt;}
.y17b{bottom:650.653333pt;}
.y7e{bottom:652.573333pt;}
.yc1{bottom:653.373333pt;}
.y1ca{bottom:653.693333pt;}
.y130{bottom:655.773333pt;}
.ya1{bottom:657.853333pt;}
.y345{bottom:658.013333pt;}
.y1b3{bottom:658.973333pt;}
.ye5{bottom:660.253333pt;}
.y257{bottom:661.213333pt;}
.y194{bottom:662.653333pt;}
.y2ed{bottom:663.453333pt;}
.y4c{bottom:664.893333pt;}
.y35c{bottom:665.213333pt;}
.y2c7{bottom:666.653333pt;}
.y299{bottom:668.093333pt;}
.y308{bottom:670.186667pt;}
.y166{bottom:671.773333pt;}
.y278{bottom:672.413333pt;}
.yb{bottom:674.813333pt;}
.y17a{bottom:675.933333pt;}
.y7d{bottom:677.853333pt;}
.yc0{bottom:678.653333pt;}
.y340{bottom:680.413333pt;}
.y12f{bottom:681.053333pt;}
.y2c4{bottom:685.066667pt;}
.ye4{bottom:685.533333pt;}
.y193{bottom:687.933333pt;}
.y4b{bottom:690.173333pt;}
.yb4{bottom:690.333333pt;}
.y30a{bottom:690.813333pt;}
.ya0{bottom:691.773333pt;}
.y298{bottom:693.373333pt;}
.y20e{bottom:694.813333pt;}
.y1c9{bottom:695.453333pt;}
.y2ec{bottom:696.093333pt;}
.y165{bottom:697.053333pt;}
.y277{bottom:697.693333pt;}
.y256{bottom:699.613333pt;}
.y2ea{bottom:699.933333pt;}
.y179{bottom:701.213333pt;}
.y341{bottom:702.666667pt;}
.y7c{bottom:703.293333pt;}
.y2c3{bottom:703.453333pt;}
.ybf{bottom:703.933333pt;}
.y12e{bottom:706.333333pt;}
.yf6{bottom:707.133333pt;}
.y1c8{bottom:707.933333pt;}
.ya{bottom:708.733333pt;}
.y35b{bottom:710.013333pt;}
.ye3{bottom:710.813333pt;}
.y306{bottom:711.453333pt;}
.y192{bottom:713.213333pt;}
.y4a{bottom:715.453333pt;}
.y297{bottom:718.653333pt;}
.y2c2{bottom:721.853333pt;}
.y164{bottom:722.333333pt;}
.y276{bottom:723.133333pt;}
.y33e{bottom:725.053333pt;}
.y9f{bottom:725.693333pt;}
.y178{bottom:726.653333pt;}
.y7b{bottom:728.573333pt;}
.y2eb{bottom:728.893333pt;}
.ybe{bottom:729.213333pt;}
.y2e9{bottom:730.173333pt;}
.y307{bottom:732.093333pt;}
.y12d{bottom:734.813333pt;}
.ye2{bottom:736.093333pt;}
.y191{bottom:738.493333pt;}
.y2c1{bottom:740.253333pt;}
.y49{bottom:740.733333pt;}
.y208{bottom:741.546667pt;}
.y9{bottom:742.653333pt;}
.y296{bottom:743.933333pt;}
.y33f{bottom:747.493333pt;}
.y163{bottom:747.653333pt;}
.y275{bottom:748.453333pt;}
.y177{bottom:751.973333pt;}
.y304{bottom:752.933333pt;}
.y7a{bottom:753.893333pt;}
.ybd{bottom:754.533333pt;}
.y2c0{bottom:758.693333pt;}
.y9e{bottom:759.653333pt;}
.ye1{bottom:761.413333pt;}
.y2e8{bottom:762.693333pt;}
.y12c{bottom:763.813333pt;}
.y48{bottom:766.053333pt;}
.yb3{bottom:766.213333pt;}
.y295{bottom:769.413333pt;}
.y33c{bottom:769.733333pt;}
.y162{bottom:772.933333pt;}
.y305{bottom:773.573333pt;}
.y274{bottom:773.733333pt;}
.y8{bottom:776.613333pt;}
.y2bf{bottom:777.093333pt;}
.y176{bottom:777.253333pt;}
.y35a{bottom:777.893333pt;}
.y79{bottom:779.173333pt;}
.ybc{bottom:779.813333pt;}
.y9d{bottom:786.693333pt;}
.ye0{bottom:786.853333pt;}
.y12b{bottom:789.253333pt;}
.y47{bottom:791.333333pt;}
.y33d{bottom:792.133333pt;}
.y302{bottom:794.213333pt;}
.y294{bottom:794.693333pt;}
.y2be{bottom:795.493333pt;}
.y161{bottom:798.213333pt;}
.y273{bottom:799.013333pt;}
.y175{bottom:802.533333pt;}
.y204{bottom:803.493333pt;}
.y78{bottom:804.453333pt;}
.ybb{bottom:805.253333pt;}
.y23b{bottom:808.453333pt;}
.y7{bottom:810.533333pt;}
.y359{bottom:811.813333pt;}
.ydf{bottom:812.133333pt;}
.y9c{bottom:812.293333pt;}
.y2bd{bottom:813.893333pt;}
.y339{bottom:814.373333pt;}
.y12a{bottom:814.533333pt;}
.y303{bottom:814.853333pt;}
.y46{bottom:816.613333pt;}
.y293{bottom:819.973333pt;}
.y160{bottom:823.653333pt;}
.y272{bottom:824.293333pt;}
.y174{bottom:827.813333pt;}
.y2e7{bottom:828.293333pt;}
.y77{bottom:829.733333pt;}
.yba{bottom:830.533333pt;}
.y2bc{bottom:832.293333pt;}
.y1b2{bottom:833.733333pt;}
.y2ff{bottom:835.493333pt;}
.y33b{bottom:836.773333pt;}
.yde{bottom:837.413333pt;}
.y9b{bottom:837.573333pt;}
.y129{bottom:839.813333pt;}
.y45{bottom:842.053333pt;}
.yb2{bottom:842.213333pt;}
.y6{bottom:844.613333pt;}
.y358{bottom:845.733333pt;}
.y15f{bottom:848.933333pt;}
.y271{bottom:849.573333pt;}
.y2bb{bottom:850.693333pt;}
.y292{bottom:852.613333pt;}
.y173{bottom:853.093333pt;}
.y76{bottom:855.013333pt;}
.yb9{bottom:855.813333pt;}
.y300{bottom:856.133333pt;}
.y335{bottom:859.173333pt;}
.y2e6{bottom:860.933333pt;}
.ydd{bottom:862.693333pt;}
.y9a{bottom:862.853333pt;}
.y128{bottom:865.093333pt;}
.y44{bottom:867.333333pt;}
.y2ba{bottom:869.093333pt;}
.y291{bottom:872.133333pt;}
.y15e{bottom:874.213333pt;}
.y270{bottom:874.853333pt;}
.y2f9{bottom:876.933333pt;}
.y172{bottom:878.373333pt;}
.y5{bottom:878.533333pt;}
.y357{bottom:879.653333pt;}
.y75{bottom:880.293333pt;}
.y200{bottom:880.933333pt;}
.yb8{bottom:881.093333pt;}
.y336{bottom:881.413333pt;}
.y255{bottom:884.293333pt;}
.y2b9{bottom:887.493333pt;}
.ydc{bottom:887.973333pt;}
.y99{bottom:888.133333pt;}
.y127{bottom:890.373333pt;}
.y2e5{bottom:891.333333pt;}
.y290{bottom:891.493333pt;}
.y43{bottom:892.613333pt;}
.yb1{bottom:892.773333pt;}
.y2fb{bottom:897.573333pt;}
.y15d{bottom:899.493333pt;}
.y26f{bottom:900.133333pt;}
.y171{bottom:903.653333pt;}
.y333{bottom:903.813333pt;}
.y74{bottom:905.573333pt;}
.y2b8{bottom:905.893333pt;}
.yb7{bottom:906.373333pt;}
.y1c0{bottom:909.573333pt;}
.y1fd{bottom:912.133333pt;}
.y4{bottom:912.453333pt;}
.ydb{bottom:913.253333pt;}
.y98{bottom:913.413333pt;}
.y356{bottom:913.573333pt;}
.y126{bottom:915.653333pt;}
.y42{bottom:917.893333pt;}
.y2f7{bottom:918.213333pt;}
.y190{bottom:918.853333pt;}
.y2e4{bottom:923.973333pt;}
.y2b6{bottom:924.293333pt;}
.y15c{bottom:924.773333pt;}
.y26e{bottom:925.413333pt;}
.y28f{bottom:925.733333pt;}
.y330{bottom:926.053333pt;}
.yb6{bottom:928.613333pt;}
.y73{bottom:931.013333pt;}
.yf9{bottom:931.653333pt;}
.y170{bottom:932.293333pt;}
.yda{bottom:938.533333pt;}
.y97{bottom:938.693333pt;}
.y2f5{bottom:938.853333pt;}
.y2b5{bottom:942.693333pt;}
.y41{bottom:943.173333pt;}
.y1fa{bottom:943.493333pt;}
.y28e{bottom:943.813333pt;}
.y125{bottom:944.133333pt;}
.y3{bottom:946.373333pt;}
.yb5{bottom:947.013333pt;}
.y355{bottom:947.493333pt;}
.y32e{bottom:948.453333pt;}
.y15b{bottom:950.053333pt;}
.y26d{bottom:950.853333pt;}
.y2e3{bottom:954.213333pt;}
.y72{bottom:956.293333pt;}
.yf8{bottom:956.933333pt;}
.y2f1{bottom:959.480000pt;}
.y2ef{bottom:959.493333pt;}
.y1c7{bottom:960.133333pt;}
.y2b4{bottom:961.093333pt;}
.yd9{bottom:963.813333pt;}
.y96{bottom:963.973333pt;}
.y26c{bottom:964.933333pt;}
.y40{bottom:968.453333pt;}
.yb0{bottom:968.613333pt;}
.y32c{bottom:970.680000pt;}
.y32a{bottom:970.693333pt;}
.y28d{bottom:978.053333pt;}
.y15a{bottom:978.533333pt;}
.y2b1{bottom:979.493333pt;}
.y2{bottom:980.293333pt;}
.y354{bottom:981.413333pt;}
.y71{bottom:981.573333pt;}
.y1a8{bottom:982.213333pt;}
.y2e2{bottom:984.453333pt;}
.yf7{bottom:985.413333pt;}
.yd8{bottom:989.093333pt;}
.y95{bottom:989.253333pt;}
.y28c{bottom:996.293333pt;}
.y6b{bottom:1003.200000pt;}
.y3f{bottom:1003.360000pt;}
.y1f9{bottom:1006.080000pt;}
.y159{bottom:1010.880000pt;}
.y1{bottom:1014.240000pt;}
.yd7{bottom:1014.560000pt;}
.y94{bottom:1014.720000pt;}
.y1f8{bottom:1018.560000pt;}
.y3e{bottom:1034.240000pt;}
.y39{bottom:1048.000000pt;}
.h3b{height:4.315000pt;}
.h3a{height:15.186667pt;}
.h23{height:15.346667pt;}
.h24{height:15.352000pt;}
.h1c{height:15.360000pt;}
.h41{height:16.946667pt;}
.h3f{height:16.960000pt;}
.h40{height:16.986667pt;}
.h3c{height:17.106667pt;}
.h3e{height:17.120000pt;}
.h3d{height:17.140000pt;}
.h1d{height:18.080000pt;}
.h46{height:19.986667pt;}
.h4d{height:20.000000pt;}
.h4c{height:20.020000pt;}
.h50{height:20.026667pt;}
.h53{height:20.946667pt;}
.h5a{height:20.960000pt;}
.h58{height:20.980000pt;}
.h5e{height:20.986667pt;}
.h55{height:21.106667pt;}
.h5b{height:21.120000pt;}
.h1e{height:22.866667pt;}
.h1f{height:23.026667pt;}
.h25{height:23.032000pt;}
.h1b{height:23.040000pt;}
.h22{height:23.058667pt;}
.h18{height:25.280000pt;}
.h38{height:29.266667pt;}
.h28{height:30.546667pt;}
.h33{height:30.552000pt;}
.h34{height:30.560000pt;}
.h27{height:30.706667pt;}
.h2f{height:30.716000pt;}
.h30{height:30.720000pt;}
.h51{height:33.312000pt;}
.h52{height:33.320000pt;}
.h44{height:35.826667pt;}
.h42{height:35.832000pt;}
.h43{height:35.840000pt;}
.h10{height:36.800000pt;}
.h49{height:40.151250pt;}
.h48{height:40.626667pt;}
.h4e{height:40.640000pt;}
.h4b{height:40.660000pt;}
.h4f{height:40.666667pt;}
.h4a{height:42.693125pt;}
.h56{height:43.186667pt;}
.h5c{height:43.200000pt;}
.h54{height:43.346667pt;}
.h59{height:43.360000pt;}
.h57{height:43.380000pt;}
.h5d{height:43.386667pt;}
.h47{height:44.505000pt;}
.h2{height:44.648750pt;}
.h11{height:44.722500pt;}
.h2e{height:45.906667pt;}
.h35{height:45.912000pt;}
.h37{height:45.946667pt;}
.h26{height:46.066667pt;}
.h2d{height:46.076000pt;}
.h2b{height:46.080000pt;}
.h31{height:46.098667pt;}
.h32{height:46.100000pt;}
.h12{height:47.322500pt;}
.h21{height:47.621250pt;}
.he{height:50.062500pt;}
.h15{height:52.785000pt;}
.h45{height:54.598989pt;}
.h7{height:55.402500pt;}
.h5{height:57.375000pt;}
.h2c{height:61.280000pt;}
.h2a{height:61.298667pt;}
.h14{height:61.410000pt;}
.h17{height:63.035000pt;}
.h8{height:65.781915pt;}
.h6{height:66.750000pt;}
.h36{height:75.866667pt;}
.h29{height:76.626667pt;}
.hf{height:77.120000pt;}
.h16{height:78.097500pt;}
.h4{height:86.062500pt;}
.h39{height:86.866667pt;}
.h19{height:89.756000pt;}
.h1a{height:89.760000pt;}
.h13{height:111.472500pt;}
.h20{height:119.060000pt;}
.ha{height:155.527500pt;}
.hb{height:155.661000pt;}
.hd{height:200.250000pt;}
.h3{height:215.360000pt;}
.h9{height:443.360000pt;}
.hc{height:443.426667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3d{width:31.040000pt;}
.w2f{width:31.360000pt;}
.w30{width:31.680000pt;}
.w34{width:33.426667pt;}
.w28{width:34.546667pt;}
.w29{width:34.706667pt;}
.w52{width:37.106667pt;}
.w59{width:37.746667pt;}
.w27{width:41.952000pt;}
.w2a{width:42.066667pt;}
.w3b{width:44.640000pt;}
.w3c{width:44.960000pt;}
.w55{width:45.952000pt;}
.w51{width:46.386667pt;}
.w54{width:46.546667pt;}
.w53{width:46.578667pt;}
.w5b{width:46.706667pt;}
.w5a{width:47.218667pt;}
.w58{width:47.346667pt;}
.w48{width:47.392000pt;}
.w50{width:48.960000pt;}
.w4d{width:53.618667pt;}
.w4e{width:53.920000pt;}
.w57{width:53.938667pt;}
.w4f{width:54.560000pt;}
.w40{width:57.112000pt;}
.w35{width:57.752000pt;}
.w1e{width:58.386667pt;}
.w3e{width:60.192000pt;}
.w31{width:60.512000pt;}
.w38{width:62.720000pt;}
.w26{width:63.840000pt;}
.w2c{width:64.480000pt;}
.w33{width:67.698667pt;}
.w7{width:76.306667pt;}
.w1f{width:80.818667pt;}
.w4a{width:84.146667pt;}
.w56{width:84.312000pt;}
.w49{width:84.632000pt;}
.w4c{width:84.952000pt;}
.w37{width:89.920000pt;}
.w4b{width:93.778667pt;}
.w3f{width:95.826667pt;}
.w32{width:96.146667pt;}
.w46{width:97.312000pt;}
.w41{width:97.458667pt;}
.w36{width:97.778667pt;}
.w3a{width:100.818667pt;}
.w45{width:104.160000pt;}
.w44{width:108.498667pt;}
.w23{width:112.786667pt;}
.w12{width:114.578667pt;}
.w11{width:121.266667pt;}
.w17{width:121.778667pt;}
.w10{width:125.312000pt;}
.w18{width:131.676000pt;}
.w15{width:131.680000pt;}
.w16{width:131.712000pt;}
.w19{width:131.720000pt;}
.w43{width:132.032000pt;}
.w1d{width:139.853333pt;}
.w22{width:141.946667pt;}
.w25{width:142.586667pt;}
.w39{width:156.346667pt;}
.w2d{width:156.973333pt;}
.w2b{width:157.293333pt;}
.w24{width:157.773333pt;}
.w21{width:158.413333pt;}
.w47{width:178.573333pt;}
.w14{width:178.578667pt;}
.w1b{width:188.978667pt;}
.w20{width:189.458667pt;}
.wf{width:202.578667pt;}
.w13{width:202.586667pt;}
.wc{width:216.338667pt;}
.we{width:216.346667pt;}
.w5{width:222.880000pt;}
.w9{width:235.218667pt;}
.wb{width:235.226667pt;}
.w1c{width:237.146667pt;}
.w2e{width:246.106667pt;}
.wa{width:329.666667pt;}
.wd{width:348.546667pt;}
.w3{width:452.800000pt;}
.w4{width:452.906667pt;}
.w6{width:489.680000pt;}
.w2{width:560.586667pt;}
.w8{width:565.680000pt;}
.w1a{width:567.280000pt;}
.w42{width:623.800000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:3.040000pt;}
.x50{left:4.786667pt;}
.xf{left:6.720000pt;}
.x2e{left:8.472000pt;}
.x4{left:9.600000pt;}
.x22{left:11.992000pt;}
.xc{left:12.946667pt;}
.x34{left:14.386667pt;}
.x5{left:15.680000pt;}
.x71{left:16.800000pt;}
.x24{left:17.912000pt;}
.x2a{left:19.346667pt;}
.x2b{left:21.106667pt;}
.x72{left:22.226667pt;}
.x48{left:23.186667pt;}
.x47{left:24.786667pt;}
.x67{left:26.240000pt;}
.x4b{left:27.386667pt;}
.x33{left:28.306667pt;}
.x6a{left:29.906667pt;}
.x53{left:30.880000pt;}
.x65{left:32.306667pt;}
.x31{left:33.760000pt;}
.x29{left:35.666667pt;}
.x35{left:36.946667pt;}
.x3b{left:38.386667pt;}
.x38{left:40.146667pt;}
.x37{left:41.746667pt;}
.x39{left:43.680000pt;}
.x21{left:45.106667pt;}
.x3a{left:47.186667pt;}
.x2d{left:49.426667pt;}
.x40{left:52.480000pt;}
.x4a{left:56.146667pt;}
.x23{left:57.906667pt;}
.x3c{left:62.546667pt;}
.x43{left:63.506667pt;}
.x41{left:65.760000pt;}
.x2c{left:70.066667pt;}
.x2f{left:74.546667pt;}
.x26{left:77.426667pt;}
.x54{left:79.226667pt;}
.x45{left:81.120000pt;}
.x1e{left:83.826667pt;}
.x70{left:85.120000pt;}
.x4c{left:94.706667pt;}
.x4d{left:103.680000pt;}
.x42{left:112.520000pt;}
.x2{left:113.472000pt;}
.x1a{left:121.472000pt;}
.x20{left:123.546667pt;}
.x11{left:128.192000pt;}
.xd{left:132.666667pt;}
.x28{left:136.826667pt;}
.x12{left:142.746667pt;}
.x5a{left:151.226667pt;}
.x10{left:160.666667pt;}
.x16{left:165.306667pt;}
.x15{left:170.266667pt;}
.x62{left:171.240000pt;}
.x17{left:188.986667pt;}
.xa{left:190.280000pt;}
.x1d{left:198.106667pt;}
.x25{left:205.786667pt;}
.x13{left:207.546667pt;}
.x1c{left:209.466667pt;}
.x9{left:212.453333pt;}
.x64{left:217.160000pt;}
.x1{left:264.186667pt;}
.x6{left:269.026667pt;}
.x6c{left:271.746667pt;}
.x3d{left:293.346667pt;}
.x44{left:302.146667pt;}
.x63{left:314.306667pt;}
.x30{left:317.346667pt;}
.x66{left:326.306667pt;}
.x27{left:331.266667pt;}
.x51{left:348.066667pt;}
.x1f{left:350.146667pt;}
.x5c{left:352.866667pt;}
.x59{left:355.746667pt;}
.x4f{left:357.826667pt;}
.x4e{left:359.746667pt;}
.x6d{left:381.506667pt;}
.x5d{left:390.946667pt;}
.x5b{left:396.866667pt;}
.x55{left:412.706667pt;}
.x5e{left:422.626667pt;}
.x3e{left:425.666667pt;}
.x68{left:431.106667pt;}
.x32{left:443.306667pt;}
.xb{left:454.013333pt;}
.x56{left:455.466667pt;}
.x5f{left:483.146667pt;}
.x52{left:490.666667pt;}
.x57{left:526.026667pt;}
.x69{left:529.066667pt;}
.x18{left:533.053333pt;}
.x46{left:539.946667pt;}
.x3f{left:558.026667pt;}
.x36{left:565.226667pt;}
.x58{left:568.746667pt;}
.x8{left:570.880000pt;}
.x6e{left:576.106667pt;}
.x60{left:579.306667pt;}
.x7{left:580.573333pt;}
.x1b{left:582.013333pt;}
.x49{left:598.986667pt;}
.x19{left:602.173333pt;}
.x6b{left:613.866667pt;}
.x14{left:615.133333pt;}
.x61{left:647.013333pt;}
.x6f{left:661.093333pt;}
.xe{left:680.933333pt;}
}




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