
    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_d2f499c677642df6169d059f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.002930;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_1839397992a0007ca3a771b3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.873535;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_4415cc1bbab6334a6cb44c5d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.895996;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_8777c85ed7d9a2bc4397296e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.861816;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_756a637f14ebe16192da6463.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.904297;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_66dea8adc375ca81a84ed721.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.895996;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_2d8d4cbaa4d4f2e47bfd7cfd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.871094;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_f745d020d1f7366f2bc56ad3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.857910;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_829fea6f25e8fc358feee16f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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_cb5c6990be29c375273b691f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;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_88c495f2760babda939cef50.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;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_0015b146c1848d4109213dad.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;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);}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.v3{vertical-align:61.920000px;}
.ls4e{letter-spacing:-1.391040px;}
.ls79{letter-spacing:-1.258560px;}
.ls82{letter-spacing:-1.192320px;}
.ls57{letter-spacing:-1.126080px;}
.ls54{letter-spacing:-1.059840px;}
.ls42{letter-spacing:-0.993600px;}
.ls22{letter-spacing:-0.927360px;}
.ls1e{letter-spacing:-0.861120px;}
.ls20{letter-spacing:-0.794880px;}
.lse{letter-spacing:-0.728640px;}
.ls7{letter-spacing:-0.675360px;}
.ls1f{letter-spacing:-0.662400px;}
.lsb{letter-spacing:-0.648000px;}
.ls31{letter-spacing:-0.596160px;}
.ls29{letter-spacing:-0.529920px;}
.ls12{letter-spacing:-0.463680px;}
.ls21{letter-spacing:-0.397440px;}
.ls2a{letter-spacing:-0.331200px;}
.lsd{letter-spacing:-0.264960px;}
.ls5{letter-spacing:-0.263520px;}
.ls24{letter-spacing:-0.198720px;}
.ls10{letter-spacing:-0.132480px;}
.ls14{letter-spacing:-0.132000px;}
.lsc{letter-spacing:-0.066240px;}
.ls3{letter-spacing:0.000000px;}
.ls2e{letter-spacing:0.019872px;}
.ls53{letter-spacing:0.026496px;}
.ls85{letter-spacing:0.046368px;}
.lsa{letter-spacing:0.048240px;}
.ls8a{letter-spacing:0.059616px;}
.ls11{letter-spacing:0.066240px;}
.ls6{letter-spacing:0.072000px;}
.ls66{letter-spacing:0.083520px;}
.ls7f{letter-spacing:0.105984px;}
.ls32{letter-spacing:0.106560px;}
.ls6c{letter-spacing:0.112608px;}
.ls8c{letter-spacing:0.125856px;}
.ls4{letter-spacing:0.131760px;}
.ls13{letter-spacing:0.132480px;}
.ls69{letter-spacing:0.138240px;}
.ls7e{letter-spacing:0.144000px;}
.ls56{letter-spacing:0.145728px;}
.ls2d{letter-spacing:0.149760px;}
.ls87{letter-spacing:0.165600px;}
.ls65{letter-spacing:0.167040px;}
.ls68{letter-spacing:0.169920px;}
.ls64{letter-spacing:0.172800px;}
.ls55{letter-spacing:0.184320px;}
.ls9{letter-spacing:0.192960px;}
.ls1d{letter-spacing:0.198720px;}
.ls4d{letter-spacing:0.205344px;}
.ls0{letter-spacing:0.242640px;}
.ls19{letter-spacing:0.245088px;}
.ls3c{letter-spacing:0.251712px;}
.ls74{letter-spacing:0.258336px;}
.lsf{letter-spacing:0.264960px;}
.ls81{letter-spacing:0.278208px;}
.ls33{letter-spacing:0.302400px;}
.ls59{letter-spacing:0.311328px;}
.ls2{letter-spacing:0.319680px;}
.ls88{letter-spacing:0.324576px;}
.ls23{letter-spacing:0.331200px;}
.ls8{letter-spacing:0.360000px;}
.ls7d{letter-spacing:0.437184px;}
.ls71{letter-spacing:0.463680px;}
.ls2c{letter-spacing:0.861120px;}
.ls52{letter-spacing:1.576512px;}
.ls1b{letter-spacing:1.589760px;}
.ls83{letter-spacing:2.285280px;}
.ls27{letter-spacing:2.318400px;}
.ls3d{letter-spacing:2.331648px;}
.ls6e{letter-spacing:2.351520px;}
.ls18{letter-spacing:3.047040px;}
.ls40{letter-spacing:3.669696px;}
.ls28{letter-spacing:3.775680px;}
.ls1{letter-spacing:4.438080px;}
.ls34{letter-spacing:5.166720px;}
.ls78{letter-spacing:5.173344px;}
.ls3e{letter-spacing:5.895360px;}
.ls61{letter-spacing:5.934240px;}
.ls35{letter-spacing:6.624000px;}
.ls70{letter-spacing:6.670368px;}
.ls8b{letter-spacing:7.286400px;}
.ls75{letter-spacing:7.332768px;}
.ls2f{letter-spacing:7.352640px;}
.ls5f{letter-spacing:7.399008px;}
.ls41{letter-spacing:8.081280px;}
.ls89{letter-spacing:8.624448px;}
.ls36{letter-spacing:8.809920px;}
.ls6a{letter-spacing:8.843040px;}
.ls3b{letter-spacing:9.538560px;}
.ls45{letter-spacing:10.200960px;}
.ls84{letter-spacing:10.267200px;}
.ls3f{letter-spacing:10.929600px;}
.ls50{letter-spacing:11.187936px;}
.ls7a{letter-spacing:11.419776px;}
.ls47{letter-spacing:11.658240px;}
.ls6b{letter-spacing:11.691360px;}
.ls46{letter-spacing:12.386880px;}
.ls5e{letter-spacing:12.525984px;}
.ls38{letter-spacing:13.115520px;}
.ls43{letter-spacing:13.844160px;}
.ls44{letter-spacing:13.897152px;}
.ls25{letter-spacing:14.572800px;}
.ls2b{letter-spacing:15.301440px;}
.ls26{letter-spacing:15.963840px;}
.ls58{letter-spacing:16.692480px;}
.ls5c{letter-spacing:17.421120px;}
.ls4f{letter-spacing:18.149760px;}
.ls49{letter-spacing:18.878400px;}
.ls4a{letter-spacing:18.904896px;}
.ls1c{letter-spacing:19.607040px;}
.ls80{letter-spacing:20.335680px;}
.ls48{letter-spacing:20.998080px;}
.ls6f{letter-spacing:21.726720px;}
.ls73{letter-spacing:22.026240px;}
.ls6d{letter-spacing:23.164128px;}
.ls51{letter-spacing:23.184000px;}
.ls1a{letter-spacing:23.912640px;}
.ls17{letter-spacing:24.641280px;}
.ls5d{letter-spacing:26.098560px;}
.ls8d{letter-spacing:26.760960px;}
.ls5a{letter-spacing:27.489600px;}
.ls86{letter-spacing:29.675520px;}
.ls76{letter-spacing:30.404160px;}
.ls77{letter-spacing:30.600000px;}
.ls3a{letter-spacing:31.829760px;}
.ls7b{letter-spacing:36.167040px;}
.ls62{letter-spacing:40.472640px;}
.ls63{letter-spacing:40.505760px;}
.ls37{letter-spacing:41.929920px;}
.ls60{letter-spacing:44.049600px;}
.ls4c{letter-spacing:45.506880px;}
.ls16{letter-spacing:49.812480px;}
.ls4b{letter-spacing:50.186880px;}
.ls15{letter-spacing:50.541120px;}
.ls7c{letter-spacing:59.351040px;}
.ls67{letter-spacing:69.287040px;}
.ls72{letter-spacing:101.678400px;}
.ls5b{letter-spacing:197.461440px;}
.ls39{letter-spacing:437.912640px;}
.ls30{letter-spacing:868.464000px;}
.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;}
}
.ws11e{word-spacing:-66.240000px;}
.wsa{word-spacing:-23.424000px;}
.ws11f{word-spacing:-16.416000px;}
.ws4{word-spacing:-16.344000px;}
.ws2{word-spacing:-16.272000px;}
.ws2a{word-spacing:-15.301440px;}
.ws46{word-spacing:-15.235200px;}
.ws8c{word-spacing:-15.221952px;}
.ws25{word-spacing:-15.168960px;}
.ws45{word-spacing:-15.102720px;}
.ws27{word-spacing:-15.036480px;}
.ws6{word-spacing:-14.970240px;}
.ws8{word-spacing:-14.904000px;}
.ws47{word-spacing:-14.837760px;}
.ws2c{word-spacing:-14.771520px;}
.ws9{word-spacing:-14.705280px;}
.ws10a{word-spacing:-14.639040px;}
.ws2b{word-spacing:-14.572800px;}
.ws76{word-spacing:-14.506560px;}
.ws44{word-spacing:-14.440320px;}
.wsa7{word-spacing:-14.374080px;}
.ws28{word-spacing:-14.307840px;}
.ws7{word-spacing:-14.241600px;}
.ws48{word-spacing:-14.175360px;}
.ws26{word-spacing:-14.109120px;}
.ws29{word-spacing:-14.042880px;}
.ws107{word-spacing:-13.976640px;}
.ws1{word-spacing:-11.095200px;}
.ws3{word-spacing:-10.950480px;}
.wsb{word-spacing:-10.848000px;}
.ws0{word-spacing:-10.226880px;}
.ws5{word-spacing:-9.437760px;}
.ws77{word-spacing:-0.927360px;}
.ws15{word-spacing:-0.861120px;}
.ws42{word-spacing:-0.728640px;}
.ws105{word-spacing:-0.662400px;}
.ws9d{word-spacing:-0.596160px;}
.ws14{word-spacing:-0.529920px;}
.ws12d{word-spacing:-0.463680px;}
.ws120{word-spacing:-0.397440px;}
.wsd{word-spacing:-0.395280px;}
.ws5f{word-spacing:-0.331200px;}
.ws79{word-spacing:-0.264960px;}
.ws78{word-spacing:-0.198720px;}
.ws35{word-spacing:-0.132480px;}
.ws1f{word-spacing:-0.132000px;}
.ws10{word-spacing:-0.072000px;}
.ws32{word-spacing:-0.066240px;}
.ws22{word-spacing:-0.042000px;}
.wsc{word-spacing:0.000000px;}
.ws53{word-spacing:0.066240px;}
.ws17{word-spacing:0.132480px;}
.ws12{word-spacing:0.198720px;}
.wsf{word-spacing:0.216000px;}
.ws64{word-spacing:0.264960px;}
.ws8d{word-spacing:0.331200px;}
.ws13{word-spacing:0.397440px;}
.ws60{word-spacing:0.463680px;}
.ws75{word-spacing:0.529920px;}
.ws1e{word-spacing:0.596160px;}
.wse{word-spacing:0.658800px;}
.ws3a{word-spacing:0.662400px;}
.ws24{word-spacing:0.684000px;}
.ws20{word-spacing:0.696000px;}
.ws2d{word-spacing:0.728640px;}
.ws23{word-spacing:0.750000px;}
.ws6c{word-spacing:0.794880px;}
.ws86{word-spacing:0.861120px;}
.ws3b{word-spacing:0.927360px;}
.ws11{word-spacing:0.936000px;}
.wsaa{word-spacing:0.993600px;}
.wsde{word-spacing:1.059840px;}
.ws67{word-spacing:1.126080px;}
.ws12f{word-spacing:1.192320px;}
.ws21{word-spacing:1.194000px;}
.ws112{word-spacing:1.258560px;}
.ws80{word-spacing:1.324800px;}
.wsb9{word-spacing:1.391040px;}
.ws40{word-spacing:1.457280px;}
.wsfc{word-spacing:1.523520px;}
.wsf4{word-spacing:1.589760px;}
.ws41{word-spacing:1.656000px;}
.ws6d{word-spacing:1.788480px;}
.ws66{word-spacing:1.854720px;}
.ws11b{word-spacing:2.053440px;}
.ws73{word-spacing:2.185920px;}
.ws113{word-spacing:2.252160px;}
.ws65{word-spacing:2.384640px;}
.ws132{word-spacing:2.450880px;}
.wsf5{word-spacing:2.517120px;}
.ws74{word-spacing:2.583360px;}
.ws134{word-spacing:2.715840px;}
.ws12e{word-spacing:2.782080px;}
.wsaf{word-spacing:2.914560px;}
.ws7a{word-spacing:2.980800px;}
.ws3d{word-spacing:3.113280px;}
.wse7{word-spacing:3.179520px;}
.ws110{word-spacing:3.245760px;}
.ws49{word-spacing:3.312000px;}
.ws4d{word-spacing:3.444480px;}
.wsb0{word-spacing:3.643200px;}
.wsac{word-spacing:3.709440px;}
.ws3c{word-spacing:3.841920px;}
.ws133{word-spacing:3.974400px;}
.ws68{word-spacing:4.040640px;}
.ws1d{word-spacing:4.173120px;}
.wsab{word-spacing:4.305600px;}
.ws1b{word-spacing:4.371840px;}
.ws1c{word-spacing:4.504320px;}
.ws109{word-spacing:4.636800px;}
.ws6e{word-spacing:4.703040px;}
.ws89{word-spacing:4.901760px;}
.ws7c{word-spacing:5.034240px;}
.ws11d{word-spacing:5.166720px;}
.ws4c{word-spacing:5.232960px;}
.ws111{word-spacing:5.365440px;}
.ws8b{word-spacing:5.431680px;}
.ws88{word-spacing:5.630400px;}
.ws55{word-spacing:5.762880px;}
.wseb{word-spacing:5.829120px;}
.ws51{word-spacing:5.961600px;}
.wsd0{word-spacing:6.027840px;}
.ws56{word-spacing:6.160320px;}
.wscf{word-spacing:6.359040px;}
.ws4e{word-spacing:6.491520px;}
.ws54{word-spacing:6.690240px;}
.ws143{word-spacing:6.822720px;}
.wsc6{word-spacing:6.888960px;}
.wsbf{word-spacing:7.021440px;}
.ws71{word-spacing:7.220160px;}
.ws7d{word-spacing:7.286400px;}
.ws7b{word-spacing:7.352640px;}
.ws6b{word-spacing:7.418880px;}
.wsf8{word-spacing:7.551360px;}
.ws6f{word-spacing:7.617600px;}
.wse5{word-spacing:7.816320px;}
.ws81{word-spacing:7.948800px;}
.ws10e{word-spacing:8.015040px;}
.wsa1{word-spacing:8.147520px;}
.wsc5{word-spacing:8.280000px;}
.ws82{word-spacing:8.346240px;}
.ws138{word-spacing:8.544960px;}
.ws7f{word-spacing:8.677440px;}
.ws135{word-spacing:8.809920px;}
.ws7e{word-spacing:8.876160px;}
.wsc0{word-spacing:9.008640px;}
.ws83{word-spacing:9.074880px;}
.ws144{word-spacing:9.141120px;}
.ws84{word-spacing:9.207360px;}
.ws140{word-spacing:9.273600px;}
.ws50{word-spacing:9.406080px;}
.ws130{word-spacing:9.472320px;}
.ws4f{word-spacing:9.604800px;}
.wsef{word-spacing:9.737280px;}
.ws94{word-spacing:9.803520px;}
.wsae{word-spacing:10.068480px;}
.ws136{word-spacing:10.200960px;}
.wsb7{word-spacing:10.267200px;}
.ws119{word-spacing:10.399680px;}
.wsb8{word-spacing:10.465920px;}
.wsfd{word-spacing:10.730880px;}
.ws31{word-spacing:10.797120px;}
.wsdb{word-spacing:10.863360px;}
.ws33{word-spacing:10.995840px;}
.wsf0{word-spacing:11.062080px;}
.wsda{word-spacing:11.128320px;}
.wsee{word-spacing:11.194560px;}
.wse8{word-spacing:11.525760px;}
.ws92{word-spacing:11.724480px;}
.ws106{word-spacing:11.856960px;}
.wsbe{word-spacing:11.923200px;}
.wsbd{word-spacing:12.254400px;}
.ws10c{word-spacing:12.320640px;}
.wsbb{word-spacing:12.386880px;}
.ws5c{word-spacing:12.453120px;}
.wsbc{word-spacing:12.585600px;}
.wsba{word-spacing:12.651840px;}
.wsb1{word-spacing:12.983040px;}
.wsad{word-spacing:13.049280px;}
.ws8a{word-spacing:13.181760px;}
.ws5d{word-spacing:13.380480px;}
.ws128{word-spacing:13.579200px;}
.wsb6{word-spacing:13.711680px;}
.ws6a{word-spacing:13.910400px;}
.ws125{word-spacing:14.042880px;}
.ws87{word-spacing:14.109120px;}
.ws57{word-spacing:14.440320px;}
.ws58{word-spacing:14.639040px;}
.wsf9{word-spacing:14.771520px;}
.ws85{word-spacing:14.837760px;}
.ws141{word-spacing:14.970240px;}
.ws12c{word-spacing:15.036480px;}
.ws5a{word-spacing:15.168960px;}
.wsd9{word-spacing:15.301440px;}
.ws69{word-spacing:15.367680px;}
.wsd8{word-spacing:15.433920px;}
.wsb5{word-spacing:15.566400px;}
.ws70{word-spacing:15.831360px;}
.ws5b{word-spacing:16.030080px;}
.wsb3{word-spacing:16.162560px;}
.ws59{word-spacing:16.228800px;}
.wsed{word-spacing:16.560000px;}
.wsb4{word-spacing:16.758720px;}
.wsec{word-spacing:16.891200px;}
.wsb2{word-spacing:16.957440px;}
.ws121{word-spacing:17.156160px;}
.wsdd{word-spacing:17.288640px;}
.ws63{word-spacing:17.421120px;}
.ws62{word-spacing:17.487360px;}
.wsdc{word-spacing:17.619840px;}
.ws9f{word-spacing:17.686080px;}
.wsc9{word-spacing:17.818560px;}
.wsd3{word-spacing:17.884800px;}
.wsd2{word-spacing:18.017280px;}
.ws52{word-spacing:18.216000px;}
.wsd4{word-spacing:18.282240px;}
.wsca{word-spacing:18.414720px;}
.ws12b{word-spacing:18.613440px;}
.ws10f{word-spacing:18.745920px;}
.wsc3{word-spacing:18.944640px;}
.ws137{word-spacing:19.077120px;}
.wsc4{word-spacing:19.143360px;}
.ws93{word-spacing:19.673280px;}
.ws43{word-spacing:19.872000px;}
.ws99{word-spacing:20.401920px;}
.wsc1{word-spacing:20.534400px;}
.ws124{word-spacing:20.600640px;}
.ws123{word-spacing:20.799360px;}
.ws36{word-spacing:20.865600px;}
.ws122{word-spacing:20.931840px;}
.ws34{word-spacing:21.064320px;}
.ws11a{word-spacing:21.263040px;}
.ws108{word-spacing:21.594240px;}
.wse4{word-spacing:21.792960px;}
.wse2{word-spacing:21.991680px;}
.ws4b{word-spacing:22.322880px;}
.wse3{word-spacing:22.389120px;}
.ws4a{word-spacing:22.521600px;}
.ws72{word-spacing:22.720320px;}
.ws3f{word-spacing:23.051520px;}
.wsdf{word-spacing:23.250240px;}
.ws126{word-spacing:23.448960px;}
.ws3e{word-spacing:23.780160px;}
.wsa9{word-spacing:23.978880px;}
.wsa8{word-spacing:24.111360px;}
.ws39{word-spacing:24.177600px;}
.wsd5{word-spacing:24.575040px;}
.ws38{word-spacing:24.707520px;}
.ws37{word-spacing:24.906240px;}
.wsd6{word-spacing:25.104960px;}
.wsf7{word-spacing:25.237440px;}
.wsfa{word-spacing:25.436160px;}
.wsd7{word-spacing:25.568640px;}
.wscc{word-spacing:25.833600px;}
.ws61{word-spacing:25.966080px;}
.wsfb{word-spacing:26.164800px;}
.wscd{word-spacing:26.231040px;}
.wsf6{word-spacing:26.363520px;}
.wscb{word-spacing:26.628480px;}
.ws13b{word-spacing:26.827200px;}
.wsce{word-spacing:27.025920px;}
.ws13a{word-spacing:27.224640px;}
.wsf1{word-spacing:27.555840px;}
.wsf3{word-spacing:27.688320px;}
.wsf2{word-spacing:27.754560px;}
.ws118{word-spacing:28.284480px;}
.ws13d{word-spacing:28.814400px;}
.wsc2{word-spacing:29.013120px;}
.ws10d{word-spacing:29.211840px;}
.ws139{word-spacing:29.410560px;}
.ws19{word-spacing:29.741760px;}
.ws13c{word-spacing:29.808000px;}
.ws1a{word-spacing:29.940480px;}
.ws116{word-spacing:30.271680px;}
.ws18{word-spacing:30.470400px;}
.ws117{word-spacing:30.536640px;}
.wsea{word-spacing:31.199040px;}
.wse9{word-spacing:31.397760px;}
.wse6{word-spacing:31.927680px;}
.ws90{word-spacing:32.126400px;}
.wsc8{word-spacing:33.517440px;}
.wsd1{word-spacing:33.848640px;}
.wsa5{word-spacing:34.047360px;}
.ws16{word-spacing:35.703360px;}
.ws11c{word-spacing:36.233280px;}
.ws115{word-spacing:36.763200px;}
.ws114{word-spacing:37.823040px;}
.ws101{word-spacing:39.611520px;}
.ws131{word-spacing:40.008960px;}
.ws102{word-spacing:40.538880px;}
.wse0{word-spacing:41.068800px;}
.ws8f{word-spacing:41.135040px;}
.wsa4{word-spacing:41.466240px;}
.wse1{word-spacing:41.797440px;}
.ws8e{word-spacing:41.996160px;}
.wsff{word-spacing:43.188480px;}
.ws12a{word-spacing:43.387200px;}
.ws100{word-spacing:43.519680px;}
.ws129{word-spacing:43.585920px;}
.wsfe{word-spacing:44.314560px;}
.wsc7{word-spacing:45.573120px;}
.ws91{word-spacing:49.348800px;}
.ws2e{word-spacing:49.878720px;}
.ws30{word-spacing:50.209920px;}
.ws9c{word-spacing:50.607360px;}
.ws2f{word-spacing:51.336000px;}
.wsa6{word-spacing:52.992000px;}
.ws9a{word-spacing:53.323200px;}
.ws142{word-spacing:53.521920px;}
.wsa3{word-spacing:53.720640px;}
.ws13f{word-spacing:56.370240px;}
.ws13e{word-spacing:57.098880px;}
.ws103{word-spacing:69.154560px;}
.ws127{word-spacing:69.353280px;}
.ws5e{word-spacing:69.552000px;}
.ws104{word-spacing:69.750720px;}
.ws97{word-spacing:74.387520px;}
.wsa2{word-spacing:75.314880px;}
.ws10b{word-spacing:101.545920px;}
.ws98{word-spacing:112.740480px;}
.ws9b{word-spacing:126.915840px;}
.wsa0{word-spacing:151.093440px;}
.ws95{word-spacing:152.153280px;}
.ws96{word-spacing:153.080640px;}
.ws9e{word-spacing:197.196480px;}
._1b{margin-left:-12.167328px;}
._7{margin-left:-2.152800px;}
._1{margin-left:-1.080672px;}
._0{width:1.212432px;}
._17{width:2.319120px;}
._6{width:3.573216px;}
._15{width:4.819152px;}
._8{width:5.961600px;}
._c{width:7.048896px;}
._11{width:8.437776px;}
._4{width:10.172640px;}
._f{width:11.671248px;}
._b{width:13.050000px;}
._10{width:16.261920px;}
._a{width:17.401008px;}
._9{width:18.725808px;}
._d{width:19.964256px;}
._5{width:21.105984px;}
._e{width:23.668512px;}
._12{width:29.497632px;}
._14{width:34.026048px;}
._2{width:35.715768px;}
._16{width:41.446128px;}
._18{width:43.989264px;}
._13{width:46.103040px;}
._3{width:51.097056px;}
._19{width:70.009200px;}
._1a{width:101.645280px;}
.fc5{color:rgb(255,0,0);}
.fc2{color:rgb(192,0,0);}
.fc1{color:rgb(0,0,255);}
.fc7{color:rgb(35,31,32);}
.fc6{color:rgb(37,37,37);}
.fc4{color:rgb(51,51,51);}
.fc3{color:rgb(92,92,92);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs5{font-size:48.000000px;}
.fs3{font-size:48.240000px;}
.fs7{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs8{font-size:77.760000px;}
.fs1{font-size:131.760000px;}
.fs6{font-size:141.120000px;}
.y0{bottom:0.000000px;}
.ye7{bottom:1.800000px;}
.yd8{bottom:3.240000px;}
.y3f{bottom:4.500000px;}
.y218{bottom:5.220000px;}
.y83{bottom:11.700000px;}
.y90{bottom:15.660000px;}
.y76{bottom:24.660000px;}
.ye1{bottom:29.880000px;}
.ye5{bottom:39.600000px;}
.y86{bottom:43.740000px;}
.y49{bottom:44.820000px;}
.y4c{bottom:46.260000px;}
.yf0{bottom:48.600000px;}
.y14{bottom:57.606480px;}
.yeb{bottom:58.680000px;}
.ydc{bottom:60.120000px;}
.y6a{bottom:64.800000px;}
.y65{bottom:64.980000px;}
.y21f{bottom:65.880000px;}
.y46{bottom:67.140000px;}
.yef{bottom:68.760000px;}
.y1{bottom:77.760000px;}
.yea{bottom:78.840000px;}
.y60{bottom:85.140000px;}
.yee{bottom:88.920000px;}
.y21c{bottom:106.920000px;}
.y85{bottom:107.280000px;}
.y88{bottom:116.280000px;}
.y208{bottom:119.121840px;}
.y1ce{bottom:121.865040px;}
.y283{bottom:121.946400px;}
.y2c3{bottom:123.680880px;}
.y59{bottom:124.056000px;}
.y163{bottom:124.542000px;}
.y2ae{bottom:124.922880px;}
.yd2{bottom:125.280000px;}
.y21a{bottom:127.980000px;}
.y41{bottom:128.340000px;}
.y235{bottom:128.760480px;}
.y19b{bottom:129.605760px;}
.ya9{bottom:129.831840px;}
.y87{bottom:130.860000px;}
.yc0{bottom:131.240880px;}
.y84{bottom:131.400000px;}
.y1e7{bottom:131.994000px;}
.y1a3{bottom:133.650000px;}
.yb8{bottom:134.527680px;}
.y137{bottom:140.986080px;}
.y282{bottom:142.099920px;}
.y272{bottom:142.211520px;}
.y1a2{bottom:142.560000px;}
.y2c2{bottom:143.834400px;}
.y1cd{bottom:144.992160px;}
.y2ad{bottom:145.076400px;}
.y58{bottom:147.273120px;}
.y162{bottom:147.759120px;}
.y211{bottom:147.960000px;}
.y234{bottom:148.914000px;}
.y108{bottom:151.053120px;}
.y14a{bottom:151.740000px;}
.y19a{bottom:152.822880px;}
.ya8{bottom:152.866800px;}
.ybf{bottom:154.458000px;}
.y1e6{bottom:155.028960px;}
.y207{bottom:157.276080px;}
.yb7{bottom:157.744800px;}
.y256{bottom:162.365040px;}
.y2c1{bottom:163.987920px;}
.y136{bottom:164.021040px;}
.y1a1{bottom:165.785040px;}
.y82{bottom:167.400000px;}
.y1cc{bottom:168.209280px;}
.y57{bottom:170.308080px;}
.y161{bottom:170.976240px;}
.y107{bottom:174.270240px;}
.y199{bottom:176.040000px;}
.ya7{bottom:176.083920px;}
.y1e5{bottom:178.246080px;}
.yb6{bottom:180.779760px;}
.y255{bottom:182.518560px;}
.y281{bottom:183.135600px;}
.y29b{bottom:185.068800px;}
.y2ac{bottom:186.112080px;}
.y135{bottom:187.238160px;}
.y1a0{bottom:188.820000px;}
.y20e{bottom:189.180000px;}
.y149{bottom:189.902880px;}
.y233{bottom:190.131840px;}
.y1cb{bottom:191.426400px;}
.ybe{bottom:192.612240px;}
.y56{bottom:193.525200px;}
.y128{bottom:193.873680px;}
.y160{bottom:194.011200px;}
.y206{bottom:195.430320px;}
.y106{bottom:197.487360px;}
.y198{bottom:199.080000px;}
.ya6{bottom:199.301040px;}
.y1e4{bottom:201.463200px;}
.y254{bottom:202.672080px;}
.y280{bottom:203.289120px;}
.y271{bottom:203.400720px;}
.y2c0{bottom:205.205760px;}
.y29a{bottom:205.222320px;}
.ycd{bottom:205.920000px;}
.y2ab{bottom:206.265600px;}
.y20d{bottom:209.340000px;}
.y232{bottom:210.285360px;}
.y134{bottom:210.455280px;}
.y19f{bottom:212.040000px;}
.y148{bottom:213.120000px;}
.y1ca{bottom:214.461360px;}
.y55{bottom:216.742320px;}
.y127{bottom:217.090800px;}
.y15f{bottom:217.228320px;}
.y81{bottom:218.195280px;}
.yb5{bottom:218.934000px;}
.y105{bottom:220.522320px;}
.y197{bottom:222.300000px;}
.y27f{bottom:223.442640px;}
.y270{bottom:223.554240px;}
.y1e3{bottom:224.498160px;}
.y2bf{bottom:225.359280px;}
.y299{bottom:225.375840px;}
.y2aa{bottom:226.419120px;}
.y20b{bottom:230.220000px;}
.ybd{bottom:230.766480px;}
.y133{bottom:233.490240px;}
.y205{bottom:233.584560px;}
.y19e{bottom:235.260000px;}
.y147{bottom:236.160000px;}
.ya5{bottom:237.455280px;}
.y1c9{bottom:237.678480px;}
.y126{bottom:240.307920px;}
.y15e{bottom:240.445440px;}
.y253{bottom:243.707760px;}
.y2be{bottom:245.512800px;}
.y196{bottom:245.520000px;}
.ycb{bottom:246.240000px;}
.y1e2{bottom:247.715280px;}
.y231{bottom:251.321040px;}
.y54{bottom:254.896560px;}
.y80{bottom:256.349520px;}
.y132{bottom:256.707360px;}
.yb4{bottom:257.088240px;}
.y19d{bottom:258.300000px;}
.y104{bottom:258.676560px;}
.y146{bottom:259.380000px;}
.ya4{bottom:260.490240px;}
.y1c8{bottom:260.895600px;}
.y125{bottom:263.342880px;}
.y15d{bottom:263.480400px;}
.y252{bottom:263.861280px;}
.y27e{bottom:264.660480px;}
.y2e0{bottom:266.394960px;}
.yca{bottom:266.400000px;}
.y298{bottom:266.411520px;}
.y2a9{bottom:267.636960px;}
.y195{bottom:268.560000px;}
.ybc{bottom:268.920720px;}
.y1e1{bottom:270.932400px;}
.y230{bottom:271.474560px;}
.y204{bottom:271.738800px;}
.y19c{bottom:277.291440px;}
.y7f{bottom:279.384480px;}
.yb3{bottom:280.305360px;}
.y103{bottom:281.893680px;}
.y145{bottom:282.600000px;}
.ya3{bottom:283.707360px;}
.y1c7{bottom:283.930560px;}
.y17e{bottom:283.998240px;}
.y251{bottom:284.014800px;}
.y27d{bottom:284.814000px;}
.y26f{bottom:284.925600px;}
.ye9{bottom:285.300000px;}
.y2bd{bottom:286.548480px;}
.yc9{bottom:286.560000px;}
.y297{bottom:286.565040px;}
.y124{bottom:286.588080px;}
.y15c{bottom:286.697520px;}
.y2a8{bottom:287.790480px;}
.y194{bottom:291.780000px;}
.y53{bottom:293.050800px;}
.y1e0{bottom:293.967360px;}
.yed{bottom:294.300000px;}
.y131{bottom:294.861600px;}
.y7e{bottom:302.601600px;}
.yb2{bottom:303.522480px;}
.y27c{bottom:304.967520px;}
.y26e{bottom:305.079120px;}
.y102{bottom:305.110800px;}
.y144{bottom:305.640000px;}
.y2bc{bottom:306.702000px;}
.y296{bottom:306.718560px;}
.ya2{bottom:306.924480px;}
.y1c6{bottom:307.147680px;}
.y17d{bottom:307.215360px;}
.y2a7{bottom:307.944000px;}
.y123{bottom:309.805200px;}
.y203{bottom:309.893040px;}
.y15b{bottom:309.914640px;}
.y22f{bottom:312.692400px;}
.yf1{bottom:313.920000px;}
.y193{bottom:315.000000px;}
.y52{bottom:316.085760px;}
.y1df{bottom:317.184480px;}
.y130{bottom:318.078720px;}
.yec{bottom:324.000000px;}
.y250{bottom:325.050480px;}
.y26d{bottom:325.232640px;}
.ya1{bottom:325.471680px;}
.y7d{bottom:325.818720px;}
.y2bb{bottom:326.855520px;}
.y2df{bottom:327.766320px;}
.y101{bottom:328.145760px;}
.y143{bottom:328.860000px;}
.y1c5{bottom:330.364800px;}
.y17c{bottom:330.432480px;}
.y122{bottom:332.840160px;}
.y22e{bottom:332.845920px;}
.y15a{bottom:332.949600px;}
.y192{bottom:338.040000px;}
.y51{bottom:339.302880px;}
.y1de{bottom:340.401600px;}
.y12f{bottom:341.113680px;}
.yf2{bottom:343.980000px;}
.yb1{bottom:344.558160px;}
.y24f{bottom:345.204000px;}
.y27b{bottom:346.003200px;}
.y2ba{bottom:347.009040px;}
.y2de{bottom:347.919840px;}
.y295{bottom:347.936400px;}
.y202{bottom:348.047280px;}
.y7c{bottom:348.853680px;}
.y2a6{bottom:348.979680px;}
.y100{bottom:351.362880px;}
.y142{bottom:352.080000px;}
.y1c4{bottom:353.399760px;}
.y17b{bottom:353.467440px;}
.y121{bottom:356.057280px;}
.y159{bottom:356.166720px;}
.y191{bottom:361.260000px;}
.y50{bottom:362.520000px;}
.y1dd{bottom:363.436560px;}
.y12e{bottom:364.330800px;}
.y27a{bottom:366.156720px;}
.y26c{bottom:366.268320px;}
.y2dd{bottom:368.073360px;}
.y294{bottom:368.089920px;}
.y2a5{bottom:369.133200px;}
.y201{bottom:371.082240px;}
.y7b{bottom:372.070800px;}
.y22d{bottom:373.881600px;}
.yff{bottom:374.580000px;}
.y141{bottom:375.120000px;}
.y1c3{bottom:376.616880px;}
.y17a{bottom:376.684560px;}
.y120{bottom:379.274400px;}
.y158{bottom:379.383840px;}
.yb0{bottom:382.712400px;}
.y190{bottom:384.501600px;}
.y279{bottom:386.310240px;}
.y24e{bottom:386.421840px;}
.y1dc{bottom:386.653680px;}
.y12d{bottom:387.547920px;}
.y2b9{bottom:388.044720px;}
.y293{bottom:388.243440px;}
.y2a4{bottom:389.286720px;}
.y200{bottom:394.299360px;}
.y7a{bottom:395.287920px;}
.y4b{bottom:396.900000px;}
.y140{bottom:398.340000px;}
.y1c2{bottom:399.834000px;}
.y179{bottom:399.901680px;}
.y157{bottom:402.418800px;}
.yaf{bottom:405.929520px;}
.y24d{bottom:406.575360px;}
.y18f{bottom:407.718720px;}
.y2b8{bottom:408.198240px;}
.y2dc{bottom:409.109040px;}
.y1db{bottom:409.870800px;}
.y12c{bottom:410.765040px;}
.yfe{bottom:412.740000px;}
.ye4{bottom:414.720000px;}
.y22c{bottom:415.099440px;}
.y11f{bottom:417.428640px;}
.y1ff{bottom:417.516480px;}
.y4f{bottom:417.780000px;}
.y79{bottom:418.322880px;}
.y13f{bottom:421.560000px;}
.y1c1{bottom:422.868960px;}
.y178{bottom:422.936640px;}
.y4d{bottom:423.000000px;}
.yae{bottom:424.642320px;}
.y156{bottom:425.635920px;}
.y278{bottom:427.345920px;}
.y26b{bottom:427.457520px;}
.y2b7{bottom:428.351760px;}
.y2db{bottom:429.262560px;}
.y292{bottom:429.279120px;}
.y18e{bottom:430.753680px;}
.y1da{bottom:433.087920px;}
.y2a3{bottom:433.568160px;}
.y12b{bottom:433.800000px;}
.ye6{bottom:434.160000px;}
.y22b{bottom:435.252960px;}
.yfd{bottom:435.780000px;}
.y4e{bottom:438.660000px;}
.y1fe{bottom:440.551440px;}
.y78{bottom:441.540000px;}
.y13e{bottom:444.600000px;}
.y1c0{bottom:446.086080px;}
.y177{bottom:446.153760px;}
.y277{bottom:447.499440px;}
.y24c{bottom:447.611040px;}
.y155{bottom:448.853040px;}
.y2da{bottom:449.416080px;}
.y291{bottom:449.432640px;}
.y18d{bottom:453.970800px;}
.ye8{bottom:454.320000px;}
.y11e{bottom:455.582880px;}
.y1d9{bottom:456.122880px;}
.y2a2{bottom:456.603120px;}
.y12a{bottom:457.017120px;}
.y75{bottom:457.920000px;}
.yfc{bottom:459.000000px;}
.y40{bottom:459.540000px;}
.y24b{bottom:467.764560px;}
.y13d{bottom:467.820000px;}
.y1bf{bottom:469.303200px;}
.y176{bottom:469.370880px;}
.y2b6{bottom:469.569600px;}
.y290{bottom:469.586160px;}
.y154{bottom:472.070160px;}
.y77{bottom:472.500000px;}
.ye3{bottom:474.300000px;}
.y22a{bottom:476.288640px;}
.y18c{bottom:477.187920px;}
.y1fd{bottom:478.887840px;}
.y11d{bottom:478.909440px;}
.y1d8{bottom:479.340000px;}
.y2a1{bottom:479.820240px;}
.yfb{bottom:482.220000px;}
.y4a{bottom:484.200000px;}
.y24a{bottom:487.918080px;}
.y276{bottom:488.717280px;}
.y26a{bottom:488.828880px;}
.y2a{bottom:489.706560px;}
.y2b5{bottom:489.723120px;}
.y2d9{bottom:490.451760px;}
.y129{bottom:490.683600px;}
.y13c{bottom:491.040000px;}
.y1be{bottom:492.338160px;}
.y175{bottom:492.405840px;}
.y153{bottom:495.105120px;}
.y71{bottom:498.960000px;}
.y18b{bottom:500.222880px;}
.y1fc{bottom:501.922800px;}
.y11c{bottom:501.944400px;}
.y1d7{bottom:502.565040px;}
.yfa{bottom:505.440000px;}
.ydb{bottom:505.620000px;}
.y275{bottom:508.870800px;}
.y269{bottom:508.982400px;}
.y2b4{bottom:509.876640px;}
.y2d8{bottom:510.605280px;}
.y28f{bottom:510.621840px;}
.y29{bottom:512.741520px;}
.y13b{bottom:514.260000px;}
.ye2{bottom:515.340000px;}
.y1bd{bottom:515.555280px;}
.y174{bottom:515.622960px;}
.y229{bottom:517.506480px;}
.y152{bottom:518.322240px;}
.y45{bottom:520.740000px;}
.y18a{bottom:523.440000px;}
.y73{bottom:523.620000px;}
.y2a0{bottom:524.101680px;}
.y1fb{bottom:525.139920px;}
.y11b{bottom:525.161520px;}
.yde{bottom:525.426480px;}
.y1d6{bottom:525.600000px;}
.y274{bottom:529.024320px;}
.y249{bottom:529.135920px;}
.y2d7{bottom:530.758800px;}
.y28e{bottom:530.775360px;}
.y74{bottom:533.700000px;}
.y13a{bottom:537.300000px;}
.y228{bottom:537.660000px;}
.y1bc{bottom:538.772400px;}
.y173{bottom:538.840080px;}
.yf9{bottom:539.138160px;}
.y48{bottom:541.620000px;}
.y72{bottom:543.780000px;}
.ydd{bottom:545.580000px;}
.y189{bottom:546.667920px;}
.y29f{bottom:547.136640px;}
.y43{bottom:547.566480px;}
.y1fa{bottom:548.357040px;}
.y11a{bottom:548.378640px;}
.y1d5{bottom:548.820000px;}
.y248{bottom:549.289440px;}
.y268{bottom:550.018080px;}
.y28{bottom:550.895760px;}
.y2b3{bottom:550.912320px;}
.y28d{bottom:550.928880px;}
.ye0{bottom:555.666480px;}
.y151{bottom:556.476480px;}
.y139{bottom:560.520000px;}
.y1bb{bottom:561.989520px;}
.y172{bottom:562.057200px;}
.y47{bottom:562.500000px;}
.y42{bottom:567.720000px;}
.y188{bottom:569.702880px;}
.y267{bottom:570.171600px;}
.y2b2{bottom:571.065840px;}
.y1f9{bottom:571.392000px;}
.y2d6{bottom:571.976640px;}
.y1d4{bottom:572.040000px;}
.y27{bottom:574.112880px;}
.ydf{bottom:575.820000px;}
.y6f{bottom:580.320000px;}
.y227{bottom:582.480000px;}
.y44{bottom:583.380000px;}
.y1ba{bottom:585.024480px;}
.y171{bottom:585.092160px;}
.y119{bottom:586.532880px;}
.y247{bottom:590.325120px;}
.y2b1{bottom:591.219360px;}
.y2d5{bottom:592.130160px;}
.y28c{bottom:592.146720px;}
.y187{bottom:592.920000px;}
.y138{bottom:594.183600px;}
.y1f8{bottom:594.609120px;}
.y150{bottom:594.630720px;}
.y1d3{bottom:595.080000px;}
.y26{bottom:597.330000px;}
.yd7{bottom:597.420000px;}
.y3e{bottom:604.260000px;}
.y70{bottom:604.980000px;}
.y1b9{bottom:608.241600px;}
.y170{bottom:608.309280px;}
.y118{bottom:609.567840px;}
.y246{bottom:610.478640px;}
.y266{bottom:611.389440px;}
.y2d4{bottom:612.283680px;}
.y28b{bottom:612.300240px;}
.y186{bottom:616.140000px;}
.y1d2{bottom:618.300000px;}
.y25{bottom:620.364960px;}
.y222{bottom:621.360000px;}
.yda{bottom:622.080000px;}
.y1b8{bottom:631.458720px;}
.y16f{bottom:631.526400px;}
.y265{bottom:631.542960px;}
.y2b0{bottom:632.437200px;}
.y28a{bottom:632.453760px;}
.y1f7{bottom:632.763360px;}
.y117{bottom:632.784960px;}
.y185{bottom:639.180000px;}
.y6d{bottom:641.520000px;}
.ya0{bottom:642.098880px;}
.yd6{bottom:642.240000px;}
.y24{bottom:643.582080px;}
.y226{bottom:646.014240px;}
.y3d{bottom:647.722080px;}
.y245{bottom:651.696480px;}
.y2af{bottom:652.590720px;}
.y2d3{bottom:653.319360px;}
.y1b7{bottom:654.493680px;}
.y16e{bottom:654.561360px;}
.y1f6{bottom:655.980480px;}
.y116{bottom:656.002080px;}
.yd9{bottom:662.400000px;}
.y1d1{bottom:664.560000px;}
.y9f{bottom:665.316000px;}
.y225{bottom:666.002160px;}
.y6e{bottom:666.180000px;}
.y23{bottom:666.799200px;}
.y244{bottom:671.850000px;}
.y264{bottom:672.578640px;}
.y2d2{bottom:673.472880px;}
.y289{bottom:673.489440px;}
.y1b6{bottom:677.710800px;}
.y16d{bottom:677.778480px;}
.y1f5{bottom:679.015440px;}
.y115{bottom:679.037040px;}
.yad{bottom:680.958000px;}
.y184{bottom:685.620000px;}
.y3c{bottom:685.876320px;}
.y224{bottom:687.066480px;}
.y1d0{bottom:687.813840px;}
.y9e{bottom:688.533120px;}
.y22{bottom:689.834160px;}
.y273{bottom:692.003520px;}
.y263{bottom:692.732160px;}
.y2d1{bottom:693.626400px;}
.y288{bottom:693.642960px;}
.yc8{bottom:698.940000px;}
.y1b5{bottom:700.927920px;}
.y16c{bottom:700.995600px;}
.y1f4{bottom:702.232560px;}
.y114{bottom:702.254160px;}
.y69{bottom:702.720000px;}
.yac{bottom:704.175120px;}
.y1cf{bottom:706.526640px;}
.y223{bottom:707.220000px;}
.y183{bottom:708.660000px;}
.y3b{bottom:709.093440px;}
.y9d{bottom:711.568080px;}
.y243{bottom:712.885680px;}
.y21{bottom:713.051280px;}
.y2d0{bottom:713.779920px;}
.y287{bottom:713.796480px;}
.y14f{bottom:717.191280px;}
.yd4{bottom:723.600000px;}
.y1b4{bottom:723.962880px;}
.y16b{bottom:724.030560px;}
.y1f3{bottom:725.449680px;}
.y113{bottom:725.471280px;}
.y6b{bottom:727.206480px;}
.yab{bottom:727.210080px;}
.y182{bottom:731.880000px;}
.y3a{bottom:732.310560px;}
.y242{bottom:733.039200px;}
.y262{bottom:733.950000px;}
.y9c{bottom:734.785200px;}
.y20{bottom:736.268400px;}
.y6c{bottom:737.280000px;}
.y14e{bottom:740.408400px;}
.y219{bottom:744.660000px;}
.y1b3{bottom:747.190800px;}
.y16a{bottom:747.247680px;}
.yd{bottom:747.360000px;}
.y112{bottom:748.506240px;}
.y241{bottom:753.192720px;}
.y261{bottom:754.103520px;}
.y2cf{bottom:754.815600px;}
.y286{bottom:754.832160px;}
.y181{bottom:755.100000px;}
.y39{bottom:755.345520px;}
.y9b{bottom:758.002320px;}
.y1f{bottom:759.303360px;}
.yaa{bottom:760.876560px;}
.y1f2{bottom:763.603920px;}
.y14d{bottom:763.625520px;}
.y221{bottom:769.320000px;}
.y1b2{bottom:770.407920px;}
.y169{bottom:770.464800px;}
.y111{bottom:771.723360px;}
.y29e{bottom:774.257040px;}
.y2ce{bottom:774.969120px;}
.y285{bottom:774.985680px;}
.yc{bottom:776.698560px;}
.y180{bottom:778.140000px;}
.y38{bottom:778.562640px;}
.y64{bottom:783.900000px;}
.y1f1{bottom:786.638880px;}
.y14c{bottom:786.660480px;}
.y220{bottom:790.380000px;}
.y1b1{bottom:793.442880px;}
.y168{bottom:793.499760px;}
.y240{bottom:794.228400px;}
.y29d{bottom:794.410560px;}
.y110{bottom:794.940480px;}
.y2cd{bottom:795.122640px;}
.y260{bottom:795.139200px;}
.y9a{bottom:796.156560px;}
.yb{bottom:796.852080px;}
.y17f{bottom:797.043600px;}
.y1e{bottom:797.457600px;}
.y37{bottom:801.779760px;}
.yd3{bottom:804.240000px;}
.y67{bottom:808.560000px;}
.y1f0{bottom:809.856000px;}
.y14b{bottom:809.877600px;}
.y21e{bottom:810.540000px;}
.yc6{bottom:814.325040px;}
.y23f{bottom:814.381920px;}
.y25f{bottom:815.292720px;}
.y1b0{bottom:816.660000px;}
.y167{bottom:816.716880px;}
.ya{bottom:816.840000px;}
.y10f{bottom:817.975440px;}
.y68{bottom:818.640000px;}
.y99{bottom:819.191520px;}
.yd1{bottom:824.220000px;}
.y36{bottom:824.814720px;}
.y66{bottom:828.720000px;}
.y21d{bottom:831.420000px;}
.y1ef{bottom:833.073120px;}
.yc5{bottom:834.312960px;}
.y29c{bottom:835.446240px;}
.y1d{bottom:835.611840px;}
.y2cc{bottom:836.340480px;}
.y9{bottom:837.012900px;}
.y1af{bottom:839.880000px;}
.y166{bottom:839.934000px;}
.y98{bottom:842.408640px;}
.yd5{bottom:844.380000px;}
.yd0{bottom:844.392960px;}
.y35{bottom:848.031840px;}
.y21b{bottom:851.580000px;}
.yc4{bottom:854.466480px;}
.y23e{bottom:855.599760px;}
.y10e{bottom:856.129680px;}
.y2cb{bottom:856.494000px;}
.y25e{bottom:856.510560px;}
.y1ae{bottom:862.920000px;}
.y165{bottom:862.968960px;}
.ycf{bottom:864.546480px;}
.y5f{bottom:865.260000px;}
.y97{bottom:865.625760px;}
.y1ee{bottom:871.227360px;}
.y34{bottom:871.248960px;}
.y1c{bottom:873.766080px;}
.yc3{bottom:874.620000px;}
.y23d{bottom:875.753280px;}
.y2ca{bottom:876.647520px;}
.y25d{bottom:876.664080px;}
.y10d{bottom:879.346800px;}
.yce{bottom:884.700000px;}
.y1ad{bottom:886.140000px;}
.y164{bottom:886.186080px;}
.y20a{bottom:889.020000px;}
.y63{bottom:889.926480px;}
.y33{bottom:894.283920px;}
.y25c{bottom:896.817600px;}
.y10c{bottom:902.563920px;}
.y96{bottom:903.780000px;}
.y8{bottom:907.392960px;}
.yc7{bottom:908.998560px;}
.y1ac{bottom:909.360000px;}
.y1ed{bottom:909.381600px;}
.yf8{bottom:909.403200px;}
.y62{bottom:910.080000px;}
.y1b{bottom:911.920320px;}
.y217{bottom:914.400720px;}
.y23c{bottom:916.788960px;}
.y284{bottom:916.971120px;}
.y32{bottom:917.501040px;}
.y2c9{bottom:917.683200px;}
.y94{bottom:920.160000px;}
.ycc{bottom:925.020000px;}
.y10b{bottom:925.598880px;}
.y7{bottom:927.546480px;}
.y61{bottom:930.240000px;}
.y1ab{bottom:932.400000px;}
.y1ec{bottom:932.416560px;}
.yf7{bottom:932.438160px;}
.y216{bottom:934.554240px;}
.y95{bottom:934.740000px;}
.y23b{bottom:936.942480px;}
.y2c8{bottom:937.836720px;}
.y25b{bottom:937.853280px;}
.y31{bottom:940.718160px;}
.y6{bottom:947.706480px;}
.y10a{bottom:948.816000px;}
.y1a{bottom:950.256720px;}
.y215{bottom:954.707760px;}
.y1aa{bottom:955.620000px;}
.y1eb{bottom:955.633680px;}
.yf6{bottom:955.655280px;}
.y2c7{bottom:957.990240px;}
.y25a{bottom:958.006800px;}
.y92{bottom:961.200000px;}
.y30{bottom:963.753120px;}
.y5e{bottom:966.780000px;}
.y109{bottom:972.033120px;}
.y5{bottom:973.800000px;}
.y214{bottom:975.772080px;}
.y93{bottom:975.780000px;}
.y23a{bottom:978.160320px;}
.y1a9{bottom:978.840000px;}
.y1ea{bottom:978.850800px;}
.yf5{bottom:978.872400px;}
.y2f{bottom:986.970240px;}
.y19{bottom:988.410960px;}
.y213{bottom:995.760000px;}
.y239{bottom:998.313840px;}
.y2c6{bottom:999.208080px;}
.yc1{bottom:1001.880000px;}
.y1e9{bottom:1001.885760px;}
.yf4{bottom:1001.907360px;}
.y8f{bottom:1002.240000px;}
.y4{bottom:1006.380000px;}
.y2e{bottom:1010.187360px;}
.y91{bottom:1012.320000px;}
.yc2{bottom:1016.460000px;}
.y212{bottom:1016.820000px;}
.y238{bottom:1018.467360px;}
.y259{bottom:1019.196000px;}
.y2c5{bottom:1019.361600px;}
.y1a8{bottom:1025.100000px;}
.y1e8{bottom:1025.102880px;}
.yf3{bottom:1025.124480px;}
.y18{bottom:1026.565200px;}
.y3{bottom:1031.940000px;}
.y2d{bottom:1033.404480px;}
.y8c{bottom:1034.280000px;}
.y210{bottom:1036.980000px;}
.y258{bottom:1039.349520px;}
.y1a7{bottom:1048.320000px;}
.y5d{bottom:1048.341600px;}
.y8e{bottom:1048.500000px;}
.y2c{bottom:1056.439440px;}
.y20f{bottom:1058.040000px;}
.y8b{bottom:1058.940000px;}
.y237{bottom:1059.503040px;}
.y17{bottom:1064.719440px;}
.y1a6{bottom:1071.540000px;}
.y5c{bottom:1071.558720px;}
.y8d{bottom:1074.600000px;}
.y2{bottom:1078.749900px;}
.ybb{bottom:1079.648640px;}
.y2b{bottom:1079.656560px;}
.y2c4{bottom:1080.567360px;}
.y1a5{bottom:1094.580000px;}
.y5b{bottom:1094.593680px;}
.y89{bottom:1095.480000px;}
.y20c{bottom:1098.360000px;}
.y257{bottom:1100.720880px;}
.y16{bottom:1102.873680px;}
.y1a4{bottom:1117.800000px;}
.yba{bottom:1117.802880px;}
.y5a{bottom:1117.810800px;}
.y8a{bottom:1120.140000px;}
.y236{bottom:1120.874400px;}
.y209{bottom:1135.800000px;}
.yb9{bottom:1141.020000px;}
.y15{bottom:1141.027920px;}
.ye{bottom:1161.360000px;}
.y13{bottom:1185.097500px;}
.y12{bottom:1199.497500px;}
.y11{bottom:1213.897500px;}
.y10{bottom:1228.297500px;}
.yf{bottom:1242.697500px;}
.h26{height:19.980000px;}
.hb{height:20.160000px;}
.hd{height:20.161500px;}
.h16{height:27.360000px;}
.h1a{height:31.320000px;}
.h5{height:34.439766px;}
.h8{height:34.453125px;}
.h9{height:34.851562px;}
.h15{height:40.320000px;}
.h28{height:44.149219px;}
.h22{height:45.022500px;}
.h1b{height:45.895781px;}
.ha{height:46.057500px;}
.h2b{height:50.062500px;}
.h2{height:54.628594px;}
.h7{height:54.628834px;}
.h21{height:58.087446px;}
.h25{height:58.113366px;}
.h6{height:58.173846px;}
.h23{height:58.199766px;}
.h17{height:59.400000px;}
.h19{height:60.298500px;}
.h14{height:60.300000px;}
.hf{height:60.480000px;}
.h10{height:61.920000px;}
.h4{height:63.543867px;}
.h24{height:64.086019px;}
.h13{height:80.460000px;}
.h12{height:80.640000px;}
.he{height:82.801500px;}
.h1e{height:90.180000px;}
.h1d{height:91.080000px;}
.h3{height:91.614375px;}
.h20{height:97.684740px;}
.h11{height:100.800000px;}
.h18{height:116.548594px;}
.h2a{height:122.580000px;}
.h1f{height:128.701500px;}
.h29{height:143.640000px;}
.hc{height:144.000000px;}
.h27{height:245.881500px;}
.h1c{height:302.220000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:71.280000px;}
.wc{width:83.700000px;}
.wa{width:116.281500px;}
.w7{width:129.060000px;}
.wb{width:132.118500px;}
.w8{width:134.820000px;}
.w4{width:158.578500px;}
.w5{width:215.280000px;}
.w3{width:264.960000px;}
.we{width:267.840000px;}
.wd{width:275.760000px;}
.w6{width:301.680000px;}
.w9{width:403.380000px;}
.wf{width:647.460000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:7.740000px;}
.x32{left:10.620000px;}
.x39{left:13.320000px;}
.x2c{left:16.200000px;}
.xb{left:17.494500px;}
.x31{left:18.540000px;}
.x21{left:19.620000px;}
.x43{left:20.700000px;}
.xd{left:25.020000px;}
.x11{left:26.820000px;}
.x37{left:30.780000px;}
.x4c{left:34.200000px;}
.x2f{left:35.280000px;}
.x1b{left:37.800000px;}
.x1d{left:43.740000px;}
.x4e{left:48.780000px;}
.x26{left:53.100000px;}
.x1e{left:55.980000px;}
.x23{left:59.220000px;}
.x20{left:62.280000px;}
.x53{left:65.700000px;}
.x55{left:73.440000px;}
.x3d{left:74.700000px;}
.x3e{left:75.780000px;}
.x4d{left:86.220000px;}
.x19{left:89.820000px;}
.x1a{left:93.420000px;}
.x35{left:95.580000px;}
.x18{left:99.180000px;}
.x15{left:107.820000px;}
.xf{left:116.100000px;}
.x58{left:118.620000px;}
.x22{left:119.880000px;}
.x9{left:127.617150px;}
.x7{left:129.057840px;}
.x3{left:131.220000px;}
.x6{left:136.972080px;}
.xa{left:142.641000px;}
.x4a{left:146.160000px;}
.x42{left:147.780000px;}
.x40{left:150.120000px;}
.x5{left:151.740000px;}
.x48{left:154.440000px;}
.x47{left:169.920000px;}
.x5c{left:179.640000px;}
.x27{left:181.260000px;}
.x3a{left:182.880000px;}
.x5a{left:184.140000px;}
.xc{left:198.180000px;}
.x2{left:202.516500px;}
.x13{left:205.920000px;}
.x14{left:223.920720px;}
.x3f{left:255.420000px;}
.xe{left:270.180000px;}
.x46{left:278.460000px;}
.x49{left:291.960000px;}
.x4{left:313.740000px;}
.x24{left:335.880000px;}
.x36{left:345.240000px;}
.x33{left:348.660000px;}
.x3c{left:352.800000px;}
.x38{left:358.380000px;}
.x34{left:362.156400px;}
.x2e{left:365.220000px;}
.x2a{left:368.824320px;}
.x3b{left:374.940000px;}
.x29{left:376.740000px;}
.x2d{left:398.160000px;}
.x5d{left:419.400000px;}
.x8{left:426.044880px;}
.x44{left:430.740000px;}
.x50{left:446.400000px;}
.x65{left:455.220000px;}
.x28{left:457.020000px;}
.x56{left:467.100000px;}
.x57{left:474.840000px;}
.x10{left:536.040000px;}
.x16{left:549.900000px;}
.x1c{left:554.220000px;}
.x1f{left:570.240000px;}
.x17{left:583.367760px;}
.x60{left:630.712800px;}
.x25{left:638.280000px;}
.x64{left:648.663840px;}
.x41{left:659.520000px;}
.x4f{left:671.400720px;}
.x2b{left:678.960000px;}
.x30{left:689.400000px;}
.x45{left:693.720000px;}
.x52{left:696.768480px;}
.x4b{left:704.160000px;}
.x51{left:713.328480px;}
.x63{left:718.000560px;}
.x61{left:721.445040px;}
.x54{left:743.580000px;}
.x5f{left:748.620000px;}
.x1{left:757.080000px;}
.x59{left:761.040000px;}
.x5e{left:765.210960px;}
.x5b{left:772.020000px;}
.x62{left:818.453520px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.v3{vertical-align:55.040000pt;}
.ls4e{letter-spacing:-1.236480pt;}
.ls79{letter-spacing:-1.118720pt;}
.ls82{letter-spacing:-1.059840pt;}
.ls57{letter-spacing:-1.000960pt;}
.ls54{letter-spacing:-0.942080pt;}
.ls42{letter-spacing:-0.883200pt;}
.ls22{letter-spacing:-0.824320pt;}
.ls1e{letter-spacing:-0.765440pt;}
.ls20{letter-spacing:-0.706560pt;}
.lse{letter-spacing:-0.647680pt;}
.ls7{letter-spacing:-0.600320pt;}
.ls1f{letter-spacing:-0.588800pt;}
.lsb{letter-spacing:-0.576000pt;}
.ls31{letter-spacing:-0.529920pt;}
.ls29{letter-spacing:-0.471040pt;}
.ls12{letter-spacing:-0.412160pt;}
.ls21{letter-spacing:-0.353280pt;}
.ls2a{letter-spacing:-0.294400pt;}
.lsd{letter-spacing:-0.235520pt;}
.ls5{letter-spacing:-0.234240pt;}
.ls24{letter-spacing:-0.176640pt;}
.ls10{letter-spacing:-0.117760pt;}
.ls14{letter-spacing:-0.117333pt;}
.lsc{letter-spacing:-0.058880pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2e{letter-spacing:0.017664pt;}
.ls53{letter-spacing:0.023552pt;}
.ls85{letter-spacing:0.041216pt;}
.lsa{letter-spacing:0.042880pt;}
.ls8a{letter-spacing:0.052992pt;}
.ls11{letter-spacing:0.058880pt;}
.ls6{letter-spacing:0.064000pt;}
.ls66{letter-spacing:0.074240pt;}
.ls7f{letter-spacing:0.094208pt;}
.ls32{letter-spacing:0.094720pt;}
.ls6c{letter-spacing:0.100096pt;}
.ls8c{letter-spacing:0.111872pt;}
.ls4{letter-spacing:0.117120pt;}
.ls13{letter-spacing:0.117760pt;}
.ls69{letter-spacing:0.122880pt;}
.ls7e{letter-spacing:0.128000pt;}
.ls56{letter-spacing:0.129536pt;}
.ls2d{letter-spacing:0.133120pt;}
.ls87{letter-spacing:0.147200pt;}
.ls65{letter-spacing:0.148480pt;}
.ls68{letter-spacing:0.151040pt;}
.ls64{letter-spacing:0.153600pt;}
.ls55{letter-spacing:0.163840pt;}
.ls9{letter-spacing:0.171520pt;}
.ls1d{letter-spacing:0.176640pt;}
.ls4d{letter-spacing:0.182528pt;}
.ls0{letter-spacing:0.215680pt;}
.ls19{letter-spacing:0.217856pt;}
.ls3c{letter-spacing:0.223744pt;}
.ls74{letter-spacing:0.229632pt;}
.lsf{letter-spacing:0.235520pt;}
.ls81{letter-spacing:0.247296pt;}
.ls33{letter-spacing:0.268800pt;}
.ls59{letter-spacing:0.276736pt;}
.ls2{letter-spacing:0.284160pt;}
.ls88{letter-spacing:0.288512pt;}
.ls23{letter-spacing:0.294400pt;}
.ls8{letter-spacing:0.320000pt;}
.ls7d{letter-spacing:0.388608pt;}
.ls71{letter-spacing:0.412160pt;}
.ls2c{letter-spacing:0.765440pt;}
.ls52{letter-spacing:1.401344pt;}
.ls1b{letter-spacing:1.413120pt;}
.ls83{letter-spacing:2.031360pt;}
.ls27{letter-spacing:2.060800pt;}
.ls3d{letter-spacing:2.072576pt;}
.ls6e{letter-spacing:2.090240pt;}
.ls18{letter-spacing:2.708480pt;}
.ls40{letter-spacing:3.261952pt;}
.ls28{letter-spacing:3.356160pt;}
.ls1{letter-spacing:3.944960pt;}
.ls34{letter-spacing:4.592640pt;}
.ls78{letter-spacing:4.598528pt;}
.ls3e{letter-spacing:5.240320pt;}
.ls61{letter-spacing:5.274880pt;}
.ls35{letter-spacing:5.888000pt;}
.ls70{letter-spacing:5.929216pt;}
.ls8b{letter-spacing:6.476800pt;}
.ls75{letter-spacing:6.518016pt;}
.ls2f{letter-spacing:6.535680pt;}
.ls5f{letter-spacing:6.576896pt;}
.ls41{letter-spacing:7.183360pt;}
.ls89{letter-spacing:7.666176pt;}
.ls36{letter-spacing:7.831040pt;}
.ls6a{letter-spacing:7.860480pt;}
.ls3b{letter-spacing:8.478720pt;}
.ls45{letter-spacing:9.067520pt;}
.ls84{letter-spacing:9.126400pt;}
.ls3f{letter-spacing:9.715200pt;}
.ls50{letter-spacing:9.944832pt;}
.ls7a{letter-spacing:10.150912pt;}
.ls47{letter-spacing:10.362880pt;}
.ls6b{letter-spacing:10.392320pt;}
.ls46{letter-spacing:11.010560pt;}
.ls5e{letter-spacing:11.134208pt;}
.ls38{letter-spacing:11.658240pt;}
.ls43{letter-spacing:12.305920pt;}
.ls44{letter-spacing:12.353024pt;}
.ls25{letter-spacing:12.953600pt;}
.ls2b{letter-spacing:13.601280pt;}
.ls26{letter-spacing:14.190080pt;}
.ls58{letter-spacing:14.837760pt;}
.ls5c{letter-spacing:15.485440pt;}
.ls4f{letter-spacing:16.133120pt;}
.ls49{letter-spacing:16.780800pt;}
.ls4a{letter-spacing:16.804352pt;}
.ls1c{letter-spacing:17.428480pt;}
.ls80{letter-spacing:18.076160pt;}
.ls48{letter-spacing:18.664960pt;}
.ls6f{letter-spacing:19.312640pt;}
.ls73{letter-spacing:19.578880pt;}
.ls6d{letter-spacing:20.590336pt;}
.ls51{letter-spacing:20.608000pt;}
.ls1a{letter-spacing:21.255680pt;}
.ls17{letter-spacing:21.903360pt;}
.ls5d{letter-spacing:23.198720pt;}
.ls8d{letter-spacing:23.787520pt;}
.ls5a{letter-spacing:24.435200pt;}
.ls86{letter-spacing:26.378240pt;}
.ls76{letter-spacing:27.025920pt;}
.ls77{letter-spacing:27.200000pt;}
.ls3a{letter-spacing:28.293120pt;}
.ls7b{letter-spacing:32.148480pt;}
.ls62{letter-spacing:35.975680pt;}
.ls63{letter-spacing:36.005120pt;}
.ls37{letter-spacing:37.271040pt;}
.ls60{letter-spacing:39.155200pt;}
.ls4c{letter-spacing:40.450560pt;}
.ls16{letter-spacing:44.277760pt;}
.ls4b{letter-spacing:44.610560pt;}
.ls15{letter-spacing:44.925440pt;}
.ls7c{letter-spacing:52.756480pt;}
.ls67{letter-spacing:61.588480pt;}
.ls72{letter-spacing:90.380800pt;}
.ls5b{letter-spacing:175.521280pt;}
.ls39{letter-spacing:389.255680pt;}
.ls30{letter-spacing:771.968000pt;}
.ws11e{word-spacing:-58.880000pt;}
.wsa{word-spacing:-20.821333pt;}
.ws11f{word-spacing:-14.592000pt;}
.ws4{word-spacing:-14.528000pt;}
.ws2{word-spacing:-14.464000pt;}
.ws2a{word-spacing:-13.601280pt;}
.ws46{word-spacing:-13.542400pt;}
.ws8c{word-spacing:-13.530624pt;}
.ws25{word-spacing:-13.483520pt;}
.ws45{word-spacing:-13.424640pt;}
.ws27{word-spacing:-13.365760pt;}
.ws6{word-spacing:-13.306880pt;}
.ws8{word-spacing:-13.248000pt;}
.ws47{word-spacing:-13.189120pt;}
.ws2c{word-spacing:-13.130240pt;}
.ws9{word-spacing:-13.071360pt;}
.ws10a{word-spacing:-13.012480pt;}
.ws2b{word-spacing:-12.953600pt;}
.ws76{word-spacing:-12.894720pt;}
.ws44{word-spacing:-12.835840pt;}
.wsa7{word-spacing:-12.776960pt;}
.ws28{word-spacing:-12.718080pt;}
.ws7{word-spacing:-12.659200pt;}
.ws48{word-spacing:-12.600320pt;}
.ws26{word-spacing:-12.541440pt;}
.ws29{word-spacing:-12.482560pt;}
.ws107{word-spacing:-12.423680pt;}
.ws1{word-spacing:-9.862400pt;}
.ws3{word-spacing:-9.733760pt;}
.wsb{word-spacing:-9.642667pt;}
.ws0{word-spacing:-9.090560pt;}
.ws5{word-spacing:-8.389120pt;}
.ws77{word-spacing:-0.824320pt;}
.ws15{word-spacing:-0.765440pt;}
.ws42{word-spacing:-0.647680pt;}
.ws105{word-spacing:-0.588800pt;}
.ws9d{word-spacing:-0.529920pt;}
.ws14{word-spacing:-0.471040pt;}
.ws12d{word-spacing:-0.412160pt;}
.ws120{word-spacing:-0.353280pt;}
.wsd{word-spacing:-0.351360pt;}
.ws5f{word-spacing:-0.294400pt;}
.ws79{word-spacing:-0.235520pt;}
.ws78{word-spacing:-0.176640pt;}
.ws35{word-spacing:-0.117760pt;}
.ws1f{word-spacing:-0.117333pt;}
.ws10{word-spacing:-0.064000pt;}
.ws32{word-spacing:-0.058880pt;}
.ws22{word-spacing:-0.037333pt;}
.wsc{word-spacing:0.000000pt;}
.ws53{word-spacing:0.058880pt;}
.ws17{word-spacing:0.117760pt;}
.ws12{word-spacing:0.176640pt;}
.wsf{word-spacing:0.192000pt;}
.ws64{word-spacing:0.235520pt;}
.ws8d{word-spacing:0.294400pt;}
.ws13{word-spacing:0.353280pt;}
.ws60{word-spacing:0.412160pt;}
.ws75{word-spacing:0.471040pt;}
.ws1e{word-spacing:0.529920pt;}
.wse{word-spacing:0.585600pt;}
.ws3a{word-spacing:0.588800pt;}
.ws24{word-spacing:0.608000pt;}
.ws20{word-spacing:0.618667pt;}
.ws2d{word-spacing:0.647680pt;}
.ws23{word-spacing:0.666667pt;}
.ws6c{word-spacing:0.706560pt;}
.ws86{word-spacing:0.765440pt;}
.ws3b{word-spacing:0.824320pt;}
.ws11{word-spacing:0.832000pt;}
.wsaa{word-spacing:0.883200pt;}
.wsde{word-spacing:0.942080pt;}
.ws67{word-spacing:1.000960pt;}
.ws12f{word-spacing:1.059840pt;}
.ws21{word-spacing:1.061333pt;}
.ws112{word-spacing:1.118720pt;}
.ws80{word-spacing:1.177600pt;}
.wsb9{word-spacing:1.236480pt;}
.ws40{word-spacing:1.295360pt;}
.wsfc{word-spacing:1.354240pt;}
.wsf4{word-spacing:1.413120pt;}
.ws41{word-spacing:1.472000pt;}
.ws6d{word-spacing:1.589760pt;}
.ws66{word-spacing:1.648640pt;}
.ws11b{word-spacing:1.825280pt;}
.ws73{word-spacing:1.943040pt;}
.ws113{word-spacing:2.001920pt;}
.ws65{word-spacing:2.119680pt;}
.ws132{word-spacing:2.178560pt;}
.wsf5{word-spacing:2.237440pt;}
.ws74{word-spacing:2.296320pt;}
.ws134{word-spacing:2.414080pt;}
.ws12e{word-spacing:2.472960pt;}
.wsaf{word-spacing:2.590720pt;}
.ws7a{word-spacing:2.649600pt;}
.ws3d{word-spacing:2.767360pt;}
.wse7{word-spacing:2.826240pt;}
.ws110{word-spacing:2.885120pt;}
.ws49{word-spacing:2.944000pt;}
.ws4d{word-spacing:3.061760pt;}
.wsb0{word-spacing:3.238400pt;}
.wsac{word-spacing:3.297280pt;}
.ws3c{word-spacing:3.415040pt;}
.ws133{word-spacing:3.532800pt;}
.ws68{word-spacing:3.591680pt;}
.ws1d{word-spacing:3.709440pt;}
.wsab{word-spacing:3.827200pt;}
.ws1b{word-spacing:3.886080pt;}
.ws1c{word-spacing:4.003840pt;}
.ws109{word-spacing:4.121600pt;}
.ws6e{word-spacing:4.180480pt;}
.ws89{word-spacing:4.357120pt;}
.ws7c{word-spacing:4.474880pt;}
.ws11d{word-spacing:4.592640pt;}
.ws4c{word-spacing:4.651520pt;}
.ws111{word-spacing:4.769280pt;}
.ws8b{word-spacing:4.828160pt;}
.ws88{word-spacing:5.004800pt;}
.ws55{word-spacing:5.122560pt;}
.wseb{word-spacing:5.181440pt;}
.ws51{word-spacing:5.299200pt;}
.wsd0{word-spacing:5.358080pt;}
.ws56{word-spacing:5.475840pt;}
.wscf{word-spacing:5.652480pt;}
.ws4e{word-spacing:5.770240pt;}
.ws54{word-spacing:5.946880pt;}
.ws143{word-spacing:6.064640pt;}
.wsc6{word-spacing:6.123520pt;}
.wsbf{word-spacing:6.241280pt;}
.ws71{word-spacing:6.417920pt;}
.ws7d{word-spacing:6.476800pt;}
.ws7b{word-spacing:6.535680pt;}
.ws6b{word-spacing:6.594560pt;}
.wsf8{word-spacing:6.712320pt;}
.ws6f{word-spacing:6.771200pt;}
.wse5{word-spacing:6.947840pt;}
.ws81{word-spacing:7.065600pt;}
.ws10e{word-spacing:7.124480pt;}
.wsa1{word-spacing:7.242240pt;}
.wsc5{word-spacing:7.360000pt;}
.ws82{word-spacing:7.418880pt;}
.ws138{word-spacing:7.595520pt;}
.ws7f{word-spacing:7.713280pt;}
.ws135{word-spacing:7.831040pt;}
.ws7e{word-spacing:7.889920pt;}
.wsc0{word-spacing:8.007680pt;}
.ws83{word-spacing:8.066560pt;}
.ws144{word-spacing:8.125440pt;}
.ws84{word-spacing:8.184320pt;}
.ws140{word-spacing:8.243200pt;}
.ws50{word-spacing:8.360960pt;}
.ws130{word-spacing:8.419840pt;}
.ws4f{word-spacing:8.537600pt;}
.wsef{word-spacing:8.655360pt;}
.ws94{word-spacing:8.714240pt;}
.wsae{word-spacing:8.949760pt;}
.ws136{word-spacing:9.067520pt;}
.wsb7{word-spacing:9.126400pt;}
.ws119{word-spacing:9.244160pt;}
.wsb8{word-spacing:9.303040pt;}
.wsfd{word-spacing:9.538560pt;}
.ws31{word-spacing:9.597440pt;}
.wsdb{word-spacing:9.656320pt;}
.ws33{word-spacing:9.774080pt;}
.wsf0{word-spacing:9.832960pt;}
.wsda{word-spacing:9.891840pt;}
.wsee{word-spacing:9.950720pt;}
.wse8{word-spacing:10.245120pt;}
.ws92{word-spacing:10.421760pt;}
.ws106{word-spacing:10.539520pt;}
.wsbe{word-spacing:10.598400pt;}
.wsbd{word-spacing:10.892800pt;}
.ws10c{word-spacing:10.951680pt;}
.wsbb{word-spacing:11.010560pt;}
.ws5c{word-spacing:11.069440pt;}
.wsbc{word-spacing:11.187200pt;}
.wsba{word-spacing:11.246080pt;}
.wsb1{word-spacing:11.540480pt;}
.wsad{word-spacing:11.599360pt;}
.ws8a{word-spacing:11.717120pt;}
.ws5d{word-spacing:11.893760pt;}
.ws128{word-spacing:12.070400pt;}
.wsb6{word-spacing:12.188160pt;}
.ws6a{word-spacing:12.364800pt;}
.ws125{word-spacing:12.482560pt;}
.ws87{word-spacing:12.541440pt;}
.ws57{word-spacing:12.835840pt;}
.ws58{word-spacing:13.012480pt;}
.wsf9{word-spacing:13.130240pt;}
.ws85{word-spacing:13.189120pt;}
.ws141{word-spacing:13.306880pt;}
.ws12c{word-spacing:13.365760pt;}
.ws5a{word-spacing:13.483520pt;}
.wsd9{word-spacing:13.601280pt;}
.ws69{word-spacing:13.660160pt;}
.wsd8{word-spacing:13.719040pt;}
.wsb5{word-spacing:13.836800pt;}
.ws70{word-spacing:14.072320pt;}
.ws5b{word-spacing:14.248960pt;}
.wsb3{word-spacing:14.366720pt;}
.ws59{word-spacing:14.425600pt;}
.wsed{word-spacing:14.720000pt;}
.wsb4{word-spacing:14.896640pt;}
.wsec{word-spacing:15.014400pt;}
.wsb2{word-spacing:15.073280pt;}
.ws121{word-spacing:15.249920pt;}
.wsdd{word-spacing:15.367680pt;}
.ws63{word-spacing:15.485440pt;}
.ws62{word-spacing:15.544320pt;}
.wsdc{word-spacing:15.662080pt;}
.ws9f{word-spacing:15.720960pt;}
.wsc9{word-spacing:15.838720pt;}
.wsd3{word-spacing:15.897600pt;}
.wsd2{word-spacing:16.015360pt;}
.ws52{word-spacing:16.192000pt;}
.wsd4{word-spacing:16.250880pt;}
.wsca{word-spacing:16.368640pt;}
.ws12b{word-spacing:16.545280pt;}
.ws10f{word-spacing:16.663040pt;}
.wsc3{word-spacing:16.839680pt;}
.ws137{word-spacing:16.957440pt;}
.wsc4{word-spacing:17.016320pt;}
.ws93{word-spacing:17.487360pt;}
.ws43{word-spacing:17.664000pt;}
.ws99{word-spacing:18.135040pt;}
.wsc1{word-spacing:18.252800pt;}
.ws124{word-spacing:18.311680pt;}
.ws123{word-spacing:18.488320pt;}
.ws36{word-spacing:18.547200pt;}
.ws122{word-spacing:18.606080pt;}
.ws34{word-spacing:18.723840pt;}
.ws11a{word-spacing:18.900480pt;}
.ws108{word-spacing:19.194880pt;}
.wse4{word-spacing:19.371520pt;}
.wse2{word-spacing:19.548160pt;}
.ws4b{word-spacing:19.842560pt;}
.wse3{word-spacing:19.901440pt;}
.ws4a{word-spacing:20.019200pt;}
.ws72{word-spacing:20.195840pt;}
.ws3f{word-spacing:20.490240pt;}
.wsdf{word-spacing:20.666880pt;}
.ws126{word-spacing:20.843520pt;}
.ws3e{word-spacing:21.137920pt;}
.wsa9{word-spacing:21.314560pt;}
.wsa8{word-spacing:21.432320pt;}
.ws39{word-spacing:21.491200pt;}
.wsd5{word-spacing:21.844480pt;}
.ws38{word-spacing:21.962240pt;}
.ws37{word-spacing:22.138880pt;}
.wsd6{word-spacing:22.315520pt;}
.wsf7{word-spacing:22.433280pt;}
.wsfa{word-spacing:22.609920pt;}
.wsd7{word-spacing:22.727680pt;}
.wscc{word-spacing:22.963200pt;}
.ws61{word-spacing:23.080960pt;}
.wsfb{word-spacing:23.257600pt;}
.wscd{word-spacing:23.316480pt;}
.wsf6{word-spacing:23.434240pt;}
.wscb{word-spacing:23.669760pt;}
.ws13b{word-spacing:23.846400pt;}
.wsce{word-spacing:24.023040pt;}
.ws13a{word-spacing:24.199680pt;}
.wsf1{word-spacing:24.494080pt;}
.wsf3{word-spacing:24.611840pt;}
.wsf2{word-spacing:24.670720pt;}
.ws118{word-spacing:25.141760pt;}
.ws13d{word-spacing:25.612800pt;}
.wsc2{word-spacing:25.789440pt;}
.ws10d{word-spacing:25.966080pt;}
.ws139{word-spacing:26.142720pt;}
.ws19{word-spacing:26.437120pt;}
.ws13c{word-spacing:26.496000pt;}
.ws1a{word-spacing:26.613760pt;}
.ws116{word-spacing:26.908160pt;}
.ws18{word-spacing:27.084800pt;}
.ws117{word-spacing:27.143680pt;}
.wsea{word-spacing:27.732480pt;}
.wse9{word-spacing:27.909120pt;}
.wse6{word-spacing:28.380160pt;}
.ws90{word-spacing:28.556800pt;}
.wsc8{word-spacing:29.793280pt;}
.wsd1{word-spacing:30.087680pt;}
.wsa5{word-spacing:30.264320pt;}
.ws16{word-spacing:31.736320pt;}
.ws11c{word-spacing:32.207360pt;}
.ws115{word-spacing:32.678400pt;}
.ws114{word-spacing:33.620480pt;}
.ws101{word-spacing:35.210240pt;}
.ws131{word-spacing:35.563520pt;}
.ws102{word-spacing:36.034560pt;}
.wse0{word-spacing:36.505600pt;}
.ws8f{word-spacing:36.564480pt;}
.wsa4{word-spacing:36.858880pt;}
.wse1{word-spacing:37.153280pt;}
.ws8e{word-spacing:37.329920pt;}
.wsff{word-spacing:38.389760pt;}
.ws12a{word-spacing:38.566400pt;}
.ws100{word-spacing:38.684160pt;}
.ws129{word-spacing:38.743040pt;}
.wsfe{word-spacing:39.390720pt;}
.wsc7{word-spacing:40.509440pt;}
.ws91{word-spacing:43.865600pt;}
.ws2e{word-spacing:44.336640pt;}
.ws30{word-spacing:44.631040pt;}
.ws9c{word-spacing:44.984320pt;}
.ws2f{word-spacing:45.632000pt;}
.wsa6{word-spacing:47.104000pt;}
.ws9a{word-spacing:47.398400pt;}
.ws142{word-spacing:47.575040pt;}
.wsa3{word-spacing:47.751680pt;}
.ws13f{word-spacing:50.106880pt;}
.ws13e{word-spacing:50.754560pt;}
.ws103{word-spacing:61.470720pt;}
.ws127{word-spacing:61.647360pt;}
.ws5e{word-spacing:61.824000pt;}
.ws104{word-spacing:62.000640pt;}
.ws97{word-spacing:66.122240pt;}
.wsa2{word-spacing:66.946560pt;}
.ws10b{word-spacing:90.263040pt;}
.ws98{word-spacing:100.213760pt;}
.ws9b{word-spacing:112.814080pt;}
.wsa0{word-spacing:134.305280pt;}
.ws95{word-spacing:135.247360pt;}
.ws96{word-spacing:136.071680pt;}
.ws9e{word-spacing:175.285760pt;}
._1b{margin-left:-10.815403pt;}
._7{margin-left:-1.913600pt;}
._1{margin-left:-0.960597pt;}
._0{width:1.077717pt;}
._17{width:2.061440pt;}
._6{width:3.176192pt;}
._15{width:4.283691pt;}
._8{width:5.299200pt;}
._c{width:6.265685pt;}
._11{width:7.500245pt;}
._4{width:9.042347pt;}
._f{width:10.374443pt;}
._b{width:11.600000pt;}
._10{width:14.455040pt;}
._a{width:15.467563pt;}
._9{width:16.645163pt;}
._d{width:17.746005pt;}
._5{width:18.760875pt;}
._e{width:21.038677pt;}
._12{width:26.220117pt;}
._14{width:30.245376pt;}
._2{width:31.747349pt;}
._16{width:36.841003pt;}
._18{width:39.101568pt;}
._13{width:40.980480pt;}
._3{width:45.419605pt;}
._19{width:62.230400pt;}
._1a{width:90.351360pt;}
.fs4{font-size:37.120000pt;}
.fs5{font-size:42.666667pt;}
.fs3{font-size:42.880000pt;}
.fs7{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs8{font-size:69.120000pt;}
.fs1{font-size:117.120000pt;}
.fs6{font-size:125.440000pt;}
.y0{bottom:0.000000pt;}
.ye7{bottom:1.600000pt;}
.yd8{bottom:2.880000pt;}
.y3f{bottom:4.000000pt;}
.y218{bottom:4.640000pt;}
.y83{bottom:10.400000pt;}
.y90{bottom:13.920000pt;}
.y76{bottom:21.920000pt;}
.ye1{bottom:26.560000pt;}
.ye5{bottom:35.200000pt;}
.y86{bottom:38.880000pt;}
.y49{bottom:39.840000pt;}
.y4c{bottom:41.120000pt;}
.yf0{bottom:43.200000pt;}
.y14{bottom:51.205760pt;}
.yeb{bottom:52.160000pt;}
.ydc{bottom:53.440000pt;}
.y6a{bottom:57.600000pt;}
.y65{bottom:57.760000pt;}
.y21f{bottom:58.560000pt;}
.y46{bottom:59.680000pt;}
.yef{bottom:61.120000pt;}
.y1{bottom:69.120000pt;}
.yea{bottom:70.080000pt;}
.y60{bottom:75.680000pt;}
.yee{bottom:79.040000pt;}
.y21c{bottom:95.040000pt;}
.y85{bottom:95.360000pt;}
.y88{bottom:103.360000pt;}
.y208{bottom:105.886080pt;}
.y1ce{bottom:108.324480pt;}
.y283{bottom:108.396800pt;}
.y2c3{bottom:109.938560pt;}
.y59{bottom:110.272000pt;}
.y163{bottom:110.704000pt;}
.y2ae{bottom:111.042560pt;}
.yd2{bottom:111.360000pt;}
.y21a{bottom:113.760000pt;}
.y41{bottom:114.080000pt;}
.y235{bottom:114.453760pt;}
.y19b{bottom:115.205120pt;}
.ya9{bottom:115.406080pt;}
.y87{bottom:116.320000pt;}
.yc0{bottom:116.658560pt;}
.y84{bottom:116.800000pt;}
.y1e7{bottom:117.328000pt;}
.y1a3{bottom:118.800000pt;}
.yb8{bottom:119.580160pt;}
.y137{bottom:125.320960pt;}
.y282{bottom:126.311040pt;}
.y272{bottom:126.410240pt;}
.y1a2{bottom:126.720000pt;}
.y2c2{bottom:127.852800pt;}
.y1cd{bottom:128.881920pt;}
.y2ad{bottom:128.956800pt;}
.y58{bottom:130.909440pt;}
.y162{bottom:131.341440pt;}
.y211{bottom:131.520000pt;}
.y234{bottom:132.368000pt;}
.y108{bottom:134.269440pt;}
.y14a{bottom:134.880000pt;}
.y19a{bottom:135.842560pt;}
.ya8{bottom:135.881600pt;}
.ybf{bottom:137.296000pt;}
.y1e6{bottom:137.803520pt;}
.y207{bottom:139.800960pt;}
.yb7{bottom:140.217600pt;}
.y256{bottom:144.324480pt;}
.y2c1{bottom:145.767040pt;}
.y136{bottom:145.796480pt;}
.y1a1{bottom:147.364480pt;}
.y82{bottom:148.800000pt;}
.y1cc{bottom:149.519360pt;}
.y57{bottom:151.384960pt;}
.y161{bottom:151.978880pt;}
.y107{bottom:154.906880pt;}
.y199{bottom:156.480000pt;}
.ya7{bottom:156.519040pt;}
.y1e5{bottom:158.440960pt;}
.yb6{bottom:160.693120pt;}
.y255{bottom:162.238720pt;}
.y281{bottom:162.787200pt;}
.y29b{bottom:164.505600pt;}
.y2ac{bottom:165.432960pt;}
.y135{bottom:166.433920pt;}
.y1a0{bottom:167.840000pt;}
.y20e{bottom:168.160000pt;}
.y149{bottom:168.802560pt;}
.y233{bottom:169.006080pt;}
.y1cb{bottom:170.156800pt;}
.ybe{bottom:171.210880pt;}
.y56{bottom:172.022400pt;}
.y128{bottom:172.332160pt;}
.y160{bottom:172.454400pt;}
.y206{bottom:173.715840pt;}
.y106{bottom:175.544320pt;}
.y198{bottom:176.960000pt;}
.ya6{bottom:177.156480pt;}
.y1e4{bottom:179.078400pt;}
.y254{bottom:180.152960pt;}
.y280{bottom:180.701440pt;}
.y271{bottom:180.800640pt;}
.y2c0{bottom:182.405120pt;}
.y29a{bottom:182.419840pt;}
.ycd{bottom:183.040000pt;}
.y2ab{bottom:183.347200pt;}
.y20d{bottom:186.080000pt;}
.y232{bottom:186.920320pt;}
.y134{bottom:187.071360pt;}
.y19f{bottom:188.480000pt;}
.y148{bottom:189.440000pt;}
.y1ca{bottom:190.632320pt;}
.y55{bottom:192.659840pt;}
.y127{bottom:192.969600pt;}
.y15f{bottom:193.091840pt;}
.y81{bottom:193.951360pt;}
.yb5{bottom:194.608000pt;}
.y105{bottom:196.019840pt;}
.y197{bottom:197.600000pt;}
.y27f{bottom:198.615680pt;}
.y270{bottom:198.714880pt;}
.y1e3{bottom:199.553920pt;}
.y2bf{bottom:200.319360pt;}
.y299{bottom:200.334080pt;}
.y2aa{bottom:201.261440pt;}
.y20b{bottom:204.640000pt;}
.ybd{bottom:205.125760pt;}
.y133{bottom:207.546880pt;}
.y205{bottom:207.630720pt;}
.y19e{bottom:209.120000pt;}
.y147{bottom:209.920000pt;}
.ya5{bottom:211.071360pt;}
.y1c9{bottom:211.269760pt;}
.y126{bottom:213.607040pt;}
.y15e{bottom:213.729280pt;}
.y253{bottom:216.629120pt;}
.y2be{bottom:218.233600pt;}
.y196{bottom:218.240000pt;}
.ycb{bottom:218.880000pt;}
.y1e2{bottom:220.191360pt;}
.y231{bottom:223.396480pt;}
.y54{bottom:226.574720pt;}
.y80{bottom:227.866240pt;}
.y132{bottom:228.184320pt;}
.yb4{bottom:228.522880pt;}
.y19d{bottom:229.600000pt;}
.y104{bottom:229.934720pt;}
.y146{bottom:230.560000pt;}
.ya4{bottom:231.546880pt;}
.y1c8{bottom:231.907200pt;}
.y125{bottom:234.082560pt;}
.y15d{bottom:234.204800pt;}
.y252{bottom:234.543360pt;}
.y27e{bottom:235.253760pt;}
.y2e0{bottom:236.795520pt;}
.yca{bottom:236.800000pt;}
.y298{bottom:236.810240pt;}
.y2a9{bottom:237.899520pt;}
.y195{bottom:238.720000pt;}
.ybc{bottom:239.040640pt;}
.y1e1{bottom:240.828800pt;}
.y230{bottom:241.310720pt;}
.y204{bottom:241.545600pt;}
.y19c{bottom:246.481280pt;}
.y7f{bottom:248.341760pt;}
.yb3{bottom:249.160320pt;}
.y103{bottom:250.572160pt;}
.y145{bottom:251.200000pt;}
.ya3{bottom:252.184320pt;}
.y1c7{bottom:252.382720pt;}
.y17e{bottom:252.442880pt;}
.y251{bottom:252.457600pt;}
.y27d{bottom:253.168000pt;}
.y26f{bottom:253.267200pt;}
.ye9{bottom:253.600000pt;}
.y2bd{bottom:254.709760pt;}
.yc9{bottom:254.720000pt;}
.y297{bottom:254.724480pt;}
.y124{bottom:254.744960pt;}
.y15c{bottom:254.842240pt;}
.y2a8{bottom:255.813760pt;}
.y194{bottom:259.360000pt;}
.y53{bottom:260.489600pt;}
.y1e0{bottom:261.304320pt;}
.yed{bottom:261.600000pt;}
.y131{bottom:262.099200pt;}
.y7e{bottom:268.979200pt;}
.yb2{bottom:269.797760pt;}
.y27c{bottom:271.082240pt;}
.y26e{bottom:271.181440pt;}
.y102{bottom:271.209600pt;}
.y144{bottom:271.680000pt;}
.y2bc{bottom:272.624000pt;}
.y296{bottom:272.638720pt;}
.ya2{bottom:272.821760pt;}
.y1c6{bottom:273.020160pt;}
.y17d{bottom:273.080320pt;}
.y2a7{bottom:273.728000pt;}
.y123{bottom:275.382400pt;}
.y203{bottom:275.460480pt;}
.y15b{bottom:275.479680pt;}
.y22f{bottom:277.948800pt;}
.yf1{bottom:279.040000pt;}
.y193{bottom:280.000000pt;}
.y52{bottom:280.965120pt;}
.y1df{bottom:281.941760pt;}
.y130{bottom:282.736640pt;}
.yec{bottom:288.000000pt;}
.y250{bottom:288.933760pt;}
.y26d{bottom:289.095680pt;}
.ya1{bottom:289.308160pt;}
.y7d{bottom:289.616640pt;}
.y2bb{bottom:290.538240pt;}
.y2df{bottom:291.347840pt;}
.y101{bottom:291.685120pt;}
.y143{bottom:292.320000pt;}
.y1c5{bottom:293.657600pt;}
.y17c{bottom:293.717760pt;}
.y122{bottom:295.857920pt;}
.y22e{bottom:295.863040pt;}
.y15a{bottom:295.955200pt;}
.y192{bottom:300.480000pt;}
.y51{bottom:301.602560pt;}
.y1de{bottom:302.579200pt;}
.y12f{bottom:303.212160pt;}
.yf2{bottom:305.760000pt;}
.yb1{bottom:306.273920pt;}
.y24f{bottom:306.848000pt;}
.y27b{bottom:307.558400pt;}
.y2ba{bottom:308.452480pt;}
.y2de{bottom:309.262080pt;}
.y295{bottom:309.276800pt;}
.y202{bottom:309.375360pt;}
.y7c{bottom:310.092160pt;}
.y2a6{bottom:310.204160pt;}
.y100{bottom:312.322560pt;}
.y142{bottom:312.960000pt;}
.y1c4{bottom:314.133120pt;}
.y17b{bottom:314.193280pt;}
.y121{bottom:316.495360pt;}
.y159{bottom:316.592640pt;}
.y191{bottom:321.120000pt;}
.y50{bottom:322.240000pt;}
.y1dd{bottom:323.054720pt;}
.y12e{bottom:323.849600pt;}
.y27a{bottom:325.472640pt;}
.y26c{bottom:325.571840pt;}
.y2dd{bottom:327.176320pt;}
.y294{bottom:327.191040pt;}
.y2a5{bottom:328.118400pt;}
.y201{bottom:329.850880pt;}
.y7b{bottom:330.729600pt;}
.y22d{bottom:332.339200pt;}
.yff{bottom:332.960000pt;}
.y141{bottom:333.440000pt;}
.y1c3{bottom:334.770560pt;}
.y17a{bottom:334.830720pt;}
.y120{bottom:337.132800pt;}
.y158{bottom:337.230080pt;}
.yb0{bottom:340.188800pt;}
.y190{bottom:341.779200pt;}
.y279{bottom:343.386880pt;}
.y24e{bottom:343.486080pt;}
.y1dc{bottom:343.692160pt;}
.y12d{bottom:344.487040pt;}
.y2b9{bottom:344.928640pt;}
.y293{bottom:345.105280pt;}
.y2a4{bottom:346.032640pt;}
.y200{bottom:350.488320pt;}
.y7a{bottom:351.367040pt;}
.y4b{bottom:352.800000pt;}
.y140{bottom:354.080000pt;}
.y1c2{bottom:355.408000pt;}
.y179{bottom:355.468160pt;}
.y157{bottom:357.705600pt;}
.yaf{bottom:360.826240pt;}
.y24d{bottom:361.400320pt;}
.y18f{bottom:362.416640pt;}
.y2b8{bottom:362.842880pt;}
.y2dc{bottom:363.652480pt;}
.y1db{bottom:364.329600pt;}
.y12c{bottom:365.124480pt;}
.yfe{bottom:366.880000pt;}
.ye4{bottom:368.640000pt;}
.y22c{bottom:368.977280pt;}
.y11f{bottom:371.047680pt;}
.y1ff{bottom:371.125760pt;}
.y4f{bottom:371.360000pt;}
.y79{bottom:371.842560pt;}
.y13f{bottom:374.720000pt;}
.y1c1{bottom:375.883520pt;}
.y178{bottom:375.943680pt;}
.y4d{bottom:376.000000pt;}
.yae{bottom:377.459840pt;}
.y156{bottom:378.343040pt;}
.y278{bottom:379.863040pt;}
.y26b{bottom:379.962240pt;}
.y2b7{bottom:380.757120pt;}
.y2db{bottom:381.566720pt;}
.y292{bottom:381.581440pt;}
.y18e{bottom:382.892160pt;}
.y1da{bottom:384.967040pt;}
.y2a3{bottom:385.393920pt;}
.y12b{bottom:385.600000pt;}
.ye6{bottom:385.920000pt;}
.y22b{bottom:386.891520pt;}
.yfd{bottom:387.360000pt;}
.y4e{bottom:389.920000pt;}
.y1fe{bottom:391.601280pt;}
.y78{bottom:392.480000pt;}
.y13e{bottom:395.200000pt;}
.y1c0{bottom:396.520960pt;}
.y177{bottom:396.581120pt;}
.y277{bottom:397.777280pt;}
.y24c{bottom:397.876480pt;}
.y155{bottom:398.980480pt;}
.y2da{bottom:399.480960pt;}
.y291{bottom:399.495680pt;}
.y18d{bottom:403.529600pt;}
.ye8{bottom:403.840000pt;}
.y11e{bottom:404.962560pt;}
.y1d9{bottom:405.442560pt;}
.y2a2{bottom:405.869440pt;}
.y12a{bottom:406.237440pt;}
.y75{bottom:407.040000pt;}
.yfc{bottom:408.000000pt;}
.y40{bottom:408.480000pt;}
.y24b{bottom:415.790720pt;}
.y13d{bottom:415.840000pt;}
.y1bf{bottom:417.158400pt;}
.y176{bottom:417.218560pt;}
.y2b6{bottom:417.395200pt;}
.y290{bottom:417.409920pt;}
.y154{bottom:419.617920pt;}
.y77{bottom:420.000000pt;}
.ye3{bottom:421.600000pt;}
.y22a{bottom:423.367680pt;}
.y18c{bottom:424.167040pt;}
.y1fd{bottom:425.678080pt;}
.y11d{bottom:425.697280pt;}
.y1d8{bottom:426.080000pt;}
.y2a1{bottom:426.506880pt;}
.yfb{bottom:428.640000pt;}
.y4a{bottom:430.400000pt;}
.y24a{bottom:433.704960pt;}
.y276{bottom:434.415360pt;}
.y26a{bottom:434.514560pt;}
.y2a{bottom:435.294720pt;}
.y2b5{bottom:435.309440pt;}
.y2d9{bottom:435.957120pt;}
.y129{bottom:436.163200pt;}
.y13c{bottom:436.480000pt;}
.y1be{bottom:437.633920pt;}
.y175{bottom:437.694080pt;}
.y153{bottom:440.093440pt;}
.y71{bottom:443.520000pt;}
.y18b{bottom:444.642560pt;}
.y1fc{bottom:446.153600pt;}
.y11c{bottom:446.172800pt;}
.y1d7{bottom:446.724480pt;}
.yfa{bottom:449.280000pt;}
.ydb{bottom:449.440000pt;}
.y275{bottom:452.329600pt;}
.y269{bottom:452.428800pt;}
.y2b4{bottom:453.223680pt;}
.y2d8{bottom:453.871360pt;}
.y28f{bottom:453.886080pt;}
.y29{bottom:455.770240pt;}
.y13b{bottom:457.120000pt;}
.ye2{bottom:458.080000pt;}
.y1bd{bottom:458.271360pt;}
.y174{bottom:458.331520pt;}
.y229{bottom:460.005760pt;}
.y152{bottom:460.730880pt;}
.y45{bottom:462.880000pt;}
.y18a{bottom:465.280000pt;}
.y73{bottom:465.440000pt;}
.y2a0{bottom:465.868160pt;}
.y1fb{bottom:466.791040pt;}
.y11b{bottom:466.810240pt;}
.yde{bottom:467.045760pt;}
.y1d6{bottom:467.200000pt;}
.y274{bottom:470.243840pt;}
.y249{bottom:470.343040pt;}
.y2d7{bottom:471.785600pt;}
.y28e{bottom:471.800320pt;}
.y74{bottom:474.400000pt;}
.y13a{bottom:477.600000pt;}
.y228{bottom:477.920000pt;}
.y1bc{bottom:478.908800pt;}
.y173{bottom:478.968960pt;}
.yf9{bottom:479.233920pt;}
.y48{bottom:481.440000pt;}
.y72{bottom:483.360000pt;}
.ydd{bottom:484.960000pt;}
.y189{bottom:485.927040pt;}
.y29f{bottom:486.343680pt;}
.y43{bottom:486.725760pt;}
.y1fa{bottom:487.428480pt;}
.y11a{bottom:487.447680pt;}
.y1d5{bottom:487.840000pt;}
.y248{bottom:488.257280pt;}
.y268{bottom:488.904960pt;}
.y28{bottom:489.685120pt;}
.y2b3{bottom:489.699840pt;}
.y28d{bottom:489.714560pt;}
.ye0{bottom:493.925760pt;}
.y151{bottom:494.645760pt;}
.y139{bottom:498.240000pt;}
.y1bb{bottom:499.546240pt;}
.y172{bottom:499.606400pt;}
.y47{bottom:500.000000pt;}
.y42{bottom:504.640000pt;}
.y188{bottom:506.402560pt;}
.y267{bottom:506.819200pt;}
.y2b2{bottom:507.614080pt;}
.y1f9{bottom:507.904000pt;}
.y2d6{bottom:508.423680pt;}
.y1d4{bottom:508.480000pt;}
.y27{bottom:510.322560pt;}
.ydf{bottom:511.840000pt;}
.y6f{bottom:515.840000pt;}
.y227{bottom:517.760000pt;}
.y44{bottom:518.560000pt;}
.y1ba{bottom:520.021760pt;}
.y171{bottom:520.081920pt;}
.y119{bottom:521.362560pt;}
.y247{bottom:524.733440pt;}
.y2b1{bottom:525.528320pt;}
.y2d5{bottom:526.337920pt;}
.y28c{bottom:526.352640pt;}
.y187{bottom:527.040000pt;}
.y138{bottom:528.163200pt;}
.y1f8{bottom:528.541440pt;}
.y150{bottom:528.560640pt;}
.y1d3{bottom:528.960000pt;}
.y26{bottom:530.960000pt;}
.yd7{bottom:531.040000pt;}
.y3e{bottom:537.120000pt;}
.y70{bottom:537.760000pt;}
.y1b9{bottom:540.659200pt;}
.y170{bottom:540.719360pt;}
.y118{bottom:541.838080pt;}
.y246{bottom:542.647680pt;}
.y266{bottom:543.457280pt;}
.y2d4{bottom:544.252160pt;}
.y28b{bottom:544.266880pt;}
.y186{bottom:547.680000pt;}
.y1d2{bottom:549.600000pt;}
.y25{bottom:551.435520pt;}
.y222{bottom:552.320000pt;}
.yda{bottom:552.960000pt;}
.y1b8{bottom:561.296640pt;}
.y16f{bottom:561.356800pt;}
.y265{bottom:561.371520pt;}
.y2b0{bottom:562.166400pt;}
.y28a{bottom:562.181120pt;}
.y1f7{bottom:562.456320pt;}
.y117{bottom:562.475520pt;}
.y185{bottom:568.160000pt;}
.y6d{bottom:570.240000pt;}
.ya0{bottom:570.754560pt;}
.yd6{bottom:570.880000pt;}
.y24{bottom:572.072960pt;}
.y226{bottom:574.234880pt;}
.y3d{bottom:575.752960pt;}
.y245{bottom:579.285760pt;}
.y2af{bottom:580.080640pt;}
.y2d3{bottom:580.728320pt;}
.y1b7{bottom:581.772160pt;}
.y16e{bottom:581.832320pt;}
.y1f6{bottom:583.093760pt;}
.y116{bottom:583.112960pt;}
.yd9{bottom:588.800000pt;}
.y1d1{bottom:590.720000pt;}
.y9f{bottom:591.392000pt;}
.y225{bottom:592.001920pt;}
.y6e{bottom:592.160000pt;}
.y23{bottom:592.710400pt;}
.y244{bottom:597.200000pt;}
.y264{bottom:597.847680pt;}
.y2d2{bottom:598.642560pt;}
.y289{bottom:598.657280pt;}
.y1b6{bottom:602.409600pt;}
.y16d{bottom:602.469760pt;}
.y1f5{bottom:603.569280pt;}
.y115{bottom:603.588480pt;}
.yad{bottom:605.296000pt;}
.y184{bottom:609.440000pt;}
.y3c{bottom:609.667840pt;}
.y224{bottom:610.725760pt;}
.y1d0{bottom:611.390080pt;}
.y9e{bottom:612.029440pt;}
.y22{bottom:613.185920pt;}
.y273{bottom:615.114240pt;}
.y263{bottom:615.761920pt;}
.y2d1{bottom:616.556800pt;}
.y288{bottom:616.571520pt;}
.yc8{bottom:621.280000pt;}
.y1b5{bottom:623.047040pt;}
.y16c{bottom:623.107200pt;}
.y1f4{bottom:624.206720pt;}
.y114{bottom:624.225920pt;}
.y69{bottom:624.640000pt;}
.yac{bottom:625.933440pt;}
.y1cf{bottom:628.023680pt;}
.y223{bottom:628.640000pt;}
.y183{bottom:629.920000pt;}
.y3b{bottom:630.305280pt;}
.y9d{bottom:632.504960pt;}
.y243{bottom:633.676160pt;}
.y21{bottom:633.823360pt;}
.y2d0{bottom:634.471040pt;}
.y287{bottom:634.485760pt;}
.y14f{bottom:637.503360pt;}
.yd4{bottom:643.200000pt;}
.y1b4{bottom:643.522560pt;}
.y16b{bottom:643.582720pt;}
.y1f3{bottom:644.844160pt;}
.y113{bottom:644.863360pt;}
.y6b{bottom:646.405760pt;}
.yab{bottom:646.408960pt;}
.y182{bottom:650.560000pt;}
.y3a{bottom:650.942720pt;}
.y242{bottom:651.590400pt;}
.y262{bottom:652.400000pt;}
.y9c{bottom:653.142400pt;}
.y20{bottom:654.460800pt;}
.y6c{bottom:655.360000pt;}
.y14e{bottom:658.140800pt;}
.y219{bottom:661.920000pt;}
.y1b3{bottom:664.169600pt;}
.y16a{bottom:664.220160pt;}
.yd{bottom:664.320000pt;}
.y112{bottom:665.338880pt;}
.y241{bottom:669.504640pt;}
.y261{bottom:670.314240pt;}
.y2cf{bottom:670.947200pt;}
.y286{bottom:670.961920pt;}
.y181{bottom:671.200000pt;}
.y39{bottom:671.418240pt;}
.y9b{bottom:673.779840pt;}
.y1f{bottom:674.936320pt;}
.yaa{bottom:676.334720pt;}
.y1f2{bottom:678.759040pt;}
.y14d{bottom:678.778240pt;}
.y221{bottom:683.840000pt;}
.y1b2{bottom:684.807040pt;}
.y169{bottom:684.857600pt;}
.y111{bottom:685.976320pt;}
.y29e{bottom:688.228480pt;}
.y2ce{bottom:688.861440pt;}
.y285{bottom:688.876160pt;}
.yc{bottom:690.398720pt;}
.y180{bottom:691.680000pt;}
.y38{bottom:692.055680pt;}
.y64{bottom:696.800000pt;}
.y1f1{bottom:699.234560pt;}
.y14c{bottom:699.253760pt;}
.y220{bottom:702.560000pt;}
.y1b1{bottom:705.282560pt;}
.y168{bottom:705.333120pt;}
.y240{bottom:705.980800pt;}
.y29d{bottom:706.142720pt;}
.y110{bottom:706.613760pt;}
.y2cd{bottom:706.775680pt;}
.y260{bottom:706.790400pt;}
.y9a{bottom:707.694720pt;}
.yb{bottom:708.312960pt;}
.y17f{bottom:708.483200pt;}
.y1e{bottom:708.851200pt;}
.y37{bottom:712.693120pt;}
.yd3{bottom:714.880000pt;}
.y67{bottom:718.720000pt;}
.y1f0{bottom:719.872000pt;}
.y14b{bottom:719.891200pt;}
.y21e{bottom:720.480000pt;}
.yc6{bottom:723.844480pt;}
.y23f{bottom:723.895040pt;}
.y25f{bottom:724.704640pt;}
.y1b0{bottom:725.920000pt;}
.y167{bottom:725.970560pt;}
.ya{bottom:726.080000pt;}
.y10f{bottom:727.089280pt;}
.y68{bottom:727.680000pt;}
.y99{bottom:728.170240pt;}
.yd1{bottom:732.640000pt;}
.y36{bottom:733.168640pt;}
.y66{bottom:736.640000pt;}
.y21d{bottom:739.040000pt;}
.y1ef{bottom:740.509440pt;}
.yc5{bottom:741.611520pt;}
.y29c{bottom:742.618880pt;}
.y1d{bottom:742.766080pt;}
.y2cc{bottom:743.413760pt;}
.y9{bottom:744.011467pt;}
.y1af{bottom:746.560000pt;}
.y166{bottom:746.608000pt;}
.y98{bottom:748.807680pt;}
.yd5{bottom:750.560000pt;}
.yd0{bottom:750.571520pt;}
.y35{bottom:753.806080pt;}
.y21b{bottom:756.960000pt;}
.yc4{bottom:759.525760pt;}
.y23e{bottom:760.533120pt;}
.y10e{bottom:761.004160pt;}
.y2cb{bottom:761.328000pt;}
.y25e{bottom:761.342720pt;}
.y1ae{bottom:767.040000pt;}
.y165{bottom:767.083520pt;}
.ycf{bottom:768.485760pt;}
.y5f{bottom:769.120000pt;}
.y97{bottom:769.445120pt;}
.y1ee{bottom:774.424320pt;}
.y34{bottom:774.443520pt;}
.y1c{bottom:776.680960pt;}
.yc3{bottom:777.440000pt;}
.y23d{bottom:778.447360pt;}
.y2ca{bottom:779.242240pt;}
.y25d{bottom:779.256960pt;}
.y10d{bottom:781.641600pt;}
.yce{bottom:786.400000pt;}
.y1ad{bottom:787.680000pt;}
.y164{bottom:787.720960pt;}
.y20a{bottom:790.240000pt;}
.y63{bottom:791.045760pt;}
.y33{bottom:794.919040pt;}
.y25c{bottom:797.171200pt;}
.y10c{bottom:802.279040pt;}
.y96{bottom:803.360000pt;}
.y8{bottom:806.571520pt;}
.yc7{bottom:807.998720pt;}
.y1ac{bottom:808.320000pt;}
.y1ed{bottom:808.339200pt;}
.yf8{bottom:808.358400pt;}
.y62{bottom:808.960000pt;}
.y1b{bottom:810.595840pt;}
.y217{bottom:812.800640pt;}
.y23c{bottom:814.923520pt;}
.y284{bottom:815.085440pt;}
.y32{bottom:815.556480pt;}
.y2c9{bottom:815.718400pt;}
.y94{bottom:817.920000pt;}
.ycc{bottom:822.240000pt;}
.y10b{bottom:822.754560pt;}
.y7{bottom:824.485760pt;}
.y61{bottom:826.880000pt;}
.y1ab{bottom:828.800000pt;}
.y1ec{bottom:828.814720pt;}
.yf7{bottom:828.833920pt;}
.y216{bottom:830.714880pt;}
.y95{bottom:830.880000pt;}
.y23b{bottom:832.837760pt;}
.y2c8{bottom:833.632640pt;}
.y25b{bottom:833.647360pt;}
.y31{bottom:836.193920pt;}
.y6{bottom:842.405760pt;}
.y10a{bottom:843.392000pt;}
.y1a{bottom:844.672640pt;}
.y215{bottom:848.629120pt;}
.y1aa{bottom:849.440000pt;}
.y1eb{bottom:849.452160pt;}
.yf6{bottom:849.471360pt;}
.y2c7{bottom:851.546880pt;}
.y25a{bottom:851.561600pt;}
.y92{bottom:854.400000pt;}
.y30{bottom:856.669440pt;}
.y5e{bottom:859.360000pt;}
.y109{bottom:864.029440pt;}
.y5{bottom:865.600000pt;}
.y214{bottom:867.352960pt;}
.y93{bottom:867.360000pt;}
.y23a{bottom:869.475840pt;}
.y1a9{bottom:870.080000pt;}
.y1ea{bottom:870.089600pt;}
.yf5{bottom:870.108800pt;}
.y2f{bottom:877.306880pt;}
.y19{bottom:878.587520pt;}
.y213{bottom:885.120000pt;}
.y239{bottom:887.390080pt;}
.y2c6{bottom:888.184960pt;}
.yc1{bottom:890.560000pt;}
.y1e9{bottom:890.565120pt;}
.yf4{bottom:890.584320pt;}
.y8f{bottom:890.880000pt;}
.y4{bottom:894.560000pt;}
.y2e{bottom:897.944320pt;}
.y91{bottom:899.840000pt;}
.yc2{bottom:903.520000pt;}
.y212{bottom:903.840000pt;}
.y238{bottom:905.304320pt;}
.y259{bottom:905.952000pt;}
.y2c5{bottom:906.099200pt;}
.y1a8{bottom:911.200000pt;}
.y1e8{bottom:911.202560pt;}
.yf3{bottom:911.221760pt;}
.y18{bottom:912.502400pt;}
.y3{bottom:917.280000pt;}
.y2d{bottom:918.581760pt;}
.y8c{bottom:919.360000pt;}
.y210{bottom:921.760000pt;}
.y258{bottom:923.866240pt;}
.y1a7{bottom:931.840000pt;}
.y5d{bottom:931.859200pt;}
.y8e{bottom:932.000000pt;}
.y2c{bottom:939.057280pt;}
.y20f{bottom:940.480000pt;}
.y8b{bottom:941.280000pt;}
.y237{bottom:941.780480pt;}
.y17{bottom:946.417280pt;}
.y1a6{bottom:952.480000pt;}
.y5c{bottom:952.496640pt;}
.y8d{bottom:955.200000pt;}
.y2{bottom:958.888800pt;}
.ybb{bottom:959.687680pt;}
.y2b{bottom:959.694720pt;}
.y2c4{bottom:960.504320pt;}
.y1a5{bottom:972.960000pt;}
.y5b{bottom:972.972160pt;}
.y89{bottom:973.760000pt;}
.y20c{bottom:976.320000pt;}
.y257{bottom:978.418560pt;}
.y16{bottom:980.332160pt;}
.y1a4{bottom:993.600000pt;}
.yba{bottom:993.602560pt;}
.y5a{bottom:993.609600pt;}
.y8a{bottom:995.680000pt;}
.y236{bottom:996.332800pt;}
.y209{bottom:1009.600000pt;}
.yb9{bottom:1014.240000pt;}
.y15{bottom:1014.247040pt;}
.ye{bottom:1032.320000pt;}
.y13{bottom:1053.420000pt;}
.y12{bottom:1066.220000pt;}
.y11{bottom:1079.020000pt;}
.y10{bottom:1091.820000pt;}
.yf{bottom:1104.620000pt;}
.h26{height:17.760000pt;}
.hb{height:17.920000pt;}
.hd{height:17.921333pt;}
.h16{height:24.320000pt;}
.h1a{height:27.840000pt;}
.h5{height:30.613125pt;}
.h8{height:30.625000pt;}
.h9{height:30.979167pt;}
.h15{height:35.840000pt;}
.h28{height:39.243750pt;}
.h22{height:40.020000pt;}
.h1b{height:40.796250pt;}
.ha{height:40.940000pt;}
.h2b{height:44.500000pt;}
.h2{height:48.558750pt;}
.h7{height:48.558963pt;}
.h21{height:51.633285pt;}
.h25{height:51.656325pt;}
.h6{height:51.710085pt;}
.h23{height:51.733125pt;}
.h17{height:52.800000pt;}
.h19{height:53.598667pt;}
.h14{height:53.600000pt;}
.hf{height:53.760000pt;}
.h10{height:55.040000pt;}
.h4{height:56.483438pt;}
.h24{height:56.965350pt;}
.h13{height:71.520000pt;}
.h12{height:71.680000pt;}
.he{height:73.601333pt;}
.h1e{height:80.160000pt;}
.h1d{height:80.960000pt;}
.h3{height:81.435000pt;}
.h20{height:86.830880pt;}
.h11{height:89.600000pt;}
.h18{height:103.598750pt;}
.h2a{height:108.960000pt;}
.h1f{height:114.401333pt;}
.h29{height:127.680000pt;}
.hc{height:128.000000pt;}
.h27{height:218.561333pt;}
.h1c{height:268.640000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:63.360000pt;}
.wc{width:74.400000pt;}
.wa{width:103.361333pt;}
.w7{width:114.720000pt;}
.wb{width:117.438667pt;}
.w8{width:119.840000pt;}
.w4{width:140.958667pt;}
.w5{width:191.360000pt;}
.w3{width:235.520000pt;}
.we{width:238.080000pt;}
.wd{width:245.120000pt;}
.w6{width:268.160000pt;}
.w9{width:358.560000pt;}
.wf{width:575.520000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:6.880000pt;}
.x32{left:9.440000pt;}
.x39{left:11.840000pt;}
.x2c{left:14.400000pt;}
.xb{left:15.550667pt;}
.x31{left:16.480000pt;}
.x21{left:17.440000pt;}
.x43{left:18.400000pt;}
.xd{left:22.240000pt;}
.x11{left:23.840000pt;}
.x37{left:27.360000pt;}
.x4c{left:30.400000pt;}
.x2f{left:31.360000pt;}
.x1b{left:33.600000pt;}
.x1d{left:38.880000pt;}
.x4e{left:43.360000pt;}
.x26{left:47.200000pt;}
.x1e{left:49.760000pt;}
.x23{left:52.640000pt;}
.x20{left:55.360000pt;}
.x53{left:58.400000pt;}
.x55{left:65.280000pt;}
.x3d{left:66.400000pt;}
.x3e{left:67.360000pt;}
.x4d{left:76.640000pt;}
.x19{left:79.840000pt;}
.x1a{left:83.040000pt;}
.x35{left:84.960000pt;}
.x18{left:88.160000pt;}
.x15{left:95.840000pt;}
.xf{left:103.200000pt;}
.x58{left:105.440000pt;}
.x22{left:106.560000pt;}
.x9{left:113.437467pt;}
.x7{left:114.718080pt;}
.x3{left:116.640000pt;}
.x6{left:121.752960pt;}
.xa{left:126.792000pt;}
.x4a{left:129.920000pt;}
.x42{left:131.360000pt;}
.x40{left:133.440000pt;}
.x5{left:134.880000pt;}
.x48{left:137.280000pt;}
.x47{left:151.040000pt;}
.x5c{left:159.680000pt;}
.x27{left:161.120000pt;}
.x3a{left:162.560000pt;}
.x5a{left:163.680000pt;}
.xc{left:176.160000pt;}
.x2{left:180.014667pt;}
.x13{left:183.040000pt;}
.x14{left:199.040640pt;}
.x3f{left:227.040000pt;}
.xe{left:240.160000pt;}
.x46{left:247.520000pt;}
.x49{left:259.520000pt;}
.x4{left:278.880000pt;}
.x24{left:298.560000pt;}
.x36{left:306.880000pt;}
.x33{left:309.920000pt;}
.x3c{left:313.600000pt;}
.x38{left:318.560000pt;}
.x34{left:321.916800pt;}
.x2e{left:324.640000pt;}
.x2a{left:327.843840pt;}
.x3b{left:333.280000pt;}
.x29{left:334.880000pt;}
.x2d{left:353.920000pt;}
.x5d{left:372.800000pt;}
.x8{left:378.706560pt;}
.x44{left:382.880000pt;}
.x50{left:396.800000pt;}
.x65{left:404.640000pt;}
.x28{left:406.240000pt;}
.x56{left:415.200000pt;}
.x57{left:422.080000pt;}
.x10{left:476.480000pt;}
.x16{left:488.800000pt;}
.x1c{left:492.640000pt;}
.x1f{left:506.880000pt;}
.x17{left:518.549120pt;}
.x60{left:560.633600pt;}
.x25{left:567.360000pt;}
.x64{left:576.590080pt;}
.x41{left:586.240000pt;}
.x4f{left:596.800640pt;}
.x2b{left:603.520000pt;}
.x30{left:612.800000pt;}
.x45{left:616.640000pt;}
.x52{left:619.349760pt;}
.x4b{left:625.920000pt;}
.x51{left:634.069760pt;}
.x63{left:638.222720pt;}
.x61{left:641.284480pt;}
.x54{left:660.960000pt;}
.x5f{left:665.440000pt;}
.x1{left:672.960000pt;}
.x59{left:676.480000pt;}
.x5e{left:680.187520pt;}
.x5b{left:686.240000pt;}
.x62{left:727.514240pt;}
}




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