
    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_28bb942820b3f554a094723c.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_c3320720de5772e57366a28c.woff')format("woff");}.ff2{font-family:ff2;line-height:0.850586;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_01a2bf707bdbbde775140c23.woff')format("woff");}.ff3{font-family:ff3;line-height:0.859863;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_43962c498cda6bbb48e28034.woff')format("woff");}.ff4{font-family:ff4;line-height:0.756836;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_d78aa1f1f1fa8e84e2d4a23f.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_34b11ef423f43fa443bc12f3.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_820672862e9300d00413d52f.woff')format("woff");}.ff7{font-family:ff7;line-height:0.772949;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_f69c327bb58d9ce90e07f5af.woff')format("woff");}.ff8{font-family:ff8;line-height:0.946289;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_d11282c2605943948faf5ad3.woff')format("woff");}.ff9{font-family:ff9;line-height:1.032715;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_11c7b45f355f3840e5c6a925.woff')format("woff");}.ffa{font-family:ffa;line-height:0.750000;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_c65af6b5f4f0db84e7e04993.woff')format("woff");}.ffb{font-family:ffb;line-height:0.857422;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_a2226c8efbac6c62419c6503.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_29b4d2b6660e8d3a084f5961.woff')format("woff");}.ffd{font-family:ffd;line-height:0.850586;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_722beb8a55c83da77e3c423b.woff')format("woff");}.ffe{font-family:ffe;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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls3b{letter-spacing:-1.258560px;}
.ls27{letter-spacing:-1.192320px;}
.ls35{letter-spacing:-1.126080px;}
.ls6b{letter-spacing:-1.059840px;}
.ls4e{letter-spacing:-0.993600px;}
.ls21{letter-spacing:-0.927360px;}
.ls69{letter-spacing:-0.861120px;}
.ls4c{letter-spacing:-0.794880px;}
.ls1e{letter-spacing:-0.662400px;}
.ls57{letter-spacing:-0.597600px;}
.lsf{letter-spacing:-0.596160px;}
.lse{letter-spacing:-0.529920px;}
.ls5f{letter-spacing:-0.463680px;}
.ls36{letter-spacing:-0.397440px;}
.ls26{letter-spacing:-0.331200px;}
.ls8{letter-spacing:-0.324000px;}
.ls76{letter-spacing:-0.298800px;}
.ls4b{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.270000px;}
.ls22{letter-spacing:-0.264960px;}
.ls12{letter-spacing:-0.239040px;}
.lsb{letter-spacing:-0.216000px;}
.lsa{letter-spacing:-0.198720px;}
.ls13{letter-spacing:-0.179280px;}
.ls77{letter-spacing:-0.144000px;}
.ls1f{letter-spacing:-0.132480px;}
.ls4f{letter-spacing:-0.119520px;}
.ls1a{letter-spacing:-0.108000px;}
.ls50{letter-spacing:-0.059760px;}
.ls9{letter-spacing:-0.054000px;}
.ls4{letter-spacing:0.000000px;}
.ls78{letter-spacing:0.026496px;}
.ls6f{letter-spacing:0.033120px;}
.ls2{letter-spacing:0.059760px;}
.ls20{letter-spacing:0.066240px;}
.ls49{letter-spacing:0.071712px;}
.ls1c{letter-spacing:0.072000px;}
.ls51{letter-spacing:0.089640px;}
.ls6{letter-spacing:0.108000px;}
.ls52{letter-spacing:0.108720px;}
.ls42{letter-spacing:0.118080px;}
.ls48{letter-spacing:0.119520px;}
.ls41{letter-spacing:0.132480px;}
.ls55{letter-spacing:0.137448px;}
.ls53{letter-spacing:0.143424px;}
.ls54{letter-spacing:0.155376px;}
.ls33{letter-spacing:0.158976px;}
.ls47{letter-spacing:0.161352px;}
.ls75{letter-spacing:0.162000px;}
.ls3{letter-spacing:0.179280px;}
.ls83{letter-spacing:0.197208px;}
.lsd{letter-spacing:0.198720px;}
.lsc{letter-spacing:0.216000px;}
.ls68{letter-spacing:0.218592px;}
.ls10{letter-spacing:0.239040px;}
.ls15{letter-spacing:0.264960px;}
.ls5{letter-spacing:0.270000px;}
.ls82{letter-spacing:0.286848px;}
.ls4a{letter-spacing:0.288000px;}
.ls11{letter-spacing:0.298800px;}
.ls43{letter-spacing:0.317952px;}
.ls1b{letter-spacing:0.324000px;}
.ls4d{letter-spacing:0.331200px;}
.ls56{letter-spacing:0.358560px;}
.ls2b{letter-spacing:0.360000px;}
.ls0{letter-spacing:0.378000px;}
.ls1d{letter-spacing:0.397440px;}
.ls6e{letter-spacing:0.430560px;}
.ls1{letter-spacing:0.432000px;}
.ls30{letter-spacing:0.463680px;}
.ls59{letter-spacing:0.478080px;}
.ls6a{letter-spacing:0.529920px;}
.ls7f{letter-spacing:0.537840px;}
.ls7e{letter-spacing:0.549792px;}
.ls87{letter-spacing:0.555768px;}
.ls80{letter-spacing:0.567720px;}
.ls86{letter-spacing:0.573696px;}
.ls81{letter-spacing:0.579672px;}
.ls58{letter-spacing:0.585648px;}
.ls7d{letter-spacing:0.597600px;}
.ls88{letter-spacing:0.603576px;}
.ls89{letter-spacing:0.615528px;}
.ls84{letter-spacing:0.639432px;}
.ls85{letter-spacing:0.836640px;}
.ls28{letter-spacing:0.927360px;}
.ls61{letter-spacing:1.039968px;}
.ls7a{letter-spacing:1.278000px;}
.ls79{letter-spacing:1.296000px;}
.ls29{letter-spacing:1.656000px;}
.ls16{letter-spacing:2.384640px;}
.ls67{letter-spacing:2.431008px;}
.ls5c{letter-spacing:3.113280px;}
.ls60{letter-spacing:3.206016px;}
.ls70{letter-spacing:3.259008px;}
.ls3c{letter-spacing:3.627360px;}
.ls25{letter-spacing:3.841920px;}
.ls19{letter-spacing:4.570560px;}
.ls63{letter-spacing:4.583808px;}
.ls64{letter-spacing:5.299200px;}
.ls3d{letter-spacing:5.961600px;}
.ls40{letter-spacing:6.094080px;}
.ls34{letter-spacing:6.690240px;}
.ls14{letter-spacing:7.418880px;}
.ls46{letter-spacing:7.776000px;}
.ls5a{letter-spacing:8.147520px;}
.ls62{letter-spacing:8.346240px;}
.ls5b{letter-spacing:8.876160px;}
.ls17{letter-spacing:9.604800px;}
.ls18{letter-spacing:10.333440px;}
.ls2c{letter-spacing:10.340064px;}
.ls44{letter-spacing:11.062080px;}
.ls73{letter-spacing:11.181312px;}
.ls5e{letter-spacing:11.724480px;}
.ls2d{letter-spacing:12.453120px;}
.ls23{letter-spacing:13.181760px;}
.ls31{letter-spacing:13.910400px;}
.ls3a{letter-spacing:13.976640px;}
.ls74{letter-spacing:14.122368px;}
.ls32{letter-spacing:14.639040px;}
.ls45{letter-spacing:16.096320px;}
.ls3e{letter-spacing:16.109568px;}
.ls5d{letter-spacing:16.824960px;}
.ls7b{letter-spacing:17.487360px;}
.ls2a{letter-spacing:18.216000px;}
.ls3f{letter-spacing:18.282240px;}
.ls24{letter-spacing:20.401920px;}
.ls6d{letter-spacing:21.872448px;}
.ls37{letter-spacing:22.521600px;}
.ls71{letter-spacing:23.978880px;}
.ls66{letter-spacing:25.436160px;}
.ls65{letter-spacing:26.893440px;}
.ls39{letter-spacing:28.284480px;}
.ls38{letter-spacing:28.423584px;}
.ls6c{letter-spacing:35.570880px;}
.ls2f{letter-spacing:39.081600px;}
.ls2e{letter-spacing:39.810240px;}
.ls72{letter-spacing:44.155584px;}
.ls7c{letter-spacing:849.029760px;}
.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;}
}
.ws4{word-spacing:-21.600000px;}
.ws100{word-spacing:-18.144000px;}
.ws32{word-spacing:-16.254000px;}
.ws33{word-spacing:-16.038000px;}
.wsff{word-spacing:-14.904000px;}
.ws34{word-spacing:-14.688000px;}
.ws7e{word-spacing:-14.400000px;}
.ws7f{word-spacing:-14.328000px;}
.ws66{word-spacing:-13.844160px;}
.wsa9{word-spacing:-13.711680px;}
.ws5{word-spacing:-13.645440px;}
.ws36{word-spacing:-13.512960px;}
.ws6{word-spacing:-13.446720px;}
.ws35{word-spacing:-13.314240px;}
.ws80{word-spacing:-13.248000px;}
.ws39{word-spacing:-13.181760px;}
.ws82{word-spacing:-13.115520px;}
.ws81{word-spacing:-13.049280px;}
.wsaa{word-spacing:-12.983040px;}
.ws37{word-spacing:-12.916800px;}
.ws67{word-spacing:-12.850560px;}
.ws5b{word-spacing:-12.784320px;}
.wsa8{word-spacing:-12.609360px;}
.ws38{word-spacing:-12.519360px;}
.ws9f{word-spacing:-12.489840px;}
.wsb0{word-spacing:-12.453120px;}
.ws8{word-spacing:-12.430080px;}
.ws7{word-spacing:-12.370320px;}
.ws85{word-spacing:-12.310560px;}
.ws9e{word-spacing:-12.250800px;}
.ws9{word-spacing:-12.131280px;}
.ws86{word-spacing:-12.071520px;}
.ws83{word-spacing:-12.011760px;}
.wsa{word-spacing:-11.952000px;}
.ws84{word-spacing:-11.892240px;}
.wsf7{word-spacing:-11.832480px;}
.ws0{word-spacing:-11.232000px;}
.wsda{word-spacing:-11.124000px;}
.ws2{word-spacing:-10.908000px;}
.ws3{word-spacing:-10.692000px;}
.ws1{word-spacing:-10.638000px;}
.ws25{word-spacing:-4.305600px;}
.ws24{word-spacing:-3.576960px;}
.ws72{word-spacing:-3.444480px;}
.wsc6{word-spacing:-3.047040px;}
.ws4b{word-spacing:-2.848320px;}
.wsed{word-spacing:-2.754000px;}
.ws65{word-spacing:-2.715840px;}
.wsba{word-spacing:-2.517120px;}
.ws3f{word-spacing:-2.318400px;}
.ws57{word-spacing:-2.119680px;}
.wscd{word-spacing:-2.052000px;}
.ws77{word-spacing:-1.987200px;}
.wsb3{word-spacing:-1.788480px;}
.wsbd{word-spacing:-1.656000px;}
.wsb6{word-spacing:-1.589760px;}
.ws90{word-spacing:-1.523520px;}
.ws9d{word-spacing:-1.494000px;}
.ws3e{word-spacing:-1.391040px;}
.wse1{word-spacing:-1.350000px;}
.ws91{word-spacing:-1.258560px;}
.ws7b{word-spacing:-1.026000px;}
.wsa7{word-spacing:-0.896400px;}
.wsa4{word-spacing:-0.776880px;}
.wsbf{word-spacing:-0.728640px;}
.ws1b{word-spacing:-0.662400px;}
.wsec{word-spacing:-0.594000px;}
.ws53{word-spacing:-0.529920px;}
.ws87{word-spacing:-0.504000px;}
.ws101{word-spacing:-0.478080px;}
.ws18{word-spacing:-0.463680px;}
.wsd0{word-spacing:-0.418320px;}
.wsfe{word-spacing:-0.397440px;}
.ws7c{word-spacing:-0.378000px;}
.wse2{word-spacing:-0.358560px;}
.ws4d{word-spacing:-0.331200px;}
.ws3c{word-spacing:-0.324000px;}
.wsa0{word-spacing:-0.298800px;}
.ws6a{word-spacing:-0.288000px;}
.wsc{word-spacing:-0.270000px;}
.ws5c{word-spacing:-0.264960px;}
.wsa2{word-spacing:-0.239040px;}
.ws41{word-spacing:-0.198720px;}
.ws99{word-spacing:-0.179280px;}
.ws9a{word-spacing:-0.119520px;}
.wsce{word-spacing:-0.108000px;}
.ws5d{word-spacing:-0.066240px;}
.ws30{word-spacing:-0.059760px;}
.wsb{word-spacing:0.000000px;}
.ws10{word-spacing:0.054000px;}
.ws9b{word-spacing:0.059760px;}
.ws19{word-spacing:0.066240px;}
.wse{word-spacing:0.108000px;}
.wsa5{word-spacing:0.119520px;}
.ws4c{word-spacing:0.132480px;}
.wsf{word-spacing:0.162000px;}
.wsa1{word-spacing:0.179280px;}
.ws1e{word-spacing:0.198720px;}
.ws16{word-spacing:0.216000px;}
.ws31{word-spacing:0.239040px;}
.ws3a{word-spacing:0.270000px;}
.ws98{word-spacing:0.298800px;}
.ws11{word-spacing:0.324000px;}
.ws6c{word-spacing:0.331200px;}
.ws9c{word-spacing:0.358560px;}
.ws3b{word-spacing:0.378000px;}
.ws12{word-spacing:0.397440px;}
.wsf9{word-spacing:0.418320px;}
.wsad{word-spacing:0.463680px;}
.ws1c{word-spacing:0.529920px;}
.wsd{word-spacing:0.540000px;}
.ws27{word-spacing:0.596160px;}
.wsa3{word-spacing:0.597600px;}
.ws102{word-spacing:0.657360px;}
.ws64{word-spacing:0.662400px;}
.ws28{word-spacing:0.728640px;}
.wsb4{word-spacing:0.794880px;}
.wsb1{word-spacing:0.861120px;}
.ws8d{word-spacing:0.927360px;}
.ws94{word-spacing:0.993600px;}
.ws75{word-spacing:1.059840px;}
.wsa6{word-spacing:1.075680px;}
.ws6d{word-spacing:1.126080px;}
.ws63{word-spacing:1.192320px;}
.ws73{word-spacing:1.258560px;}
.ws5a{word-spacing:1.457280px;}
.wse0{word-spacing:1.566000px;}
.ws8e{word-spacing:1.589760px;}
.wsef{word-spacing:1.613520px;}
.ws8f{word-spacing:1.788480px;}
.wsfb{word-spacing:1.854720px;}
.ws4e{word-spacing:2.185920px;}
.ws89{word-spacing:2.450880px;}
.wsbb{word-spacing:2.649600px;}
.ws4f{word-spacing:2.914560px;}
.ws69{word-spacing:3.047040px;}
.wsc3{word-spacing:3.113280px;}
.wsd9{word-spacing:3.378240px;}
.ws60{word-spacing:3.643200px;}
.ws70{word-spacing:3.775680px;}
.wsf5{word-spacing:4.173120px;}
.ws56{word-spacing:4.371840px;}
.wscf{word-spacing:4.428000px;}
.wsb9{word-spacing:4.504320px;}
.wsdc{word-spacing:4.703040px;}
.wsea{word-spacing:4.835520px;}
.wsb5{word-spacing:4.901760px;}
.ws49{word-spacing:5.100480px;}
.wsd6{word-spacing:5.431680px;}
.wsdf{word-spacing:5.497920px;}
.wsd3{word-spacing:5.557680px;}
.ws48{word-spacing:5.762880px;}
.ws88{word-spacing:5.829120px;}
.wsc0{word-spacing:6.094080px;}
.ws50{word-spacing:6.160320px;}
.ws44{word-spacing:6.491520px;}
.ws93{word-spacing:6.557760px;}
.wsbe{word-spacing:6.822720px;}
.ws45{word-spacing:7.220160px;}
.ws96{word-spacing:7.830000px;}
.ws23{word-spacing:7.948800px;}
.ws97{word-spacing:8.046000px;}
.wsca{word-spacing:8.478720px;}
.ws22{word-spacing:8.677440px;}
.ws40{word-spacing:8.809920px;}
.ws95{word-spacing:9.008640px;}
.ws7a{word-spacing:9.074880px;}
.ws52{word-spacing:9.406080px;}
.ws5f{word-spacing:9.538560px;}
.wsd4{word-spacing:9.737280px;}
.wsfc{word-spacing:9.803520px;}
.ws2e{word-spacing:10.134720px;}
.wseb{word-spacing:10.465920px;}
.wsd7{word-spacing:10.728000px;}
.ws2f{word-spacing:10.797120px;}
.ws51{word-spacing:10.863360px;}
.ws92{word-spacing:10.929600px;}
.ws21{word-spacing:11.525760px;}
.ws4a{word-spacing:11.658240px;}
.ws29{word-spacing:12.254400px;}
.wsc9{word-spacing:12.386880px;}
.wse7{word-spacing:12.489840px;}
.wsbc{word-spacing:12.718080px;}
.ws6e{word-spacing:12.784320px;}
.ws1a{word-spacing:12.983040px;}
.ws43{word-spacing:13.115520px;}
.wsb2{word-spacing:13.380480px;}
.ws1d{word-spacing:13.711680px;}
.ws5e{word-spacing:13.844160px;}
.wsf3{word-spacing:14.342400px;}
.ws26{word-spacing:14.440320px;}
.wsf4{word-spacing:14.940000px;}
.ws54{word-spacing:15.168960px;}
.wsf2{word-spacing:15.418080px;}
.ws55{word-spacing:15.897600px;}
.ws8a{word-spacing:16.096320px;}
.wsd5{word-spacing:16.228800px;}
.ws71{word-spacing:16.560000px;}
.wsc5{word-spacing:16.626240px;}
.wsc1{word-spacing:16.758720px;}
.wsab{word-spacing:17.156160px;}
.ws59{word-spacing:17.288640px;}
.wsae{word-spacing:17.354880px;}
.wsac{word-spacing:17.421120px;}
.ws3d{word-spacing:18.017280px;}
.ws8b{word-spacing:18.348480px;}
.ws42{word-spacing:18.547200px;}
.ws2d{word-spacing:18.745920px;}
.wse9{word-spacing:19.077120px;}
.wse8{word-spacing:19.143360px;}
.ws46{word-spacing:19.474560px;}
.wsf1{word-spacing:19.900080px;}
.ws61{word-spacing:20.203200px;}
.ws74{word-spacing:20.534400px;}
.ws62{word-spacing:20.931840px;}
.ws6b{word-spacing:21.660480px;}
.wsc2{word-spacing:21.991680px;}
.ws58{word-spacing:22.322880px;}
.wsfa{word-spacing:22.389120px;}
.ws68{word-spacing:23.051520px;}
.ws20{word-spacing:23.780160px;}
.ws2a{word-spacing:24.508800px;}
.wsaf{word-spacing:25.237440px;}
.wscc{word-spacing:25.966080px;}
.ws47{word-spacing:26.694720px;}
.ws7d{word-spacing:27.357120px;}
.ws78{word-spacing:28.085760px;}
.wsdb{word-spacing:28.814400px;}
.wsde{word-spacing:29.145600px;}
.wsdd{word-spacing:29.410560px;}
.wsfd{word-spacing:29.543040px;}
.wsf6{word-spacing:30.271680px;}
.ws8c{word-spacing:30.801600px;}
.ws13{word-spacing:31.536000px;}
.ws79{word-spacing:31.728960px;}
.ws14{word-spacing:31.860000px;}
.wsc4{word-spacing:32.457600px;}
.ws76{word-spacing:33.120000px;}
.ws2b{word-spacing:34.577280px;}
.wsc8{word-spacing:34.908480px;}
.wscb{word-spacing:36.034560px;}
.wsd8{word-spacing:37.491840px;}
.ws17{word-spacing:38.448000px;}
.ws15{word-spacing:38.772000px;}
.wsee{word-spacing:39.083040px;}
.ws6f{word-spacing:39.611520px;}
.wsf8{word-spacing:40.340160px;}
.ws2c{word-spacing:41.797440px;}
.ws1f{word-spacing:43.917120px;}
.wsb7{word-spacing:44.645760px;}
.wsb8{word-spacing:45.374400px;}
.wse3{word-spacing:45.656640px;}
.wsc7{word-spacing:45.705600px;}
.wsf0{word-spacing:72.727920px;}
.wse4{word-spacing:95.496480px;}
.wsd2{word-spacing:99.560160px;}
.wse5{word-spacing:173.304000px;}
.wsd1{word-spacing:178.861680px;}
.wse6{word-spacing:235.693440px;}
._a{margin-left:-2.831040px;}
._1{margin-left:-1.544400px;}
._2{width:1.134000px;}
._3{width:2.143800px;}
._13{width:3.309120px;}
._c{width:4.587120px;}
._e{width:6.226560px;}
._7{width:8.200800px;}
._9{width:10.242720px;}
._b{width:11.981520px;}
._6{width:15.341040px;}
._14{width:17.604000px;}
._8{width:18.892080px;}
._17{width:21.692736px;}
._f{width:22.710960px;}
._15{width:24.850800px;}
._11{width:27.290880px;}
._10{width:28.902816px;}
._12{width:31.260384px;}
._4{width:32.400000px;}
._5{width:38.772000px;}
._d{width:40.351680px;}
._16{width:46.108800px;}
._18{width:848.998080px;}
._0{width:1016.784000px;}
.fc5{color:rgb(0,109,180);}
.fc3{color:rgb(34,161,202);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(22,41,118);}
.fc4{color:rgb(68,84,106);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs1{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:95.760000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.160000px;}
.y213{bottom:4.140000px;}
.y13f{bottom:4.680000px;}
.yb7{bottom:13.320000px;}
.y233{bottom:22.500000px;}
.y13e{bottom:24.840000px;}
.y167{bottom:31.140000px;}
.y1a9{bottom:31.320000px;}
.yea{bottom:40.680000px;}
.y211{bottom:40.860000px;}
.y141{bottom:44.820000px;}
.y144{bottom:45.000000px;}
.yb{bottom:57.064500px;}
.y40{bottom:57.780000px;}
.yb9{bottom:68.040000px;}
.yc9{bottom:68.220000px;}
.ya{bottom:73.440000px;}
.y3f{bottom:76.500000px;}
.y182{bottom:86.220000px;}
.y9{bottom:90.000000px;}
.ybe{bottom:93.238020px;}
.y229{bottom:94.680000px;}
.ydf{bottom:95.760000px;}
.y256{bottom:96.184800px;}
.y31{bottom:96.300000px;}
.y124{bottom:98.460000px;}
.y101{bottom:99.180000px;}
.y90{bottom:101.350800px;}
.ya6{bottom:101.745360px;}
.y87{bottom:101.941200px;}
.y139{bottom:102.305520px;}
.yfe{bottom:102.603600px;}
.ye6{bottom:102.960000px;}
.y162{bottom:103.564080px;}
.y1ef{bottom:105.120000px;}
.y8{bottom:106.375500px;}
.y37{bottom:108.360000px;}
.y1a3{bottom:109.465920px;}
.y123{bottom:111.780000px;}
.y20e{bottom:114.492240px;}
.y115{bottom:115.225920px;}
.ye8{bottom:116.284860px;}
.y30{bottom:116.460000px;}
.ybd{bottom:116.640000px;}
.y2b1{bottom:117.010440px;}
.y2d0{bottom:117.020880px;}
.y231{bottom:117.180000px;}
.y63{bottom:117.418320px;}
.y160{bottom:117.552240px;}
.y138{bottom:119.521440px;}
.y17c{bottom:122.220000px;}
.y7{bottom:122.940000px;}
.y255{bottom:126.423360px;}
.y17b{bottom:127.260000px;}
.ybc{bottom:130.140000px;}
.y1b6{bottom:131.580000px;}
.y8f{bottom:131.589360px;}
.ya5{bottom:131.619600px;}
.y161{bottom:131.997600px;}
.y86{bottom:132.179760px;}
.y1b1{bottom:132.480000px;}
.yfd{bottom:132.660000px;}
.y100{bottom:133.564500px;}
.y230{bottom:135.540000px;}
.y1f1{bottom:136.444860px;}
.y2f{bottom:136.620000px;}
.y6{bottom:139.315500px;}
.y1a2{bottom:139.704480px;}
.ye7{bottom:143.640000px;}
.y2b0{bottom:144.365580px;}
.y2cf{bottom:144.376020px;}
.y20d{bottom:144.730800px;}
.y114{bottom:145.464480px;}
.y1f2{bottom:145.800000px;}
.y62{bottom:147.656880px;}
.y15f{bottom:147.790800px;}
.y1d8{bottom:148.705200px;}
.y1ab{bottom:149.580000px;}
.y137{bottom:149.760000px;}
.y28a{bottom:149.944860px;}
.y122{bottom:150.305760px;}
.yc0{bottom:150.660000px;}
.y22f{bottom:153.900000px;}
.y5{bottom:155.880000px;}
.y254{bottom:156.661920px;}
.y180{bottom:158.582880px;}
.y8e{bottom:161.645760px;}
.ya4{bottom:161.858160px;}
.y85{bottom:162.418320px;}
.y1f0{bottom:163.800000px;}
.y1b4{bottom:163.802160px;}
.yff{bottom:165.060000px;}
.y22a{bottom:169.020000px;}
.yfc{bottom:169.200000px;}
.y1a1{bottom:169.943040px;}
.y2af{bottom:171.900000px;}
.y2ce{bottom:171.910440px;}
.y22e{bottom:172.080000px;}
.y4{bottom:172.251000px;}
.y20c{bottom:174.969360px;}
.y113{bottom:175.703040px;}
.y16f{bottom:176.940000px;}
.y169{bottom:177.120000px;}
.y289{bottom:177.300000px;}
.y15e{bottom:177.847200px;}
.y61{bottom:177.895440px;}
.y1d7{bottom:178.943760px;}
.y121{bottom:180.544320px;}
.y136{bottom:181.260000px;}
.ye3{bottom:185.400000px;}
.yb8{bottom:185.760000px;}
.y253{bottom:186.900480px;}
.y215{bottom:187.200000px;}
.y3{bottom:188.815500px;}
.y22d{bottom:190.440000px;}
.y8d{bottom:191.884320px;}
.ya3{bottom:192.096720px;}
.y84{bottom:192.656880px;}
.y17e{bottom:194.585580px;}
.y1f4{bottom:195.120000px;}
.ye5{bottom:198.545580px;}
.ybb{bottom:198.905580px;}
.y2cd{bottom:199.265580px;}
.y2ae{bottom:199.276020px;}
.y1a0{bottom:200.181600px;}
.y17f{bottom:204.120000px;}
.y288{bottom:204.850440px;}
.y20b{bottom:205.207920px;}
.y2{bottom:205.380000px;}
.yd6{bottom:205.560000px;}
.y112{bottom:205.759440px;}
.y1ee{bottom:206.280000px;}
.y15d{bottom:208.085760px;}
.y60{bottom:208.134000px;}
.y22c{bottom:208.800000px;}
.y1b3{bottom:209.160000px;}
.y1d6{bottom:209.182320px;}
.y120{bottom:210.782880px;}
.y135{bottom:211.204080px;}
.y252{bottom:216.956880px;}
.y17d{bottom:222.120000px;}
.y8c{bottom:222.122880px;}
.ya2{bottom:222.153120px;}
.y83{bottom:222.895440px;}
.ye4{bottom:226.080000px;}
.yba{bottom:226.440000px;}
.y2cc{bottom:226.800000px;}
.y2ad{bottom:226.810440px;}
.y1b2{bottom:227.160000px;}
.y19f{bottom:230.238000px;}
.y287{bottom:232.384860px;}
.y20a{bottom:235.446480px;}
.y111{bottom:235.998000px;}
.y15c{bottom:238.324320px;}
.y5f{bottom:238.372560px;}
.y1a{bottom:238.500000px;}
.y1d5{bottom:239.238720px;}
.y11f{bottom:241.021440px;}
.y134{bottom:241.078320px;}
.y22b{bottom:245.340000px;}
.y251{bottom:247.195440px;}
.y8b{bottom:252.361440px;}
.ya1{bottom:252.391680px;}
.y82{bottom:253.134000px;}
.y2ac{bottom:254.344860px;}
.y2cb{bottom:254.366460px;}
.y286{bottom:259.740000px;}
.y19e{bottom:260.476560px;}
.y175{bottom:264.420000px;}
.y209{bottom:265.685040px;}
.y110{bottom:266.236560px;}
.yde{bottom:267.660000px;}
.y15b{bottom:268.562880px;}
.y5e{bottom:268.611120px;}
.yb6{bottom:268.740000px;}
.y19{bottom:269.280000px;}
.y1d4{bottom:269.477280px;}
.y1aa{bottom:269.640000px;}
.y1ed{bottom:271.260000px;}
.y11e{bottom:271.316880px;}
.y250{bottom:277.434000px;}
.y21f{bottom:278.640000px;}
.ye2{bottom:280.990440px;}
.y2ab{bottom:281.700000px;}
.y2ca{bottom:281.721600px;}
.y8a{bottom:282.600000px;}
.ya0{bottom:282.630240px;}
.y81{bottom:283.372560px;}
.y285{bottom:287.290440px;}
.y1ec{bottom:287.824500px;}
.y19d{bottom:290.715120px;}
.y208{bottom:295.741440px;}
.y17a{bottom:295.753320px;}
.y10f{bottom:296.475120px;}
.y5d{bottom:298.667520px;}
.y15a{bottom:298.801440px;}
.y1d3{bottom:299.715840px;}
.y18{bottom:300.420000px;}
.y1b0{bottom:300.793320px;}
.y228{bottom:301.140000px;}
.y11d{bottom:301.555440px;}
.y1eb{bottom:304.200000px;}
.y24f{bottom:307.672560px;}
.ye1{bottom:308.524860px;}
.yb5{bottom:309.235500px;}
.y2aa{bottom:309.250440px;}
.y2c9{bottom:309.256020px;}
.y9f{bottom:312.868800px;}
.y80{bottom:313.428960px;}
.y89{bottom:314.100000px;}
.y284{bottom:314.645580px;}
.y227{bottom:319.320000px;}
.y19c{bottom:320.953680px;}
.y1b{bottom:322.560000px;}
.y179{bottom:323.287740px;}
.y207{bottom:325.980000px;}
.y10e{bottom:326.713680px;}
.y2e8{bottom:328.320180px;}
.y1af{bottom:328.327740px;}
.y5c{bottom:328.906080px;}
.y159{bottom:329.040000px;}
.y1d2{bottom:329.954400px;}
.y11c{bottom:331.794000px;}
.yb4{bottom:333.900000px;}
.ye0{bottom:335.880000px;}
.y2a9{bottom:336.605580px;}
.y2c8{bottom:336.611160px;}
.y226{bottom:337.680000px;}
.y24e{bottom:337.911120px;}
.y35{bottom:338.239440px;}
.y283{bottom:342.180000px;}
.y9e{bottom:343.107360px;}
.y1ea{bottom:343.652400px;}
.y7f{bottom:343.667520px;}
.y88{bottom:344.031840px;}
.y178{bottom:350.642880px;}
.y19b{bottom:351.192240px;}
.y1ae{bottom:355.862160px;}
.y225{bottom:356.040000px;}
.y10d{bottom:356.952240px;}
.y206{bottom:357.480000px;}
.y34{bottom:358.392960px;}
.y5b{bottom:359.144640px;}
.yb3{bottom:359.487360px;}
.y2e7{bottom:359.992980px;}
.y1d1{bottom:360.192960px;}
.y158{bottom:360.540000px;}
.y11b{bottom:361.850400px;}
.y2a8{bottom:364.140000px;}
.y2c7{bottom:364.145580px;}
.y24d{bottom:368.149680px;}
.y282{bottom:369.730440px;}
.y9d{bottom:373.345920px;}
.y1e9{bottom:373.890960px;}
.y7e{bottom:373.906080px;}
.y224{bottom:374.220000px;}
.yd5{bottom:377.640000px;}
.y33{bottom:378.546480px;}
.y19a{bottom:381.430800px;}
.y10c{bottom:387.190800px;}
.y205{bottom:388.620000px;}
.yb2{bottom:389.361600px;}
.y5a{bottom:389.383200px;}
.y1d0{bottom:390.431520px;}
.y157{bottom:390.455280px;}
.ydd{bottom:390.812040px;}
.y2c6{bottom:391.680000px;}
.y2a7{bottom:391.690440px;}
.y1ac{bottom:391.860000px;}
.y11a{bottom:392.088960px;}
.y223{bottom:392.580000px;}
.y177{bottom:396.180000px;}
.y281{bottom:397.085580px;}
.y24c{bottom:398.388240px;}
.y32{bottom:398.700000px;}
.y1ad{bottom:401.220000px;}
.y9c{bottom:403.584480px;}
.y1e8{bottom:404.129520px;}
.y7d{bottom:404.144640px;}
.y222{bottom:410.940000px;}
.y199{bottom:411.669360px;}
.y176{bottom:414.180000px;}
.y10b{bottom:417.247200px;}
.y204{bottom:418.140000px;}
.ydc{bottom:418.346460px;}
.y2c5{bottom:419.040000px;}
.y2a6{bottom:419.045580px;}
.y2e6{bottom:419.050440px;}
.yb1{bottom:419.600160px;}
.y59{bottom:419.621760px;}
.y156{bottom:420.329520px;}
.y1cf{bottom:420.487920px;}
.y119{bottom:422.327520px;}
.y280{bottom:424.620000px;}
.y24b{bottom:428.444640px;}
.y221{bottom:429.300000px;}
.y9b{bottom:433.640880px;}
.y1fd{bottom:433.980000px;}
.y1e7{bottom:434.368080px;}
.y7c{bottom:434.383200px;}
.y198{bottom:441.725760px;}
.ydb{bottom:445.880880px;}
.y2a5{bottom:446.580000px;}
.y2c4{bottom:446.584860px;}
.y220{bottom:447.480000px;}
.y10a{bottom:447.485760px;}
.yb0{bottom:449.838720px;}
.y58{bottom:449.860320px;}
.y155{bottom:450.568080px;}
.y1f{bottom:450.720000px;}
.y1ce{bottom:450.726480px;}
.y27f{bottom:452.001600px;}
.y118{bottom:452.566080px;}
.y16e{bottom:456.660000px;}
.y24a{bottom:458.683200px;}
.y2e{bottom:459.199440px;}
.y1a8{bottom:461.700000px;}
.y9a{bottom:463.879440px;}
.y1e6{bottom:464.606640px;}
.y7b{bottom:464.621760px;}
.y203{bottom:465.313320px;}
.y197{bottom:471.964320px;}
.yda{bottom:473.236020px;}
.y2c3{bottom:473.940000px;}
.y2a4{bottom:473.951160px;}
.y2d7{bottom:473.961600px;}
.y109{bottom:477.724320px;}
.y2d{bottom:479.352960px;}
.y27e{bottom:479.536020px;}
.yaf{bottom:480.077280px;}
.y57{bottom:480.098880px;}
.y154{bottom:480.624480px;}
.y214{bottom:480.780000px;}
.y1cd{bottom:480.965040px;}
.y117{bottom:482.804640px;}
.y174{bottom:487.813320px;}
.y249{bottom:488.921760px;}
.y202{bottom:492.668460px;}
.y99{bottom:494.118000px;}
.y1e5{bottom:494.663040px;}
.y7a{bottom:494.678160px;}
.y2c{bottom:499.506480px;}
.yd9{bottom:500.770440px;}
.y2a3{bottom:501.485580px;}
.y2c2{bottom:501.496020px;}
.y196{bottom:502.202880px;}
.y21e{bottom:503.280000px;}
.y27d{bottom:507.070440px;}
.y108{bottom:507.962880px;}
.yae{bottom:510.133680px;}
.y56{bottom:510.155280px;}
.y153{bottom:510.863040px;}
.y1c{bottom:511.200000px;}
.y1cc{bottom:511.203600px;}
.y116{bottom:513.043200px;}
.y173{bottom:515.347740px;}
.y248{bottom:519.160320px;}
.y2b{bottom:519.660000px;}
.y201{bottom:520.202880px;}
.y21d{bottom:521.460000px;}
.y98{bottom:524.356560px;}
.y1e4{bottom:524.901600px;}
.y79{bottom:524.916720px;}
.y1a7{bottom:526.675500px;}
.yd8{bottom:528.125580px;}
.y2a2{bottom:529.020000px;}
.y2c1{bottom:529.030440px;}
.y195{bottom:532.441440px;}
.y27c{bottom:534.425580px;}
.y107{bottom:538.201440px;}
.y21c{bottom:539.820000px;}
.yad{bottom:540.372240px;}
.y55{bottom:540.393840px;}
.y152{bottom:541.101600px;}
.y1cb{bottom:541.442160px;}
.y172{bottom:542.702880px;}
.y133{bottom:543.099600px;}
.y1a6{bottom:543.240000px;}
.y247{bottom:549.398880px;}
.y2a{bottom:551.750400px;}
.y97{bottom:554.595120px;}
.y1e3{bottom:555.140160px;}
.y78{bottom:555.155280px;}
.yd7{bottom:555.660000px;}
.y1ff{bottom:556.205580px;}
.y2c0{bottom:556.385580px;}
.y2e5{bottom:556.416900px;}
.y2a1{bottom:556.496280px;}
.y21b{bottom:558.180000px;}
.y1a5{bottom:559.615500px;}
.y27b{bottom:561.960000px;}
.y194{bottom:562.680000px;}
.y200{bottom:565.740000px;}
.y106{bottom:568.440000px;}
.yac{bottom:570.610800px;}
.y54{bottom:570.632400px;}
.y151{bottom:571.340160px;}
.y1ca{bottom:571.680720px;}
.y29{bottom:571.903920px;}
.y132{bottom:573.338160px;}
.y1a4{bottom:576.180000px;}
.y21a{bottom:576.540000px;}
.y246{bottom:579.637440px;}
.y1fe{bottom:583.740000px;}
.y2bf{bottom:583.920000px;}
.y2e4{bottom:583.951320px;}
.y2a0{bottom:584.030700px;}
.y96{bottom:584.833680px;}
.y1e2{bottom:585.378720px;}
.y77{bottom:585.393840px;}
.y171{bottom:588.240000px;}
.y27a{bottom:589.325580px;}
.y28{bottom:592.057440px;}
.y193{bottom:594.199440px;}
.y219{bottom:594.720000px;}
.yd2{bottom:597.420000px;}
.y105{bottom:599.940000px;}
.y1c9{bottom:600.114240px;}
.yab{bottom:600.849360px;}
.y53{bottom:600.870960px;}
.y150{bottom:601.578720px;}
.y131{bottom:603.576720px;}
.y170{bottom:606.240000px;}
.y245{bottom:609.693840px;}
.yd4{bottom:610.565580px;}
.y2d6{bottom:611.306460px;}
.y2be{bottom:611.328060px;}
.y29f{bottom:611.385840px;}
.y27{bottom:612.210960px;}
.y218{bottom:613.080000px;}
.y95{bottom:614.890080px;}
.y1e1{bottom:615.617280px;}
.y76{bottom:615.632400px;}
.y279{bottom:616.860000px;}
.y258{bottom:617.437440px;}
.y192{bottom:625.878720px;}
.y1f6{bottom:626.040000px;}
.y1c8{bottom:628.200000px;}
.y36{bottom:629.640000px;}
.y104{bottom:630.360000px;}
.yaa{bottom:631.087920px;}
.y52{bottom:631.109520px;}
.y217{bottom:631.440000px;}
.y14f{bottom:631.817280px;}
.y26{bottom:632.364480px;}
.y130{bottom:633.815280px;}
.yd3{bottom:638.100000px;}
.y2d5{bottom:638.840880px;}
.y2bd{bottom:638.862480px;}
.y29e{bottom:638.920260px;}
.y244{bottom:639.932400px;}
.y3c{bottom:642.250800px;}
.y1bf{bottom:644.040000px;}
.y278{bottom:644.220000px;}
.y94{bottom:645.128640px;}
.y1e0{bottom:645.855840px;}
.y75{bottom:645.870960px;}
.y257{bottom:646.235280px;}
.y168{bottom:648.720000px;}
.y216{bottom:649.800000px;}
.y25{bottom:652.518000px;}
.y191{bottom:656.117280px;}
.y1fc{bottom:657.373320px;}
.ya9{bottom:661.326480px;}
.y51{bottom:661.348080px;}
.y3b{bottom:661.687740px;}
.y14e{bottom:662.055840px;}
.y12f{bottom:664.053840px;}
.y2d4{bottom:666.196020px;}
.y2bc{bottom:666.217620px;}
.y29d{bottom:666.275400px;}
.y243{bottom:670.170960px;}
.y277{bottom:671.760000px;}
.y24{bottom:672.671520px;}
.yfb{bottom:673.015500px;}
.y93{bottom:673.744320px;}
.y1c7{bottom:675.373320px;}
.y1df{bottom:676.094400px;}
.y74{bottom:676.109520px;}
.ycf{bottom:679.680000px;}
.y16d{bottom:679.873320px;}
.y3a{bottom:681.483240px;}
.y210{bottom:682.920000px;}
.y1c3{bottom:683.831160px;}
.y1fb{bottom:684.907740px;}
.y190{bottom:686.173680px;}
.yfa{bottom:689.580000px;}
.ya8{bottom:691.382880px;}
.y50{bottom:691.404480px;}
.y14d{bottom:692.112240px;}
.y23{bottom:692.659440px;}
.yd1{bottom:693.004860px;}
.y2d3{bottom:693.730440px;}
.y2bb{bottom:693.752040px;}
.y29c{bottom:693.809820px;}
.y12e{bottom:694.292400px;}
.y92{bottom:698.220000px;}
.y276{bottom:699.341760px;}
.y242{bottom:700.409520px;}
.y39{bottom:701.278740px;}
.y1c6{bottom:702.907740px;}
.y212{bottom:705.420000px;}
.y1de{bottom:706.150800px;}
.y73{bottom:706.165920px;}
.y16c{bottom:707.407740px;}
.y1c2{bottom:711.365580px;}
.y1fa{bottom:712.262880px;}
.y22{bottom:712.812960px;}
.y18f{bottom:716.412240px;}
.y38{bottom:719.640000px;}
.yd0{bottom:720.360000px;}
.yf9{bottom:720.900000px;}
.y1f8{bottom:720.910440px;}
.y2d2{bottom:721.264860px;}
.y2ba{bottom:721.286460px;}
.y29b{bottom:721.344240px;}
.ya7{bottom:721.621440px;}
.y4f{bottom:721.643040px;}
.y14c{bottom:722.350800px;}
.y12d{bottom:724.530960px;}
.y275{bottom:726.696900px;}
.y1c5{bottom:730.262880px;}
.y241{bottom:730.648080px;}
.y21{bottom:732.966480px;}
.yf6{bottom:734.580000px;}
.y16b{bottom:734.762880px;}
.y1dd{bottom:736.389360px;}
.y72{bottom:736.404480px;}
.y1c1{bottom:738.900000px;}
.y18e{bottom:746.650800px;}
.yf8{bottom:747.905580px;}
.y1f7{bottom:748.265580px;}
.y2d1{bottom:748.620000px;}
.y2b9{bottom:748.641600px;}
.y29a{bottom:748.699380px;}
.y4e{bottom:751.881600px;}
.y14b{bottom:752.589360px;}
.y20{bottom:753.120000px;}
.y274{bottom:754.231320px;}
.y12c{bottom:754.587360px;}
.y20f{bottom:757.260000px;}
.y1f9{bottom:757.800000px;}
.y240{bottom:760.886640px;}
.ycc{bottom:762.120000px;}
.y1dc{bottom:766.627920px;}
.y71{bottom:766.643040px;}
.yf7{bottom:775.440000px;}
.yce{bottom:775.444860px;}
.y1c4{bottom:775.800000px;}
.y2e3{bottom:776.170440px;}
.y2b8{bottom:776.176020px;}
.y299{bottom:776.233800px;}
.y18d{bottom:776.889360px;}
.y264{bottom:777.960000px;}
.y16a{bottom:780.300000px;}
.y273{bottom:781.586460px;}
.y4d{bottom:782.120160px;}
.y14a{bottom:782.827920px;}
.y12b{bottom:784.825920px;}
.y23f{bottom:791.125200px;}
.y1e{bottom:793.446480px;}
.y1c0{bottom:793.800000px;}
.y1db{bottom:796.866480px;}
.y70{bottom:796.881600px;}
.ycd{bottom:802.800000px;}
.y2e2{bottom:803.525580px;}
.y2b7{bottom:803.531160px;}
.y298{bottom:803.588940px;}
.y18c{bottom:807.127920px;}
.y272{bottom:809.120880px;}
.y263{bottom:811.979850px;}
.y4c{bottom:812.358720px;}
.y149{bottom:813.066480px;}
.y1d{bottom:813.600000px;}
.y12a{bottom:815.064480px;}
.yf4{bottom:817.020000px;}
.y1f3{bottom:818.100000px;}
.y23e{bottom:821.181600px;}
.y1da{bottom:827.105040px;}
.y6f{bottom:827.120160px;}
.yf5{bottom:830.340000px;}
.y2e1{bottom:831.060000px;}
.y2b6{bottom:831.065580px;}
.y297{bottom:831.123360px;}
.y1b8{bottom:836.100000px;}
.y271{bottom:836.655300px;}
.y18b{bottom:837.366480px;}
.y166{bottom:840.780000px;}
.y148{bottom:841.500000px;}
.y4b{bottom:842.597280px;}
.yc8{bottom:844.560000px;}
.y129{bottom:845.303040px;}
.y262{bottom:846.727200px;}
.y1f5{bottom:849.430620px;}
.y23d{bottom:851.420160px;}
.y146{bottom:857.340000px;}
.y1d9{bottom:857.343600px;}
.y6e{bottom:857.358720px;}
.ycb{bottom:857.705580px;}
.y2b5{bottom:858.600000px;}
.y2e0{bottom:858.610440px;}
.y296{bottom:858.657780px;}
.y270{bottom:864.010440px;}
.y18a{bottom:865.800000px;}
.y1be{bottom:867.433320px;}
.y261{bottom:868.503600px;}
.yf1{bottom:871.920000px;}
.y4a{bottom:872.835840px;}
.y17{bottom:875.160000px;}
.y128{bottom:875.541600px;}
.y183{bottom:881.640000px;}
.y23c{bottom:881.658720px;}
.y147{bottom:882.180000px;}
.yca{bottom:885.240000px;}
.yf3{bottom:885.245580px;}
.y2df{bottom:885.965580px;}
.y2b4{bottom:885.970440px;}
.y295{bottom:886.012920px;}
.y6d{bottom:887.415120px;}
.y260{bottom:890.280000px;}
.y26f{bottom:891.544860px;}
.y1bd{bottom:894.967740px;}
.y16{bottom:896.602320px;}
.y49{bottom:902.892240px;}
.y165{bottom:905.571000px;}
.y127{bottom:905.780160px;}
.y23b{bottom:911.897280px;}
.yf2{bottom:912.780000px;}
.y189{bottom:912.972600px;}
.y2de{bottom:913.500000px;}
.y2b3{bottom:913.504860px;}
.y294{bottom:913.547340px;}
.y15{bottom:916.755840px;}
.y6c{bottom:917.653680px;}
.y143{bottom:917.820000px;}
.y26e{bottom:918.900000px;}
.y164{bottom:922.135500px;}
.y1bc{bottom:922.322880px;}
.y25f{bottom:923.946480px;}
.yc5{bottom:927.000000px;}
.y48{bottom:933.130800px;}
.y126{bottom:935.836560px;}
.y14{bottom:936.909360px;}
.y163{bottom:938.700000px;}
.yc7{bottom:940.145580px;}
.y188{bottom:940.327740px;}
.y2b2{bottom:940.860000px;}
.y2dd{bottom:940.886460px;}
.y293{bottom:940.902480px;}
.y23a{bottom:942.135840px;}
.y145{bottom:942.660000px;}
.y26d{bottom:946.445580px;}
.y6b{bottom:947.892240px;}
.yee{bottom:954.360000px;}
.y13{bottom:957.062880px;}
.y25e{bottom:957.778560px;}
.y1ba{bottom:958.325580px;}
.y47{bottom:963.369360px;}
.yc6{bottom:967.680000px;}
.yf0{bottom:967.684860px;}
.y1bb{bottom:967.860000px;}
.y187{bottom:967.862160px;}
.y2dc{bottom:968.420880px;}
.y292{bottom:968.436900px;}
.y239{bottom:972.374400px;}
.y26c{bottom:973.980000px;}
.y12{bottom:976.140000px;}
.y125{bottom:977.948640px;}
.y6a{bottom:978.130800px;}
.y140{bottom:978.300000px;}
.y1b9{bottom:985.860000px;}
.y25d{bottom:991.262880px;}
.y46{bottom:993.607920px;}
.yef{bottom:995.040000px;}
.y2db{bottom:995.955300px;}
.y291{bottom:995.971320px;}
.y11{bottom:999.360000px;}
.y26b{bottom:1001.340000px;}
.y238{bottom:1002.612960px;}
.y142{bottom:1002.960000px;}
.y185{bottom:1003.864860px;}
.y69{bottom:1008.369360px;}
.ybf{bottom:1009.260000px;}
.y91{bottom:1010.880000px;}
.y186{bottom:1013.220000px;}
.yc4{bottom:1022.600880px;}
.y2da{bottom:1023.310440px;}
.y290{bottom:1023.326460px;}
.y45{bottom:1023.846480px;}
.y25c{bottom:1025.094960px;}
.y1b5{bottom:1028.340000px;}
.y26a{bottom:1028.880000px;}
.y184{bottom:1031.220000px;}
.y10{bottom:1032.300000px;}
.y237{bottom:1032.669360px;}
.yeb{bottom:1036.800000px;}
.y68{bottom:1038.607920px;}
.y13d{bottom:1039.320000px;}
.yed{bottom:1050.124860px;}
.yc3{bottom:1050.135300px;}
.y2d9{bottom:1050.844860px;}
.y28f{bottom:1050.860880px;}
.y44{bottom:1054.085040px;}
.y269{bottom:1056.250440px;}
.y25b{bottom:1058.761440px;}
.y1b7{bottom:1059.480000px;}
.y236{bottom:1062.907920px;}
.yf{bottom:1065.240000px;}
.y67{bottom:1068.846480px;}
.y181{bottom:1073.700000px;}
.yec{bottom:1077.480000px;}
.yc2{bottom:1077.490440px;}
.y2d8{bottom:1078.200000px;}
.y28e{bottom:1078.216020px;}
.y268{bottom:1083.784860px;}
.y43{bottom:1084.141440px;}
.y25a{bottom:1092.593520px;}
.y235{bottom:1093.146480px;}
.y66{bottom:1098.902880px;}
.y13c{bottom:1099.084500px;}
.yc1{bottom:1105.024860px;}
.y28d{bottom:1105.750440px;}
.ye{bottom:1109.880000px;}
.y267{bottom:1111.140000px;}
.y42{bottom:1114.380000px;}
.ye9{bottom:1119.240000px;}
.y234{bottom:1121.580000px;}
.y259{bottom:1126.260000px;}
.y103{bottom:1128.420000px;}
.y266{bottom:1129.140000px;}
.y65{bottom:1129.141440px;}
.y13b{bottom:1130.404500px;}
.y1{bottom:1132.380000px;}
.y28c{bottom:1133.105580px;}
.yc{bottom:1136.700000px;}
.y232{bottom:1137.420000px;}
.y41{bottom:1157.940000px;}
.y265{bottom:1158.300000px;}
.y102{bottom:1159.200000px;}
.y64{bottom:1159.380000px;}
.y28b{bottom:1160.640000px;}
.y13a{bottom:1161.900000px;}
.y3e{bottom:1178.460000px;}
.y3d{bottom:1197.180000px;}
.h5{height:17.820000px;}
.h19{height:24.240234px;}
.h17{height:27.540000px;}
.h3{height:35.991211px;}
.h4{height:36.360352px;}
.h33{height:36.720000px;}
.h14{height:37.415039px;}
.h10{height:39.814453px;}
.he{height:39.830273px;}
.hf{height:40.238789px;}
.h23{height:40.318500px;}
.h2{height:44.149219px;}
.h9{height:44.602031px;}
.h26{height:45.360000px;}
.h2d{height:45.540000px;}
.ha{height:47.988281px;}
.h2c{height:48.402709px;}
.h11{height:48.839062px;}
.h6{height:49.485937px;}
.h13{height:49.680000px;}
.h22{height:49.711933px;}
.h16{height:49.853053px;}
.h15{height:49.939453px;}
.h34{height:50.100469px;}
.h35{height:50.568398px;}
.hb{height:54.457031px;}
.h20{height:54.898500px;}
.h21{height:54.900000px;}
.h12{height:56.051719px;}
.h24{height:60.298500px;}
.h25{height:60.480000px;}
.h7{height:71.539453px;}
.h8{height:71.982422px;}
.h18{height:82.260000px;}
.h1d{height:82.261500px;}
.h1c{height:82.438500px;}
.h1b{height:82.440000px;}
.h2b{height:100.440000px;}
.h1f{height:109.978500px;}
.hd{height:122.400000px;}
.h2a{height:136.438500px;}
.h2e{height:136.440000px;}
.h2f{height:145.800000px;}
.h1a{height:164.880000px;}
.h32{height:183.241500px;}
.h28{height:191.160000px;}
.h29{height:191.340000px;}
.h27{height:191.341500px;}
.h31{height:201.420000px;}
.h30{height:209.340000px;}
.h1e{height:219.780000px;}
.hc{height:526.681500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:85.500000px;}
.w13{width:117.720000px;}
.w14{width:123.300000px;}
.w11{width:143.100000px;}
.wb{width:149.760000px;}
.wf{width:156.600000px;}
.w9{width:159.480000px;}
.wc{width:162.000000px;}
.we{width:165.960000px;}
.w12{width:168.660000px;}
.w15{width:169.020000px;}
.w8{width:170.100000px;}
.w10{width:179.460000px;}
.wd{width:186.300000px;}
.w4{width:194.580000px;}
.w5{width:224.640000px;}
.w16{width:266.941500px;}
.wa{width:347.401500px;}
.w7{width:366.841500px;}
.w2{width:479.520000px;}
.w3{width:519.300000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:8.100000px;}
.x42{left:9.180000px;}
.x4{left:10.800000px;}
.x36{left:12.240000px;}
.x22{left:14.760000px;}
.x2f{left:16.380000px;}
.x25{left:18.180000px;}
.x14{left:20.160000px;}
.x78{left:21.600000px;}
.x6c{left:23.400000px;}
.x2c{left:24.840000px;}
.x70{left:25.920000px;}
.x10{left:27.180000px;}
.x34{left:28.260000px;}
.x1e{left:29.880000px;}
.x61{left:32.580000px;}
.x3b{left:34.740000px;}
.x31{left:36.000000px;}
.x49{left:37.980000px;}
.x64{left:40.320000px;}
.x3f{left:42.660000px;}
.x4a{left:45.180000px;}
.x18{left:46.260000px;}
.x62{left:48.420000px;}
.x79{left:50.400000px;}
.x5a{left:53.820000px;}
.x4f{left:57.240000px;}
.x3e{left:63.360000px;}
.x3a{left:74.340000px;}
.x63{left:84.240000px;}
.x12{left:90.000000px;}
.x1{left:108.000000px;}
.x44{left:114.120000px;}
.x13{left:116.100000px;}
.x5{left:118.800000px;}
.x7d{left:129.240000px;}
.xd{left:134.820000px;}
.x41{left:137.340000px;}
.xb{left:140.040000px;}
.x45{left:141.840000px;}
.x38{left:161.969040px;}
.x69{left:225.720000px;}
.x6f{left:238.860000px;}
.x75{left:249.300000px;}
.x60{left:251.100000px;}
.x6a{left:254.340000px;}
.x46{left:257.760000px;}
.x58{left:264.600000px;}
.x4d{left:268.926300px;}
.x5f{left:275.766300px;}
.x39{left:278.100000px;}
.x67{left:282.612600px;}
.x4c{left:286.032600px;}
.x5e{left:292.872600px;}
.x4b{left:296.640000px;}
.x3c{left:304.380000px;}
.x40{left:316.080000px;}
.x68{left:317.168820px;}
.x2{left:318.240000px;}
.x4e{left:320.588820px;}
.x17{left:324.000000px;}
.xf{left:332.640000px;}
.x65{left:335.350800px;}
.x3{left:341.820000px;}
.x59{left:345.610800px;}
.x6b{left:349.020000px;}
.x76{left:359.460000px;}
.x77{left:360.540000px;}
.x7a{left:364.500000px;}
.x7b{left:365.580000px;}
.x9{left:372.780000px;}
.x72{left:376.020000px;}
.x73{left:379.800000px;}
.x74{left:388.440000px;}
.x71{left:390.240000px;}
.x7c{left:397.260000px;}
.x6d{left:405.720000px;}
.x6{left:411.840000px;}
.x11{left:418.140000px;}
.x47{left:419.760000px;}
.x16{left:427.140900px;}
.x30{left:428.940000px;}
.x19{left:430.200000px;}
.x1c{left:431.843400px;}
.x27{left:433.080000px;}
.x1b{left:435.249720px;}
.x23{left:436.500000px;}
.x2d{left:438.480000px;}
.x1f{left:442.800000px;}
.x15{left:446.040000px;}
.x1a{left:448.919820px;}
.x29{left:450.180000px;}
.x1d{left:452.176740px;}
.x2a{left:457.022520px;}
.x56{left:460.092600px;}
.x3d{left:461.340000px;}
.x26{left:463.331160px;}
.x43{left:468.360000px;}
.x50{left:470.700000px;}
.x5b{left:474.120000px;}
.x24{left:481.140720px;}
.x57{left:494.648820px;}
.x5c{left:498.068820px;}
.x51{left:512.830800px;}
.x21{left:515.880000px;}
.x6e{left:518.040000px;}
.x32{left:526.140000px;}
.x2e{left:531.003420px;}
.x2b{left:550.278000px;}
.x28{left:554.392800px;}
.x37{left:565.380000px;}
.x33{left:575.286480px;}
.x20{left:584.998920px;}
.x48{left:606.240000px;}
.x35{left:615.060000px;}
.x54{left:619.386300px;}
.x7{left:635.040000px;}
.x53{left:636.492600px;}
.x8{left:645.840000px;}
.x52{left:647.100000px;}
.x66{left:671.048820px;}
.x55{left:677.159280px;}
.x5d{left:689.230800px;}
.xa{left:770.760000px;}
.xc{left:784.800000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls3b{letter-spacing:-1.118720pt;}
.ls27{letter-spacing:-1.059840pt;}
.ls35{letter-spacing:-1.000960pt;}
.ls6b{letter-spacing:-0.942080pt;}
.ls4e{letter-spacing:-0.883200pt;}
.ls21{letter-spacing:-0.824320pt;}
.ls69{letter-spacing:-0.765440pt;}
.ls4c{letter-spacing:-0.706560pt;}
.ls1e{letter-spacing:-0.588800pt;}
.ls57{letter-spacing:-0.531200pt;}
.lsf{letter-spacing:-0.529920pt;}
.lse{letter-spacing:-0.471040pt;}
.ls5f{letter-spacing:-0.412160pt;}
.ls36{letter-spacing:-0.353280pt;}
.ls26{letter-spacing:-0.294400pt;}
.ls8{letter-spacing:-0.288000pt;}
.ls76{letter-spacing:-0.265600pt;}
.ls4b{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.240000pt;}
.ls22{letter-spacing:-0.235520pt;}
.ls12{letter-spacing:-0.212480pt;}
.lsb{letter-spacing:-0.192000pt;}
.lsa{letter-spacing:-0.176640pt;}
.ls13{letter-spacing:-0.159360pt;}
.ls77{letter-spacing:-0.128000pt;}
.ls1f{letter-spacing:-0.117760pt;}
.ls4f{letter-spacing:-0.106240pt;}
.ls1a{letter-spacing:-0.096000pt;}
.ls50{letter-spacing:-0.053120pt;}
.ls9{letter-spacing:-0.048000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls78{letter-spacing:0.023552pt;}
.ls6f{letter-spacing:0.029440pt;}
.ls2{letter-spacing:0.053120pt;}
.ls20{letter-spacing:0.058880pt;}
.ls49{letter-spacing:0.063744pt;}
.ls1c{letter-spacing:0.064000pt;}
.ls51{letter-spacing:0.079680pt;}
.ls6{letter-spacing:0.096000pt;}
.ls52{letter-spacing:0.096640pt;}
.ls42{letter-spacing:0.104960pt;}
.ls48{letter-spacing:0.106240pt;}
.ls41{letter-spacing:0.117760pt;}
.ls55{letter-spacing:0.122176pt;}
.ls53{letter-spacing:0.127488pt;}
.ls54{letter-spacing:0.138112pt;}
.ls33{letter-spacing:0.141312pt;}
.ls47{letter-spacing:0.143424pt;}
.ls75{letter-spacing:0.144000pt;}
.ls3{letter-spacing:0.159360pt;}
.ls83{letter-spacing:0.175296pt;}
.lsd{letter-spacing:0.176640pt;}
.lsc{letter-spacing:0.192000pt;}
.ls68{letter-spacing:0.194304pt;}
.ls10{letter-spacing:0.212480pt;}
.ls15{letter-spacing:0.235520pt;}
.ls5{letter-spacing:0.240000pt;}
.ls82{letter-spacing:0.254976pt;}
.ls4a{letter-spacing:0.256000pt;}
.ls11{letter-spacing:0.265600pt;}
.ls43{letter-spacing:0.282624pt;}
.ls1b{letter-spacing:0.288000pt;}
.ls4d{letter-spacing:0.294400pt;}
.ls56{letter-spacing:0.318720pt;}
.ls2b{letter-spacing:0.320000pt;}
.ls0{letter-spacing:0.336000pt;}
.ls1d{letter-spacing:0.353280pt;}
.ls6e{letter-spacing:0.382720pt;}
.ls1{letter-spacing:0.384000pt;}
.ls30{letter-spacing:0.412160pt;}
.ls59{letter-spacing:0.424960pt;}
.ls6a{letter-spacing:0.471040pt;}
.ls7f{letter-spacing:0.478080pt;}
.ls7e{letter-spacing:0.488704pt;}
.ls87{letter-spacing:0.494016pt;}
.ls80{letter-spacing:0.504640pt;}
.ls86{letter-spacing:0.509952pt;}
.ls81{letter-spacing:0.515264pt;}
.ls58{letter-spacing:0.520576pt;}
.ls7d{letter-spacing:0.531200pt;}
.ls88{letter-spacing:0.536512pt;}
.ls89{letter-spacing:0.547136pt;}
.ls84{letter-spacing:0.568384pt;}
.ls85{letter-spacing:0.743680pt;}
.ls28{letter-spacing:0.824320pt;}
.ls61{letter-spacing:0.924416pt;}
.ls7a{letter-spacing:1.136000pt;}
.ls79{letter-spacing:1.152000pt;}
.ls29{letter-spacing:1.472000pt;}
.ls16{letter-spacing:2.119680pt;}
.ls67{letter-spacing:2.160896pt;}
.ls5c{letter-spacing:2.767360pt;}
.ls60{letter-spacing:2.849792pt;}
.ls70{letter-spacing:2.896896pt;}
.ls3c{letter-spacing:3.224320pt;}
.ls25{letter-spacing:3.415040pt;}
.ls19{letter-spacing:4.062720pt;}
.ls63{letter-spacing:4.074496pt;}
.ls64{letter-spacing:4.710400pt;}
.ls3d{letter-spacing:5.299200pt;}
.ls40{letter-spacing:5.416960pt;}
.ls34{letter-spacing:5.946880pt;}
.ls14{letter-spacing:6.594560pt;}
.ls46{letter-spacing:6.912000pt;}
.ls5a{letter-spacing:7.242240pt;}
.ls62{letter-spacing:7.418880pt;}
.ls5b{letter-spacing:7.889920pt;}
.ls17{letter-spacing:8.537600pt;}
.ls18{letter-spacing:9.185280pt;}
.ls2c{letter-spacing:9.191168pt;}
.ls44{letter-spacing:9.832960pt;}
.ls73{letter-spacing:9.938944pt;}
.ls5e{letter-spacing:10.421760pt;}
.ls2d{letter-spacing:11.069440pt;}
.ls23{letter-spacing:11.717120pt;}
.ls31{letter-spacing:12.364800pt;}
.ls3a{letter-spacing:12.423680pt;}
.ls74{letter-spacing:12.553216pt;}
.ls32{letter-spacing:13.012480pt;}
.ls45{letter-spacing:14.307840pt;}
.ls3e{letter-spacing:14.319616pt;}
.ls5d{letter-spacing:14.955520pt;}
.ls7b{letter-spacing:15.544320pt;}
.ls2a{letter-spacing:16.192000pt;}
.ls3f{letter-spacing:16.250880pt;}
.ls24{letter-spacing:18.135040pt;}
.ls6d{letter-spacing:19.442176pt;}
.ls37{letter-spacing:20.019200pt;}
.ls71{letter-spacing:21.314560pt;}
.ls66{letter-spacing:22.609920pt;}
.ls65{letter-spacing:23.905280pt;}
.ls39{letter-spacing:25.141760pt;}
.ls38{letter-spacing:25.265408pt;}
.ls6c{letter-spacing:31.618560pt;}
.ls2f{letter-spacing:34.739200pt;}
.ls2e{letter-spacing:35.386880pt;}
.ls72{letter-spacing:39.249408pt;}
.ls7c{letter-spacing:754.693120pt;}
.ws4{word-spacing:-19.200000pt;}
.ws100{word-spacing:-16.128000pt;}
.ws32{word-spacing:-14.448000pt;}
.ws33{word-spacing:-14.256000pt;}
.wsff{word-spacing:-13.248000pt;}
.ws34{word-spacing:-13.056000pt;}
.ws7e{word-spacing:-12.800000pt;}
.ws7f{word-spacing:-12.736000pt;}
.ws66{word-spacing:-12.305920pt;}
.wsa9{word-spacing:-12.188160pt;}
.ws5{word-spacing:-12.129280pt;}
.ws36{word-spacing:-12.011520pt;}
.ws6{word-spacing:-11.952640pt;}
.ws35{word-spacing:-11.834880pt;}
.ws80{word-spacing:-11.776000pt;}
.ws39{word-spacing:-11.717120pt;}
.ws82{word-spacing:-11.658240pt;}
.ws81{word-spacing:-11.599360pt;}
.wsaa{word-spacing:-11.540480pt;}
.ws37{word-spacing:-11.481600pt;}
.ws67{word-spacing:-11.422720pt;}
.ws5b{word-spacing:-11.363840pt;}
.wsa8{word-spacing:-11.208320pt;}
.ws38{word-spacing:-11.128320pt;}
.ws9f{word-spacing:-11.102080pt;}
.wsb0{word-spacing:-11.069440pt;}
.ws8{word-spacing:-11.048960pt;}
.ws7{word-spacing:-10.995840pt;}
.ws85{word-spacing:-10.942720pt;}
.ws9e{word-spacing:-10.889600pt;}
.ws9{word-spacing:-10.783360pt;}
.ws86{word-spacing:-10.730240pt;}
.ws83{word-spacing:-10.677120pt;}
.wsa{word-spacing:-10.624000pt;}
.ws84{word-spacing:-10.570880pt;}
.wsf7{word-spacing:-10.517760pt;}
.ws0{word-spacing:-9.984000pt;}
.wsda{word-spacing:-9.888000pt;}
.ws2{word-spacing:-9.696000pt;}
.ws3{word-spacing:-9.504000pt;}
.ws1{word-spacing:-9.456000pt;}
.ws25{word-spacing:-3.827200pt;}
.ws24{word-spacing:-3.179520pt;}
.ws72{word-spacing:-3.061760pt;}
.wsc6{word-spacing:-2.708480pt;}
.ws4b{word-spacing:-2.531840pt;}
.wsed{word-spacing:-2.448000pt;}
.ws65{word-spacing:-2.414080pt;}
.wsba{word-spacing:-2.237440pt;}
.ws3f{word-spacing:-2.060800pt;}
.ws57{word-spacing:-1.884160pt;}
.wscd{word-spacing:-1.824000pt;}
.ws77{word-spacing:-1.766400pt;}
.wsb3{word-spacing:-1.589760pt;}
.wsbd{word-spacing:-1.472000pt;}
.wsb6{word-spacing:-1.413120pt;}
.ws90{word-spacing:-1.354240pt;}
.ws9d{word-spacing:-1.328000pt;}
.ws3e{word-spacing:-1.236480pt;}
.wse1{word-spacing:-1.200000pt;}
.ws91{word-spacing:-1.118720pt;}
.ws7b{word-spacing:-0.912000pt;}
.wsa7{word-spacing:-0.796800pt;}
.wsa4{word-spacing:-0.690560pt;}
.wsbf{word-spacing:-0.647680pt;}
.ws1b{word-spacing:-0.588800pt;}
.wsec{word-spacing:-0.528000pt;}
.ws53{word-spacing:-0.471040pt;}
.ws87{word-spacing:-0.448000pt;}
.ws101{word-spacing:-0.424960pt;}
.ws18{word-spacing:-0.412160pt;}
.wsd0{word-spacing:-0.371840pt;}
.wsfe{word-spacing:-0.353280pt;}
.ws7c{word-spacing:-0.336000pt;}
.wse2{word-spacing:-0.318720pt;}
.ws4d{word-spacing:-0.294400pt;}
.ws3c{word-spacing:-0.288000pt;}
.wsa0{word-spacing:-0.265600pt;}
.ws6a{word-spacing:-0.256000pt;}
.wsc{word-spacing:-0.240000pt;}
.ws5c{word-spacing:-0.235520pt;}
.wsa2{word-spacing:-0.212480pt;}
.ws41{word-spacing:-0.176640pt;}
.ws99{word-spacing:-0.159360pt;}
.ws9a{word-spacing:-0.106240pt;}
.wsce{word-spacing:-0.096000pt;}
.ws5d{word-spacing:-0.058880pt;}
.ws30{word-spacing:-0.053120pt;}
.wsb{word-spacing:0.000000pt;}
.ws10{word-spacing:0.048000pt;}
.ws9b{word-spacing:0.053120pt;}
.ws19{word-spacing:0.058880pt;}
.wse{word-spacing:0.096000pt;}
.wsa5{word-spacing:0.106240pt;}
.ws4c{word-spacing:0.117760pt;}
.wsf{word-spacing:0.144000pt;}
.wsa1{word-spacing:0.159360pt;}
.ws1e{word-spacing:0.176640pt;}
.ws16{word-spacing:0.192000pt;}
.ws31{word-spacing:0.212480pt;}
.ws3a{word-spacing:0.240000pt;}
.ws98{word-spacing:0.265600pt;}
.ws11{word-spacing:0.288000pt;}
.ws6c{word-spacing:0.294400pt;}
.ws9c{word-spacing:0.318720pt;}
.ws3b{word-spacing:0.336000pt;}
.ws12{word-spacing:0.353280pt;}
.wsf9{word-spacing:0.371840pt;}
.wsad{word-spacing:0.412160pt;}
.ws1c{word-spacing:0.471040pt;}
.wsd{word-spacing:0.480000pt;}
.ws27{word-spacing:0.529920pt;}
.wsa3{word-spacing:0.531200pt;}
.ws102{word-spacing:0.584320pt;}
.ws64{word-spacing:0.588800pt;}
.ws28{word-spacing:0.647680pt;}
.wsb4{word-spacing:0.706560pt;}
.wsb1{word-spacing:0.765440pt;}
.ws8d{word-spacing:0.824320pt;}
.ws94{word-spacing:0.883200pt;}
.ws75{word-spacing:0.942080pt;}
.wsa6{word-spacing:0.956160pt;}
.ws6d{word-spacing:1.000960pt;}
.ws63{word-spacing:1.059840pt;}
.ws73{word-spacing:1.118720pt;}
.ws5a{word-spacing:1.295360pt;}
.wse0{word-spacing:1.392000pt;}
.ws8e{word-spacing:1.413120pt;}
.wsef{word-spacing:1.434240pt;}
.ws8f{word-spacing:1.589760pt;}
.wsfb{word-spacing:1.648640pt;}
.ws4e{word-spacing:1.943040pt;}
.ws89{word-spacing:2.178560pt;}
.wsbb{word-spacing:2.355200pt;}
.ws4f{word-spacing:2.590720pt;}
.ws69{word-spacing:2.708480pt;}
.wsc3{word-spacing:2.767360pt;}
.wsd9{word-spacing:3.002880pt;}
.ws60{word-spacing:3.238400pt;}
.ws70{word-spacing:3.356160pt;}
.wsf5{word-spacing:3.709440pt;}
.ws56{word-spacing:3.886080pt;}
.wscf{word-spacing:3.936000pt;}
.wsb9{word-spacing:4.003840pt;}
.wsdc{word-spacing:4.180480pt;}
.wsea{word-spacing:4.298240pt;}
.wsb5{word-spacing:4.357120pt;}
.ws49{word-spacing:4.533760pt;}
.wsd6{word-spacing:4.828160pt;}
.wsdf{word-spacing:4.887040pt;}
.wsd3{word-spacing:4.940160pt;}
.ws48{word-spacing:5.122560pt;}
.ws88{word-spacing:5.181440pt;}
.wsc0{word-spacing:5.416960pt;}
.ws50{word-spacing:5.475840pt;}
.ws44{word-spacing:5.770240pt;}
.ws93{word-spacing:5.829120pt;}
.wsbe{word-spacing:6.064640pt;}
.ws45{word-spacing:6.417920pt;}
.ws96{word-spacing:6.960000pt;}
.ws23{word-spacing:7.065600pt;}
.ws97{word-spacing:7.152000pt;}
.wsca{word-spacing:7.536640pt;}
.ws22{word-spacing:7.713280pt;}
.ws40{word-spacing:7.831040pt;}
.ws95{word-spacing:8.007680pt;}
.ws7a{word-spacing:8.066560pt;}
.ws52{word-spacing:8.360960pt;}
.ws5f{word-spacing:8.478720pt;}
.wsd4{word-spacing:8.655360pt;}
.wsfc{word-spacing:8.714240pt;}
.ws2e{word-spacing:9.008640pt;}
.wseb{word-spacing:9.303040pt;}
.wsd7{word-spacing:9.536000pt;}
.ws2f{word-spacing:9.597440pt;}
.ws51{word-spacing:9.656320pt;}
.ws92{word-spacing:9.715200pt;}
.ws21{word-spacing:10.245120pt;}
.ws4a{word-spacing:10.362880pt;}
.ws29{word-spacing:10.892800pt;}
.wsc9{word-spacing:11.010560pt;}
.wse7{word-spacing:11.102080pt;}
.wsbc{word-spacing:11.304960pt;}
.ws6e{word-spacing:11.363840pt;}
.ws1a{word-spacing:11.540480pt;}
.ws43{word-spacing:11.658240pt;}
.wsb2{word-spacing:11.893760pt;}
.ws1d{word-spacing:12.188160pt;}
.ws5e{word-spacing:12.305920pt;}
.wsf3{word-spacing:12.748800pt;}
.ws26{word-spacing:12.835840pt;}
.wsf4{word-spacing:13.280000pt;}
.ws54{word-spacing:13.483520pt;}
.wsf2{word-spacing:13.704960pt;}
.ws55{word-spacing:14.131200pt;}
.ws8a{word-spacing:14.307840pt;}
.wsd5{word-spacing:14.425600pt;}
.ws71{word-spacing:14.720000pt;}
.wsc5{word-spacing:14.778880pt;}
.wsc1{word-spacing:14.896640pt;}
.wsab{word-spacing:15.249920pt;}
.ws59{word-spacing:15.367680pt;}
.wsae{word-spacing:15.426560pt;}
.wsac{word-spacing:15.485440pt;}
.ws3d{word-spacing:16.015360pt;}
.ws8b{word-spacing:16.309760pt;}
.ws42{word-spacing:16.486400pt;}
.ws2d{word-spacing:16.663040pt;}
.wse9{word-spacing:16.957440pt;}
.wse8{word-spacing:17.016320pt;}
.ws46{word-spacing:17.310720pt;}
.wsf1{word-spacing:17.688960pt;}
.ws61{word-spacing:17.958400pt;}
.ws74{word-spacing:18.252800pt;}
.ws62{word-spacing:18.606080pt;}
.ws6b{word-spacing:19.253760pt;}
.wsc2{word-spacing:19.548160pt;}
.ws58{word-spacing:19.842560pt;}
.wsfa{word-spacing:19.901440pt;}
.ws68{word-spacing:20.490240pt;}
.ws20{word-spacing:21.137920pt;}
.ws2a{word-spacing:21.785600pt;}
.wsaf{word-spacing:22.433280pt;}
.wscc{word-spacing:23.080960pt;}
.ws47{word-spacing:23.728640pt;}
.ws7d{word-spacing:24.317440pt;}
.ws78{word-spacing:24.965120pt;}
.wsdb{word-spacing:25.612800pt;}
.wsde{word-spacing:25.907200pt;}
.wsdd{word-spacing:26.142720pt;}
.wsfd{word-spacing:26.260480pt;}
.wsf6{word-spacing:26.908160pt;}
.ws8c{word-spacing:27.379200pt;}
.ws13{word-spacing:28.032000pt;}
.ws79{word-spacing:28.203520pt;}
.ws14{word-spacing:28.320000pt;}
.wsc4{word-spacing:28.851200pt;}
.ws76{word-spacing:29.440000pt;}
.ws2b{word-spacing:30.735360pt;}
.wsc8{word-spacing:31.029760pt;}
.wscb{word-spacing:32.030720pt;}
.wsd8{word-spacing:33.326080pt;}
.ws17{word-spacing:34.176000pt;}
.ws15{word-spacing:34.464000pt;}
.wsee{word-spacing:34.740480pt;}
.ws6f{word-spacing:35.210240pt;}
.wsf8{word-spacing:35.857920pt;}
.ws2c{word-spacing:37.153280pt;}
.ws1f{word-spacing:39.037440pt;}
.wsb7{word-spacing:39.685120pt;}
.wsb8{word-spacing:40.332800pt;}
.wse3{word-spacing:40.583680pt;}
.wsc7{word-spacing:40.627200pt;}
.wsf0{word-spacing:64.647040pt;}
.wse4{word-spacing:84.885760pt;}
.wsd2{word-spacing:88.497920pt;}
.wse5{word-spacing:154.048000pt;}
.wsd1{word-spacing:158.988160pt;}
.wse6{word-spacing:209.505280pt;}
._a{margin-left:-2.516480pt;}
._1{margin-left:-1.372800pt;}
._2{width:1.008000pt;}
._3{width:1.905600pt;}
._13{width:2.941440pt;}
._c{width:4.077440pt;}
._e{width:5.534720pt;}
._7{width:7.289600pt;}
._9{width:9.104640pt;}
._b{width:10.650240pt;}
._6{width:13.636480pt;}
._14{width:15.648000pt;}
._8{width:16.792960pt;}
._17{width:19.282432pt;}
._f{width:20.187520pt;}
._15{width:22.089600pt;}
._11{width:24.258560pt;}
._10{width:25.691392pt;}
._12{width:27.787008pt;}
._4{width:28.800000pt;}
._5{width:34.464000pt;}
._d{width:35.868160pt;}
._16{width:40.985600pt;}
._18{width:754.664960pt;}
._0{width:903.808000pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs1{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:85.120000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:1.920000pt;}
.y213{bottom:3.680000pt;}
.y13f{bottom:4.160000pt;}
.yb7{bottom:11.840000pt;}
.y233{bottom:20.000000pt;}
.y13e{bottom:22.080000pt;}
.y167{bottom:27.680000pt;}
.y1a9{bottom:27.840000pt;}
.yea{bottom:36.160000pt;}
.y211{bottom:36.320000pt;}
.y141{bottom:39.840000pt;}
.y144{bottom:40.000000pt;}
.yb{bottom:50.724000pt;}
.y40{bottom:51.360000pt;}
.yb9{bottom:60.480000pt;}
.yc9{bottom:60.640000pt;}
.ya{bottom:65.280000pt;}
.y3f{bottom:68.000000pt;}
.y182{bottom:76.640000pt;}
.y9{bottom:80.000000pt;}
.ybe{bottom:82.878240pt;}
.y229{bottom:84.160000pt;}
.ydf{bottom:85.120000pt;}
.y256{bottom:85.497600pt;}
.y31{bottom:85.600000pt;}
.y124{bottom:87.520000pt;}
.y101{bottom:88.160000pt;}
.y90{bottom:90.089600pt;}
.ya6{bottom:90.440320pt;}
.y87{bottom:90.614400pt;}
.y139{bottom:90.938240pt;}
.yfe{bottom:91.203200pt;}
.ye6{bottom:91.520000pt;}
.y162{bottom:92.056960pt;}
.y1ef{bottom:93.440000pt;}
.y8{bottom:94.556000pt;}
.y37{bottom:96.320000pt;}
.y1a3{bottom:97.303040pt;}
.y123{bottom:99.360000pt;}
.y20e{bottom:101.770880pt;}
.y115{bottom:102.423040pt;}
.ye8{bottom:103.364320pt;}
.y30{bottom:103.520000pt;}
.ybd{bottom:103.680000pt;}
.y2b1{bottom:104.009280pt;}
.y2d0{bottom:104.018560pt;}
.y231{bottom:104.160000pt;}
.y63{bottom:104.371840pt;}
.y160{bottom:104.490880pt;}
.y138{bottom:106.241280pt;}
.y17c{bottom:108.640000pt;}
.y7{bottom:109.280000pt;}
.y255{bottom:112.376320pt;}
.y17b{bottom:113.120000pt;}
.ybc{bottom:115.680000pt;}
.y1b6{bottom:116.960000pt;}
.y8f{bottom:116.968320pt;}
.ya5{bottom:116.995200pt;}
.y161{bottom:117.331200pt;}
.y86{bottom:117.493120pt;}
.y1b1{bottom:117.760000pt;}
.yfd{bottom:117.920000pt;}
.y100{bottom:118.724000pt;}
.y230{bottom:120.480000pt;}
.y1f1{bottom:121.284320pt;}
.y2f{bottom:121.440000pt;}
.y6{bottom:123.836000pt;}
.y1a2{bottom:124.181760pt;}
.ye7{bottom:127.680000pt;}
.y2b0{bottom:128.324960pt;}
.y2cf{bottom:128.334240pt;}
.y20d{bottom:128.649600pt;}
.y114{bottom:129.301760pt;}
.y1f2{bottom:129.600000pt;}
.y62{bottom:131.250560pt;}
.y15f{bottom:131.369600pt;}
.y1d8{bottom:132.182400pt;}
.y1ab{bottom:132.960000pt;}
.y137{bottom:133.120000pt;}
.y28a{bottom:133.284320pt;}
.y122{bottom:133.605120pt;}
.yc0{bottom:133.920000pt;}
.y22f{bottom:136.800000pt;}
.y5{bottom:138.560000pt;}
.y254{bottom:139.255040pt;}
.y180{bottom:140.962560pt;}
.y8e{bottom:143.685120pt;}
.ya4{bottom:143.873920pt;}
.y85{bottom:144.371840pt;}
.y1f0{bottom:145.600000pt;}
.y1b4{bottom:145.601920pt;}
.yff{bottom:146.720000pt;}
.y22a{bottom:150.240000pt;}
.yfc{bottom:150.400000pt;}
.y1a1{bottom:151.060480pt;}
.y2af{bottom:152.800000pt;}
.y2ce{bottom:152.809280pt;}
.y22e{bottom:152.960000pt;}
.y4{bottom:153.112000pt;}
.y20c{bottom:155.528320pt;}
.y113{bottom:156.180480pt;}
.y16f{bottom:157.280000pt;}
.y169{bottom:157.440000pt;}
.y289{bottom:157.600000pt;}
.y15e{bottom:158.086400pt;}
.y61{bottom:158.129280pt;}
.y1d7{bottom:159.061120pt;}
.y121{bottom:160.483840pt;}
.y136{bottom:161.120000pt;}
.ye3{bottom:164.800000pt;}
.yb8{bottom:165.120000pt;}
.y253{bottom:166.133760pt;}
.y215{bottom:166.400000pt;}
.y3{bottom:167.836000pt;}
.y22d{bottom:169.280000pt;}
.y8d{bottom:170.563840pt;}
.ya3{bottom:170.752640pt;}
.y84{bottom:171.250560pt;}
.y17e{bottom:172.964960pt;}
.y1f4{bottom:173.440000pt;}
.ye5{bottom:176.484960pt;}
.ybb{bottom:176.804960pt;}
.y2cd{bottom:177.124960pt;}
.y2ae{bottom:177.134240pt;}
.y1a0{bottom:177.939200pt;}
.y17f{bottom:181.440000pt;}
.y288{bottom:182.089280pt;}
.y20b{bottom:182.407040pt;}
.y2{bottom:182.560000pt;}
.yd6{bottom:182.720000pt;}
.y112{bottom:182.897280pt;}
.y1ee{bottom:183.360000pt;}
.y15d{bottom:184.965120pt;}
.y60{bottom:185.008000pt;}
.y22c{bottom:185.600000pt;}
.y1b3{bottom:185.920000pt;}
.y1d6{bottom:185.939840pt;}
.y120{bottom:187.362560pt;}
.y135{bottom:187.736960pt;}
.y252{bottom:192.850560pt;}
.y17d{bottom:197.440000pt;}
.y8c{bottom:197.442560pt;}
.ya2{bottom:197.469440pt;}
.y83{bottom:198.129280pt;}
.ye4{bottom:200.960000pt;}
.yba{bottom:201.280000pt;}
.y2cc{bottom:201.600000pt;}
.y2ad{bottom:201.609280pt;}
.y1b2{bottom:201.920000pt;}
.y19f{bottom:204.656000pt;}
.y287{bottom:206.564320pt;}
.y20a{bottom:209.285760pt;}
.y111{bottom:209.776000pt;}
.y15c{bottom:211.843840pt;}
.y5f{bottom:211.886720pt;}
.y1a{bottom:212.000000pt;}
.y1d5{bottom:212.656640pt;}
.y11f{bottom:214.241280pt;}
.y134{bottom:214.291840pt;}
.y22b{bottom:218.080000pt;}
.y251{bottom:219.729280pt;}
.y8b{bottom:224.321280pt;}
.ya1{bottom:224.348160pt;}
.y82{bottom:225.008000pt;}
.y2ac{bottom:226.084320pt;}
.y2cb{bottom:226.103520pt;}
.y286{bottom:230.880000pt;}
.y19e{bottom:231.534720pt;}
.y175{bottom:235.040000pt;}
.y209{bottom:236.164480pt;}
.y110{bottom:236.654720pt;}
.yde{bottom:237.920000pt;}
.y15b{bottom:238.722560pt;}
.y5e{bottom:238.765440pt;}
.yb6{bottom:238.880000pt;}
.y19{bottom:239.360000pt;}
.y1d4{bottom:239.535360pt;}
.y1aa{bottom:239.680000pt;}
.y1ed{bottom:241.120000pt;}
.y11e{bottom:241.170560pt;}
.y250{bottom:246.608000pt;}
.y21f{bottom:247.680000pt;}
.ye2{bottom:249.769280pt;}
.y2ab{bottom:250.400000pt;}
.y2ca{bottom:250.419200pt;}
.y8a{bottom:251.200000pt;}
.ya0{bottom:251.226880pt;}
.y81{bottom:251.886720pt;}
.y285{bottom:255.369280pt;}
.y1ec{bottom:255.844000pt;}
.y19d{bottom:258.413440pt;}
.y208{bottom:262.881280pt;}
.y17a{bottom:262.891840pt;}
.y10f{bottom:263.533440pt;}
.y5d{bottom:265.482240pt;}
.y15a{bottom:265.601280pt;}
.y1d3{bottom:266.414080pt;}
.y18{bottom:267.040000pt;}
.y1b0{bottom:267.371840pt;}
.y228{bottom:267.680000pt;}
.y11d{bottom:268.049280pt;}
.y1eb{bottom:270.400000pt;}
.y24f{bottom:273.486720pt;}
.ye1{bottom:274.244320pt;}
.yb5{bottom:274.876000pt;}
.y2aa{bottom:274.889280pt;}
.y2c9{bottom:274.894240pt;}
.y9f{bottom:278.105600pt;}
.y80{bottom:278.603520pt;}
.y89{bottom:279.200000pt;}
.y284{bottom:279.684960pt;}
.y227{bottom:283.840000pt;}
.y19c{bottom:285.292160pt;}
.y1b{bottom:286.720000pt;}
.y179{bottom:287.366880pt;}
.y207{bottom:289.760000pt;}
.y10e{bottom:290.412160pt;}
.y2e8{bottom:291.840160pt;}
.y1af{bottom:291.846880pt;}
.y5c{bottom:292.360960pt;}
.y159{bottom:292.480000pt;}
.y1d2{bottom:293.292800pt;}
.y11c{bottom:294.928000pt;}
.yb4{bottom:296.800000pt;}
.ye0{bottom:298.560000pt;}
.y2a9{bottom:299.204960pt;}
.y2c8{bottom:299.209920pt;}
.y226{bottom:300.160000pt;}
.y24e{bottom:300.365440pt;}
.y35{bottom:300.657280pt;}
.y283{bottom:304.160000pt;}
.y9e{bottom:304.984320pt;}
.y1ea{bottom:305.468800pt;}
.y7f{bottom:305.482240pt;}
.y88{bottom:305.806080pt;}
.y178{bottom:311.682560pt;}
.y19b{bottom:312.170880pt;}
.y1ae{bottom:316.321920pt;}
.y225{bottom:316.480000pt;}
.y10d{bottom:317.290880pt;}
.y206{bottom:317.760000pt;}
.y34{bottom:318.571520pt;}
.y5b{bottom:319.239680pt;}
.yb3{bottom:319.544320pt;}
.y2e7{bottom:319.993760pt;}
.y1d1{bottom:320.171520pt;}
.y158{bottom:320.480000pt;}
.y11b{bottom:321.644800pt;}
.y2a8{bottom:323.680000pt;}
.y2c7{bottom:323.684960pt;}
.y24d{bottom:327.244160pt;}
.y282{bottom:328.649280pt;}
.y9d{bottom:331.863040pt;}
.y1e9{bottom:332.347520pt;}
.y7e{bottom:332.360960pt;}
.y224{bottom:332.640000pt;}
.yd5{bottom:335.680000pt;}
.y33{bottom:336.485760pt;}
.y19a{bottom:339.049600pt;}
.y10c{bottom:344.169600pt;}
.y205{bottom:345.440000pt;}
.yb2{bottom:346.099200pt;}
.y5a{bottom:346.118400pt;}
.y1d0{bottom:347.050240pt;}
.y157{bottom:347.071360pt;}
.ydd{bottom:347.388480pt;}
.y2c6{bottom:348.160000pt;}
.y2a7{bottom:348.169280pt;}
.y1ac{bottom:348.320000pt;}
.y11a{bottom:348.523520pt;}
.y223{bottom:348.960000pt;}
.y177{bottom:352.160000pt;}
.y281{bottom:352.964960pt;}
.y24c{bottom:354.122880pt;}
.y32{bottom:354.400000pt;}
.y1ad{bottom:356.640000pt;}
.y9c{bottom:358.741760pt;}
.y1e8{bottom:359.226240pt;}
.y7d{bottom:359.239680pt;}
.y222{bottom:365.280000pt;}
.y199{bottom:365.928320pt;}
.y176{bottom:368.160000pt;}
.y10b{bottom:370.886400pt;}
.y204{bottom:371.680000pt;}
.ydc{bottom:371.863520pt;}
.y2c5{bottom:372.480000pt;}
.y2a6{bottom:372.484960pt;}
.y2e6{bottom:372.489280pt;}
.yb1{bottom:372.977920pt;}
.y59{bottom:372.997120pt;}
.y156{bottom:373.626240pt;}
.y1cf{bottom:373.767040pt;}
.y119{bottom:375.402240pt;}
.y280{bottom:377.440000pt;}
.y24b{bottom:380.839680pt;}
.y221{bottom:381.600000pt;}
.y9b{bottom:385.458560pt;}
.y1fd{bottom:385.760000pt;}
.y1e7{bottom:386.104960pt;}
.y7c{bottom:386.118400pt;}
.y198{bottom:392.645120pt;}
.ydb{bottom:396.338560pt;}
.y2a5{bottom:396.960000pt;}
.y2c4{bottom:396.964320pt;}
.y220{bottom:397.760000pt;}
.y10a{bottom:397.765120pt;}
.yb0{bottom:399.856640pt;}
.y58{bottom:399.875840pt;}
.y155{bottom:400.504960pt;}
.y1f{bottom:400.640000pt;}
.y1ce{bottom:400.645760pt;}
.y27f{bottom:401.779200pt;}
.y118{bottom:402.280960pt;}
.y16e{bottom:405.920000pt;}
.y24a{bottom:407.718400pt;}
.y2e{bottom:408.177280pt;}
.y1a8{bottom:410.400000pt;}
.y9a{bottom:412.337280pt;}
.y1e6{bottom:412.983680pt;}
.y7b{bottom:412.997120pt;}
.y203{bottom:413.611840pt;}
.y197{bottom:419.523840pt;}
.yda{bottom:420.654240pt;}
.y2c3{bottom:421.280000pt;}
.y2a4{bottom:421.289920pt;}
.y2d7{bottom:421.299200pt;}
.y109{bottom:424.643840pt;}
.y2d{bottom:426.091520pt;}
.y27e{bottom:426.254240pt;}
.yaf{bottom:426.735360pt;}
.y57{bottom:426.754560pt;}
.y154{bottom:427.221760pt;}
.y214{bottom:427.360000pt;}
.y1cd{bottom:427.524480pt;}
.y117{bottom:429.159680pt;}
.y174{bottom:433.611840pt;}
.y249{bottom:434.597120pt;}
.y202{bottom:437.927520pt;}
.y99{bottom:439.216000pt;}
.y1e5{bottom:439.700480pt;}
.y7a{bottom:439.713920pt;}
.y2c{bottom:444.005760pt;}
.yd9{bottom:445.129280pt;}
.y2a3{bottom:445.764960pt;}
.y2c2{bottom:445.774240pt;}
.y196{bottom:446.402560pt;}
.y21e{bottom:447.360000pt;}
.y27d{bottom:450.729280pt;}
.y108{bottom:451.522560pt;}
.yae{bottom:453.452160pt;}
.y56{bottom:453.471360pt;}
.y153{bottom:454.100480pt;}
.y1c{bottom:454.400000pt;}
.y1cc{bottom:454.403200pt;}
.y116{bottom:456.038400pt;}
.y173{bottom:458.086880pt;}
.y248{bottom:461.475840pt;}
.y2b{bottom:461.920000pt;}
.y201{bottom:462.402560pt;}
.y21d{bottom:463.520000pt;}
.y98{bottom:466.094720pt;}
.y1e4{bottom:466.579200pt;}
.y79{bottom:466.592640pt;}
.y1a7{bottom:468.156000pt;}
.yd8{bottom:469.444960pt;}
.y2a2{bottom:470.240000pt;}
.y2c1{bottom:470.249280pt;}
.y195{bottom:473.281280pt;}
.y27c{bottom:475.044960pt;}
.y107{bottom:478.401280pt;}
.y21c{bottom:479.840000pt;}
.yad{bottom:480.330880pt;}
.y55{bottom:480.350080pt;}
.y152{bottom:480.979200pt;}
.y1cb{bottom:481.281920pt;}
.y172{bottom:482.402560pt;}
.y133{bottom:482.755200pt;}
.y1a6{bottom:482.880000pt;}
.y247{bottom:488.354560pt;}
.y2a{bottom:490.444800pt;}
.y97{bottom:492.973440pt;}
.y1e3{bottom:493.457920pt;}
.y78{bottom:493.471360pt;}
.yd7{bottom:493.920000pt;}
.y1ff{bottom:494.404960pt;}
.y2c0{bottom:494.564960pt;}
.y2e5{bottom:494.592800pt;}
.y2a1{bottom:494.663360pt;}
.y21b{bottom:496.160000pt;}
.y1a5{bottom:497.436000pt;}
.y27b{bottom:499.520000pt;}
.y194{bottom:500.160000pt;}
.y200{bottom:502.880000pt;}
.y106{bottom:505.280000pt;}
.yac{bottom:507.209600pt;}
.y54{bottom:507.228800pt;}
.y151{bottom:507.857920pt;}
.y1ca{bottom:508.160640pt;}
.y29{bottom:508.359040pt;}
.y132{bottom:509.633920pt;}
.y1a4{bottom:512.160000pt;}
.y21a{bottom:512.480000pt;}
.y246{bottom:515.233280pt;}
.y1fe{bottom:518.880000pt;}
.y2bf{bottom:519.040000pt;}
.y2e4{bottom:519.067840pt;}
.y2a0{bottom:519.138400pt;}
.y96{bottom:519.852160pt;}
.y1e2{bottom:520.336640pt;}
.y77{bottom:520.350080pt;}
.y171{bottom:522.880000pt;}
.y27a{bottom:523.844960pt;}
.y28{bottom:526.273280pt;}
.y193{bottom:528.177280pt;}
.y219{bottom:528.640000pt;}
.yd2{bottom:531.040000pt;}
.y105{bottom:533.280000pt;}
.y1c9{bottom:533.434880pt;}
.yab{bottom:534.088320pt;}
.y53{bottom:534.107520pt;}
.y150{bottom:534.736640pt;}
.y131{bottom:536.512640pt;}
.y170{bottom:538.880000pt;}
.y245{bottom:541.950080pt;}
.yd4{bottom:542.724960pt;}
.y2d6{bottom:543.383520pt;}
.y2be{bottom:543.402720pt;}
.y29f{bottom:543.454080pt;}
.y27{bottom:544.187520pt;}
.y218{bottom:544.960000pt;}
.y95{bottom:546.568960pt;}
.y1e1{bottom:547.215360pt;}
.y76{bottom:547.228800pt;}
.y279{bottom:548.320000pt;}
.y258{bottom:548.833280pt;}
.y192{bottom:556.336640pt;}
.y1f6{bottom:556.480000pt;}
.y1c8{bottom:558.400000pt;}
.y36{bottom:559.680000pt;}
.y104{bottom:560.320000pt;}
.yaa{bottom:560.967040pt;}
.y52{bottom:560.986240pt;}
.y217{bottom:561.280000pt;}
.y14f{bottom:561.615360pt;}
.y26{bottom:562.101760pt;}
.y130{bottom:563.391360pt;}
.yd3{bottom:567.200000pt;}
.y2d5{bottom:567.858560pt;}
.y2bd{bottom:567.877760pt;}
.y29e{bottom:567.929120pt;}
.y244{bottom:568.828800pt;}
.y3c{bottom:570.889600pt;}
.y1bf{bottom:572.480000pt;}
.y278{bottom:572.640000pt;}
.y94{bottom:573.447680pt;}
.y1e0{bottom:574.094080pt;}
.y75{bottom:574.107520pt;}
.y257{bottom:574.431360pt;}
.y168{bottom:576.640000pt;}
.y216{bottom:577.600000pt;}
.y25{bottom:580.016000pt;}
.y191{bottom:583.215360pt;}
.y1fc{bottom:584.331840pt;}
.ya9{bottom:587.845760pt;}
.y51{bottom:587.864960pt;}
.y3b{bottom:588.166880pt;}
.y14e{bottom:588.494080pt;}
.y12f{bottom:590.270080pt;}
.y2d4{bottom:592.174240pt;}
.y2bc{bottom:592.193440pt;}
.y29d{bottom:592.244800pt;}
.y243{bottom:595.707520pt;}
.y277{bottom:597.120000pt;}
.y24{bottom:597.930240pt;}
.yfb{bottom:598.236000pt;}
.y93{bottom:598.883840pt;}
.y1c7{bottom:600.331840pt;}
.y1df{bottom:600.972800pt;}
.y74{bottom:600.986240pt;}
.ycf{bottom:604.160000pt;}
.y16d{bottom:604.331840pt;}
.y3a{bottom:605.762880pt;}
.y210{bottom:607.040000pt;}
.y1c3{bottom:607.849920pt;}
.y1fb{bottom:608.806880pt;}
.y190{bottom:609.932160pt;}
.yfa{bottom:612.960000pt;}
.ya8{bottom:614.562560pt;}
.y50{bottom:614.581760pt;}
.y14d{bottom:615.210880pt;}
.y23{bottom:615.697280pt;}
.yd1{bottom:616.004320pt;}
.y2d3{bottom:616.649280pt;}
.y2bb{bottom:616.668480pt;}
.y29c{bottom:616.719840pt;}
.y12e{bottom:617.148800pt;}
.y92{bottom:620.640000pt;}
.y276{bottom:621.637120pt;}
.y242{bottom:622.586240pt;}
.y39{bottom:623.358880pt;}
.y1c6{bottom:624.806880pt;}
.y212{bottom:627.040000pt;}
.y1de{bottom:627.689600pt;}
.y73{bottom:627.703040pt;}
.y16c{bottom:628.806880pt;}
.y1c2{bottom:632.324960pt;}
.y1fa{bottom:633.122560pt;}
.y22{bottom:633.611520pt;}
.y18f{bottom:636.810880pt;}
.y38{bottom:639.680000pt;}
.yd0{bottom:640.320000pt;}
.yf9{bottom:640.800000pt;}
.y1f8{bottom:640.809280pt;}
.y2d2{bottom:641.124320pt;}
.y2ba{bottom:641.143520pt;}
.y29b{bottom:641.194880pt;}
.ya7{bottom:641.441280pt;}
.y4f{bottom:641.460480pt;}
.y14c{bottom:642.089600pt;}
.y12d{bottom:644.027520pt;}
.y275{bottom:645.952800pt;}
.y1c5{bottom:649.122560pt;}
.y241{bottom:649.464960pt;}
.y21{bottom:651.525760pt;}
.yf6{bottom:652.960000pt;}
.y16b{bottom:653.122560pt;}
.y1dd{bottom:654.568320pt;}
.y72{bottom:654.581760pt;}
.y1c1{bottom:656.800000pt;}
.y18e{bottom:663.689600pt;}
.yf8{bottom:664.804960pt;}
.y1f7{bottom:665.124960pt;}
.y2d1{bottom:665.440000pt;}
.y2b9{bottom:665.459200pt;}
.y29a{bottom:665.510560pt;}
.y4e{bottom:668.339200pt;}
.y14b{bottom:668.968320pt;}
.y20{bottom:669.440000pt;}
.y274{bottom:670.427840pt;}
.y12c{bottom:670.744320pt;}
.y20f{bottom:673.120000pt;}
.y1f9{bottom:673.600000pt;}
.y240{bottom:676.343680pt;}
.ycc{bottom:677.440000pt;}
.y1dc{bottom:681.447040pt;}
.y71{bottom:681.460480pt;}
.yf7{bottom:689.280000pt;}
.yce{bottom:689.284320pt;}
.y1c4{bottom:689.600000pt;}
.y2e3{bottom:689.929280pt;}
.y2b8{bottom:689.934240pt;}
.y299{bottom:689.985600pt;}
.y18d{bottom:690.568320pt;}
.y264{bottom:691.520000pt;}
.y16a{bottom:693.600000pt;}
.y273{bottom:694.743520pt;}
.y4d{bottom:695.217920pt;}
.y14a{bottom:695.847040pt;}
.y12b{bottom:697.623040pt;}
.y23f{bottom:703.222400pt;}
.y1e{bottom:705.285760pt;}
.y1c0{bottom:705.600000pt;}
.y1db{bottom:708.325760pt;}
.y70{bottom:708.339200pt;}
.ycd{bottom:713.600000pt;}
.y2e2{bottom:714.244960pt;}
.y2b7{bottom:714.249920pt;}
.y298{bottom:714.301280pt;}
.y18c{bottom:717.447040pt;}
.y272{bottom:719.218560pt;}
.y263{bottom:721.759867pt;}
.y4c{bottom:722.096640pt;}
.y149{bottom:722.725760pt;}
.y1d{bottom:723.200000pt;}
.y12a{bottom:724.501760pt;}
.yf4{bottom:726.240000pt;}
.y1f3{bottom:727.200000pt;}
.y23e{bottom:729.939200pt;}
.y1da{bottom:735.204480pt;}
.y6f{bottom:735.217920pt;}
.yf5{bottom:738.080000pt;}
.y2e1{bottom:738.720000pt;}
.y2b6{bottom:738.724960pt;}
.y297{bottom:738.776320pt;}
.y1b8{bottom:743.200000pt;}
.y271{bottom:743.693600pt;}
.y18b{bottom:744.325760pt;}
.y166{bottom:747.360000pt;}
.y148{bottom:748.000000pt;}
.y4b{bottom:748.975360pt;}
.yc8{bottom:750.720000pt;}
.y129{bottom:751.380480pt;}
.y262{bottom:752.646400pt;}
.y1f5{bottom:755.049440pt;}
.y23d{bottom:756.817920pt;}
.y146{bottom:762.080000pt;}
.y1d9{bottom:762.083200pt;}
.y6e{bottom:762.096640pt;}
.ycb{bottom:762.404960pt;}
.y2b5{bottom:763.200000pt;}
.y2e0{bottom:763.209280pt;}
.y296{bottom:763.251360pt;}
.y270{bottom:768.009280pt;}
.y18a{bottom:769.600000pt;}
.y1be{bottom:771.051840pt;}
.y261{bottom:772.003200pt;}
.yf1{bottom:775.040000pt;}
.y4a{bottom:775.854080pt;}
.y17{bottom:777.920000pt;}
.y128{bottom:778.259200pt;}
.y183{bottom:783.680000pt;}
.y23c{bottom:783.696640pt;}
.y147{bottom:784.160000pt;}
.yca{bottom:786.880000pt;}
.yf3{bottom:786.884960pt;}
.y2df{bottom:787.524960pt;}
.y2b4{bottom:787.529280pt;}
.y295{bottom:787.567040pt;}
.y6d{bottom:788.813440pt;}
.y260{bottom:791.360000pt;}
.y26f{bottom:792.484320pt;}
.y1bd{bottom:795.526880pt;}
.y16{bottom:796.979840pt;}
.y49{bottom:802.570880pt;}
.y165{bottom:804.952000pt;}
.y127{bottom:805.137920pt;}
.y23b{bottom:810.575360pt;}
.yf2{bottom:811.360000pt;}
.y189{bottom:811.531200pt;}
.y2de{bottom:812.000000pt;}
.y2b3{bottom:812.004320pt;}
.y294{bottom:812.042080pt;}
.y15{bottom:814.894080pt;}
.y6c{bottom:815.692160pt;}
.y143{bottom:815.840000pt;}
.y26e{bottom:816.800000pt;}
.y164{bottom:819.676000pt;}
.y1bc{bottom:819.842560pt;}
.y25f{bottom:821.285760pt;}
.yc5{bottom:824.000000pt;}
.y48{bottom:829.449600pt;}
.y126{bottom:831.854720pt;}
.y14{bottom:832.808320pt;}
.y163{bottom:834.400000pt;}
.yc7{bottom:835.684960pt;}
.y188{bottom:835.846880pt;}
.y2b2{bottom:836.320000pt;}
.y2dd{bottom:836.343520pt;}
.y293{bottom:836.357760pt;}
.y23a{bottom:837.454080pt;}
.y145{bottom:837.920000pt;}
.y26d{bottom:841.284960pt;}
.y6b{bottom:842.570880pt;}
.yee{bottom:848.320000pt;}
.y13{bottom:850.722560pt;}
.y25e{bottom:851.358720pt;}
.y1ba{bottom:851.844960pt;}
.y47{bottom:856.328320pt;}
.yc6{bottom:860.160000pt;}
.yf0{bottom:860.164320pt;}
.y1bb{bottom:860.320000pt;}
.y187{bottom:860.321920pt;}
.y2dc{bottom:860.818560pt;}
.y292{bottom:860.832800pt;}
.y239{bottom:864.332800pt;}
.y26c{bottom:865.760000pt;}
.y12{bottom:867.680000pt;}
.y125{bottom:869.287680pt;}
.y6a{bottom:869.449600pt;}
.y140{bottom:869.600000pt;}
.y1b9{bottom:876.320000pt;}
.y25d{bottom:881.122560pt;}
.y46{bottom:883.207040pt;}
.yef{bottom:884.480000pt;}
.y2db{bottom:885.293600pt;}
.y291{bottom:885.307840pt;}
.y11{bottom:888.320000pt;}
.y26b{bottom:890.080000pt;}
.y238{bottom:891.211520pt;}
.y142{bottom:891.520000pt;}
.y185{bottom:892.324320pt;}
.y69{bottom:896.328320pt;}
.ybf{bottom:897.120000pt;}
.y91{bottom:898.560000pt;}
.y186{bottom:900.640000pt;}
.yc4{bottom:908.978560pt;}
.y2da{bottom:909.609280pt;}
.y290{bottom:909.623520pt;}
.y45{bottom:910.085760pt;}
.y25c{bottom:911.195520pt;}
.y1b5{bottom:914.080000pt;}
.y26a{bottom:914.560000pt;}
.y184{bottom:916.640000pt;}
.y10{bottom:917.600000pt;}
.y237{bottom:917.928320pt;}
.yeb{bottom:921.600000pt;}
.y68{bottom:923.207040pt;}
.y13d{bottom:923.840000pt;}
.yed{bottom:933.444320pt;}
.yc3{bottom:933.453600pt;}
.y2d9{bottom:934.084320pt;}
.y28f{bottom:934.098560pt;}
.y44{bottom:936.964480pt;}
.y269{bottom:938.889280pt;}
.y25b{bottom:941.121280pt;}
.y1b7{bottom:941.760000pt;}
.y236{bottom:944.807040pt;}
.yf{bottom:946.880000pt;}
.y67{bottom:950.085760pt;}
.y181{bottom:954.400000pt;}
.yec{bottom:957.760000pt;}
.yc2{bottom:957.769280pt;}
.y2d8{bottom:958.400000pt;}
.y28e{bottom:958.414240pt;}
.y268{bottom:963.364320pt;}
.y43{bottom:963.681280pt;}
.y25a{bottom:971.194240pt;}
.y235{bottom:971.685760pt;}
.y66{bottom:976.802560pt;}
.y13c{bottom:976.964000pt;}
.yc1{bottom:982.244320pt;}
.y28d{bottom:982.889280pt;}
.ye{bottom:986.560000pt;}
.y267{bottom:987.680000pt;}
.y42{bottom:990.560000pt;}
.ye9{bottom:994.880000pt;}
.y234{bottom:996.960000pt;}
.y259{bottom:1001.120000pt;}
.y103{bottom:1003.040000pt;}
.y266{bottom:1003.680000pt;}
.y65{bottom:1003.681280pt;}
.y13b{bottom:1004.804000pt;}
.y1{bottom:1006.560000pt;}
.y28c{bottom:1007.204960pt;}
.yc{bottom:1010.400000pt;}
.y232{bottom:1011.040000pt;}
.y41{bottom:1029.280000pt;}
.y265{bottom:1029.600000pt;}
.y102{bottom:1030.400000pt;}
.y64{bottom:1030.560000pt;}
.y28b{bottom:1031.680000pt;}
.y13a{bottom:1032.800000pt;}
.y3e{bottom:1047.520000pt;}
.y3d{bottom:1064.160000pt;}
.h5{height:15.840000pt;}
.h19{height:21.546875pt;}
.h17{height:24.480000pt;}
.h3{height:31.992188pt;}
.h4{height:32.320312pt;}
.h33{height:32.640000pt;}
.h14{height:33.257812pt;}
.h10{height:35.390625pt;}
.he{height:35.404688pt;}
.hf{height:35.767812pt;}
.h23{height:35.838667pt;}
.h2{height:39.243750pt;}
.h9{height:39.646250pt;}
.h26{height:40.320000pt;}
.h2d{height:40.480000pt;}
.ha{height:42.656250pt;}
.h2c{height:43.024630pt;}
.h11{height:43.412500pt;}
.h6{height:43.987500pt;}
.h13{height:44.160000pt;}
.h22{height:44.188385pt;}
.h16{height:44.313825pt;}
.h15{height:44.390625pt;}
.h34{height:44.533750pt;}
.h35{height:44.949687pt;}
.hb{height:48.406250pt;}
.h20{height:48.798667pt;}
.h21{height:48.800000pt;}
.h12{height:49.823750pt;}
.h24{height:53.598667pt;}
.h25{height:53.760000pt;}
.h7{height:63.590625pt;}
.h8{height:63.984375pt;}
.h18{height:73.120000pt;}
.h1d{height:73.121333pt;}
.h1c{height:73.278667pt;}
.h1b{height:73.280000pt;}
.h2b{height:89.280000pt;}
.h1f{height:97.758667pt;}
.hd{height:108.800000pt;}
.h2a{height:121.278667pt;}
.h2e{height:121.280000pt;}
.h2f{height:129.600000pt;}
.h1a{height:146.560000pt;}
.h32{height:162.881333pt;}
.h28{height:169.920000pt;}
.h29{height:170.080000pt;}
.h27{height:170.081333pt;}
.h31{height:179.040000pt;}
.h30{height:186.080000pt;}
.h1e{height:195.360000pt;}
.hc{height:468.161333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:76.000000pt;}
.w13{width:104.640000pt;}
.w14{width:109.600000pt;}
.w11{width:127.200000pt;}
.wb{width:133.120000pt;}
.wf{width:139.200000pt;}
.w9{width:141.760000pt;}
.wc{width:144.000000pt;}
.we{width:147.520000pt;}
.w12{width:149.920000pt;}
.w15{width:150.240000pt;}
.w8{width:151.200000pt;}
.w10{width:159.520000pt;}
.wd{width:165.600000pt;}
.w4{width:172.960000pt;}
.w5{width:199.680000pt;}
.w16{width:237.281333pt;}
.wa{width:308.801333pt;}
.w7{width:326.081333pt;}
.w2{width:426.240000pt;}
.w3{width:461.600000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:7.200000pt;}
.x42{left:8.160000pt;}
.x4{left:9.600000pt;}
.x36{left:10.880000pt;}
.x22{left:13.120000pt;}
.x2f{left:14.560000pt;}
.x25{left:16.160000pt;}
.x14{left:17.920000pt;}
.x78{left:19.200000pt;}
.x6c{left:20.800000pt;}
.x2c{left:22.080000pt;}
.x70{left:23.040000pt;}
.x10{left:24.160000pt;}
.x34{left:25.120000pt;}
.x1e{left:26.560000pt;}
.x61{left:28.960000pt;}
.x3b{left:30.880000pt;}
.x31{left:32.000000pt;}
.x49{left:33.760000pt;}
.x64{left:35.840000pt;}
.x3f{left:37.920000pt;}
.x4a{left:40.160000pt;}
.x18{left:41.120000pt;}
.x62{left:43.040000pt;}
.x79{left:44.800000pt;}
.x5a{left:47.840000pt;}
.x4f{left:50.880000pt;}
.x3e{left:56.320000pt;}
.x3a{left:66.080000pt;}
.x63{left:74.880000pt;}
.x12{left:80.000000pt;}
.x1{left:96.000000pt;}
.x44{left:101.440000pt;}
.x13{left:103.200000pt;}
.x5{left:105.600000pt;}
.x7d{left:114.880000pt;}
.xd{left:119.840000pt;}
.x41{left:122.080000pt;}
.xb{left:124.480000pt;}
.x45{left:126.080000pt;}
.x38{left:143.972480pt;}
.x69{left:200.640000pt;}
.x6f{left:212.320000pt;}
.x75{left:221.600000pt;}
.x60{left:223.200000pt;}
.x6a{left:226.080000pt;}
.x46{left:229.120000pt;}
.x58{left:235.200000pt;}
.x4d{left:239.045600pt;}
.x5f{left:245.125600pt;}
.x39{left:247.200000pt;}
.x67{left:251.211200pt;}
.x4c{left:254.251200pt;}
.x5e{left:260.331200pt;}
.x4b{left:263.680000pt;}
.x3c{left:270.560000pt;}
.x40{left:280.960000pt;}
.x68{left:281.927840pt;}
.x2{left:282.880000pt;}
.x4e{left:284.967840pt;}
.x17{left:288.000000pt;}
.xf{left:295.680000pt;}
.x65{left:298.089600pt;}
.x3{left:303.840000pt;}
.x59{left:307.209600pt;}
.x6b{left:310.240000pt;}
.x76{left:319.520000pt;}
.x77{left:320.480000pt;}
.x7a{left:324.000000pt;}
.x7b{left:324.960000pt;}
.x9{left:331.360000pt;}
.x72{left:334.240000pt;}
.x73{left:337.600000pt;}
.x74{left:345.280000pt;}
.x71{left:346.880000pt;}
.x7c{left:353.120000pt;}
.x6d{left:360.640000pt;}
.x6{left:366.080000pt;}
.x11{left:371.680000pt;}
.x47{left:373.120000pt;}
.x16{left:379.680800pt;}
.x30{left:381.280000pt;}
.x19{left:382.400000pt;}
.x1c{left:383.860800pt;}
.x27{left:384.960000pt;}
.x1b{left:386.888640pt;}
.x23{left:388.000000pt;}
.x2d{left:389.760000pt;}
.x1f{left:393.600000pt;}
.x15{left:396.480000pt;}
.x1a{left:399.039840pt;}
.x29{left:400.160000pt;}
.x1d{left:401.934880pt;}
.x2a{left:406.242240pt;}
.x56{left:408.971200pt;}
.x3d{left:410.080000pt;}
.x26{left:411.849920pt;}
.x43{left:416.320000pt;}
.x50{left:418.400000pt;}
.x5b{left:421.440000pt;}
.x24{left:427.680640pt;}
.x57{left:439.687840pt;}
.x5c{left:442.727840pt;}
.x51{left:455.849600pt;}
.x21{left:458.560000pt;}
.x6e{left:460.480000pt;}
.x32{left:467.680000pt;}
.x2e{left:472.003040pt;}
.x2b{left:489.136000pt;}
.x28{left:492.793600pt;}
.x37{left:502.560000pt;}
.x33{left:511.365760pt;}
.x20{left:519.999040pt;}
.x48{left:538.880000pt;}
.x35{left:546.720000pt;}
.x54{left:550.565600pt;}
.x7{left:564.480000pt;}
.x53{left:565.771200pt;}
.x8{left:574.080000pt;}
.x52{left:575.200000pt;}
.x66{left:596.487840pt;}
.x55{left:601.919360pt;}
.x5d{left:612.649600pt;}
.xa{left:685.120000pt;}
.xc{left:697.600000pt;}
}




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