
    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_2fbff69c4d9c7ac79dce0ae5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.965000;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_10df3fd7e6f3601d68725de8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.959000;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_03cdd015ab6e9085fcadf0c2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.954000;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_e28f6857c3dfb38982785ae4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.971000;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_e86d69c5034d39c207a54fec.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.952000;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_8f0e0946c9cf358f715fad48.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.954000;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_475c559661ea3001dcfe5199.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.959000;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_a8fe9cc06b933d6bfbc21941.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.888000;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_32aa695c275562b191d5ab26.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.638000;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_1d4f7f8bfe4f4f980602847a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.879000;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_b644299bc74971154ae19b3d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.094000;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);}
.v8{vertical-align:-44.178000px;}
.vc{vertical-align:-38.886000px;}
.va{vertical-align:-25.266000px;}
.v7{vertical-align:-23.760000px;}
.v2{vertical-align:-19.524000px;}
.v4{vertical-align:-16.272000px;}
.v5{vertical-align:-9.822000px;}
.v0{vertical-align:0.000000px;}
.vd{vertical-align:2.112000px;}
.v9{vertical-align:5.514000px;}
.vb{vertical-align:11.178000px;}
.v3{vertical-align:19.530000px;}
.v6{vertical-align:23.760000px;}
.v1{vertical-align:26.034000px;}
.ls6{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.001056px;}
.ls54{letter-spacing:0.001200px;}
.ls39{letter-spacing:0.001932px;}
.ls4a{letter-spacing:0.002592px;}
.ls45{letter-spacing:0.002640px;}
.ls20{letter-spacing:0.002832px;}
.ls33{letter-spacing:0.003041px;}
.ls7d{letter-spacing:0.003246px;}
.ls81{letter-spacing:0.003792px;}
.ls4{letter-spacing:0.003798px;}
.ls3b{letter-spacing:2.155114px;}
.ls70{letter-spacing:2.984112px;}
.ls21{letter-spacing:2.986512px;}
.ls0{letter-spacing:2.987028px;}
.ls24{letter-spacing:2.987539px;}
.ls28{letter-spacing:2.987626px;}
.ls2e{letter-spacing:2.987700px;}
.ls5d{letter-spacing:2.987856px;}
.ls27{letter-spacing:2.988192px;}
.ls3a{letter-spacing:2.988288px;}
.ls29{letter-spacing:2.989181px;}
.ls26{letter-spacing:2.989392px;}
.ls23{letter-spacing:2.990064px;}
.ls25{letter-spacing:2.990093px;}
.ls71{letter-spacing:2.990112px;}
.ls22{letter-spacing:2.991274px;}
.ls2a{letter-spacing:2.992282px;}
.ls1f{letter-spacing:2.992512px;}
.ls2{letter-spacing:2.993028px;}
.ls55{letter-spacing:2.993539px;}
.ls30{letter-spacing:2.993700px;}
.ls5c{letter-spacing:2.993856px;}
.ls36{letter-spacing:4.579606px;}
.ls80{letter-spacing:6.869412px;}
.ls82{letter-spacing:6.873788px;}
.ls41{letter-spacing:7.467696px;}
.ls44{letter-spacing:7.469040px;}
.ls52{letter-spacing:7.473696px;}
.ls42{letter-spacing:7.475040px;}
.ls64{letter-spacing:8.529696px;}
.ls65{letter-spacing:8.531040px;}
.ls3{letter-spacing:8.969856px;}
.ls40{letter-spacing:10.307040px;}
.ls51{letter-spacing:10.313040px;}
.ls6c{letter-spacing:10.907974px;}
.ls6d{letter-spacing:10.913412px;}
.ls53{letter-spacing:11.123232px;}
.ls43{letter-spacing:11.129232px;}
.ls5a{letter-spacing:11.501040px;}
.ls59{letter-spacing:11.505696px;}
.ls48{letter-spacing:11.561412px;}
.ls67{letter-spacing:11.954699px;}
.ls68{letter-spacing:11.957412px;}
.ls66{letter-spacing:12.185232px;}
.ls3c{letter-spacing:12.373248px;}
.ls2d{letter-spacing:13.457412px;}
.ls10{letter-spacing:13.798896px;}
.ls77{letter-spacing:13.900896px;}
.ls15{letter-spacing:14.026896px;}
.ls2f{letter-spacing:14.539594px;}
.ls73{letter-spacing:14.980896px;}
.ls7f{letter-spacing:15.049594px;}
.ls7e{letter-spacing:15.052896px;}
.ls6f{letter-spacing:15.055594px;}
.ls5b{letter-spacing:15.155232px;}
.ls2c{letter-spacing:15.947412px;}
.lsf{letter-spacing:16.360896px;}
.lse{letter-spacing:16.366896px;}
.ls37{letter-spacing:16.594896px;}
.ls35{letter-spacing:16.819623px;}
.ls6e{letter-spacing:16.828896px;}
.ls47{letter-spacing:16.889425px;}
.lsc{letter-spacing:17.122896px;}
.ls14{letter-spacing:17.320896px;}
.ls76{letter-spacing:17.368896px;}
.ls75{letter-spacing:17.374896px;}
.ls5{letter-spacing:17.752896px;}
.ls31{letter-spacing:17.941594px;}
.lsb{letter-spacing:18.070896px;}
.ls7{letter-spacing:18.304896px;}
.ls8{letter-spacing:18.544896px;}
.lsd{letter-spacing:19.492896px;}
.ls32{letter-spacing:19.745400px;}
.ls9{letter-spacing:19.786896px;}
.lsa{letter-spacing:19.792896px;}
.ls11{letter-spacing:19.948896px;}
.ls34{letter-spacing:20.131594px;}
.ls7a{letter-spacing:20.450112px;}
.ls2b{letter-spacing:20.660112px;}
.ls7b{letter-spacing:21.056112px;}
.ls46{letter-spacing:21.113412px;}
.ls13{letter-spacing:21.346896px;}
.ls74{letter-spacing:21.872112px;}
.ls72{letter-spacing:22.604112px;}
.ls78{letter-spacing:22.618896px;}
.ls12{letter-spacing:22.744896px;}
.ls79{letter-spacing:23.782896px;}
.ls38{letter-spacing:25.444896px;}
.ls7c{letter-spacing:32.726700px;}
.ls62{letter-spacing:81.538598px;}
.ls63{letter-spacing:97.173216px;}
.ls58{letter-spacing:103.977216px;}
.ls57{letter-spacing:103.978598px;}
.ls56{letter-spacing:106.810598px;}
.ls6b{letter-spacing:115.581216px;}
.ls6a{letter-spacing:115.582598px;}
.ls69{letter-spacing:115.586045px;}
.ls61{letter-spacing:140.235216px;}
.ls60{letter-spacing:143.068598px;}
.ls3e{letter-spacing:143.422598px;}
.ls3f{letter-spacing:143.427216px;}
.ls3d{letter-spacing:143.428598px;}
.ls49{letter-spacing:144.285216px;}
.ls4b{letter-spacing:144.286512px;}
.ls4d{letter-spacing:147.118598px;}
.ls4c{letter-spacing:159.921216px;}
.ls4e{letter-spacing:162.760598px;}
.ls4f{letter-spacing:163.436045px;}
.ls50{letter-spacing:163.442045px;}
.ls5f{letter-spacing:173.247216px;}
.ls5e{letter-spacing:176.080598px;}
.ls1b{letter-spacing:373.137648px;}
.ls1e{letter-spacing:445.835750px;}
.ls1a{letter-spacing:642.488448px;}
.ls19{letter-spacing:743.254963px;}
.ls17{letter-spacing:804.243216px;}
.ls16{letter-spacing:809.122598px;}
.ls1d{letter-spacing:830.801635px;}
.ls18{letter-spacing:858.056045px;}
.ls1c{letter-spacing:1309.177286px;}
.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;}
}
.ws110{word-spacing:-52.554839px;}
.wsa9{word-spacing:-46.080038px;}
.ws69{word-spacing:-39.416294px;}
.ws92{word-spacing:-33.665702px;}
.wsa2{word-spacing:-31.561728px;}
.wsb{word-spacing:-0.083686px;}
.ws5e{word-spacing:-0.071731px;}
.ws1e{word-spacing:-0.065455px;}
.ws88{word-spacing:-0.059776px;}
.ws6{word-spacing:-0.053798px;}
.wsb0{word-spacing:-0.044832px;}
.wsc2{word-spacing:-0.035866px;}
.ws29{word-spacing:0.000000px;}
.ws28{word-spacing:8.326717px;}
.ws26{word-spacing:9.582001px;}
.ws27{word-spacing:9.582563px;}
.wse7{word-spacing:10.080008px;}
.wsaf{word-spacing:10.262928px;}
.wsa1{word-spacing:10.264128px;}
.wsb6{word-spacing:10.265712px;}
.ws6b{word-spacing:10.266528px;}
.ws9f{word-spacing:10.267296px;}
.wsa0{word-spacing:10.268928px;}
.wsbd{word-spacing:10.270128px;}
.wse6{word-spacing:10.603645px;}
.ws64{word-spacing:10.705882px;}
.wsd6{word-spacing:10.706688px;}
.wsd7{word-spacing:10.708714px;}
.ws59{word-spacing:10.996373px;}
.ws7d{word-spacing:11.585464px;}
.ws25{word-spacing:11.590456px;}
.ws79{word-spacing:11.716373px;}
.ws81{word-spacing:11.781828px;}
.wsf7{word-spacing:11.847283px;}
.wsc4{word-spacing:12.297341px;}
.ws9b{word-spacing:12.300941px;}
.wsc5{word-spacing:12.301354px;}
.wsdd{word-spacing:12.303965px;}
.wsdc{word-spacing:12.306010px;}
.wsc7{word-spacing:12.314122px;}
.ws9e{word-spacing:12.314890px;}
.wsae{word-spacing:12.317050px;}
.wsbc{word-spacing:12.319651px;}
.ws1{word-spacing:12.319834px;}
.ws9d{word-spacing:12.320890px;}
.wsab{word-spacing:12.322272px;}
.wsb9{word-spacing:12.323213px;}
.wsdb{word-spacing:12.323280px;}
.wsba{word-spacing:12.325651px;}
.wsb8{word-spacing:12.328560px;}
.wsb4{word-spacing:12.331440px;}
.wsb2{word-spacing:12.331555px;}
.wsb3{word-spacing:12.332208px;}
.wsb5{word-spacing:12.332976px;}
.wsbb{word-spacing:12.338966px;}
.ws9c{word-spacing:12.341424px;}
.wsc3{word-spacing:12.341664px;}
.wsda{word-spacing:12.344659px;}
.wsf1{word-spacing:12.501829px;}
.wsd2{word-spacing:12.567283px;}
.wsd3{word-spacing:12.616306px;}
.wsd4{word-spacing:12.632738px;}
.ws87{word-spacing:12.688734px;}
.ws60{word-spacing:12.763647px;}
.ws18{word-spacing:12.894556px;}
.wsf3{word-spacing:12.960011px;}
.ws117{word-spacing:13.025465px;}
.wsf0{word-spacing:13.090920px;}
.wsbf{word-spacing:13.287284px;}
.ws6e{word-spacing:13.352738px;}
.ws75{word-spacing:13.373828px;}
.ws76{word-spacing:13.418193px;}
.ws58{word-spacing:13.680011px;}
.ws23{word-spacing:13.688612px;}
.ws44{word-spacing:13.745466px;}
.ws4c{word-spacing:13.810921px;}
.ws103{word-spacing:13.847559px;}
.ws104{word-spacing:13.861517px;}
.ws105{word-spacing:13.862099px;}
.wsf4{word-spacing:13.876375px;}
.ws4b{word-spacing:13.941830px;}
.wsf8{word-spacing:14.007284px;}
.ws10a{word-spacing:14.072739px;}
.wsc1{word-spacing:14.203648px;}
.wse{word-spacing:14.269103px;}
.ws80{word-spacing:14.334557px;}
.wsf6{word-spacing:14.400012px;}
.ws1d{word-spacing:14.465467px;}
.wsd5{word-spacing:14.522062px;}
.ws19{word-spacing:14.530921px;}
.ws114{word-spacing:14.661830px;}
.ws5b{word-spacing:14.727285px;}
.ws6c{word-spacing:14.792740px;}
.wsce{word-spacing:14.858194px;}
.ws3{word-spacing:14.901427px;}
.ws4{word-spacing:14.902157px;}
.ws5{word-spacing:14.902646px;}
.ws0{word-spacing:14.902781px;}
.ws43{word-spacing:14.923649px;}
.ws91{word-spacing:14.924584px;}
.ws12d{word-spacing:14.982593px;}
.ws11a{word-spacing:14.983705px;}
.ws11b{word-spacing:14.984173px;}
.ws143{word-spacing:14.984645px;}
.ws13c{word-spacing:14.984959px;}
.ws140{word-spacing:14.984975px;}
.ws127{word-spacing:14.985239px;}
.ws128{word-spacing:14.985501px;}
.ws11f{word-spacing:14.985640px;}
.ws132{word-spacing:14.985670px;}
.ws121{word-spacing:14.985703px;}
.ws144{word-spacing:14.985743px;}
.ws13b{word-spacing:14.985784px;}
.ws130{word-spacing:14.985931px;}
.ws12a{word-spacing:14.986057px;}
.ws11c{word-spacing:14.986161px;}
.ws13d{word-spacing:14.986384px;}
.wsef{word-spacing:14.986448px;}
.ws126{word-spacing:14.986450px;}
.ws135{word-spacing:14.986502px;}
.ws12b{word-spacing:14.986656px;}
.ws137{word-spacing:14.986692px;}
.ws134{word-spacing:14.987034px;}
.ws13a{word-spacing:14.987062px;}
.ws13f{word-spacing:14.987240px;}
.ws138{word-spacing:14.987326px;}
.ws11d{word-spacing:14.987351px;}
.ws12c{word-spacing:14.987591px;}
.ws118{word-spacing:14.988152px;}
.ws122{word-spacing:14.988209px;}
.ws139{word-spacing:14.988322px;}
.ws13e{word-spacing:14.988333px;}
.ws120{word-spacing:14.988341px;}
.ws125{word-spacing:14.988834px;}
.ws11e{word-spacing:14.988906px;}
.ws133{word-spacing:14.988937px;}
.ws129{word-spacing:14.989049px;}
.ws2b{word-spacing:14.989103px;}
.ws131{word-spacing:14.990548px;}
.ws12e{word-spacing:14.990597px;}
.ws123{word-spacing:14.991152px;}
.ws142{word-spacing:14.991688px;}
.ws136{word-spacing:14.991703px;}
.ws124{word-spacing:14.991743px;}
.ws22{word-spacing:15.000470px;}
.ws36{word-spacing:15.120013px;}
.ws3f{word-spacing:15.185467px;}
.ws70{word-spacing:15.316376px;}
.wse2{word-spacing:15.578195px;}
.wsc{word-spacing:15.643649px;}
.ws5f{word-spacing:15.709104px;}
.ws15{word-spacing:15.774559px;}
.wsfd{word-spacing:15.823517px;}
.wsfe{word-spacing:15.824099px;}
.wsfc{word-spacing:15.840013px;}
.ws74{word-spacing:15.905468px;}
.ws4a{word-spacing:15.970922px;}
.ws84{word-spacing:16.036377px;}
.wsbe{word-spacing:16.101832px;}
.ws3e{word-spacing:16.167286px;}
.ws71{word-spacing:16.232741px;}
.ws21{word-spacing:16.298195px;}
.ws89{word-spacing:16.363650px;}
.wsa{word-spacing:16.426445px;}
.wsf5{word-spacing:16.429105px;}
.ws100{word-spacing:16.435517px;}
.ws56{word-spacing:16.494559px;}
.ws8f{word-spacing:16.560014px;}
.ws8a{word-spacing:16.625468px;}
.ws7a{word-spacing:16.690923px;}
.ws10b{word-spacing:16.712099px;}
.ws1c{word-spacing:16.756378px;}
.ws85{word-spacing:16.821832px;}
.ws2c{word-spacing:16.887287px;}
.ws72{word-spacing:16.952741px;}
.wsee{word-spacing:17.018196px;}
.ws41{word-spacing:17.083651px;}
.ws20{word-spacing:17.149105px;}
.ws32{word-spacing:17.214560px;}
.ws3d{word-spacing:17.280014px;}
.ws50{word-spacing:17.345469px;}
.ws39{word-spacing:17.410924px;}
.wsa8{word-spacing:17.449865px;}
.wsaa{word-spacing:17.476378px;}
.ws78{word-spacing:17.541833px;}
.ws6d{word-spacing:17.607287px;}
.ws1f{word-spacing:17.672742px;}
.wscd{word-spacing:17.738197px;}
.ws47{word-spacing:17.798081px;}
.ws45{word-spacing:17.803651px;}
.ws46{word-spacing:17.811239px;}
.ws5c{word-spacing:17.869106px;}
.wse8{word-spacing:17.934560px;}
.wse0{word-spacing:17.995282px;}
.ws35{word-spacing:18.000015px;}
.wse1{word-spacing:18.013517px;}
.wsc0{word-spacing:18.065470px;}
.ws57{word-spacing:18.130924px;}
.ws2d{word-spacing:18.196379px;}
.ws86{word-spacing:18.213692px;}
.ws52{word-spacing:18.261833px;}
.ws2e{word-spacing:18.392743px;}
.ws2f{word-spacing:18.458197px;}
.wsfa{word-spacing:18.473410px;}
.wse5{word-spacing:18.523652px;}
.ws38{word-spacing:18.654561px;}
.ws106{word-spacing:18.668113px;}
.ws7f{word-spacing:18.720016px;}
.wsf2{word-spacing:18.785470px;}
.ws33{word-spacing:18.850925px;}
.ws7c{word-spacing:18.916379px;}
.ws3c{word-spacing:19.047289px;}
.ws83{word-spacing:19.112743px;}
.ws82{word-spacing:19.243652px;}
.ws49{word-spacing:19.309107px;}
.ws12f{word-spacing:19.336648px;}
.ws141{word-spacing:19.338985px;}
.ws119{word-spacing:19.342648px;}
.ws8b{word-spacing:19.374562px;}
.ws42{word-spacing:19.440016px;}
.wscf{word-spacing:19.505471px;}
.ws3b{word-spacing:19.570925px;}
.ws5a{word-spacing:19.636380px;}
.ws109{word-spacing:19.679410px;}
.ws30{word-spacing:19.701835px;}
.ws11{word-spacing:19.767289px;}
.ws111{word-spacing:19.802511px;}
.ws4d{word-spacing:19.832744px;}
.ws73{word-spacing:19.869542px;}
.ws4e{word-spacing:19.898198px;}
.wsd0{word-spacing:19.963653px;}
.ws4f{word-spacing:20.029108px;}
.ws107{word-spacing:20.073239px;}
.ws40{word-spacing:20.094562px;}
.ws2a{word-spacing:20.160017px;}
.ws34{word-spacing:20.225471px;}
.ws62{word-spacing:20.290926px;}
.ws61{word-spacing:20.356381px;}
.wse3{word-spacing:20.384113px;}
.ws102{word-spacing:20.413517px;}
.ws37{word-spacing:20.421835px;}
.ws31{word-spacing:20.487290px;}
.ws63{word-spacing:20.618199px;}
.wsff{word-spacing:20.630113px;}
.ws48{word-spacing:20.683654px;}
.ws77{word-spacing:20.749108px;}
.ws7b{word-spacing:20.814563px;}
.ws7e{word-spacing:20.945472px;}
.ws6f{word-spacing:21.010927px;}
.ws54{word-spacing:21.076381px;}
.wse4{word-spacing:21.104113px;}
.ws10f{word-spacing:21.141836px;}
.ws112{word-spacing:21.146113px;}
.ws53{word-spacing:21.272745px;}
.ws8d{word-spacing:21.419100px;}
.wsa6{word-spacing:21.440679px;}
.ws3a{word-spacing:21.469109px;}
.ws10c{word-spacing:21.524113px;}
.wseb{word-spacing:21.569410px;}
.wsed{word-spacing:21.572099px;}
.ws10{word-spacing:21.600018px;}
.wse9{word-spacing:21.665473px;}
.ws14{word-spacing:21.861836px;}
.ws16{word-spacing:21.927291px;}
.ws55{word-spacing:22.189109px;}
.ws8e{word-spacing:22.385473px;}
.wsfb{word-spacing:22.450928px;}
.ws10d{word-spacing:22.516382px;}
.ws51{word-spacing:22.647292px;}
.wsa3{word-spacing:22.712746px;}
.ws101{word-spacing:22.754113px;}
.wsea{word-spacing:22.778201px;}
.ws113{word-spacing:22.909110px;}
.wsf{word-spacing:22.974565px;}
.ws17{word-spacing:23.040019px;}
.ws5d{word-spacing:23.181077px;}
.ws8c{word-spacing:23.236383px;}
.ws10e{word-spacing:23.694565px;}
.wsa4{word-spacing:23.760020px;}
.wsd{word-spacing:23.825474px;}
.wsf9{word-spacing:23.891410px;}
.ws13{word-spacing:24.152747px;}
.ws1a{word-spacing:24.283657px;}
.ws1b{word-spacing:24.305860px;}
.ws108{word-spacing:24.850831px;}
.ws116{word-spacing:25.265476px;}
.ws90{word-spacing:25.396385px;}
.wsd1{word-spacing:25.553410px;}
.ws115{word-spacing:25.920022px;}
.wsa7{word-spacing:26.242596px;}
.ws12{word-spacing:27.163659px;}
.wsec{word-spacing:27.167410px;}
.ws24{word-spacing:28.649568px;}
.ws9{word-spacing:28.799989px;}
.wsa5{word-spacing:29.069324px;}
.ws2{word-spacing:29.856624px;}
.ws7{word-spacing:43.660258px;}
.ws8{word-spacing:43.699541px;}
.wscb{word-spacing:81.499949px;}
.wsdf{word-spacing:115.547395px;}
.wsc6{word-spacing:124.561949px;}
.wsad{word-spacing:144.247949px;}
.wsac{word-spacing:144.253949px;}
.wsc8{word-spacing:157.573949px;}
.ws67{word-spacing:163.278144px;}
.wsb7{word-spacing:184.205722px;}
.ws68{word-spacing:189.101376px;}
.ws6a{word-spacing:202.012992px;}
.wsb1{word-spacing:204.218726px;}
.ws66{word-spacing:214.924608px;}
.ws65{word-spacing:227.836224px;}
.ws95{word-spacing:229.075181px;}
.ws98{word-spacing:264.528326px;}
.ws97{word-spacing:265.173907px;}
.ws94{word-spacing:269.640413px;}
.wsc9{word-spacing:282.602995px;}
.wsd8{word-spacing:308.318630px;}
.ws96{word-spacing:314.829830px;}
.wsd9{word-spacing:335.151907px;}
.ws9a{word-spacing:339.361901px;}
.wsde{word-spacing:384.807830px;}
.wscc{word-spacing:427.422326px;}
.wsca{word-spacing:502.255901px;}
.ws93{word-spacing:607.194374px;}
.ws99{word-spacing:610.045690px;}
._30{margin-left:-7.950189px;}
._c{margin-left:-6.694896px;}
._4{margin-left:-3.347448px;}
._0{margin-left:-1.613952px;}
._6{width:1.404738px;}
._a{width:3.087571px;}
._5{width:4.738784px;}
._5c{width:5.884757px;}
._21{width:11.768412px;}
._7{width:12.847176px;}
._5a{width:15.054558px;}
._57{width:18.465828px;}
._9{width:19.690214px;}
._8{width:21.522658px;}
._5b{width:30.110537px;}
._3{width:31.561728px;}
._2{width:38.731872px;}
._1{width:43.830781px;}
._44{width:100.979597px;}
._48{width:118.354282px;}
._46{width:119.593843px;}
._3b{width:120.992602px;}
._45{width:122.445158px;}
._4f{width:125.135078px;}
._54{width:130.514918px;}
._4d{width:131.859878px;}
._56{width:134.065613px;}
._27{width:137.185920px;}
._4e{width:143.587930px;}
._4a{width:145.793664px;}
._3d{width:146.815834px;}
._55{width:149.720947px;}
._4c{width:152.787456px;}
._3e{width:157.790707px;}
._2d{width:159.105235px;}
._2e{width:161.832653px;}
._43{width:184.259520px;}
._35{width:187.210042px;}
._10{width:199.107878px;}
._34{width:201.413597px;}
._3a{width:204.272525px;}
._4b{width:206.157389px;}
._f{width:209.168179px;}
._23{width:213.902438px;}
._47{width:215.785382px;}
._11{width:219.874061px;}
._e{width:225.415296px;}
._14{width:227.836224px;}
._49{width:229.385914px;}
._3c{width:235.798387px;}
._25{width:239.589907px;}
._38{width:262.213402px;}
._41{width:263.665958px;}
._40{width:270.928742px;}
._37{width:272.327501px;}
._39{width:283.033382px;}
._42{width:284.485939px;}
._36{width:288.520819px;}
._3f{width:289.973376px;}
._50{width:293.308877px;}
._2a{width:300.248870px;}
._51{width:303.530573px;}
._29{width:310.362970px;}
._52{width:315.904205px;}
._26{width:319.803322px;}
._53{width:321.929626px;}
._2b{width:323.973965px;}
._28{width:326.610086px;}
._2f{width:328.869619px;}
._32{width:346.382266px;}
._33{width:350.657971px;}
._2c{width:354.692851px;}
._24{width:371.611181px;}
._13{width:493.277530px;}
._31{width:641.761114px;}
._d{width:666.992563px;}
._1c{width:720.949382px;}
._18{width:723.921912px;}
._22{width:735.047539px;}
._1b{width:736.766842px;}
._15{width:740.169029px;}
._1d{width:750.163613px;}
._12{width:769.919544px;}
._19{width:783.799531px;}
._17{width:833.606208px;}
._1e{width:873.911851px;}
._16{width:888.749568px;}
._1f{width:902.801592px;}
._20{width:929.044570px;}
._1a{width:948.411994px;}
._58{width:1733.921434px;}
._59{width:1737.009005px;}
._b{width:1763.837434px;}
.fc4{color:rgb(0,139,191);}
.fc3{color:rgb(0,166,252);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(51,51,51);}
.fsa{font-size:31.382400px;}
.fs5{font-size:35.865600px;}
.fs3{font-size:41.842800px;}
.fs9{font-size:44.832000px;}
.fs4{font-size:47.820600px;}
.fs0{font-size:53.798400px;}
.fs8{font-size:59.775600px;}
.fs7{font-size:65.454600px;}
.fsb{font-size:65.753400px;}
.fs2{font-size:71.731200px;}
.fs6{font-size:83.686200px;}
.fs1{font-size:131.506800px;}
.y0{bottom:0.000000px;}
.y39{bottom:41.826000px;}
.y64{bottom:48.877500px;}
.y38{bottom:53.781000px;}
.y8d{bottom:115.434000px;}
.ye4{bottom:115.435500px;}
.y133{bottom:115.657500px;}
.y11{bottom:117.420000px;}
.y63{bottom:119.061000px;}
.y17f{bottom:121.147500px;}
.y1fe{bottom:121.960500px;}
.y15b{bottom:124.821000px;}
.y225{bottom:125.059500px;}
.y1c6{bottom:129.522000px;}
.ybc{bottom:132.672000px;}
.y1ef{bottom:137.652000px;}
.y1a5{bottom:137.673000px;}
.y8c{bottom:137.739000px;}
.ye3{bottom:137.787000px;}
.y24d{bottom:137.832000px;}
.y132{bottom:138.073500px;}
.y62{bottom:141.477000px;}
.y17e{bottom:143.563500px;}
.y1fd{bottom:144.525000px;}
.y15a{bottom:147.237000px;}
.y224{bottom:147.253500px;}
.y10{bottom:149.548500px;}
.y1c5{bottom:151.938000px;}
.ybb{bottom:155.088000px;}
.y1ee{bottom:159.870000px;}
.y1a4{bottom:159.912000px;}
.y8b{bottom:160.045500px;}
.ye2{bottom:160.138500px;}
.y24c{bottom:160.230000px;}
.y131{bottom:160.489500px;}
.y10b{bottom:161.800500px;}
.y61{bottom:163.893000px;}
.yf{bottom:165.240000px;}
.y17d{bottom:165.979500px;}
.y223{bottom:169.596000px;}
.y159{bottom:169.653000px;}
.y1c4{bottom:174.354000px;}
.yba{bottom:177.504000px;}
.y1fc{bottom:180.391500px;}
.y1ed{bottom:182.088000px;}
.y1a3{bottom:182.149500px;}
.y8a{bottom:182.350500px;}
.ye1{bottom:182.490000px;}
.y24b{bottom:182.626500px;}
.y130{bottom:182.905500px;}
.y10a{bottom:184.216500px;}
.y60{bottom:186.309000px;}
.y17c{bottom:188.395500px;}
.y158{bottom:192.069000px;}
.ye{bottom:192.886500px;}
.y1c3{bottom:196.770000px;}
.y37{bottom:199.197000px;}
.yb9{bottom:199.920000px;}
.y1fb{bottom:202.806000px;}
.y222{bottom:203.235000px;}
.y1ec{bottom:204.306000px;}
.y1a2{bottom:204.388500px;}
.y89{bottom:204.804000px;}
.ye0{bottom:204.991500px;}
.y24a{bottom:205.024500px;}
.y12f{bottom:205.471500px;}
.y109{bottom:206.632500px;}
.yd{bottom:208.578000px;}
.y5f{bottom:208.725000px;}
.y17b{bottom:210.811500px;}
.y157{bottom:214.485000px;}
.y36{bottom:217.129500px;}
.y1c2{bottom:219.186000px;}
.yb8{bottom:222.336000px;}
.y1fa{bottom:225.222000px;}
.y221{bottom:225.429000px;}
.y1eb{bottom:226.522500px;}
.y1a1{bottom:226.626000px;}
.y249{bottom:227.421000px;}
.y108{bottom:229.048500px;}
.y5e{bottom:231.141000px;}
.y12e{bottom:232.371000px;}
.y17a{bottom:233.377500px;}
.y156{bottom:236.901000px;}
.y35{bottom:237.901500px;}
.yc{bottom:239.136000px;}
.y88{bottom:239.562000px;}
.ydf{bottom:240.216000px;}
.y1c1{bottom:241.602000px;}
.yb7{bottom:244.752000px;}
.y1f9{bottom:247.638000px;}
.y220{bottom:247.771500px;}
.y1ea{bottom:248.740500px;}
.y1a0{bottom:248.865000px;}
.y248{bottom:249.819000px;}
.y107{bottom:251.464500px;}
.y5d{bottom:253.557000px;}
.y155{bottom:259.317000px;}
.y87{bottom:261.867000px;}
.yde{bottom:262.569000px;}
.yb{bottom:263.793000px;}
.y1c0{bottom:264.018000px;}
.yb6{bottom:267.168000px;}
.y179{bottom:269.242500px;}
.y1f8{bottom:270.054000px;}
.y1e9{bottom:270.958500px;}
.y19f{bottom:271.104000px;}
.y247{bottom:272.215500px;}
.y106{bottom:273.880500px;}
.y5c{bottom:275.973000px;}
.y12d{bottom:278.697000px;}
.ya{bottom:279.484500px;}
.y21f{bottom:281.410500px;}
.y154{bottom:281.733000px;}
.y86{bottom:284.172000px;}
.ydd{bottom:284.920500px;}
.y1bf{bottom:286.434000px;}
.yb5{bottom:289.584000px;}
.y178{bottom:291.658500px;}
.y1f7{bottom:292.470000px;}
.y1e8{bottom:293.176500px;}
.y34{bottom:293.226000px;}
.y19e{bottom:293.341500px;}
.y246{bottom:294.613500px;}
.y9{bottom:295.174500px;}
.y105{bottom:296.296500px;}
.y5b{bottom:298.389000px;}
.y12c{bottom:301.113000px;}
.y21e{bottom:303.603000px;}
.y153{bottom:304.149000px;}
.y85{bottom:306.477000px;}
.ydc{bottom:307.272000px;}
.y1be{bottom:308.850000px;}
.y33{bottom:313.399500px;}
.y177{bottom:314.074500px;}
.y1f6{bottom:314.886000px;}
.y1e7{bottom:315.393000px;}
.y19d{bottom:315.580500px;}
.y245{bottom:317.010000px;}
.y104{bottom:318.712500px;}
.y8{bottom:319.833000px;}
.y5a{bottom:320.805000px;}
.yb4{bottom:323.289000px;}
.y12b{bottom:323.529000px;}
.y21d{bottom:325.797000px;}
.y152{bottom:326.565000px;}
.ydb{bottom:329.623500px;}
.y1bd{bottom:331.266000px;}
.y32{bottom:333.574500px;}
.y84{bottom:334.759500px;}
.y7{bottom:335.524500px;}
.y176{bottom:336.490500px;}
.y1f5{bottom:337.452000px;}
.yb3{bottom:337.486500px;}
.y1e6{bottom:337.611000px;}
.y19c{bottom:337.818000px;}
.y244{bottom:339.408000px;}
.y103{bottom:341.128500px;}
.y59{bottom:343.221000px;}
.y12a{bottom:345.945000px;}
.y21c{bottom:347.991000px;}
.y151{bottom:349.131000px;}
.yb2{bottom:351.682500px;}
.yda{bottom:351.976500px;}
.y1bc{bottom:353.682000px;}
.y31{bottom:353.748000px;}
.y175{bottom:358.906500px;}
.y1e5{bottom:359.829000px;}
.y19b{bottom:360.057000px;}
.y6{bottom:360.181500px;}
.y243{bottom:361.806000px;}
.yb1{bottom:361.812000px;}
.y102{bottom:363.544500px;}
.y58{bottom:365.637000px;}
.y129{bottom:368.361000px;}
.y21b{bottom:370.183500px;}
.y30{bottom:373.923000px;}
.yd9{bottom:374.328000px;}
.y5{bottom:375.873000px;}
.y1bb{bottom:376.098000px;}
.y83{bottom:379.423500px;}
.yb0{bottom:380.076000px;}
.y174{bottom:381.322500px;}
.y1e4{bottom:382.047000px;}
.y1f4{bottom:382.284000px;}
.y19a{bottom:382.296000px;}
.y242{bottom:384.202500px;}
.y150{bottom:384.996000px;}
.y101{bottom:385.960500px;}
.y57{bottom:388.053000px;}
.y128{bottom:390.777000px;}
.y4{bottom:391.563000px;}
.y21a{bottom:392.377500px;}
.y2f{bottom:394.096500px;}
.yaf{bottom:394.273500px;}
.yd8{bottom:396.679500px;}
.y1ba{bottom:398.514000px;}
.y82{bottom:401.728500px;}
.y173{bottom:403.738500px;}
.y1e3{bottom:404.263500px;}
.y199{bottom:404.533500px;}
.y241{bottom:406.600500px;}
.y14f{bottom:407.412000px;}
.y100{bottom:408.376500px;}
.yae{bottom:408.469500px;}
.y56{bottom:410.469000px;}
.y127{bottom:413.193000px;}
.y2e{bottom:414.271500px;}
.y219{bottom:414.720000px;}
.y3{bottom:416.221500px;}
.yd7{bottom:419.031000px;}
.y1b9{bottom:420.930000px;}
.yad{bottom:422.667000px;}
.y81{bottom:424.033500px;}
.y172{bottom:426.154500px;}
.y1e2{bottom:426.481500px;}
.y198{bottom:426.772500px;}
.y240{bottom:428.997000px;}
.y14e{bottom:429.828000px;}
.yff{bottom:430.792500px;}
.y2{bottom:431.913000px;}
.y55{bottom:432.885000px;}
.y2d{bottom:434.446500px;}
.y126{bottom:435.607500px;}
.y1f3{bottom:435.873000px;}
.yac{bottom:436.863000px;}
.yd6{bottom:441.382500px;}
.y1b8{bottom:443.346000px;}
.y80{bottom:446.338500px;}
.y1{bottom:447.603000px;}
.y218{bottom:448.359000px;}
.y171{bottom:448.570500px;}
.y1e1{bottom:448.699500px;}
.y197{bottom:449.010000px;}
.yab{bottom:451.060500px;}
.y23f{bottom:451.395000px;}
.y14d{bottom:452.244000px;}
.yfe{bottom:453.358500px;}
.y2c{bottom:454.620000px;}
.y54{bottom:455.301000px;}
.y125{bottom:458.023500px;}
.y1f2{bottom:458.289000px;}
.yaa{bottom:461.188500px;}
.yd5{bottom:463.884000px;}
.y1b7{bottom:465.760500px;}
.y7f{bottom:468.643500px;}
.y217{bottom:470.553000px;}
.y1e0{bottom:470.917500px;}
.y170{bottom:470.986500px;}
.y196{bottom:471.249000px;}
.y23e{bottom:473.791500px;}
.y2b{bottom:474.795000px;}
.y53{bottom:477.717000px;}
.y124{bottom:480.439500px;}
.y1f1{bottom:480.705000px;}
.y14c{bottom:481.743000px;}
.ya9{bottom:484.687500px;}
.yfd{bottom:487.729500px;}
.y1b6{bottom:488.176500px;}
.y7e{bottom:490.948500px;}
.y216{bottom:492.745500px;}
.y1df{bottom:493.134000px;}
.y16f{bottom:493.402500px;}
.y195{bottom:493.488000px;}
.y2a{bottom:494.968500px;}
.y14b{bottom:495.940500px;}
.y23d{bottom:496.189500px;}
.yd4{bottom:499.108500px;}
.y52{bottom:500.133000px;}
.y123{bottom:502.855500px;}
.ya8{bottom:505.012500px;}
.y1f0{bottom:509.098500px;}
.y14a{bottom:510.136500px;}
.yfc{bottom:510.145500px;}
.y1b5{bottom:510.592500px;}
.y7d{bottom:513.253500px;}
.y215{bottom:514.939500px;}
.y29{bottom:515.143500px;}
.y1de{bottom:515.352000px;}
.y194{bottom:515.725500px;}
.y16e{bottom:515.818500px;}
.y23c{bottom:518.586000px;}
.yd3{bottom:521.461500px;}
.y51{bottom:522.547500px;}
.ya7{bottom:525.336000px;}
.y122{bottom:525.421500px;}
.yfb{bottom:532.561500px;}
.y1b4{bottom:533.008500px;}
.y149{bottom:533.635500px;}
.y28{bottom:535.317000px;}
.y7c{bottom:535.558500px;}
.y214{bottom:537.132000px;}
.y1dd{bottom:537.570000px;}
.y193{bottom:537.964500px;}
.y16d{bottom:538.234500px;}
.y23b{bottom:540.984000px;}
.yd2{bottom:543.813000px;}
.y50{bottom:544.963500px;}
.ya6{bottom:545.659500px;}
.y148{bottom:553.960500px;}
.y121{bottom:554.203500px;}
.yfa{bottom:554.977500px;}
.y1b3{bottom:555.424500px;}
.y27{bottom:555.492000px;}
.y7b{bottom:557.863500px;}
.y213{bottom:559.326000px;}
.y1dc{bottom:559.788000px;}
.y192{bottom:560.202000px;}
.y16c{bottom:560.799000px;}
.y23a{bottom:563.380500px;}
.ya5{bottom:565.983000px;}
.yd1{bottom:566.164500px;}
.y4f{bottom:567.379500px;}
.y120{bottom:568.401000px;}
.y147{bottom:574.284000px;}
.y26{bottom:575.667000px;}
.yf9{bottom:577.392000px;}
.y1b2{bottom:577.840500px;}
.y7a{bottom:580.168500px;}
.y212{bottom:581.518500px;}
.y1db{bottom:582.004500px;}
.y191{bottom:582.441000px;}
.y11f{bottom:582.597000px;}
.y239{bottom:585.778500px;}
.ya4{bottom:586.306500px;}
.yd0{bottom:588.516000px;}
.y4e{bottom:589.795500px;}
.y146{bottom:594.607500px;}
.y25{bottom:595.840500px;}
.y16b{bottom:596.665500px;}
.yf8{bottom:599.808000px;}
.y1b1{bottom:600.256500px;}
.y79{bottom:602.473500px;}
.y211{bottom:603.712500px;}
.y1da{bottom:604.222500px;}
.y190{bottom:604.680000px;}
.ya3{bottom:605.584500px;}
.y11e{bottom:606.096000px;}
.y238{bottom:608.176500px;}
.ycf{bottom:610.869000px;}
.y4d{bottom:612.211500px;}
.y24{bottom:616.015500px;}
.y145{bottom:616.276500px;}
.y16a{bottom:619.080000px;}
.yf7{bottom:622.224000px;}
.y1b0{bottom:622.672500px;}
.y78{bottom:624.778500px;}
.y210{bottom:625.905000px;}
.y11d{bottom:626.419500px;}
.y1d9{bottom:626.440500px;}
.y18f{bottom:626.917500px;}
.ya2{bottom:627.103500px;}
.y237{bottom:630.573000px;}
.yce{bottom:633.220500px;}
.y4c{bottom:634.627500px;}
.y23{bottom:636.189000px;}
.y144{bottom:642.811500px;}
.yf6{bottom:644.640000px;}
.y1af{bottom:645.088500px;}
.y11c{bottom:646.744500px;}
.y77{bottom:647.083500px;}
.ya1{bottom:647.428500px;}
.y20f{bottom:648.099000px;}
.y1d8{bottom:648.658500px;}
.y169{bottom:648.718500px;}
.y18e{bottom:649.156500px;}
.y236{bottom:652.971000px;}
.ycd{bottom:655.572000px;}
.y22{bottom:656.364000px;}
.y4b{bottom:657.043500px;}
.y143{bottom:659.248500px;}
.y168{bottom:662.914500px;}
.yf5{bottom:667.056000px;}
.y1ae{bottom:667.504500px;}
.ya0{bottom:667.752000px;}
.y11b{bottom:668.413500px;}
.y76{bottom:669.388500px;}
.y20e{bottom:670.291500px;}
.y1d7{bottom:670.876500px;}
.y18d{bottom:671.394000px;}
.y235{bottom:675.367500px;}
.y21{bottom:676.537500px;}
.y167{bottom:677.112000px;}
.ycc{bottom:677.923500px;}
.y4a{bottom:679.459500px;}
.y9f{bottom:688.075500px;}
.yf4{bottom:689.622000px;}
.y1ad{bottom:689.920500px;}
.y75{bottom:691.693500px;}
.y20d{bottom:692.485500px;}
.y1d6{bottom:693.093000px;}
.y142{bottom:695.631000px;}
.y20{bottom:696.712500px;}
.y234{bottom:697.765500px;}
.y11a{bottom:698.068500px;}
.y18c{bottom:699.610500px;}
.ycb{bottom:700.276500px;}
.y166{bottom:700.611000px;}
.y49{bottom:701.875500px;}
.y9e{bottom:707.353500px;}
.y141{bottom:709.828500px;}
.y1ac{bottom:712.336500px;}
.y74{bottom:714.000000px;}
.y119{bottom:714.507000px;}
.y20c{bottom:714.678000px;}
.y1d5{bottom:715.311000px;}
.y233{bottom:720.162000px;}
.y165{bottom:720.934500px;}
.yca{bottom:722.628000px;}
.yf3{bottom:723.993000px;}
.y48{bottom:724.291500px;}
.y1f{bottom:726.487500px;}
.y9d{bottom:728.872500px;}
.y140{bottom:733.359000px;}
.y1ab{bottom:734.752500px;}
.y73{bottom:736.305000px;}
.y20b{bottom:736.872000px;}
.y1d4{bottom:737.529000px;}
.y232{bottom:742.560000px;}
.y164{bottom:742.603500px;}
.y18b{bottom:743.274000px;}
.yc9{bottom:744.979500px;}
.yf1{bottom:746.409000px;}
.y47{bottom:746.707500px;}
.y9c{bottom:749.196000px;}
.yf2{bottom:752.349000px;}
.y13f{bottom:753.682500px;}
.y1aa{bottom:757.168500px;}
.y72{bottom:758.610000px;}
.y163{bottom:759.042000px;}
.y20a{bottom:759.066000px;}
.y1d3{bottom:759.747000px;}
.y231{bottom:764.956500px;}
.y18a{bottom:765.511500px;}
.yc8{bottom:767.331000px;}
.yf0{bottom:768.825000px;}
.y46{bottom:769.123500px;}
.y9b{bottom:769.519500px;}
.y118{bottom:773.710500px;}
.y13e{bottom:774.006000px;}
.y1a9{bottom:779.584500px;}
.y71{bottom:780.915000px;}
.y209{bottom:781.258500px;}
.y1d2{bottom:781.963500px;}
.y1e{bottom:782.992500px;}
.y117{bottom:784.312500px;}
.y230{bottom:787.354500px;}
.y189{bottom:787.750500px;}
.y162{bottom:788.697000px;}
.yc7{bottom:789.682500px;}
.y9a{bottom:789.844500px;}
.yef{bottom:791.241000px;}
.y45{bottom:791.539500px;}
.y13d{bottom:794.329500px;}
.y1d{bottom:800.925000px;}
.y1a8{bottom:802.000500px;}
.y70{bottom:803.220000px;}
.y208{bottom:803.452500px;}
.y1d1{bottom:804.181500px;}
.y161{bottom:805.135500px;}
.y22f{bottom:809.751000px;}
.y188{bottom:809.988000px;}
.y99{bottom:810.168000px;}
.yc6{bottom:812.035500px;}
.yee{bottom:813.805500px;}
.y44{bottom:813.955500px;}
.y1c{bottom:813.975000px;}
.y116{bottom:815.919000px;}
.y13c{bottom:815.998500px;}
.y1a7{bottom:824.416500px;}
.y115{bottom:824.961000px;}
.y6f{bottom:825.525000px;}
.y207{bottom:825.795000px;}
.y1d0{bottom:826.399500px;}
.y98{bottom:830.491500px;}
.y22e{bottom:832.149000px;}
.y187{bottom:832.227000px;}
.yed{bottom:833.383500px;}
.y1b{bottom:833.802000px;}
.yc5{bottom:834.387000px;}
.y43{bottom:836.371500px;}
.y13b{bottom:842.533500px;}
.y160{bottom:842.691000px;}
.y1a6{bottom:846.832500px;}
.y6e{bottom:847.830000px;}
.y1cf{bottom:848.617500px;}
.y97{bottom:850.815000px;}
.y1a{bottom:851.734500px;}
.y186{bottom:854.466000px;}
.y22d{bottom:854.547000px;}
.y114{bottom:856.483500px;}
.y15f{bottom:856.887000px;}
.yc4{bottom:856.888500px;}
.y42{bottom:858.787500px;}
.y13a{bottom:858.972000px;}
.y206{bottom:859.434000px;}
.y19{bottom:864.784500px;}
.y113{bottom:865.608000px;}
.yec{bottom:869.248500px;}
.y6d{bottom:870.135000px;}
.y1ce{bottom:870.834000px;}
.y15e{bottom:871.084500px;}
.y96{bottom:871.138500px;}
.y22c{bottom:876.943500px;}
.y41{bottom:881.203500px;}
.y205{bottom:881.628000px;}
.y185{bottom:884.103000px;}
.y18{bottom:884.610000px;}
.y95{bottom:891.463500px;}
.yeb{bottom:891.664500px;}
.yc3{bottom:892.113000px;}
.y6c{bottom:892.440000px;}
.y1cd{bottom:893.052000px;}
.y15d{bottom:894.583500px;}
.y112{bottom:897.130500px;}
.y139{bottom:898.159500px;}
.y184{bottom:898.299000px;}
.y22b{bottom:899.341500px;}
.y40{bottom:903.619500px;}
.y204{bottom:903.970500px;}
.y111{bottom:906.256500px;}
.y17{bottom:908.202000px;}
.y94{bottom:911.787000px;}
.y138{bottom:912.355500px;}
.y183{bottom:912.496500px;}
.yea{bottom:914.080500px;}
.yc2{bottom:914.464500px;}
.y6b{bottom:914.745000px;}
.y15c{bottom:914.907000px;}
.y1cc{bottom:915.270000px;}
.y22a{bottom:921.738000px;}
.y3f{bottom:926.035500px;}
.y16{bottom:929.124000px;}
.y93{bottom:932.110500px;}
.y137{bottom:935.230500px;}
.y182{bottom:935.995500px;}
.ye9{bottom:936.496500px;}
.yc1{bottom:936.816000px;}
.y6a{bottom:937.050000px;}
.y1cb{bottom:937.488000px;}
.y203{bottom:937.609500px;}
.y110{bottom:937.779000px;}
.y229{bottom:944.136000px;}
.y10f{bottom:946.903500px;}
.y3e{bottom:948.451500px;}
.y15{bottom:950.046000px;}
.y92{bottom:952.434000px;}
.y136{bottom:955.554000px;}
.y181{bottom:956.319000px;}
.ye8{bottom:958.912500px;}
.yc0{bottom:959.169000px;}
.y69{bottom:959.355000px;}
.y1ca{bottom:959.704500px;}
.y202{bottom:959.802000px;}
.y228{bottom:966.532500px;}
.y3d{bottom:970.867500px;}
.y91{bottom:972.757500px;}
.y135{bottom:975.879000px;}
.y180{bottom:977.988000px;}
.y10e{bottom:978.426000px;}
.ye7{bottom:981.328500px;}
.ybf{bottom:981.520500px;}
.y68{bottom:981.660000px;}
.y1c9{bottom:981.922500px;}
.y201{bottom:981.996000px;}
.y10d{bottom:987.550500px;}
.y227{bottom:988.930500px;}
.y3c{bottom:993.283500px;}
.y14{bottom:993.880500px;}
.y90{bottom:994.426500px;}
.y134{bottom:997.548000px;}
.ye6{bottom:1003.744500px;}
.ybe{bottom:1003.872000px;}
.y67{bottom:1003.965000px;}
.y1c8{bottom:1004.140500px;}
.y200{bottom:1004.188500px;}
.y10c{bottom:1009.219500px;}
.y226{bottom:1011.327000px;}
.y3b{bottom:1015.699500px;}
.y8f{bottom:1024.081500px;}
.ye5{bottom:1026.160500px;}
.ybd{bottom:1026.223500px;}
.y66{bottom:1026.270000px;}
.y1c7{bottom:1026.358500px;}
.y1ff{bottom:1026.382500px;}
.y13{bottom:1030.045500px;}
.y8e{bottom:1040.520000px;}
.y3a{bottom:1044.093000px;}
.y65{bottom:1048.576500px;}
.y12{bottom:1066.209000px;}
.h13{height:22.501181px;}
.h8{height:25.464576px;}
.hd{height:30.001288px;}
.hc{height:31.465786px;}
.h12{height:31.830720px;}
.h14{height:32.144544px;}
.h18{height:32.470187px;}
.hf{height:38.196864px;}
.h2{height:38.573453px;}
.h1{height:40.187405px;}
.h3{height:40.456397px;}
.hb{height:42.859105px;}
.h1e{height:43.380864px;}
.h1b{height:43.710864px;}
.h1d{height:43.716864px;}
.h1c{height:43.876742px;}
.h1a{height:43.882742px;}
.h24{height:44.443673px;}
.h21{height:44.988576px;}
.h20{height:44.994576px;}
.h11{height:45.239635px;}
.h10{height:45.245635px;}
.h22{height:46.472766px;}
.h23{height:46.898766px;}
.ha{height:46.930948px;}
.h16{height:48.723269px;}
.h1f{height:49.374864px;}
.h17{height:51.017635px;}
.he{height:53.941862px;}
.h5{height:55.742388px;}
.h7{height:55.748388px;}
.h15{height:56.230187px;}
.h19{height:58.047370px;}
.h6{height:60.321370px;}
.h9{height:62.932022px;}
.h4{height:93.369828px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x7{left:51.024000px;}
.x1{left:52.303500px;}
.x3{left:56.787000px;}
.xe{left:59.758500px;}
.xf{left:63.457500px;}
.x10{left:68.598000px;}
.x2{left:75.843000px;}
.x5{left:270.574500px;}
.x4{left:276.463500px;}
.x1a{left:279.736500px;}
.x18{left:282.441000px;}
.x8{left:285.198000px;}
.x9{left:288.897000px;}
.x19{left:292.827000px;}
.x6{left:294.165000px;}
.xa{left:295.818000px;}
.xb{left:298.879500px;}
.x1c{left:300.027000px;}
.x1b{left:309.190500px;}
.xc{left:328.974000px;}
.x13{left:339.123000px;}
.x12{left:363.463500px;}
.x11{left:368.467500px;}
.x15{left:402.166500px;}
.x14{left:425.395500px;}
.x16{left:492.985500px;}
.xd{left:597.151500px;}
.x17{left:625.495500px;}
.x1d{left:797.415000px;}
@media print{
.v8{vertical-align:-39.269333pt;}
.vc{vertical-align:-34.565333pt;}
.va{vertical-align:-22.458667pt;}
.v7{vertical-align:-21.120000pt;}
.v2{vertical-align:-17.354667pt;}
.v4{vertical-align:-14.464000pt;}
.v5{vertical-align:-8.730667pt;}
.v0{vertical-align:0.000000pt;}
.vd{vertical-align:1.877333pt;}
.v9{vertical-align:4.901333pt;}
.vb{vertical-align:9.936000pt;}
.v3{vertical-align:17.360000pt;}
.v6{vertical-align:21.120000pt;}
.v1{vertical-align:23.141333pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000939pt;}
.ls54{letter-spacing:0.001067pt;}
.ls39{letter-spacing:0.001717pt;}
.ls4a{letter-spacing:0.002304pt;}
.ls45{letter-spacing:0.002347pt;}
.ls20{letter-spacing:0.002517pt;}
.ls33{letter-spacing:0.002703pt;}
.ls7d{letter-spacing:0.002885pt;}
.ls81{letter-spacing:0.003371pt;}
.ls4{letter-spacing:0.003376pt;}
.ls3b{letter-spacing:1.915657pt;}
.ls70{letter-spacing:2.652544pt;}
.ls21{letter-spacing:2.654677pt;}
.ls0{letter-spacing:2.655136pt;}
.ls24{letter-spacing:2.655590pt;}
.ls28{letter-spacing:2.655667pt;}
.ls2e{letter-spacing:2.655733pt;}
.ls5d{letter-spacing:2.655872pt;}
.ls27{letter-spacing:2.656171pt;}
.ls3a{letter-spacing:2.656256pt;}
.ls29{letter-spacing:2.657050pt;}
.ls26{letter-spacing:2.657237pt;}
.ls23{letter-spacing:2.657835pt;}
.ls25{letter-spacing:2.657860pt;}
.ls71{letter-spacing:2.657877pt;}
.ls22{letter-spacing:2.658910pt;}
.ls2a{letter-spacing:2.659806pt;}
.ls1f{letter-spacing:2.660011pt;}
.ls2{letter-spacing:2.660469pt;}
.ls55{letter-spacing:2.660924pt;}
.ls30{letter-spacing:2.661067pt;}
.ls5c{letter-spacing:2.661205pt;}
.ls36{letter-spacing:4.070761pt;}
.ls80{letter-spacing:6.106144pt;}
.ls82{letter-spacing:6.110034pt;}
.ls41{letter-spacing:6.637952pt;}
.ls44{letter-spacing:6.639147pt;}
.ls52{letter-spacing:6.643285pt;}
.ls42{letter-spacing:6.644480pt;}
.ls64{letter-spacing:7.581952pt;}
.ls65{letter-spacing:7.583147pt;}
.ls3{letter-spacing:7.973205pt;}
.ls40{letter-spacing:9.161813pt;}
.ls51{letter-spacing:9.167147pt;}
.ls6c{letter-spacing:9.695977pt;}
.ls6d{letter-spacing:9.700811pt;}
.ls53{letter-spacing:9.887317pt;}
.ls43{letter-spacing:9.892651pt;}
.ls5a{letter-spacing:10.223147pt;}
.ls59{letter-spacing:10.227285pt;}
.ls48{letter-spacing:10.276811pt;}
.ls67{letter-spacing:10.626399pt;}
.ls68{letter-spacing:10.628811pt;}
.ls66{letter-spacing:10.831317pt;}
.ls3c{letter-spacing:10.998443pt;}
.ls2d{letter-spacing:11.962144pt;}
.ls10{letter-spacing:12.265685pt;}
.ls77{letter-spacing:12.356352pt;}
.ls15{letter-spacing:12.468352pt;}
.ls2f{letter-spacing:12.924083pt;}
.ls73{letter-spacing:13.316352pt;}
.ls7f{letter-spacing:13.377417pt;}
.ls7e{letter-spacing:13.380352pt;}
.ls6f{letter-spacing:13.382750pt;}
.ls5b{letter-spacing:13.471317pt;}
.ls2c{letter-spacing:14.175477pt;}
.lsf{letter-spacing:14.543019pt;}
.lse{letter-spacing:14.548352pt;}
.ls37{letter-spacing:14.751019pt;}
.ls35{letter-spacing:14.950776pt;}
.ls6e{letter-spacing:14.959019pt;}
.ls47{letter-spacing:15.012822pt;}
.lsc{letter-spacing:15.220352pt;}
.ls14{letter-spacing:15.396352pt;}
.ls76{letter-spacing:15.439019pt;}
.ls75{letter-spacing:15.444352pt;}
.ls5{letter-spacing:15.780352pt;}
.ls31{letter-spacing:15.948083pt;}
.lsb{letter-spacing:16.063019pt;}
.ls7{letter-spacing:16.271019pt;}
.ls8{letter-spacing:16.484352pt;}
.lsd{letter-spacing:17.327019pt;}
.ls32{letter-spacing:17.551467pt;}
.ls9{letter-spacing:17.588352pt;}
.lsa{letter-spacing:17.593685pt;}
.ls11{letter-spacing:17.732352pt;}
.ls34{letter-spacing:17.894750pt;}
.ls7a{letter-spacing:18.177877pt;}
.ls2b{letter-spacing:18.364544pt;}
.ls7b{letter-spacing:18.716544pt;}
.ls46{letter-spacing:18.767477pt;}
.ls13{letter-spacing:18.975019pt;}
.ls74{letter-spacing:19.441877pt;}
.ls72{letter-spacing:20.092544pt;}
.ls78{letter-spacing:20.105685pt;}
.ls12{letter-spacing:20.217685pt;}
.ls79{letter-spacing:21.140352pt;}
.ls38{letter-spacing:22.617685pt;}
.ls7c{letter-spacing:29.090400pt;}
.ls62{letter-spacing:72.478754pt;}
.ls63{letter-spacing:86.376192pt;}
.ls58{letter-spacing:92.424192pt;}
.ls57{letter-spacing:92.425421pt;}
.ls56{letter-spacing:94.942754pt;}
.ls6b{letter-spacing:102.738859pt;}
.ls6a{letter-spacing:102.740087pt;}
.ls69{letter-spacing:102.743151pt;}
.ls61{letter-spacing:124.653525pt;}
.ls60{letter-spacing:127.172087pt;}
.ls3e{letter-spacing:127.486754pt;}
.ls3f{letter-spacing:127.490859pt;}
.ls3d{letter-spacing:127.492087pt;}
.ls49{letter-spacing:128.253525pt;}
.ls4b{letter-spacing:128.254677pt;}
.ls4d{letter-spacing:130.772087pt;}
.ls4c{letter-spacing:142.152192pt;}
.ls4e{letter-spacing:144.676087pt;}
.ls4f{letter-spacing:145.276484pt;}
.ls50{letter-spacing:145.281818pt;}
.ls5f{letter-spacing:153.997525pt;}
.ls5e{letter-spacing:156.516087pt;}
.ls1b{letter-spacing:331.677909pt;}
.ls1e{letter-spacing:396.298445pt;}
.ls1a{letter-spacing:571.100843pt;}
.ls19{letter-spacing:660.671078pt;}
.ls17{letter-spacing:714.882859pt;}
.ls16{letter-spacing:719.220087pt;}
.ls1d{letter-spacing:738.490342pt;}
.ls18{letter-spacing:762.716484pt;}
.ls1c{letter-spacing:1163.713143pt;}
.ws110{word-spacing:-46.715413pt;}
.wsa9{word-spacing:-40.960034pt;}
.ws69{word-spacing:-35.036706pt;}
.ws92{word-spacing:-29.925069pt;}
.wsa2{word-spacing:-28.054869pt;}
.wsb{word-spacing:-0.074388pt;}
.ws5e{word-spacing:-0.063761pt;}
.ws1e{word-spacing:-0.058182pt;}
.ws88{word-spacing:-0.053134pt;}
.ws6{word-spacing:-0.047821pt;}
.wsb0{word-spacing:-0.039851pt;}
.wsc2{word-spacing:-0.031881pt;}
.ws29{word-spacing:0.000000pt;}
.ws28{word-spacing:7.401526pt;}
.ws26{word-spacing:8.517334pt;}
.ws27{word-spacing:8.517834pt;}
.wse7{word-spacing:8.960007pt;}
.wsaf{word-spacing:9.122603pt;}
.wsa1{word-spacing:9.123669pt;}
.wsb6{word-spacing:9.125077pt;}
.ws6b{word-spacing:9.125803pt;}
.ws9f{word-spacing:9.126485pt;}
.wsa0{word-spacing:9.127936pt;}
.wsbd{word-spacing:9.129003pt;}
.wse6{word-spacing:9.425462pt;}
.ws64{word-spacing:9.516339pt;}
.wsd6{word-spacing:9.517056pt;}
.wsd7{word-spacing:9.518857pt;}
.ws59{word-spacing:9.774554pt;}
.ws7d{word-spacing:10.298190pt;}
.ws25{word-spacing:10.302627pt;}
.ws79{word-spacing:10.414554pt;}
.ws81{word-spacing:10.472736pt;}
.wsf7{word-spacing:10.530918pt;}
.wsc4{word-spacing:10.930970pt;}
.ws9b{word-spacing:10.934170pt;}
.wsc5{word-spacing:10.934537pt;}
.wsdd{word-spacing:10.936858pt;}
.wsdc{word-spacing:10.938675pt;}
.wsc7{word-spacing:10.945886pt;}
.ws9e{word-spacing:10.946569pt;}
.wsae{word-spacing:10.948489pt;}
.wsbc{word-spacing:10.950801pt;}
.ws1{word-spacing:10.950963pt;}
.ws9d{word-spacing:10.951902pt;}
.wsab{word-spacing:10.953131pt;}
.wsb9{word-spacing:10.953967pt;}
.wsdb{word-spacing:10.954027pt;}
.wsba{word-spacing:10.956134pt;}
.wsb8{word-spacing:10.958720pt;}
.wsb4{word-spacing:10.961280pt;}
.wsb2{word-spacing:10.961382pt;}
.wsb3{word-spacing:10.961963pt;}
.wsb5{word-spacing:10.962645pt;}
.wsbb{word-spacing:10.967970pt;}
.ws9c{word-spacing:10.970155pt;}
.wsc3{word-spacing:10.970368pt;}
.wsda{word-spacing:10.973030pt;}
.wsf1{word-spacing:11.112737pt;}
.wsd2{word-spacing:11.170918pt;}
.wsd3{word-spacing:11.214494pt;}
.wsd4{word-spacing:11.229100pt;}
.ws87{word-spacing:11.278875pt;}
.ws60{word-spacing:11.345464pt;}
.ws18{word-spacing:11.461828pt;}
.wsf3{word-spacing:11.520010pt;}
.ws117{word-spacing:11.578191pt;}
.wsf0{word-spacing:11.636373pt;}
.wsbf{word-spacing:11.810919pt;}
.ws6e{word-spacing:11.869101pt;}
.ws75{word-spacing:11.887847pt;}
.ws76{word-spacing:11.927283pt;}
.ws58{word-spacing:12.160010pt;}
.ws23{word-spacing:12.167655pt;}
.ws44{word-spacing:12.218192pt;}
.ws4c{word-spacing:12.276374pt;}
.ws103{word-spacing:12.308941pt;}
.ws104{word-spacing:12.321348pt;}
.ws105{word-spacing:12.321866pt;}
.wsf4{word-spacing:12.334556pt;}
.ws4b{word-spacing:12.392738pt;}
.wsf8{word-spacing:12.450919pt;}
.ws10a{word-spacing:12.509101pt;}
.wsc1{word-spacing:12.625465pt;}
.wse{word-spacing:12.683647pt;}
.ws80{word-spacing:12.741829pt;}
.wsf6{word-spacing:12.800011pt;}
.ws1d{word-spacing:12.858193pt;}
.wsd5{word-spacing:12.908499pt;}
.ws19{word-spacing:12.916374pt;}
.ws114{word-spacing:13.032738pt;}
.ws5b{word-spacing:13.090920pt;}
.ws6c{word-spacing:13.149102pt;}
.wsce{word-spacing:13.207284pt;}
.ws3{word-spacing:13.245713pt;}
.ws4{word-spacing:13.246362pt;}
.ws5{word-spacing:13.246797pt;}
.ws0{word-spacing:13.246916pt;}
.ws43{word-spacing:13.265466pt;}
.ws91{word-spacing:13.266297pt;}
.ws12d{word-spacing:13.317860pt;}
.ws11a{word-spacing:13.318849pt;}
.ws11b{word-spacing:13.319265pt;}
.ws143{word-spacing:13.319685pt;}
.ws13c{word-spacing:13.319964pt;}
.ws140{word-spacing:13.319978pt;}
.ws127{word-spacing:13.320213pt;}
.ws128{word-spacing:13.320445pt;}
.ws11f{word-spacing:13.320569pt;}
.ws132{word-spacing:13.320595pt;}
.ws121{word-spacing:13.320625pt;}
.ws144{word-spacing:13.320660pt;}
.ws13b{word-spacing:13.320697pt;}
.ws130{word-spacing:13.320828pt;}
.ws12a{word-spacing:13.320940pt;}
.ws11c{word-spacing:13.321032pt;}
.ws13d{word-spacing:13.321230pt;}
.wsef{word-spacing:13.321287pt;}
.ws126{word-spacing:13.321289pt;}
.ws135{word-spacing:13.321335pt;}
.ws12b{word-spacing:13.321472pt;}
.ws137{word-spacing:13.321504pt;}
.ws134{word-spacing:13.321808pt;}
.ws13a{word-spacing:13.321833pt;}
.ws13f{word-spacing:13.321991pt;}
.ws138{word-spacing:13.322067pt;}
.ws11d{word-spacing:13.322090pt;}
.ws12c{word-spacing:13.322303pt;}
.ws118{word-spacing:13.322802pt;}
.ws122{word-spacing:13.322852pt;}
.ws139{word-spacing:13.322953pt;}
.ws13e{word-spacing:13.322963pt;}
.ws120{word-spacing:13.322970pt;}
.ws125{word-spacing:13.323408pt;}
.ws11e{word-spacing:13.323472pt;}
.ws133{word-spacing:13.323499pt;}
.ws129{word-spacing:13.323599pt;}
.ws2b{word-spacing:13.323647pt;}
.ws131{word-spacing:13.324932pt;}
.ws12e{word-spacing:13.324975pt;}
.ws123{word-spacing:13.325469pt;}
.ws142{word-spacing:13.325945pt;}
.ws136{word-spacing:13.325958pt;}
.ws124{word-spacing:13.325994pt;}
.ws22{word-spacing:13.333751pt;}
.ws36{word-spacing:13.440011pt;}
.ws3f{word-spacing:13.498193pt;}
.ws70{word-spacing:13.614557pt;}
.wse2{word-spacing:13.847284pt;}
.wsc{word-spacing:13.905466pt;}
.ws5f{word-spacing:13.963648pt;}
.ws15{word-spacing:14.021830pt;}
.wsfd{word-spacing:14.065348pt;}
.wsfe{word-spacing:14.065866pt;}
.wsfc{word-spacing:14.080012pt;}
.ws74{word-spacing:14.138194pt;}
.ws4a{word-spacing:14.196375pt;}
.ws84{word-spacing:14.254557pt;}
.wsbe{word-spacing:14.312739pt;}
.ws3e{word-spacing:14.370921pt;}
.ws71{word-spacing:14.429103pt;}
.ws21{word-spacing:14.487285pt;}
.ws89{word-spacing:14.545467pt;}
.wsa{word-spacing:14.601284pt;}
.wsf5{word-spacing:14.603649pt;}
.ws100{word-spacing:14.609348pt;}
.ws56{word-spacing:14.661830pt;}
.ws8f{word-spacing:14.720012pt;}
.ws8a{word-spacing:14.778194pt;}
.ws7a{word-spacing:14.836376pt;}
.ws10b{word-spacing:14.855199pt;}
.ws1c{word-spacing:14.894558pt;}
.ws85{word-spacing:14.952740pt;}
.ws2c{word-spacing:15.010922pt;}
.ws72{word-spacing:15.069103pt;}
.wsee{word-spacing:15.127285pt;}
.ws41{word-spacing:15.185467pt;}
.ws20{word-spacing:15.243649pt;}
.ws32{word-spacing:15.301831pt;}
.ws3d{word-spacing:15.360013pt;}
.ws50{word-spacing:15.418195pt;}
.ws39{word-spacing:15.476377pt;}
.wsa8{word-spacing:15.510991pt;}
.wsaa{word-spacing:15.534558pt;}
.ws78{word-spacing:15.592740pt;}
.ws6d{word-spacing:15.650922pt;}
.ws1f{word-spacing:15.709104pt;}
.wscd{word-spacing:15.767286pt;}
.ws47{word-spacing:15.820517pt;}
.ws45{word-spacing:15.825468pt;}
.ws46{word-spacing:15.832213pt;}
.ws5c{word-spacing:15.883650pt;}
.wse8{word-spacing:15.941831pt;}
.wse0{word-spacing:15.995806pt;}
.ws35{word-spacing:16.000013pt;}
.wse1{word-spacing:16.012015pt;}
.wsc0{word-spacing:16.058195pt;}
.ws57{word-spacing:16.116377pt;}
.ws2d{word-spacing:16.174559pt;}
.ws86{word-spacing:16.189948pt;}
.ws52{word-spacing:16.232741pt;}
.ws2e{word-spacing:16.349105pt;}
.ws2f{word-spacing:16.407286pt;}
.wsfa{word-spacing:16.420809pt;}
.wse5{word-spacing:16.465468pt;}
.ws38{word-spacing:16.581832pt;}
.ws106{word-spacing:16.593878pt;}
.ws7f{word-spacing:16.640014pt;}
.wsf2{word-spacing:16.698196pt;}
.ws33{word-spacing:16.756378pt;}
.ws7c{word-spacing:16.814559pt;}
.ws3c{word-spacing:16.930923pt;}
.ws83{word-spacing:16.989105pt;}
.ws82{word-spacing:17.105469pt;}
.ws49{word-spacing:17.163651pt;}
.ws12f{word-spacing:17.188131pt;}
.ws141{word-spacing:17.190209pt;}
.ws119{word-spacing:17.193465pt;}
.ws8b{word-spacing:17.221833pt;}
.ws42{word-spacing:17.280014pt;}
.wscf{word-spacing:17.338196pt;}
.ws3b{word-spacing:17.396378pt;}
.ws5a{word-spacing:17.454560pt;}
.ws109{word-spacing:17.492809pt;}
.ws30{word-spacing:17.512742pt;}
.ws11{word-spacing:17.570924pt;}
.ws111{word-spacing:17.602232pt;}
.ws4d{word-spacing:17.629106pt;}
.ws73{word-spacing:17.661815pt;}
.ws4e{word-spacing:17.687287pt;}
.wsd0{word-spacing:17.745469pt;}
.ws4f{word-spacing:17.803651pt;}
.ws107{word-spacing:17.842879pt;}
.ws40{word-spacing:17.861833pt;}
.ws2a{word-spacing:17.920015pt;}
.ws34{word-spacing:17.978197pt;}
.ws62{word-spacing:18.036379pt;}
.ws61{word-spacing:18.094561pt;}
.wse3{word-spacing:18.119211pt;}
.ws102{word-spacing:18.145348pt;}
.ws37{word-spacing:18.152742pt;}
.ws31{word-spacing:18.210924pt;}
.ws63{word-spacing:18.327288pt;}
.wsff{word-spacing:18.337878pt;}
.ws48{word-spacing:18.385470pt;}
.ws77{word-spacing:18.443652pt;}
.ws7b{word-spacing:18.501834pt;}
.ws7e{word-spacing:18.618197pt;}
.ws6f{word-spacing:18.676379pt;}
.ws54{word-spacing:18.734561pt;}
.wse4{word-spacing:18.759211pt;}
.ws10f{word-spacing:18.792743pt;}
.ws112{word-spacing:18.796545pt;}
.ws53{word-spacing:18.909107pt;}
.ws8d{word-spacing:19.039200pt;}
.wsa6{word-spacing:19.058381pt;}
.ws3a{word-spacing:19.083652pt;}
.ws10c{word-spacing:19.132545pt;}
.wseb{word-spacing:19.172809pt;}
.wsed{word-spacing:19.175199pt;}
.ws10{word-spacing:19.200016pt;}
.wse9{word-spacing:19.258198pt;}
.ws14{word-spacing:19.432743pt;}
.ws16{word-spacing:19.490925pt;}
.ws55{word-spacing:19.723653pt;}
.ws8e{word-spacing:19.898198pt;}
.wsfb{word-spacing:19.956380pt;}
.ws10d{word-spacing:20.014562pt;}
.ws51{word-spacing:20.130926pt;}
.wsa3{word-spacing:20.189108pt;}
.ws101{word-spacing:20.225878pt;}
.wsea{word-spacing:20.247290pt;}
.ws113{word-spacing:20.363653pt;}
.wsf{word-spacing:20.421835pt;}
.ws17{word-spacing:20.480017pt;}
.ws5d{word-spacing:20.605402pt;}
.ws8c{word-spacing:20.654563pt;}
.ws10e{word-spacing:21.061836pt;}
.wsa4{word-spacing:21.120018pt;}
.wsd{word-spacing:21.178199pt;}
.wsf9{word-spacing:21.236809pt;}
.ws13{word-spacing:21.469109pt;}
.ws1a{word-spacing:21.585473pt;}
.ws1b{word-spacing:21.605209pt;}
.ws108{word-spacing:22.089628pt;}
.ws116{word-spacing:22.458201pt;}
.ws90{word-spacing:22.574564pt;}
.wsd1{word-spacing:22.714142pt;}
.ws115{word-spacing:23.040019pt;}
.wsa7{word-spacing:23.326752pt;}
.ws12{word-spacing:24.145475pt;}
.wsec{word-spacing:24.148809pt;}
.ws24{word-spacing:25.466283pt;}
.ws9{word-spacing:25.599990pt;}
.wsa5{word-spacing:25.839399pt;}
.ws2{word-spacing:26.539221pt;}
.ws7{word-spacing:38.809118pt;}
.ws8{word-spacing:38.844036pt;}
.wscb{word-spacing:72.444399pt;}
.wsdf{word-spacing:102.708796pt;}
.wsc6{word-spacing:110.721732pt;}
.wsad{word-spacing:128.220399pt;}
.wsac{word-spacing:128.225732pt;}
.wsc8{word-spacing:140.065732pt;}
.ws67{word-spacing:145.136128pt;}
.wsb7{word-spacing:163.738419pt;}
.ws68{word-spacing:168.090112pt;}
.ws6a{word-spacing:179.567104pt;}
.wsb1{word-spacing:181.527757pt;}
.ws66{word-spacing:191.044096pt;}
.ws65{word-spacing:202.521088pt;}
.ws95{word-spacing:203.622383pt;}
.ws98{word-spacing:235.136290pt;}
.ws97{word-spacing:235.710140pt;}
.ws94{word-spacing:239.680367pt;}
.wsc9{word-spacing:251.202662pt;}
.wsd8{word-spacing:274.061005pt;}
.ws96{word-spacing:279.848738pt;}
.wsd9{word-spacing:297.912806pt;}
.ws9a{word-spacing:301.655023pt;}
.wsde{word-spacing:342.051405pt;}
.wscc{word-spacing:379.930957pt;}
.wsca{word-spacing:446.449690pt;}
.ws93{word-spacing:539.728333pt;}
.ws99{word-spacing:542.262835pt;}
._30{margin-left:-7.066835pt;}
._c{margin-left:-5.951019pt;}
._4{margin-left:-2.975509pt;}
._0{margin-left:-1.434624pt;}
._6{width:1.248656pt;}
._a{width:2.744508pt;}
._5{width:4.212252pt;}
._5c{width:5.230895pt;}
._21{width:10.460811pt;}
._7{width:11.419712pt;}
._5a{width:13.381829pt;}
._57{width:16.414069pt;}
._9{width:17.502413pt;}
._8{width:19.131251pt;}
._5b{width:26.764922pt;}
._3{width:28.054869pt;}
._2{width:34.428331pt;}
._1{width:38.960694pt;}
._44{width:89.759642pt;}
._48{width:105.203806pt;}
._46{width:106.305638pt;}
._3b{width:107.548979pt;}
._45{width:108.840141pt;}
._4f{width:111.231181pt;}
._54{width:116.013261pt;}
._4d{width:117.208781pt;}
._56{width:119.169434pt;}
._27{width:121.943040pt;}
._4e{width:127.633715pt;}
._4a{width:129.594368pt;}
._3d{width:130.502963pt;}
._55{width:133.085286pt;}
._4c{width:135.811072pt;}
._3e{width:140.258406pt;}
._2d{width:141.426876pt;}
._2e{width:143.851247pt;}
._43{width:163.786240pt;}
._35{width:166.408926pt;}
._10{width:176.984781pt;}
._34{width:179.034308pt;}
._3a{width:181.575578pt;}
._4b{width:183.251012pt;}
._f{width:185.927270pt;}
._23{width:190.135501pt;}
._47{width:191.809229pt;}
._11{width:195.443610pt;}
._e{width:200.369152pt;}
._14{width:202.521088pt;}
._49{width:203.898590pt;}
._3c{width:209.598566pt;}
._25{width:212.968806pt;}
._38{width:233.078579pt;}
._41{width:234.369741pt;}
._40{width:240.825549pt;}
._37{width:242.068890pt;}
._39{width:251.585229pt;}
._42{width:252.876390pt;}
._36{width:256.462950pt;}
._3f{width:257.754112pt;}
._50{width:260.719002pt;}
._2a{width:266.887885pt;}
._51{width:269.804954pt;}
._29{width:275.878195pt;}
._52{width:280.803738pt;}
._26{width:284.269619pt;}
._53{width:286.159667pt;}
._2b{width:287.976858pt;}
._28{width:290.320077pt;}
._2f{width:292.328550pt;}
._32{width:307.895347pt;}
._33{width:311.695974pt;}
._2c{width:315.282534pt;}
._24{width:330.321050pt;}
._13{width:438.468915pt;}
._31{width:570.454323pt;}
._d{width:592.882278pt;}
._1c{width:640.843895pt;}
._18{width:643.486144pt;}
._22{width:653.375590pt;}
._1b{width:654.903859pt;}
._15{width:657.928026pt;}
._1d{width:666.812100pt;}
._12{width:684.372928pt;}
._19{width:696.710694pt;}
._17{width:740.983296pt;}
._1e{width:776.810534pt;}
._16{width:789.999616pt;}
._1f{width:802.490304pt;}
._20{width:825.817395pt;}
._1a{width:843.032883pt;}
._58{width:1541.263497pt;}
._59{width:1544.008004pt;}
._b{width:1567.855497pt;}
.fsa{font-size:27.895467pt;}
.fs5{font-size:31.880533pt;}
.fs3{font-size:37.193600pt;}
.fs9{font-size:39.850667pt;}
.fs4{font-size:42.507200pt;}
.fs0{font-size:47.820800pt;}
.fs8{font-size:53.133867pt;}
.fs7{font-size:58.181867pt;}
.fsb{font-size:58.447467pt;}
.fs2{font-size:63.761067pt;}
.fs6{font-size:74.387733pt;}
.fs1{font-size:116.894933pt;}
.y0{bottom:0.000000pt;}
.y39{bottom:37.178667pt;}
.y64{bottom:43.446667pt;}
.y38{bottom:47.805333pt;}
.y8d{bottom:102.608000pt;}
.ye4{bottom:102.609333pt;}
.y133{bottom:102.806667pt;}
.y11{bottom:104.373333pt;}
.y63{bottom:105.832000pt;}
.y17f{bottom:107.686667pt;}
.y1fe{bottom:108.409333pt;}
.y15b{bottom:110.952000pt;}
.y225{bottom:111.164000pt;}
.y1c6{bottom:115.130667pt;}
.ybc{bottom:117.930667pt;}
.y1ef{bottom:122.357333pt;}
.y1a5{bottom:122.376000pt;}
.y8c{bottom:122.434667pt;}
.ye3{bottom:122.477333pt;}
.y24d{bottom:122.517333pt;}
.y132{bottom:122.732000pt;}
.y62{bottom:125.757333pt;}
.y17e{bottom:127.612000pt;}
.y1fd{bottom:128.466667pt;}
.y15a{bottom:130.877333pt;}
.y224{bottom:130.892000pt;}
.y10{bottom:132.932000pt;}
.y1c5{bottom:135.056000pt;}
.ybb{bottom:137.856000pt;}
.y1ee{bottom:142.106667pt;}
.y1a4{bottom:142.144000pt;}
.y8b{bottom:142.262667pt;}
.ye2{bottom:142.345333pt;}
.y24c{bottom:142.426667pt;}
.y131{bottom:142.657333pt;}
.y10b{bottom:143.822667pt;}
.y61{bottom:145.682667pt;}
.yf{bottom:146.880000pt;}
.y17d{bottom:147.537333pt;}
.y223{bottom:150.752000pt;}
.y159{bottom:150.802667pt;}
.y1c4{bottom:154.981333pt;}
.yba{bottom:157.781333pt;}
.y1fc{bottom:160.348000pt;}
.y1ed{bottom:161.856000pt;}
.y1a3{bottom:161.910667pt;}
.y8a{bottom:162.089333pt;}
.ye1{bottom:162.213333pt;}
.y24b{bottom:162.334667pt;}
.y130{bottom:162.582667pt;}
.y10a{bottom:163.748000pt;}
.y60{bottom:165.608000pt;}
.y17c{bottom:167.462667pt;}
.y158{bottom:170.728000pt;}
.ye{bottom:171.454667pt;}
.y1c3{bottom:174.906667pt;}
.y37{bottom:177.064000pt;}
.yb9{bottom:177.706667pt;}
.y1fb{bottom:180.272000pt;}
.y222{bottom:180.653333pt;}
.y1ec{bottom:181.605333pt;}
.y1a2{bottom:181.678667pt;}
.y89{bottom:182.048000pt;}
.ye0{bottom:182.214667pt;}
.y24a{bottom:182.244000pt;}
.y12f{bottom:182.641333pt;}
.y109{bottom:183.673333pt;}
.yd{bottom:185.402667pt;}
.y5f{bottom:185.533333pt;}
.y17b{bottom:187.388000pt;}
.y157{bottom:190.653333pt;}
.y36{bottom:193.004000pt;}
.y1c2{bottom:194.832000pt;}
.yb8{bottom:197.632000pt;}
.y1fa{bottom:200.197333pt;}
.y221{bottom:200.381333pt;}
.y1eb{bottom:201.353333pt;}
.y1a1{bottom:201.445333pt;}
.y249{bottom:202.152000pt;}
.y108{bottom:203.598667pt;}
.y5e{bottom:205.458667pt;}
.y12e{bottom:206.552000pt;}
.y17a{bottom:207.446667pt;}
.y156{bottom:210.578667pt;}
.y35{bottom:211.468000pt;}
.yc{bottom:212.565333pt;}
.y88{bottom:212.944000pt;}
.ydf{bottom:213.525333pt;}
.y1c1{bottom:214.757333pt;}
.yb7{bottom:217.557333pt;}
.y1f9{bottom:220.122667pt;}
.y220{bottom:220.241333pt;}
.y1ea{bottom:221.102667pt;}
.y1a0{bottom:221.213333pt;}
.y248{bottom:222.061333pt;}
.y107{bottom:223.524000pt;}
.y5d{bottom:225.384000pt;}
.y155{bottom:230.504000pt;}
.y87{bottom:232.770667pt;}
.yde{bottom:233.394667pt;}
.yb{bottom:234.482667pt;}
.y1c0{bottom:234.682667pt;}
.yb6{bottom:237.482667pt;}
.y179{bottom:239.326667pt;}
.y1f8{bottom:240.048000pt;}
.y1e9{bottom:240.852000pt;}
.y19f{bottom:240.981333pt;}
.y247{bottom:241.969333pt;}
.y106{bottom:243.449333pt;}
.y5c{bottom:245.309333pt;}
.y12d{bottom:247.730667pt;}
.ya{bottom:248.430667pt;}
.y21f{bottom:250.142667pt;}
.y154{bottom:250.429333pt;}
.y86{bottom:252.597333pt;}
.ydd{bottom:253.262667pt;}
.y1bf{bottom:254.608000pt;}
.yb5{bottom:257.408000pt;}
.y178{bottom:259.252000pt;}
.y1f7{bottom:259.973333pt;}
.y1e8{bottom:260.601333pt;}
.y34{bottom:260.645333pt;}
.y19e{bottom:260.748000pt;}
.y246{bottom:261.878667pt;}
.y9{bottom:262.377333pt;}
.y105{bottom:263.374667pt;}
.y5b{bottom:265.234667pt;}
.y12c{bottom:267.656000pt;}
.y21e{bottom:269.869333pt;}
.y153{bottom:270.354667pt;}
.y85{bottom:272.424000pt;}
.ydc{bottom:273.130667pt;}
.y1be{bottom:274.533333pt;}
.y33{bottom:278.577333pt;}
.y177{bottom:279.177333pt;}
.y1f6{bottom:279.898667pt;}
.y1e7{bottom:280.349333pt;}
.y19d{bottom:280.516000pt;}
.y245{bottom:281.786667pt;}
.y104{bottom:283.300000pt;}
.y8{bottom:284.296000pt;}
.y5a{bottom:285.160000pt;}
.yb4{bottom:287.368000pt;}
.y12b{bottom:287.581333pt;}
.y21d{bottom:289.597333pt;}
.y152{bottom:290.280000pt;}
.ydb{bottom:292.998667pt;}
.y1bd{bottom:294.458667pt;}
.y32{bottom:296.510667pt;}
.y84{bottom:297.564000pt;}
.y7{bottom:298.244000pt;}
.y176{bottom:299.102667pt;}
.y1f5{bottom:299.957333pt;}
.yb3{bottom:299.988000pt;}
.y1e6{bottom:300.098667pt;}
.y19c{bottom:300.282667pt;}
.y244{bottom:301.696000pt;}
.y103{bottom:303.225333pt;}
.y59{bottom:305.085333pt;}
.y12a{bottom:307.506667pt;}
.y21c{bottom:309.325333pt;}
.y151{bottom:310.338667pt;}
.yb2{bottom:312.606667pt;}
.yda{bottom:312.868000pt;}
.y1bc{bottom:314.384000pt;}
.y31{bottom:314.442667pt;}
.y175{bottom:319.028000pt;}
.y1e5{bottom:319.848000pt;}
.y19b{bottom:320.050667pt;}
.y6{bottom:320.161333pt;}
.y243{bottom:321.605333pt;}
.yb1{bottom:321.610667pt;}
.y102{bottom:323.150667pt;}
.y58{bottom:325.010667pt;}
.y129{bottom:327.432000pt;}
.y21b{bottom:329.052000pt;}
.y30{bottom:332.376000pt;}
.yd9{bottom:332.736000pt;}
.y5{bottom:334.109333pt;}
.y1bb{bottom:334.309333pt;}
.y83{bottom:337.265333pt;}
.yb0{bottom:337.845333pt;}
.y174{bottom:338.953333pt;}
.y1e4{bottom:339.597333pt;}
.y1f4{bottom:339.808000pt;}
.y19a{bottom:339.818667pt;}
.y242{bottom:341.513333pt;}
.y150{bottom:342.218667pt;}
.y101{bottom:343.076000pt;}
.y57{bottom:344.936000pt;}
.y128{bottom:347.357333pt;}
.y4{bottom:348.056000pt;}
.y21a{bottom:348.780000pt;}
.y2f{bottom:350.308000pt;}
.yaf{bottom:350.465333pt;}
.yd8{bottom:352.604000pt;}
.y1ba{bottom:354.234667pt;}
.y82{bottom:357.092000pt;}
.y173{bottom:358.878667pt;}
.y1e3{bottom:359.345333pt;}
.y199{bottom:359.585333pt;}
.y241{bottom:361.422667pt;}
.y14f{bottom:362.144000pt;}
.y100{bottom:363.001333pt;}
.yae{bottom:363.084000pt;}
.y56{bottom:364.861333pt;}
.y127{bottom:367.282667pt;}
.y2e{bottom:368.241333pt;}
.y219{bottom:368.640000pt;}
.y3{bottom:369.974667pt;}
.yd7{bottom:372.472000pt;}
.y1b9{bottom:374.160000pt;}
.yad{bottom:375.704000pt;}
.y81{bottom:376.918667pt;}
.y172{bottom:378.804000pt;}
.y1e2{bottom:379.094667pt;}
.y198{bottom:379.353333pt;}
.y240{bottom:381.330667pt;}
.y14e{bottom:382.069333pt;}
.yff{bottom:382.926667pt;}
.y2{bottom:383.922667pt;}
.y55{bottom:384.786667pt;}
.y2d{bottom:386.174667pt;}
.y126{bottom:387.206667pt;}
.y1f3{bottom:387.442667pt;}
.yac{bottom:388.322667pt;}
.yd6{bottom:392.340000pt;}
.y1b8{bottom:394.085333pt;}
.y80{bottom:396.745333pt;}
.y1{bottom:397.869333pt;}
.y218{bottom:398.541333pt;}
.y171{bottom:398.729333pt;}
.y1e1{bottom:398.844000pt;}
.y197{bottom:399.120000pt;}
.yab{bottom:400.942667pt;}
.y23f{bottom:401.240000pt;}
.y14d{bottom:401.994667pt;}
.yfe{bottom:402.985333pt;}
.y2c{bottom:404.106667pt;}
.y54{bottom:404.712000pt;}
.y125{bottom:407.132000pt;}
.y1f2{bottom:407.368000pt;}
.yaa{bottom:409.945333pt;}
.yd5{bottom:412.341333pt;}
.y1b7{bottom:414.009333pt;}
.y7f{bottom:416.572000pt;}
.y217{bottom:418.269333pt;}
.y1e0{bottom:418.593333pt;}
.y170{bottom:418.654667pt;}
.y196{bottom:418.888000pt;}
.y23e{bottom:421.148000pt;}
.y2b{bottom:422.040000pt;}
.y53{bottom:424.637333pt;}
.y124{bottom:427.057333pt;}
.y1f1{bottom:427.293333pt;}
.y14c{bottom:428.216000pt;}
.ya9{bottom:430.833333pt;}
.yfd{bottom:433.537333pt;}
.y1b6{bottom:433.934667pt;}
.y7e{bottom:436.398667pt;}
.y216{bottom:437.996000pt;}
.y1df{bottom:438.341333pt;}
.y16f{bottom:438.580000pt;}
.y195{bottom:438.656000pt;}
.y2a{bottom:439.972000pt;}
.y14b{bottom:440.836000pt;}
.y23d{bottom:441.057333pt;}
.yd4{bottom:443.652000pt;}
.y52{bottom:444.562667pt;}
.y123{bottom:446.982667pt;}
.ya8{bottom:448.900000pt;}
.y1f0{bottom:452.532000pt;}
.y14a{bottom:453.454667pt;}
.yfc{bottom:453.462667pt;}
.y1b5{bottom:453.860000pt;}
.y7d{bottom:456.225333pt;}
.y215{bottom:457.724000pt;}
.y29{bottom:457.905333pt;}
.y1de{bottom:458.090667pt;}
.y194{bottom:458.422667pt;}
.y16e{bottom:458.505333pt;}
.y23c{bottom:460.965333pt;}
.yd3{bottom:463.521333pt;}
.y51{bottom:464.486667pt;}
.ya7{bottom:466.965333pt;}
.y122{bottom:467.041333pt;}
.yfb{bottom:473.388000pt;}
.y1b4{bottom:473.785333pt;}
.y149{bottom:474.342667pt;}
.y28{bottom:475.837333pt;}
.y7c{bottom:476.052000pt;}
.y214{bottom:477.450667pt;}
.y1dd{bottom:477.840000pt;}
.y193{bottom:478.190667pt;}
.y16d{bottom:478.430667pt;}
.y23b{bottom:480.874667pt;}
.yd2{bottom:483.389333pt;}
.y50{bottom:484.412000pt;}
.ya6{bottom:485.030667pt;}
.y148{bottom:492.409333pt;}
.y121{bottom:492.625333pt;}
.yfa{bottom:493.313333pt;}
.y1b3{bottom:493.710667pt;}
.y27{bottom:493.770667pt;}
.y7b{bottom:495.878667pt;}
.y213{bottom:497.178667pt;}
.y1dc{bottom:497.589333pt;}
.y192{bottom:497.957333pt;}
.y16c{bottom:498.488000pt;}
.y23a{bottom:500.782667pt;}
.ya5{bottom:503.096000pt;}
.yd1{bottom:503.257333pt;}
.y4f{bottom:504.337333pt;}
.y120{bottom:505.245333pt;}
.y147{bottom:510.474667pt;}
.y26{bottom:511.704000pt;}
.yf9{bottom:513.237333pt;}
.y1b2{bottom:513.636000pt;}
.y7a{bottom:515.705333pt;}
.y212{bottom:516.905333pt;}
.y1db{bottom:517.337333pt;}
.y191{bottom:517.725333pt;}
.y11f{bottom:517.864000pt;}
.y239{bottom:520.692000pt;}
.ya4{bottom:521.161333pt;}
.yd0{bottom:523.125333pt;}
.y4e{bottom:524.262667pt;}
.y146{bottom:528.540000pt;}
.y25{bottom:529.636000pt;}
.y16b{bottom:530.369333pt;}
.yf8{bottom:533.162667pt;}
.y1b1{bottom:533.561333pt;}
.y79{bottom:535.532000pt;}
.y211{bottom:536.633333pt;}
.y1da{bottom:537.086667pt;}
.y190{bottom:537.493333pt;}
.ya3{bottom:538.297333pt;}
.y11e{bottom:538.752000pt;}
.y238{bottom:540.601333pt;}
.ycf{bottom:542.994667pt;}
.y4d{bottom:544.188000pt;}
.y24{bottom:547.569333pt;}
.y145{bottom:547.801333pt;}
.y16a{bottom:550.293333pt;}
.yf7{bottom:553.088000pt;}
.y1b0{bottom:553.486667pt;}
.y78{bottom:555.358667pt;}
.y210{bottom:556.360000pt;}
.y11d{bottom:556.817333pt;}
.y1d9{bottom:556.836000pt;}
.y18f{bottom:557.260000pt;}
.ya2{bottom:557.425333pt;}
.y237{bottom:560.509333pt;}
.yce{bottom:562.862667pt;}
.y4c{bottom:564.113333pt;}
.y23{bottom:565.501333pt;}
.y144{bottom:571.388000pt;}
.yf6{bottom:573.013333pt;}
.y1af{bottom:573.412000pt;}
.y11c{bottom:574.884000pt;}
.y77{bottom:575.185333pt;}
.ya1{bottom:575.492000pt;}
.y20f{bottom:576.088000pt;}
.y1d8{bottom:576.585333pt;}
.y169{bottom:576.638667pt;}
.y18e{bottom:577.028000pt;}
.y236{bottom:580.418667pt;}
.ycd{bottom:582.730667pt;}
.y22{bottom:583.434667pt;}
.y4b{bottom:584.038667pt;}
.y143{bottom:585.998667pt;}
.y168{bottom:589.257333pt;}
.yf5{bottom:592.938667pt;}
.y1ae{bottom:593.337333pt;}
.ya0{bottom:593.557333pt;}
.y11b{bottom:594.145333pt;}
.y76{bottom:595.012000pt;}
.y20e{bottom:595.814667pt;}
.y1d7{bottom:596.334667pt;}
.y18d{bottom:596.794667pt;}
.y235{bottom:600.326667pt;}
.y21{bottom:601.366667pt;}
.y167{bottom:601.877333pt;}
.ycc{bottom:602.598667pt;}
.y4a{bottom:603.964000pt;}
.y9f{bottom:611.622667pt;}
.yf4{bottom:612.997333pt;}
.y1ad{bottom:613.262667pt;}
.y75{bottom:614.838667pt;}
.y20d{bottom:615.542667pt;}
.y1d6{bottom:616.082667pt;}
.y142{bottom:618.338667pt;}
.y20{bottom:619.300000pt;}
.y234{bottom:620.236000pt;}
.y11a{bottom:620.505333pt;}
.y18c{bottom:621.876000pt;}
.ycb{bottom:622.468000pt;}
.y166{bottom:622.765333pt;}
.y49{bottom:623.889333pt;}
.y9e{bottom:628.758667pt;}
.y141{bottom:630.958667pt;}
.y1ac{bottom:633.188000pt;}
.y74{bottom:634.666667pt;}
.y119{bottom:635.117333pt;}
.y20c{bottom:635.269333pt;}
.y1d5{bottom:635.832000pt;}
.y233{bottom:640.144000pt;}
.y165{bottom:640.830667pt;}
.yca{bottom:642.336000pt;}
.yf3{bottom:643.549333pt;}
.y48{bottom:643.814667pt;}
.y1f{bottom:645.766667pt;}
.y9d{bottom:647.886667pt;}
.y140{bottom:651.874667pt;}
.y1ab{bottom:653.113333pt;}
.y73{bottom:654.493333pt;}
.y20b{bottom:654.997333pt;}
.y1d4{bottom:655.581333pt;}
.y232{bottom:660.053333pt;}
.y164{bottom:660.092000pt;}
.y18b{bottom:660.688000pt;}
.yc9{bottom:662.204000pt;}
.yf1{bottom:663.474667pt;}
.y47{bottom:663.740000pt;}
.y9c{bottom:665.952000pt;}
.yf2{bottom:668.754667pt;}
.y13f{bottom:669.940000pt;}
.y1aa{bottom:673.038667pt;}
.y72{bottom:674.320000pt;}
.y163{bottom:674.704000pt;}
.y20a{bottom:674.725333pt;}
.y1d3{bottom:675.330667pt;}
.y231{bottom:679.961333pt;}
.y18a{bottom:680.454667pt;}
.yc8{bottom:682.072000pt;}
.yf0{bottom:683.400000pt;}
.y46{bottom:683.665333pt;}
.y9b{bottom:684.017333pt;}
.y118{bottom:687.742667pt;}
.y13e{bottom:688.005333pt;}
.y1a9{bottom:692.964000pt;}
.y71{bottom:694.146667pt;}
.y209{bottom:694.452000pt;}
.y1d2{bottom:695.078667pt;}
.y1e{bottom:695.993333pt;}
.y117{bottom:697.166667pt;}
.y230{bottom:699.870667pt;}
.y189{bottom:700.222667pt;}
.y162{bottom:701.064000pt;}
.yc7{bottom:701.940000pt;}
.y9a{bottom:702.084000pt;}
.yef{bottom:703.325333pt;}
.y45{bottom:703.590667pt;}
.y13d{bottom:706.070667pt;}
.y1d{bottom:711.933333pt;}
.y1a8{bottom:712.889333pt;}
.y70{bottom:713.973333pt;}
.y208{bottom:714.180000pt;}
.y1d1{bottom:714.828000pt;}
.y161{bottom:715.676000pt;}
.y22f{bottom:719.778667pt;}
.y188{bottom:719.989333pt;}
.y99{bottom:720.149333pt;}
.yc6{bottom:721.809333pt;}
.yee{bottom:723.382667pt;}
.y44{bottom:723.516000pt;}
.y1c{bottom:723.533333pt;}
.y116{bottom:725.261333pt;}
.y13c{bottom:725.332000pt;}
.y1a7{bottom:732.814667pt;}
.y115{bottom:733.298667pt;}
.y6f{bottom:733.800000pt;}
.y207{bottom:734.040000pt;}
.y1d0{bottom:734.577333pt;}
.y98{bottom:738.214667pt;}
.y22e{bottom:739.688000pt;}
.y187{bottom:739.757333pt;}
.yed{bottom:740.785333pt;}
.y1b{bottom:741.157333pt;}
.yc5{bottom:741.677333pt;}
.y43{bottom:743.441333pt;}
.y13b{bottom:748.918667pt;}
.y160{bottom:749.058667pt;}
.y1a6{bottom:752.740000pt;}
.y6e{bottom:753.626667pt;}
.y1cf{bottom:754.326667pt;}
.y97{bottom:756.280000pt;}
.y1a{bottom:757.097333pt;}
.y186{bottom:759.525333pt;}
.y22d{bottom:759.597333pt;}
.y114{bottom:761.318667pt;}
.y15f{bottom:761.677333pt;}
.yc4{bottom:761.678667pt;}
.y42{bottom:763.366667pt;}
.y13a{bottom:763.530667pt;}
.y206{bottom:763.941333pt;}
.y19{bottom:768.697333pt;}
.y113{bottom:769.429333pt;}
.yec{bottom:772.665333pt;}
.y6d{bottom:773.453333pt;}
.y1ce{bottom:774.074667pt;}
.y15e{bottom:774.297333pt;}
.y96{bottom:774.345333pt;}
.y22c{bottom:779.505333pt;}
.y41{bottom:783.292000pt;}
.y205{bottom:783.669333pt;}
.y185{bottom:785.869333pt;}
.y18{bottom:786.320000pt;}
.y95{bottom:792.412000pt;}
.yeb{bottom:792.590667pt;}
.yc3{bottom:792.989333pt;}
.y6c{bottom:793.280000pt;}
.y1cd{bottom:793.824000pt;}
.y15d{bottom:795.185333pt;}
.y112{bottom:797.449333pt;}
.y139{bottom:798.364000pt;}
.y184{bottom:798.488000pt;}
.y22b{bottom:799.414667pt;}
.y40{bottom:803.217333pt;}
.y204{bottom:803.529333pt;}
.y111{bottom:805.561333pt;}
.y17{bottom:807.290667pt;}
.y94{bottom:810.477333pt;}
.y138{bottom:810.982667pt;}
.y183{bottom:811.108000pt;}
.yea{bottom:812.516000pt;}
.yc2{bottom:812.857333pt;}
.y6b{bottom:813.106667pt;}
.y15c{bottom:813.250667pt;}
.y1cc{bottom:813.573333pt;}
.y22a{bottom:819.322667pt;}
.y3f{bottom:823.142667pt;}
.y16{bottom:825.888000pt;}
.y93{bottom:828.542667pt;}
.y137{bottom:831.316000pt;}
.y182{bottom:831.996000pt;}
.ye9{bottom:832.441333pt;}
.yc1{bottom:832.725333pt;}
.y6a{bottom:832.933333pt;}
.y1cb{bottom:833.322667pt;}
.y203{bottom:833.430667pt;}
.y110{bottom:833.581333pt;}
.y229{bottom:839.232000pt;}
.y10f{bottom:841.692000pt;}
.y3e{bottom:843.068000pt;}
.y15{bottom:844.485333pt;}
.y92{bottom:846.608000pt;}
.y136{bottom:849.381333pt;}
.y181{bottom:850.061333pt;}
.ye8{bottom:852.366667pt;}
.yc0{bottom:852.594667pt;}
.y69{bottom:852.760000pt;}
.y1ca{bottom:853.070667pt;}
.y202{bottom:853.157333pt;}
.y228{bottom:859.140000pt;}
.y3d{bottom:862.993333pt;}
.y91{bottom:864.673333pt;}
.y135{bottom:867.448000pt;}
.y180{bottom:869.322667pt;}
.y10e{bottom:869.712000pt;}
.ye7{bottom:872.292000pt;}
.ybf{bottom:872.462667pt;}
.y68{bottom:872.586667pt;}
.y1c9{bottom:872.820000pt;}
.y201{bottom:872.885333pt;}
.y10d{bottom:877.822667pt;}
.y227{bottom:879.049333pt;}
.y3c{bottom:882.918667pt;}
.y14{bottom:883.449333pt;}
.y90{bottom:883.934667pt;}
.y134{bottom:886.709333pt;}
.ye6{bottom:892.217333pt;}
.ybe{bottom:892.330667pt;}
.y67{bottom:892.413333pt;}
.y1c8{bottom:892.569333pt;}
.y200{bottom:892.612000pt;}
.y10c{bottom:897.084000pt;}
.y226{bottom:898.957333pt;}
.y3b{bottom:902.844000pt;}
.y8f{bottom:910.294667pt;}
.ye5{bottom:912.142667pt;}
.ybd{bottom:912.198667pt;}
.y66{bottom:912.240000pt;}
.y1c7{bottom:912.318667pt;}
.y1ff{bottom:912.340000pt;}
.y13{bottom:915.596000pt;}
.y8e{bottom:924.906667pt;}
.y3a{bottom:928.082667pt;}
.y65{bottom:932.068000pt;}
.y12{bottom:947.741333pt;}
.h13{height:20.001050pt;}
.h8{height:22.635179pt;}
.hd{height:26.667811pt;}
.hc{height:27.969587pt;}
.h12{height:28.293973pt;}
.h14{height:28.572928pt;}
.h18{height:28.862389pt;}
.hf{height:33.952768pt;}
.h2{height:34.287514pt;}
.h1{height:35.722138pt;}
.h3{height:35.961242pt;}
.hb{height:38.096982pt;}
.h1e{height:38.560768pt;}
.h1b{height:38.854101pt;}
.h1d{height:38.859435pt;}
.h1c{height:39.001549pt;}
.h1a{height:39.006882pt;}
.h24{height:39.505487pt;}
.h21{height:39.989845pt;}
.h20{height:39.995179pt;}
.h11{height:40.213009pt;}
.h10{height:40.218342pt;}
.h22{height:41.309125pt;}
.h23{height:41.687792pt;}
.ha{height:41.716398pt;}
.h16{height:43.309573pt;}
.h1f{height:43.888768pt;}
.h17{height:45.349009pt;}
.he{height:47.948322pt;}
.h5{height:49.548789pt;}
.h7{height:49.554123pt;}
.h15{height:49.982389pt;}
.h19{height:51.597662pt;}
.h6{height:53.618996pt;}
.h9{height:55.939575pt;}
.h4{height:82.995403pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x7{left:45.354667pt;}
.x1{left:46.492000pt;}
.x3{left:50.477333pt;}
.xe{left:53.118667pt;}
.xf{left:56.406667pt;}
.x10{left:60.976000pt;}
.x2{left:67.416000pt;}
.x5{left:240.510667pt;}
.x4{left:245.745333pt;}
.x1a{left:248.654667pt;}
.x18{left:251.058667pt;}
.x8{left:253.509333pt;}
.x9{left:256.797333pt;}
.x19{left:260.290667pt;}
.x6{left:261.480000pt;}
.xa{left:262.949333pt;}
.xb{left:265.670667pt;}
.x1c{left:266.690667pt;}
.x1b{left:274.836000pt;}
.xc{left:292.421333pt;}
.x13{left:301.442667pt;}
.x12{left:323.078667pt;}
.x11{left:327.526667pt;}
.x15{left:357.481333pt;}
.x14{left:378.129333pt;}
.x16{left:438.209333pt;}
.xd{left:530.801333pt;}
.x17{left:555.996000pt;}
.x1d{left:708.813333pt;}
}




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