
    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_71d14da76f47f2b73cb1b473.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_a760549afc986a0f78ffce83.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.869629;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_16eb7201a680e37a28b8b15e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.682129;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_89a5274eb961acb715d3f1cb.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.856934;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_d1354e4c192f24d6394913b2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.104004;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_314a9fa7552cafa5caea8e3d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v6{vertical-align:-27.360000px;}
.v7{vertical-align:-21.600000px;}
.v2{vertical-align:-18.720000px;}
.v4{vertical-align:-14.400000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:24.373440px;}
.v5{vertical-align:27.048960px;}
.v1{vertical-align:33.135840px;}
.ls50{letter-spacing:-4.294080px;}
.ls48{letter-spacing:-3.974400px;}
.ls14{letter-spacing:-3.666240px;}
.ls32{letter-spacing:-3.510720px;}
.ls17{letter-spacing:-3.502080px;}
.ls45{letter-spacing:-3.444480px;}
.ls63{letter-spacing:-3.326400px;}
.lsd{letter-spacing:-3.179520px;}
.ls20{letter-spacing:-3.119040px;}
.ls52{letter-spacing:-2.903040px;}
.ls19{letter-spacing:-2.900160px;}
.ls2f{letter-spacing:-2.848320px;}
.ls11{letter-spacing:-2.797920px;}
.ls46{letter-spacing:-2.681280px;}
.ls34{letter-spacing:-2.583360px;}
.lsc{letter-spacing:-2.450880px;}
.ls49{letter-spacing:-2.419200px;}
.ls3f{letter-spacing:-2.358720px;}
.ls35{letter-spacing:-2.352960px;}
.ls53{letter-spacing:-2.252160px;}
.ls41{letter-spacing:-2.243520px;}
.ls2e{letter-spacing:-2.079360px;}
.ls30{letter-spacing:-2.053440px;}
.lsa{letter-spacing:-1.948320px;}
.ls4f{letter-spacing:-1.935360px;}
.lsb{letter-spacing:-1.929600px;}
.ls5b{letter-spacing:-1.920960px;}
.ls16{letter-spacing:-1.915200px;}
.ls2c{letter-spacing:-1.874880px;}
.ls24{letter-spacing:-1.805760px;}
.ls1d{letter-spacing:-1.751040px;}
.lse{letter-spacing:-1.722240px;}
.ls21{letter-spacing:-1.696320px;}
.ls9{letter-spacing:-1.663200px;}
.ls37{letter-spacing:-1.641600px;}
.ls2b{letter-spacing:-1.632960px;}
.ls2d{letter-spacing:-1.457280px;}
.ls3d{letter-spacing:-1.451520px;}
.ls12{letter-spacing:-1.422720px;}
.ls51{letter-spacing:-1.391040px;}
.ls1f{letter-spacing:-1.368000px;}
.lsf{letter-spacing:-1.336320px;}
.ls31{letter-spacing:-1.324800px;}
.ls23{letter-spacing:-1.313280px;}
.ls18{letter-spacing:-1.258560px;}
.ls7{letter-spacing:-1.188000px;}
.ls3c{letter-spacing:-1.126080px;}
.ls36{letter-spacing:-1.094400px;}
.ls22{letter-spacing:-1.039680px;}
.ls60{letter-spacing:-0.993600px;}
.ls3e{letter-spacing:-0.967680px;}
.ls10{letter-spacing:-0.960480px;}
.ls40{letter-spacing:-0.907200px;}
.ls42{letter-spacing:-0.861120px;}
.ls15{letter-spacing:-0.820800px;}
.ls43{letter-spacing:-0.728640px;}
.ls58{letter-spacing:-0.725760px;}
.ls8{letter-spacing:-0.712800px;}
.ls56{letter-spacing:-0.709920px;}
.ls62{letter-spacing:-0.656640px;}
.ls33{letter-spacing:-0.596160px;}
.ls1a{letter-spacing:-0.547200px;}
.ls44{letter-spacing:-0.463680px;}
.ls6{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.054720px;}
.ls26{letter-spacing:0.060480px;}
.ls57{letter-spacing:0.077760px;}
.ls13{letter-spacing:0.083520px;}
.ls1e{letter-spacing:0.109440px;}
.ls1{letter-spacing:0.126720px;}
.ls59{letter-spacing:0.132480px;}
.ls5d{letter-spacing:0.331200px;}
.ls1b{letter-spacing:0.383040px;}
.ls4d{letter-spacing:0.447840px;}
.ls2{letter-spacing:0.501120px;}
.ls28{letter-spacing:0.576000px;}
.ls3{letter-spacing:0.720000px;}
.ls5c{letter-spacing:0.725760px;}
.ls54{letter-spacing:0.728640px;}
.ls4b{letter-spacing:2.185920px;}
.ls3a{letter-spacing:3.576960px;}
.ls4e{letter-spacing:3.611520px;}
.ls55{letter-spacing:3.628800px;}
.ls4c{letter-spacing:3.974400px;}
.ls47{letter-spacing:5.034240px;}
.ls27{letter-spacing:5.414400px;}
.ls39{letter-spacing:6.491520px;}
.ls4a{letter-spacing:7.948800px;}
.ls3b{letter-spacing:9.339840px;}
.ls5f{letter-spacing:10.797120px;}
.ls5e{letter-spacing:13.711680px;}
.ls5{letter-spacing:20.891520px;}
.ls5a{letter-spacing:28.324224px;}
.ls61{letter-spacing:31.165920px;}
.ls29{letter-spacing:46.673280px;}
.ls2a{letter-spacing:46.811520px;}
.ls4{letter-spacing:54.008640px;}
.ls25{letter-spacing:941.068800px;}
.ls0{letter-spacing:1030.661280px;}
.ls38{letter-spacing:1466.640000px;}
.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;}
}
.ws3{word-spacing:-16.560000px;}
.ws101{word-spacing:-15.963840px;}
.ws84{word-spacing:-15.698880px;}
.wsf8{word-spacing:-15.433920px;}
.ws99{word-spacing:-15.120000px;}
.ws4a{word-spacing:-15.102720px;}
.ws5{word-spacing:-14.837760px;}
.wsf2{word-spacing:-14.639040px;}
.ws8e{word-spacing:-14.506560px;}
.ws103{word-spacing:-14.152320px;}
.ws2{word-spacing:-14.109120px;}
.ws4c{word-spacing:-13.976640px;}
.wsc0{word-spacing:-13.728960px;}
.ws98{word-spacing:-13.711680px;}
.ws8{word-spacing:-13.680000px;}
.ws9a{word-spacing:-13.668480px;}
.ws4{word-spacing:-13.380480px;}
.wsaa{word-spacing:-13.184640px;}
.ws8f{word-spacing:-13.049280px;}
.ws102{word-spacing:-13.023360px;}
.wsd{word-spacing:-12.859200px;}
.wsf1{word-spacing:-12.761280px;}
.ws97{word-spacing:-12.585600px;}
.ws11{word-spacing:-12.366720px;}
.ws9{word-spacing:-12.257280px;}
.wse9{word-spacing:-12.216960px;}
.ws1{word-spacing:-11.880000px;}
.wsf{word-spacing:-11.819520px;}
.ws49{word-spacing:-11.793600px;}
.wsfb{word-spacing:-11.764800px;}
.ws4b{word-spacing:-11.600640px;}
.ws6b{word-spacing:-11.436480px;}
.ws0{word-spacing:-11.167200px;}
.ws4d{word-spacing:-10.725120px;}
.wsb{word-spacing:-10.523520px;}
.ws6{word-spacing:-10.440000px;}
.wsc{word-spacing:-10.013760px;}
.wsde{word-spacing:-9.730080px;}
.ws10{word-spacing:-9.247680px;}
.ws7{word-spacing:-9.103680px;}
.wse{word-spacing:-9.000000px;}
.wsdf{word-spacing:-8.631360px;}
.wsa{word-spacing:-7.642080px;}
.ws70{word-spacing:-3.576960px;}
.ws80{word-spacing:-2.980800px;}
.ws19{word-spacing:-2.604960px;}
.ws72{word-spacing:-2.600640px;}
.ws45{word-spacing:-2.462400px;}
.wsd8{word-spacing:-2.252160px;}
.ws5e{word-spacing:-2.119680px;}
.ws5f{word-spacing:-1.589760px;}
.wsac{word-spacing:-1.523520px;}
.ws3f{word-spacing:-1.258560px;}
.ws77{word-spacing:-1.209600px;}
.ws18{word-spacing:-1.157760px;}
.ws14{word-spacing:-1.092960px;}
.wsd3{word-spacing:-1.059840px;}
.ws82{word-spacing:-0.993600px;}
.ws36{word-spacing:-0.930240px;}
.wse4{word-spacing:-0.875520px;}
.ws1f{word-spacing:-0.835200px;}
.ws66{word-spacing:-0.820800px;}
.ws55{word-spacing:-0.728640px;}
.ws78{word-spacing:-0.725760px;}
.ws23{word-spacing:-0.711360px;}
.wscf{word-spacing:-0.665280px;}
.ws13{word-spacing:-0.617760px;}
.ws6c{word-spacing:-0.544320px;}
.ws1d{word-spacing:-0.459360px;}
.wsab{word-spacing:-0.132480px;}
.ws60{word-spacing:-0.066240px;}
.ws12{word-spacing:0.000000px;}
.ws2a{word-spacing:0.109440px;}
.ws48{word-spacing:0.164160px;}
.ws73{word-spacing:0.181440px;}
.ws65{word-spacing:0.218880px;}
.ws76{word-spacing:0.241920px;}
.ws1a{word-spacing:0.289440px;}
.ws47{word-spacing:0.383040px;}
.ws9e{word-spacing:0.397440px;}
.ws43{word-spacing:0.437760px;}
.ws40{word-spacing:0.492480px;}
.ws2b{word-spacing:0.547200px;}
.wsa0{word-spacing:0.596160px;}
.ws86{word-spacing:0.662400px;}
.ws2d{word-spacing:0.711360px;}
.ws16{word-spacing:0.712800px;}
.ws71{word-spacing:0.725760px;}
.ws50{word-spacing:0.728640px;}
.ws29{word-spacing:0.766080px;}
.ws4e{word-spacing:0.907200px;}
.ws1e{word-spacing:0.960480px;}
.wse1{word-spacing:1.126080px;}
.wsb4{word-spacing:1.209600px;}
.wsf4{word-spacing:1.258560px;}
.ws54{word-spacing:1.324800px;}
.ws21{word-spacing:1.422720px;}
.wsb9{word-spacing:1.451520px;}
.wscc{word-spacing:1.457280px;}
.wsd4{word-spacing:1.523520px;}
.ws75{word-spacing:1.632960px;}
.ws38{word-spacing:1.641600px;}
.ws15{word-spacing:1.663200px;}
.wsc6{word-spacing:1.693440px;}
.ws3d{word-spacing:1.696320px;}
.wsef{word-spacing:1.722240px;}
.ws7a{word-spacing:1.854720px;}
.ws24{word-spacing:1.915200px;}
.wsf3{word-spacing:1.920960px;}
.ws17{word-spacing:1.948320px;}
.ws26{word-spacing:1.969920px;}
.ws81{word-spacing:2.053440px;}
.wsfc{word-spacing:2.079360px;}
.ws59{word-spacing:2.119680px;}
.ws27{word-spacing:2.134080px;}
.wsdc{word-spacing:2.177280px;}
.ws53{word-spacing:2.185920px;}
.wsba{word-spacing:2.188800px;}
.ws62{word-spacing:2.352960px;}
.wsb7{word-spacing:2.358720px;}
.wsa5{word-spacing:2.419200px;}
.ws7e{word-spacing:2.583360px;}
.wse2{word-spacing:2.715840px;}
.ws58{word-spacing:2.782080px;}
.ws20{word-spacing:2.797920px;}
.wsdb{word-spacing:2.848320px;}
.wsbb{word-spacing:2.900160px;}
.wsc9{word-spacing:2.903040px;}
.ws100{word-spacing:2.914560px;}
.wsbc{word-spacing:3.009600px;}
.ws42{word-spacing:3.064320px;}
.wsca{word-spacing:3.084480px;}
.ws67{word-spacing:3.119040px;}
.wsd7{word-spacing:3.144960px;}
.wsf9{word-spacing:3.179520px;}
.ws1b{word-spacing:3.183840px;}
.ws8d{word-spacing:3.312000px;}
.wsa3{word-spacing:3.444480px;}
.wsbd{word-spacing:3.447360px;}
.ws25{word-spacing:3.502080px;}
.wsd0{word-spacing:3.568320px;}
.ws85{word-spacing:3.576960px;}
.wsd1{word-spacing:3.628800px;}
.ws56{word-spacing:3.643200px;}
.ws22{word-spacing:3.666240px;}
.ws5a{word-spacing:4.173120px;}
.ws7c{word-spacing:4.239360px;}
.wsc4{word-spacing:4.294080px;}
.wsb8{word-spacing:4.536000px;}
.wsec{word-spacing:4.596480px;}
.wsf7{word-spacing:4.703040px;}
.ws32{word-spacing:4.870080px;}
.ws52{word-spacing:5.034240px;}
.wse0{word-spacing:5.080320px;}
.ws91{word-spacing:5.497920px;}
.ws5b{word-spacing:5.630400px;}
.ws31{word-spacing:5.964480px;}
.wscb{word-spacing:5.987520px;}
.wsa1{word-spacing:6.160320px;}
.wsa7{word-spacing:6.292800px;}
.ws6d{word-spacing:6.425280px;}
.wsb0{word-spacing:6.471360px;}
.ws79{word-spacing:6.491520px;}
.wsbf{word-spacing:6.511680px;}
.ws5c{word-spacing:7.087680px;}
.wsb6{word-spacing:7.378560px;}
.wsb5{word-spacing:7.439040px;}
.ws6e{word-spacing:7.617600px;}
.ws61{word-spacing:7.715520px;}
.ws63{word-spacing:7.879680px;}
.ws9b{word-spacing:7.882560px;}
.wscd{word-spacing:7.922880px;}
.ws8a{word-spacing:7.948800px;}
.wsc1{word-spacing:8.544960px;}
.wsc5{word-spacing:8.830080px;}
.wseb{word-spacing:8.890560px;}
.wsf5{word-spacing:9.008640px;}
.wsd9{word-spacing:9.074880px;}
.ws39{word-spacing:9.192960px;}
.ws6f{word-spacing:9.339840px;}
.wsce{word-spacing:9.374400px;}
.ws88{word-spacing:9.406080px;}
.wsa2{word-spacing:9.936000px;}
.wsda{word-spacing:10.002240px;}
.ws105{word-spacing:10.068480px;}
.wse3{word-spacing:10.177920px;}
.wsc2{word-spacing:10.281600px;}
.wsf0{word-spacing:10.342080px;}
.wsfa{word-spacing:10.532160px;}
.wsbe{word-spacing:10.615680px;}
.ws51{word-spacing:10.797120px;}
.wse6{word-spacing:10.825920px;}
.ws93{word-spacing:11.393280px;}
.ws28{word-spacing:11.600640px;}
.ws34{word-spacing:11.710080px;}
.wsc8{word-spacing:11.733120px;}
.wsed{word-spacing:11.793600px;}
.ws8c{word-spacing:11.923200px;}
.ws30{word-spacing:12.038400px;}
.ws87{word-spacing:12.188160px;}
.ws7d{word-spacing:12.254400px;}
.wsb3{word-spacing:12.277440px;}
.ws94{word-spacing:12.850560px;}
.wsb2{word-spacing:13.184640px;}
.ws3a{word-spacing:13.187520px;}
.wsf6{word-spacing:13.645440px;}
.ws9c{word-spacing:13.711680px;}
.ws90{word-spacing:14.307840px;}
.wsa6{word-spacing:14.575680px;}
.ws37{word-spacing:14.610240px;}
.wsaf{word-spacing:14.636160px;}
.ws57{word-spacing:15.036480px;}
.wsc7{word-spacing:15.102720px;}
.wsd2{word-spacing:15.120000px;}
.ws4f{word-spacing:15.168960px;}
.ws35{word-spacing:15.321600px;}
.ws8b{word-spacing:15.698880px;}
.ws74{word-spacing:16.027200px;}
.ws5d{word-spacing:16.560000px;}
.ws9d{word-spacing:17.156160px;}
.wsc3{word-spacing:17.478720px;}
.wsfd{word-spacing:17.553600px;}
.ws96{word-spacing:17.686080px;}
.ws92{word-spacing:17.951040px;}
.ws89{word-spacing:18.017280px;}
.wsd6{word-spacing:18.613440px;}
.wsa4{word-spacing:18.990720px;}
.ws1c{word-spacing:19.006560px;}
.wsdd{word-spacing:19.143360px;}
.ws3c{word-spacing:19.261440px;}
.wse7{word-spacing:19.342080px;}
.wsd5{word-spacing:19.408320px;}
.wse5{word-spacing:19.474560px;}
.wsfe{word-spacing:20.070720px;}
.wsa9{word-spacing:20.246400px;}
.ws3b{word-spacing:20.684160px;}
.wsae{word-spacing:20.865600px;}
.ws83{word-spacing:20.931840px;}
.wse8{word-spacing:22.057920px;}
.wsa8{word-spacing:22.161600px;}
.ws95{word-spacing:22.322880px;}
.ws44{word-spacing:22.544640px;}
.ws7b{word-spacing:22.919040px;}
.ws2e{word-spacing:23.256000px;}
.ws2c{word-spacing:23.748480px;}
.wsee{word-spacing:23.780160px;}
.ws68{word-spacing:24.678720px;}
.wsad{word-spacing:25.237440px;}
.wsff{word-spacing:25.767360px;}
.wsb1{word-spacing:26.127360px;}
.ws9f{word-spacing:26.628480px;}
.ws41{word-spacing:27.578880px;}
.wsea{word-spacing:28.085760px;}
.ws7f{word-spacing:28.681920px;}
.ws104{word-spacing:32.391360px;}
.ws3e{word-spacing:36.169920px;}
.ws46{word-spacing:37.975680px;}
.ws2f{word-spacing:45.198720px;}
.ws69{word-spacing:46.566720px;}
.ws64{word-spacing:48.044160px;}
.ws33{word-spacing:49.193280px;}
.ws6a{word-spacing:62.107200px;}
.ws106{word-spacing:114.528960px;}
._c{margin-left:-4.792032px;}
._3{margin-left:-3.592512px;}
._5{margin-left:-2.298816px;}
._1{margin-left:-1.121472px;}
._0{width:1.130976px;}
._2{width:2.166912px;}
._4{width:3.626496px;}
._9{width:4.634496px;}
._8{width:5.783328px;}
._b{width:6.784704px;}
._d{width:8.719200px;}
._a{width:9.802944px;}
._7{width:33.795072px;}
._e{width:112.719744px;}
._6{width:241.205760px;}
.fc4{color:rgb(0,97,0);}
.fc3{color:rgb(156,101,0);}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:36.000000px;}
.fsa{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs1{font-size:47.520000px;}
.fs0{font-size:54.720000px;}
.fs8{font-size:60.480000px;}
.fs3{font-size:63.360000px;}
.fs6{font-size:66.240000px;}
.fs5{font-size:83.520000px;}
.fs2{font-size:96.480000px;}
.fs4{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y1a{bottom:3.240000px;}
.y2cc{bottom:3.599850px;}
.y38{bottom:3.600000px;}
.y18{bottom:5.040000px;}
.y2ef{bottom:20.520000px;}
.y2f1{bottom:20.880000px;}
.y3{bottom:45.357840px;}
.y2{bottom:59.400000px;}
.y63{bottom:69.480000px;}
.y5e{bottom:85.679850px;}
.y23{bottom:96.809760px;}
.y168{bottom:96.811200px;}
.yf5{bottom:96.816960px;}
.yd0{bottom:96.828480px;}
.y5c{bottom:96.834240px;}
.y118{bottom:96.837120px;}
.y13c{bottom:97.909920px;}
.y225{bottom:100.090080px;}
.yab{bottom:100.440000px;}
.y193{bottom:101.599200px;}
.y2ca{bottom:106.560000px;}
.y29a{bottom:108.894090px;}
.y2ed{bottom:110.880000px;}
.y22{bottom:112.295520px;}
.y167{bottom:112.296960px;}
.yf4{bottom:112.302720px;}
.ycf{bottom:112.314240px;}
.y88{bottom:112.320000px;}
.y117{bottom:112.322880px;}
.y1fe{bottom:113.791680px;}
.y21c{bottom:113.820480px;}
.yaa{bottom:114.480000px;}
.y13b{bottom:115.192080px;}
.y5b{bottom:115.920000px;}
.y23a{bottom:118.424880px;}
.y224{bottom:118.802880px;}
.y277{bottom:120.235680px;}
.y192{bottom:120.676320px;}
.y2c2{bottom:127.594800px;}
.y299{bottom:127.606890px;}
.y21{bottom:127.781280px;}
.y166{bottom:127.782720px;}
.yf3{bottom:127.788480px;}
.y2c9{bottom:129.600000px;}
.y5a{bottom:129.960000px;}
.y87{bottom:131.400000px;}
.y13a{bottom:132.474240px;}
.y1fd{bottom:132.868800px;}
.y21b{bottom:132.897600px;}
.y116{bottom:133.920000px;}
.y2ec{bottom:134.280000px;}
.y239{bottom:135.707040px;}
.y276{bottom:137.517840px;}
.ya9{bottom:137.553120px;}
.y223{bottom:137.880000px;}
.y191{bottom:139.753440px;}
.y20{bottom:143.267040px;}
.y165{bottom:143.268480px;}
.yf2{bottom:143.274240px;}
.y24e{bottom:144.745920px;}
.y86{bottom:145.440000px;}
.y295{bottom:145.830960px;}
.y115{bottom:146.124000px;}
.y2c1{bottom:146.671920px;}
.y298{bottom:146.684010px;}
.y139{bottom:149.756400px;}
.y1fc{bottom:151.581600px;}
.y21a{bottom:151.610400px;}
.y238{bottom:152.989200px;}
.y2c8{bottom:153.000000px;}
.y275{bottom:154.800000px;}
.y222{bottom:156.591930px;}
.ya8{bottom:156.630240px;}
.y2eb{bottom:157.680000px;}
.y1f{bottom:158.752800px;}
.y164{bottom:158.754240px;}
.y190{bottom:158.830560px;}
.y114{bottom:161.609760px;}
.y1d9{bottom:162.360000px;}
.yf1{bottom:163.440000px;}
.y24d{bottom:163.823040px;}
.yce{bottom:165.610080px;}
.y2c0{bottom:165.749040px;}
.y297{bottom:165.761130px;}
.y138{bottom:167.038560px;}
.y237{bottom:170.271360px;}
.y219{bottom:170.323200px;}
.y1fb{bottom:170.658720px;}
.y274{bottom:172.442880px;}
.y221{bottom:173.874090px;}
.y1e{bottom:174.594240px;}
.yf0{bottom:174.600000px;}
.ya7{bottom:175.343040px;}
.y1d8{bottom:176.400000px;}
.y113{bottom:177.095520px;}
.y18f{bottom:177.543360px;}
.y163{bottom:177.840000px;}
.y2ea{bottom:180.720000px;}
.y59{bottom:181.532160px;}
.y294{bottom:182.544480px;}
.y24c{bottom:182.900160px;}
.y137{bottom:183.957840px;}
.ycd{bottom:184.322880px;}
.y2bf{bottom:184.461840px;}
.y296{bottom:184.473930px;}
.yd{bottom:186.840000px;}
.y236{bottom:187.553520px;}
.y218{bottom:189.400320px;}
.y1fa{bottom:189.735840px;}
.y220{bottom:191.156250px;}
.y273{bottom:191.520000px;}
.yef{bottom:191.527200px;}
.y162{bottom:191.880000px;}
.y112{bottom:192.581280px;}
.y1b7{bottom:193.680000px;}
.ya6{bottom:194.420160px;}
.y1d{bottom:194.760000px;}
.y18e{bottom:196.620480px;}
.y58{bottom:200.609280px;}
.y136{bottom:201.240000px;}
.y24b{bottom:201.612960px;}
.y293{bottom:201.621600px;}
.y2c7{bottom:203.400720px;}
.y2be{bottom:203.538960px;}
.ycc{bottom:203.551050px;}
.y2e9{bottom:204.120000px;}
.y235{bottom:204.835680px;}
.y1c{bottom:205.560000px;}
.y1d7{bottom:207.054720px;}
.y1b6{bottom:207.360000px;}
.y21f{bottom:208.075530px;}
.y111{bottom:208.422720px;}
.y1f9{bottom:208.448640px;}
.y217{bottom:208.477440px;}
.y272{bottom:209.873520px;}
.yee{bottom:210.240000px;}
.ya5{bottom:213.497280px;}
.y18d{bottom:215.697600px;}
.y25{bottom:217.800000px;}
.y135{bottom:218.882880px;}
.y85{bottom:219.248640px;}
.y57{bottom:219.686400px;}
.y24a{bottom:220.690080px;}
.y292{bottom:220.698720px;}
.y234{bottom:222.117840px;}
.y2c6{bottom:222.477840px;}
.y2bd{bottom:222.616080px;}
.ycb{bottom:222.628170px;}
.y110{bottom:223.908480px;}
.y21e{bottom:225.357690px;}
.y1d6{bottom:225.767520px;}
.y271{bottom:227.155680px;}
.y2e8{bottom:227.160000px;}
.y24{bottom:227.520000px;}
.y1f8{bottom:227.525760px;}
.y216{bottom:227.554560px;}
.y161{bottom:227.584800px;}
.yed{bottom:228.953520px;}
.y1b5{bottom:230.747760px;}
.ya4{bottom:232.210080px;}
.y18c{bottom:234.410400px;}
.y134{bottom:237.960000px;}
.y84{bottom:238.325760px;}
.y56{bottom:238.763520px;}
.y10f{bottom:239.394240px;}
.y233{bottom:239.400000px;}
.y249{bottom:239.767200px;}
.y291{bottom:239.775840px;}
.y2c5{bottom:241.554960px;}
.y2bc{bottom:241.693200px;}
.yca{bottom:241.705290px;}
.y21d{bottom:242.639850px;}
.y270{bottom:244.437840px;}
.y1d5{bottom:244.844640px;}
.yec{bottom:246.235680px;}
.y1f7{bottom:246.602880px;}
.y215{bottom:246.631680px;}
.y160{bottom:246.661920px;}
.y37{bottom:247.656960px;}
.y31{bottom:247.663440px;}
.y1b4{bottom:248.029920px;}
.y2e7{bottom:250.560000px;}
.ya3{bottom:251.287200px;}
.y18b{bottom:253.487520px;}
.y133{bottom:256.661280px;}
.y232{bottom:257.091840px;}
.y83{bottom:257.402880px;}
.y55{bottom:257.476320px;}
.y10e{bottom:258.480000px;}
.y290{bottom:258.488640px;}
.y2c4{bottom:260.053770px;}
.y2bb{bottom:260.406000px;}
.yc9{bottom:260.418090px;}
.y26f{bottom:261.720000px;}
.yeb{bottom:263.517840px;}
.y1d4{bottom:263.921760px;}
.y36{bottom:264.223440px;}
.y30{bottom:264.229920px;}
.y1b3{bottom:265.312080px;}
.y1f6{bottom:265.680000px;}
.y214{bottom:265.708800px;}
.y15f{bottom:265.739040px;}
.ya2{bottom:270.060480px;}
.y10d{bottom:272.520000px;}
.y18a{bottom:272.564640px;}
.y2e6{bottom:273.600000px;}
.y132{bottom:273.943440px;}
.y231{bottom:275.804640px;}
.y54{bottom:276.553440px;}
.y82{bottom:276.557760px;}
.y248{bottom:277.187040px;}
.y28f{bottom:277.565760px;}
.y2c3{bottom:279.130890px;}
.y26e{bottom:279.391680px;}
.y2ba{bottom:279.483120px;}
.yc8{bottom:279.495210px;}
.y35{bottom:280.420560px;}
.y2f{bottom:280.427040px;}
.yea{bottom:280.800000px;}
.y1b2{bottom:282.594240px;}
.y1d3{bottom:282.998880px;}
.y1f5{bottom:284.037840px;}
.y213{bottom:284.421600px;}
.y15e{bottom:284.451840px;}
.ya1{bottom:289.501920px;}
.y131{bottom:290.862720px;}
.y189{bottom:291.277440px;}
.y247{bottom:294.469200px;}
.y230{bottom:294.881760px;}
.y81{bottom:295.270560px;}
.y53{bottom:295.630560px;}
.y28e{bottom:296.642880px;}
.y34{bottom:296.987040px;}
.y2e{bottom:296.993520px;}
.y2e5{bottom:297.000000px;}
.y26d{bottom:298.468800px;}
.ye9{bottom:298.481760px;}
.y2b9{bottom:298.560240px;}
.yc7{bottom:298.572330px;}
.y1b1{bottom:299.513520px;}
.y1f4{bottom:301.320000px;}
.y1d2{bottom:301.711680px;}
.y212{bottom:303.498720px;}
.y15d{bottom:303.528960px;}
.y130{bottom:308.144880px;}
.ya0{bottom:308.214720px;}
.y2f8{bottom:310.317840px;}
.y188{bottom:310.354560px;}
.y246{bottom:311.751360px;}
.y33{bottom:313.553520px;}
.y2d{bottom:313.560000px;}
.y22f{bottom:313.958880px;}
.y52{bottom:314.343360px;}
.y80{bottom:314.347680px;}
.y28d{bottom:315.720000px;}
.y1b0{bottom:316.795680px;}
.y26c{bottom:317.181600px;}
.ye8{bottom:317.194560px;}
.y2b8{bottom:317.273040px;}
.yc6{bottom:317.285130px;}
.y1f3{bottom:318.972960px;}
.y2e4{bottom:320.400000px;}
.y1d1{bottom:320.788800px;}
.y10c{bottom:322.172640px;}
.y211{bottom:322.575840px;}
.y15c{bottom:322.606080px;}
.y12f{bottom:325.427040px;}
.y9f{bottom:327.291840px;}
.y2f7{bottom:327.600000px;}
.y245{bottom:329.033520px;}
.y187{bottom:329.431680px;}
.y2c{bottom:330.099840px;}
.y32{bottom:330.120000px;}
.y22e{bottom:332.671680px;}
.y51{bottom:333.420480px;}
.y7f{bottom:333.424800px;}
.y28c{bottom:334.064880px;}
.y1af{bottom:334.077840px;}
.y26b{bottom:336.258720px;}
.ye7{bottom:336.271680px;}
.y2b7{bottom:336.350160px;}
.yc5{bottom:336.362250px;}
.y1f2{bottom:338.050080px;}
.y10b{bottom:339.454800px;}
.y1d0{bottom:339.865920px;}
.y210{bottom:341.288640px;}
.y15b{bottom:341.318880px;}
.y2f6{bottom:342.000000px;}
.y12e{bottom:342.709200px;}
.y2e3{bottom:343.440000px;}
.y2b{bottom:346.296960px;}
.y244{bottom:346.315680px;}
.y9e{bottom:346.368960px;}
.y186{bottom:348.508800px;}
.y28b{bottom:351.347040px;}
.y1ae{bottom:351.360000px;}
.y22d{bottom:351.748800px;}
.y7e{bottom:352.137600px;}
.y50{bottom:352.497600px;}
.y26a{bottom:355.335840px;}
.ye6{bottom:355.348800px;}
.y2b6{bottom:355.427280px;}
.yc4{bottom:355.439370px;}
.y10a{bottom:356.736960px;}
.y1f1{bottom:357.127200px;}
.y1cf{bottom:358.578720px;}
.y12d{bottom:359.991360px;}
.y20f{bottom:360.365760px;}
.y15a{bottom:360.396000px;}
.y2a{bottom:362.863440px;}
.y243{bottom:363.597840px;}
.y9d{bottom:365.081760px;}
.y2f5{bottom:365.400000px;}
.y2e2{bottom:366.840000px;}
.y185{bottom:367.221600px;}
.y28a{bottom:368.629200px;}
.y1ad{bottom:369.044640px;}
.y22c{bottom:370.825920px;}
.y4f{bottom:371.210400px;}
.y7d{bottom:371.214720px;}
.y109{bottom:373.656240px;}
.y269{bottom:374.048640px;}
.ye5{bottom:374.061600px;}
.y2b5{bottom:374.140080px;}
.yc3{bottom:374.152170px;}
.y1f0{bottom:375.840000px;}
.y12c{bottom:377.273520px;}
.y1ce{bottom:377.655840px;}
.y29{bottom:379.429920px;}
.y20e{bottom:379.442880px;}
.y159{bottom:379.473120px;}
.y242{bottom:380.880000px;}
.y9c{bottom:384.158880px;}
.y289{bottom:385.911360px;}
.y184{bottom:386.298720px;}
.y1ac{bottom:388.121760px;}
.y2f4{bottom:388.440000px;}
.y2e1{bottom:389.880000px;}
.y22b{bottom:389.903040px;}
.y4e{bottom:390.287520px;}
.y7c{bottom:390.291840px;}
.y108{bottom:390.938400px;}
.y268{bottom:393.125760px;}
.ye4{bottom:393.138720px;}
.y2b4{bottom:393.217200px;}
.yc2{bottom:393.229290px;}
.y12b{bottom:394.555680px;}
.y1ef{bottom:394.560000px;}
.y28{bottom:395.996400px;}
.y1cd{bottom:396.732960px;}
.y20d{bottom:398.520000px;}
.y241{bottom:398.532960px;}
.y158{bottom:398.550240px;}
.y288{bottom:403.193520px;}
.y9b{bottom:403.236000px;}
.y183{bottom:405.375840px;}
.y1ab{bottom:406.834560px;}
.y107{bottom:408.220560px;}
.y22a{bottom:408.615840px;}
.y4d{bottom:409.364640px;}
.y7b{bottom:409.368960px;}
.y12a{bottom:411.837840px;}
.y2f3{bottom:411.840000px;}
.ye3{bottom:411.851520px;}
.y267{bottom:412.202880px;}
.y1ee{bottom:412.238880px;}
.y2b3{bottom:412.294320px;}
.yc1{bottom:412.306410px;}
.y27{bottom:412.562880px;}
.y2e0{bottom:413.280000px;}
.y1cc{bottom:415.445760px;}
.y20c{bottom:416.854800px;}
.y240{bottom:417.245760px;}
.y157{bottom:417.263040px;}
.y287{bottom:420.475680px;}
.y9a{bottom:422.313120px;}
.y182{bottom:424.088640px;}
.y106{bottom:425.502720px;}
.y1aa{bottom:425.911680px;}
.y229{bottom:427.692960px;}
.y7a{bottom:428.081760px;}
.y4c{bottom:428.441760px;}
.y26{bottom:428.760000px;}
.y129{bottom:429.120000px;}
.y266{bottom:431.280000px;}
.ye2{bottom:431.292960px;}
.y1ed{bottom:431.316000px;}
.y2b2{bottom:431.371440px;}
.yc0{bottom:431.383530px;}
.y20b{bottom:434.136960px;}
.y1cb{bottom:434.522880px;}
.y23f{bottom:436.322880px;}
.y156{bottom:436.340160px;}
.y2df{bottom:436.680000px;}
.y286{bottom:437.757840px;}
.y99{bottom:441.025920px;}
.y105{bottom:442.784880px;}
.y181{bottom:443.165760px;}
.y1a9{bottom:444.988800px;}
.y228{bottom:446.770080px;}
.y128{bottom:446.772960px;}
.y2f2{bottom:447.120000px;}
.y4b{bottom:447.154560px;}
.y79{bottom:447.158880px;}
.y265{bottom:449.635680px;}
.ye1{bottom:450.005760px;}
.y1ec{bottom:450.028800px;}
.y2b1{bottom:450.084240px;}
.ybf{bottom:450.096330px;}
.y20a{bottom:451.419120px;}
.y1ca{bottom:453.600000px;}
.y285{bottom:455.040000px;}
.y23e{bottom:455.400000px;}
.y155{bottom:455.417280px;}
.y2de{bottom:459.720000px;}
.y104{bottom:460.067040px;}
.y98{bottom:460.103040px;}
.y1b{bottom:462.240000px;}
.y180{bottom:462.242880px;}
.y1a8{bottom:464.065920px;}
.y227{bottom:465.482880px;}
.y127{bottom:465.485760px;}
.y4a{bottom:466.231680px;}
.y78{bottom:466.236000px;}
.y264{bottom:466.917840px;}
.y209{bottom:468.701280px;}
.ye0{bottom:469.082880px;}
.y1eb{bottom:469.105920px;}
.y2b0{bottom:469.161360px;}
.ybe{bottom:469.173450px;}
.y1c9{bottom:472.303440px;}
.y284{bottom:472.721760px;}
.y23d{bottom:473.755680px;}
.y154{bottom:474.130080px;}
.y103{bottom:477.349200px;}
.yc{bottom:477.360000px;}
.y97{bottom:479.180160px;}
.y17f{bottom:481.320000px;}
.y2f0{bottom:482.400000px;}
.y1a7{bottom:482.778720px;}
.y2dd{bottom:483.120000px;}
.y263{bottom:484.200000px;}
.y226{bottom:484.560000px;}
.y126{bottom:484.562880px;}
.y77{bottom:484.948800px;}
.y49{bottom:485.308800px;}
.y208{bottom:485.983440px;}
.y1ea{bottom:488.183040px;}
.ydf{bottom:488.219040px;}
.y2af{bottom:488.238480px;}
.ybd{bottom:488.250570px;}
.y1c8{bottom:489.222720px;}
.y23c{bottom:491.037840px;}
.y283{bottom:491.434560px;}
.y153{bottom:493.207200px;}
.y102{bottom:494.631360px;}
.y19{bottom:496.080000px;}
.y96{bottom:497.892960px;}
.y17e{bottom:499.667040px;}
.y1a6{bottom:501.855840px;}
.y262{bottom:501.858720px;}
.y207{bottom:503.265600px;}
.y125{bottom:503.640000px;}
.y48{bottom:504.021600px;}
.y76{bottom:504.025920px;}
.y17{bottom:504.708480px;}
.y2dc{bottom:506.160000px;}
.y1c7{bottom:506.504880px;}
.y1e9{bottom:506.895840px;}
.yde{bottom:506.931840px;}
.y2ae{bottom:506.951280px;}
.ybc{bottom:506.963370px;}
.y23b{bottom:508.320000px;}
.y282{bottom:510.511680px;}
.y101{bottom:511.913520px;}
.y152{bottom:511.915680px;}
.y17d{bottom:516.949200px;}
.y95{bottom:516.970080px;}
.y2ee{bottom:517.680000px;}
.y16{bottom:520.194240px;}
.y206{bottom:520.547760px;}
.y1a5{bottom:520.932960px;}
.y261{bottom:520.935840px;}
.y124{bottom:522.358560px;}
.y47{bottom:523.098720px;}
.y75{bottom:523.103040px;}
.y1c6{bottom:523.787040px;}
.y1e8{bottom:525.972960px;}
.ydd{bottom:526.008960px;}
.y2ad{bottom:526.028400px;}
.ybb{bottom:526.040490px;}
.y100{bottom:529.195680px;}
.y151{bottom:529.197840px;}
.y2db{bottom:529.560000px;}
.y281{bottom:529.588800px;}
.y17c{bottom:534.231360px;}
.y15{bottom:535.680000px;}
.y94{bottom:536.047200px;}
.y205{bottom:537.829920px;}
.y123{bottom:539.277840px;}
.y1a4{bottom:539.645760px;}
.y260{bottom:539.648640px;}
.y1c5{bottom:541.069200px;}
.y74{bottom:541.815840px;}
.y46{bottom:542.175840px;}
.y1e7{bottom:545.050080px;}
.ydc{bottom:545.086080px;}
.y2ac{bottom:545.105520px;}
.yba{bottom:545.117610px;}
.yff{bottom:546.477840px;}
.y150{bottom:546.480000px;}
.y280{bottom:548.301600px;}
.y14{bottom:551.160000px;}
.y17b{bottom:551.513520px;}
.y2da{bottom:552.600000px;}
.y93{bottom:554.795280px;}
.y204{bottom:555.112080px;}
.y122{bottom:556.560000px;}
.y1c4{bottom:558.351360px;}
.y1a3{bottom:558.722880px;}
.y25f{bottom:558.725760px;}
.y45{bottom:560.888640px;}
.y73{bottom:560.892960px;}
.y1e6{bottom:563.762880px;}
.y14f{bottom:563.765760px;}
.yfe{bottom:563.794560px;}
.ydb{bottom:563.798880px;}
.y2ab{bottom:563.818320px;}
.yb9{bottom:563.830410px;}
.y13{bottom:566.640000px;}
.y27f{bottom:567.378720px;}
.y17a{bottom:568.795680px;}
.y203{bottom:572.031360px;}
.y92{bottom:573.872400px;}
.y121{bottom:574.205760px;}
.y1c3{bottom:575.633520px;}
.y2d9{bottom:576.000000px;}
.y1a2{bottom:577.800000px;}
.y25e{bottom:577.802880px;}
.y44{bottom:579.965760px;}
.y72{bottom:579.970080px;}
.y12{bottom:582.480000px;}
.y1e5{bottom:582.840000px;}
.y14e{bottom:582.842880px;}
.yfd{bottom:582.871680px;}
.yda{bottom:582.876000px;}
.y2aa{bottom:582.895440px;}
.yb8{bottom:582.907530px;}
.y179{bottom:586.077840px;}
.y27e{bottom:586.455840px;}
.y202{bottom:589.313520px;}
.y1c2{bottom:592.915680px;}
.y91{bottom:592.949520px;}
.y120{bottom:593.282880px;}
.y1a1{bottom:596.512080px;}
.y25d{bottom:596.880000px;}
.y11{bottom:597.960000px;}
.y43{bottom:599.042880px;}
.y71{bottom:599.047200px;}
.y2d8{bottom:599.400000px;}
.y1e4{bottom:601.541280px;}
.y14d{bottom:601.920000px;}
.yfc{bottom:601.948800px;}
.yd9{bottom:601.953120px;}
.y2a9{bottom:601.972560px;}
.yb7{bottom:601.984650px;}
.y178{bottom:603.360000px;}
.y27d{bottom:605.168640px;}
.y201{bottom:606.595680px;}
.y1c1{bottom:610.197840px;}
.y90{bottom:612.026640px;}
.y11f{bottom:612.360000px;}
.y1a0{bottom:613.431360px;}
.y10{bottom:613.440000px;}
.y25c{bottom:615.233520px;}
.y70{bottom:617.760000px;}
.y42{bottom:618.146640px;}
.y1e3{bottom:618.823440px;}
.y14c{bottom:620.632080px;}
.yfb{bottom:621.025920px;}
.yd8{bottom:621.030240px;}
.y2a8{bottom:621.049680px;}
.yb6{bottom:621.061770px;}
.y177{bottom:621.066240px;}
.y2d7{bottom:622.440000px;}
.y200{bottom:623.877840px;}
.y27c{bottom:624.245760px;}
.y1c0{bottom:627.480000px;}
.yf{bottom:628.920000px;}
.y11e{bottom:630.709200px;}
.y19f{bottom:630.713520px;}
.y8f{bottom:630.739440px;}
.y25b{bottom:632.515680px;}
.y1e2{bottom:636.105600px;}
.y41{bottom:636.859440px;}
.y14b{bottom:637.914240px;}
.yfa{bottom:639.738720px;}
.yd7{bottom:639.743040px;}
.y2a7{bottom:639.762480px;}
.yb5{bottom:639.774570px;}
.y176{bottom:639.779040px;}
.y1ff{bottom:641.160000px;}
.y27b{bottom:643.322880px;}
.ye{bottom:645.120000px;}
.y1bf{bottom:645.132960px;}
.y2d6{bottom:645.840000px;}
.y11d{bottom:647.991360px;}
.y19e{bottom:647.995680px;}
.y25a{bottom:649.797840px;}
.y8e{bottom:649.816560px;}
.y1e1{bottom:653.387760px;}
.y6f{bottom:654.484320px;}
.y14a{bottom:654.833520px;}
.y40{bottom:655.936560px;}
.yf9{bottom:658.815840px;}
.yd6{bottom:658.820160px;}
.y2a6{bottom:658.839600px;}
.yb4{bottom:658.851690px;}
.y175{bottom:658.856160px;}
.y27a{bottom:662.400000px;}
.y1be{bottom:663.845760px;}
.y11c{bottom:665.273520px;}
.y19d{bottom:665.277840px;}
.y259{bottom:667.080000px;}
.y2d5{bottom:668.880000px;}
.y8d{bottom:668.893680px;}
.y1e0{bottom:670.669920px;}
.y6e{bottom:671.766480px;}
.y149{bottom:672.115680px;}
.y3f{bottom:675.013680px;}
.yf8{bottom:677.892960px;}
.yd5{bottom:677.897280px;}
.y2a5{bottom:677.916720px;}
.yb3{bottom:677.928810px;}
.y174{bottom:677.933280px;}
.y279{bottom:680.757840px;}
.y11b{bottom:682.555680px;}
.y19c{bottom:682.560000px;}
.y1bd{bottom:682.922880px;}
.y258{bottom:684.743040px;}
.y1df{bottom:687.589200px;}
.y8c{bottom:687.606480px;}
.y148{bottom:689.397840px;}
.yb{bottom:689.760000px;}
.y2d4{bottom:692.280000px;}
.y3e{bottom:693.726480px;}
.yf7{bottom:696.605760px;}
.yd4{bottom:696.610080px;}
.y2a4{bottom:696.629520px;}
.yb2{bottom:696.641610px;}
.y173{bottom:696.646080px;}
.y278{bottom:698.040000px;}
.y11a{bottom:699.837840px;}
.y19b{bottom:700.212960px;}
.y1bc{bottom:702.028650px;}
.y257{bottom:703.820160px;}
.y1de{bottom:704.871360px;}
.y147{bottom:706.680000px;}
.y8b{bottom:706.683600px;}
.y6d{bottom:707.041440px;}
.ya{bottom:715.676040px;}
.y2d3{bottom:715.680000px;}
.yf6{bottom:715.682880px;}
.yd3{bottom:715.687200px;}
.y2a3{bottom:715.706640px;}
.yb1{bottom:715.718730px;}
.y172{bottom:715.723200px;}
.y119{bottom:717.120000px;}
.y19a{bottom:719.290080px;}
.y1bb{bottom:721.105770px;}
.y1dd{bottom:722.153520px;}
.y256{bottom:722.532960px;}
.y146{bottom:724.322880px;}
.y6c{bottom:724.323600px;}
.y8a{bottom:725.760720px;}
.y3d{bottom:730.448640px;}
.yd2{bottom:734.431530px;}
.y2a2{bottom:734.783760px;}
.yb0{bottom:734.795850px;}
.y171{bottom:734.800320px;}
.y199{bottom:738.002880px;}
.y2d2{bottom:738.720000px;}
.y1dc{bottom:739.435680px;}
.y1ba{bottom:739.818570px;}
.y89{bottom:740.880000px;}
.y255{bottom:741.610080px;}
.y145{bottom:743.400000px;}
.y9{bottom:745.198920px;}
.y3c{bottom:749.525760px;}
.yd1{bottom:753.508650px;}
.y2a1{bottom:753.860880px;}
.yaf{bottom:753.872970px;}
.y170{bottom:753.877440px;}
.y1db{bottom:756.717840px;}
.y198{bottom:757.080000px;}
.y1b9{bottom:758.895690px;}
.y6b{bottom:759.598560px;}
.y254{bottom:760.687200px;}
.y144{bottom:761.757840px;}
.y2d1{bottom:762.120000px;}
.y3b{bottom:768.602880px;}
.y2a0{bottom:772.573680px;}
.yae{bottom:772.585770px;}
.y16f{bottom:772.590240px;}
.y1da{bottom:774.000000px;}
.y8{bottom:774.360000px;}
.y197{bottom:775.797840px;}
.y6a{bottom:776.880720px;}
.y1b8{bottom:777.972810px;}
.y143{bottom:779.040000px;}
.y253{bottom:779.400000px;}
.y2d0{bottom:785.160000px;}
.y3a{bottom:787.680000px;}
.y29f{bottom:791.650800px;}
.yad{bottom:791.662890px;}
.y16e{bottom:791.667360px;}
.y196{bottom:793.080000px;}
.y69{bottom:793.800000px;}
.y142{bottom:796.685610px;}
.y252{bottom:798.113520px;}
.y7{bottom:800.639850px;}
.y5d{bottom:802.800000px;}
.y2cf{bottom:808.560000px;}
.y29e{bottom:810.727920px;}
.y195{bottom:810.729930px;}
.yac{bottom:810.740010px;}
.y16d{bottom:810.744480px;}
.y251{bottom:815.395680px;}
.y141{bottom:815.762730px;}
.y6{bottom:820.076040px;}
.y62{bottom:822.593370px;}
.y29d{bottom:829.440720px;}
.y194{bottom:829.442730px;}
.y68{bottom:829.452810px;}
.y16c{bottom:829.457280px;}
.y2ce{bottom:831.600000px;}
.y250{bottom:832.677840px;}
.y140{bottom:834.839850px;}
.y61{bottom:839.147040px;}
.y29c{bottom:848.517840px;}
.y67{bottom:848.529930px;}
.y16b{bottom:848.534400px;}
.y5{bottom:849.598920px;}
.y24f{bottom:849.960000px;}
.y13f{bottom:853.195680px;}
.y2cd{bottom:855.000000px;}
.y60{bottom:855.713520px;}
.y64{bottom:855.720000px;}
.y16a{bottom:867.247200px;}
.y29b{bottom:867.594960px;}
.y66{bottom:867.607050px;}
.y13e{bottom:870.477840px;}
.y5f{bottom:872.280000px;}
.y2cb{bottom:878.400000px;}
.y4{bottom:878.760000px;}
.y169{bottom:885.960000px;}
.y65{bottom:886.319850px;}
.y13d{bottom:887.760000px;}
.y39{bottom:938.159850px;}
.y1{bottom:940.319850px;}
.h22{height:22.320000px;}
.h23{height:22.321500px;}
.h24{height:22.680000px;}
.h16{height:26.382656px;}
.h1c{height:26.881875px;}
.hc{height:31.587891px;}
.h11{height:33.613594px;}
.h25{height:34.200000px;}
.h26{height:34.201500px;}
.h27{height:34.560000px;}
.h6{height:37.833750px;}
.h13{height:37.884990px;}
.h3{height:41.696016px;}
.he{height:41.816250px;}
.h2{height:48.013594px;}
.hb{height:48.059674px;}
.h14{height:53.067656px;}
.h10{height:58.015159px;}
.ha{height:58.121719px;}
.h1e{height:58.138999px;}
.hf{height:58.833281px;}
.h18{height:63.397753px;}
.h21{height:63.679993px;}
.h15{height:63.690913px;}
.h19{height:63.765793px;}
.h1b{height:63.858553px;}
.h17{height:63.860833px;}
.h20{height:63.887353px;}
.h1f{height:63.962233px;}
.h1d{height:63.978913px;}
.h1a{height:64.001953px;}
.h4{height:66.706875px;}
.h8{height:73.283906px;}
.h5{height:76.943340px;}
.h12{height:98.638500px;}
.h7{height:99.578340px;}
.h9{height:201.600000px;}
.hd{height:230.761500px;}
.h0{height:1020.600000px;}
.h1{height:1020.750000px;}
.w5{width:102.960000px;}
.w7{width:116.280000px;}
.w8{width:165.240000px;}
.w3{width:170.281500px;}
.w6{width:208.440000px;}
.w4{width:280.440000px;}
.w2{width:382.678500px;}
.w0{width:722.880000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x12{left:4.680000px;}
.x4{left:12.240000px;}
.xb{left:16.560000px;}
.x8{left:23.400000px;}
.x11{left:91.440000px;}
.x3{left:93.240000px;}
.x1{left:95.760000px;}
.x5{left:105.480000px;}
.x9{left:117.002160px;}
.xe{left:127.800000px;}
.xf{left:138.237840px;}
.x13{left:195.120000px;}
.xd{left:356.400000px;}
.xa{left:373.680000px;}
.xc{left:390.240000px;}
.x14{left:404.280000px;}
.x7{left:475.920000px;}
.x6{left:498.240000px;}
.x10{left:513.720000px;}
.x15{left:521.280000px;}
.x2{left:547.200000px;}
@media print{
.v6{vertical-align:-24.320000pt;}
.v7{vertical-align:-19.200000pt;}
.v2{vertical-align:-16.640000pt;}
.v4{vertical-align:-12.800000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.665280pt;}
.v5{vertical-align:24.043520pt;}
.v1{vertical-align:29.454080pt;}
.ls50{letter-spacing:-3.816960pt;}
.ls48{letter-spacing:-3.532800pt;}
.ls14{letter-spacing:-3.258880pt;}
.ls32{letter-spacing:-3.120640pt;}
.ls17{letter-spacing:-3.112960pt;}
.ls45{letter-spacing:-3.061760pt;}
.ls63{letter-spacing:-2.956800pt;}
.lsd{letter-spacing:-2.826240pt;}
.ls20{letter-spacing:-2.772480pt;}
.ls52{letter-spacing:-2.580480pt;}
.ls19{letter-spacing:-2.577920pt;}
.ls2f{letter-spacing:-2.531840pt;}
.ls11{letter-spacing:-2.487040pt;}
.ls46{letter-spacing:-2.383360pt;}
.ls34{letter-spacing:-2.296320pt;}
.lsc{letter-spacing:-2.178560pt;}
.ls49{letter-spacing:-2.150400pt;}
.ls3f{letter-spacing:-2.096640pt;}
.ls35{letter-spacing:-2.091520pt;}
.ls53{letter-spacing:-2.001920pt;}
.ls41{letter-spacing:-1.994240pt;}
.ls2e{letter-spacing:-1.848320pt;}
.ls30{letter-spacing:-1.825280pt;}
.lsa{letter-spacing:-1.731840pt;}
.ls4f{letter-spacing:-1.720320pt;}
.lsb{letter-spacing:-1.715200pt;}
.ls5b{letter-spacing:-1.707520pt;}
.ls16{letter-spacing:-1.702400pt;}
.ls2c{letter-spacing:-1.666560pt;}
.ls24{letter-spacing:-1.605120pt;}
.ls1d{letter-spacing:-1.556480pt;}
.lse{letter-spacing:-1.530880pt;}
.ls21{letter-spacing:-1.507840pt;}
.ls9{letter-spacing:-1.478400pt;}
.ls37{letter-spacing:-1.459200pt;}
.ls2b{letter-spacing:-1.451520pt;}
.ls2d{letter-spacing:-1.295360pt;}
.ls3d{letter-spacing:-1.290240pt;}
.ls12{letter-spacing:-1.264640pt;}
.ls51{letter-spacing:-1.236480pt;}
.ls1f{letter-spacing:-1.216000pt;}
.lsf{letter-spacing:-1.187840pt;}
.ls31{letter-spacing:-1.177600pt;}
.ls23{letter-spacing:-1.167360pt;}
.ls18{letter-spacing:-1.118720pt;}
.ls7{letter-spacing:-1.056000pt;}
.ls3c{letter-spacing:-1.000960pt;}
.ls36{letter-spacing:-0.972800pt;}
.ls22{letter-spacing:-0.924160pt;}
.ls60{letter-spacing:-0.883200pt;}
.ls3e{letter-spacing:-0.860160pt;}
.ls10{letter-spacing:-0.853760pt;}
.ls40{letter-spacing:-0.806400pt;}
.ls42{letter-spacing:-0.765440pt;}
.ls15{letter-spacing:-0.729600pt;}
.ls43{letter-spacing:-0.647680pt;}
.ls58{letter-spacing:-0.645120pt;}
.ls8{letter-spacing:-0.633600pt;}
.ls56{letter-spacing:-0.631040pt;}
.ls62{letter-spacing:-0.583680pt;}
.ls33{letter-spacing:-0.529920pt;}
.ls1a{letter-spacing:-0.486400pt;}
.ls44{letter-spacing:-0.412160pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.048640pt;}
.ls26{letter-spacing:0.053760pt;}
.ls57{letter-spacing:0.069120pt;}
.ls13{letter-spacing:0.074240pt;}
.ls1e{letter-spacing:0.097280pt;}
.ls1{letter-spacing:0.112640pt;}
.ls59{letter-spacing:0.117760pt;}
.ls5d{letter-spacing:0.294400pt;}
.ls1b{letter-spacing:0.340480pt;}
.ls4d{letter-spacing:0.398080pt;}
.ls2{letter-spacing:0.445440pt;}
.ls28{letter-spacing:0.512000pt;}
.ls3{letter-spacing:0.640000pt;}
.ls5c{letter-spacing:0.645120pt;}
.ls54{letter-spacing:0.647680pt;}
.ls4b{letter-spacing:1.943040pt;}
.ls3a{letter-spacing:3.179520pt;}
.ls4e{letter-spacing:3.210240pt;}
.ls55{letter-spacing:3.225600pt;}
.ls4c{letter-spacing:3.532800pt;}
.ls47{letter-spacing:4.474880pt;}
.ls27{letter-spacing:4.812800pt;}
.ls39{letter-spacing:5.770240pt;}
.ls4a{letter-spacing:7.065600pt;}
.ls3b{letter-spacing:8.302080pt;}
.ls5f{letter-spacing:9.597440pt;}
.ls5e{letter-spacing:12.188160pt;}
.ls5{letter-spacing:18.570240pt;}
.ls5a{letter-spacing:25.177088pt;}
.ls61{letter-spacing:27.703040pt;}
.ls29{letter-spacing:41.487360pt;}
.ls2a{letter-spacing:41.610240pt;}
.ls4{letter-spacing:48.007680pt;}
.ls25{letter-spacing:836.505600pt;}
.ls0{letter-spacing:916.143360pt;}
.ls38{letter-spacing:1303.680000pt;}
.ws3{word-spacing:-14.720000pt;}
.ws101{word-spacing:-14.190080pt;}
.ws84{word-spacing:-13.954560pt;}
.wsf8{word-spacing:-13.719040pt;}
.ws99{word-spacing:-13.440000pt;}
.ws4a{word-spacing:-13.424640pt;}
.ws5{word-spacing:-13.189120pt;}
.wsf2{word-spacing:-13.012480pt;}
.ws8e{word-spacing:-12.894720pt;}
.ws103{word-spacing:-12.579840pt;}
.ws2{word-spacing:-12.541440pt;}
.ws4c{word-spacing:-12.423680pt;}
.wsc0{word-spacing:-12.203520pt;}
.ws98{word-spacing:-12.188160pt;}
.ws8{word-spacing:-12.160000pt;}
.ws9a{word-spacing:-12.149760pt;}
.ws4{word-spacing:-11.893760pt;}
.wsaa{word-spacing:-11.719680pt;}
.ws8f{word-spacing:-11.599360pt;}
.ws102{word-spacing:-11.576320pt;}
.wsd{word-spacing:-11.430400pt;}
.wsf1{word-spacing:-11.343360pt;}
.ws97{word-spacing:-11.187200pt;}
.ws11{word-spacing:-10.992640pt;}
.ws9{word-spacing:-10.895360pt;}
.wse9{word-spacing:-10.859520pt;}
.ws1{word-spacing:-10.560000pt;}
.wsf{word-spacing:-10.506240pt;}
.ws49{word-spacing:-10.483200pt;}
.wsfb{word-spacing:-10.457600pt;}
.ws4b{word-spacing:-10.311680pt;}
.ws6b{word-spacing:-10.165760pt;}
.ws0{word-spacing:-9.926400pt;}
.ws4d{word-spacing:-9.533440pt;}
.wsb{word-spacing:-9.354240pt;}
.ws6{word-spacing:-9.280000pt;}
.wsc{word-spacing:-8.901120pt;}
.wsde{word-spacing:-8.648960pt;}
.ws10{word-spacing:-8.220160pt;}
.ws7{word-spacing:-8.092160pt;}
.wse{word-spacing:-8.000000pt;}
.wsdf{word-spacing:-7.672320pt;}
.wsa{word-spacing:-6.792960pt;}
.ws70{word-spacing:-3.179520pt;}
.ws80{word-spacing:-2.649600pt;}
.ws19{word-spacing:-2.315520pt;}
.ws72{word-spacing:-2.311680pt;}
.ws45{word-spacing:-2.188800pt;}
.wsd8{word-spacing:-2.001920pt;}
.ws5e{word-spacing:-1.884160pt;}
.ws5f{word-spacing:-1.413120pt;}
.wsac{word-spacing:-1.354240pt;}
.ws3f{word-spacing:-1.118720pt;}
.ws77{word-spacing:-1.075200pt;}
.ws18{word-spacing:-1.029120pt;}
.ws14{word-spacing:-0.971520pt;}
.wsd3{word-spacing:-0.942080pt;}
.ws82{word-spacing:-0.883200pt;}
.ws36{word-spacing:-0.826880pt;}
.wse4{word-spacing:-0.778240pt;}
.ws1f{word-spacing:-0.742400pt;}
.ws66{word-spacing:-0.729600pt;}
.ws55{word-spacing:-0.647680pt;}
.ws78{word-spacing:-0.645120pt;}
.ws23{word-spacing:-0.632320pt;}
.wscf{word-spacing:-0.591360pt;}
.ws13{word-spacing:-0.549120pt;}
.ws6c{word-spacing:-0.483840pt;}
.ws1d{word-spacing:-0.408320pt;}
.wsab{word-spacing:-0.117760pt;}
.ws60{word-spacing:-0.058880pt;}
.ws12{word-spacing:0.000000pt;}
.ws2a{word-spacing:0.097280pt;}
.ws48{word-spacing:0.145920pt;}
.ws73{word-spacing:0.161280pt;}
.ws65{word-spacing:0.194560pt;}
.ws76{word-spacing:0.215040pt;}
.ws1a{word-spacing:0.257280pt;}
.ws47{word-spacing:0.340480pt;}
.ws9e{word-spacing:0.353280pt;}
.ws43{word-spacing:0.389120pt;}
.ws40{word-spacing:0.437760pt;}
.ws2b{word-spacing:0.486400pt;}
.wsa0{word-spacing:0.529920pt;}
.ws86{word-spacing:0.588800pt;}
.ws2d{word-spacing:0.632320pt;}
.ws16{word-spacing:0.633600pt;}
.ws71{word-spacing:0.645120pt;}
.ws50{word-spacing:0.647680pt;}
.ws29{word-spacing:0.680960pt;}
.ws4e{word-spacing:0.806400pt;}
.ws1e{word-spacing:0.853760pt;}
.wse1{word-spacing:1.000960pt;}
.wsb4{word-spacing:1.075200pt;}
.wsf4{word-spacing:1.118720pt;}
.ws54{word-spacing:1.177600pt;}
.ws21{word-spacing:1.264640pt;}
.wsb9{word-spacing:1.290240pt;}
.wscc{word-spacing:1.295360pt;}
.wsd4{word-spacing:1.354240pt;}
.ws75{word-spacing:1.451520pt;}
.ws38{word-spacing:1.459200pt;}
.ws15{word-spacing:1.478400pt;}
.wsc6{word-spacing:1.505280pt;}
.ws3d{word-spacing:1.507840pt;}
.wsef{word-spacing:1.530880pt;}
.ws7a{word-spacing:1.648640pt;}
.ws24{word-spacing:1.702400pt;}
.wsf3{word-spacing:1.707520pt;}
.ws17{word-spacing:1.731840pt;}
.ws26{word-spacing:1.751040pt;}
.ws81{word-spacing:1.825280pt;}
.wsfc{word-spacing:1.848320pt;}
.ws59{word-spacing:1.884160pt;}
.ws27{word-spacing:1.896960pt;}
.wsdc{word-spacing:1.935360pt;}
.ws53{word-spacing:1.943040pt;}
.wsba{word-spacing:1.945600pt;}
.ws62{word-spacing:2.091520pt;}
.wsb7{word-spacing:2.096640pt;}
.wsa5{word-spacing:2.150400pt;}
.ws7e{word-spacing:2.296320pt;}
.wse2{word-spacing:2.414080pt;}
.ws58{word-spacing:2.472960pt;}
.ws20{word-spacing:2.487040pt;}
.wsdb{word-spacing:2.531840pt;}
.wsbb{word-spacing:2.577920pt;}
.wsc9{word-spacing:2.580480pt;}
.ws100{word-spacing:2.590720pt;}
.wsbc{word-spacing:2.675200pt;}
.ws42{word-spacing:2.723840pt;}
.wsca{word-spacing:2.741760pt;}
.ws67{word-spacing:2.772480pt;}
.wsd7{word-spacing:2.795520pt;}
.wsf9{word-spacing:2.826240pt;}
.ws1b{word-spacing:2.830080pt;}
.ws8d{word-spacing:2.944000pt;}
.wsa3{word-spacing:3.061760pt;}
.wsbd{word-spacing:3.064320pt;}
.ws25{word-spacing:3.112960pt;}
.wsd0{word-spacing:3.171840pt;}
.ws85{word-spacing:3.179520pt;}
.wsd1{word-spacing:3.225600pt;}
.ws56{word-spacing:3.238400pt;}
.ws22{word-spacing:3.258880pt;}
.ws5a{word-spacing:3.709440pt;}
.ws7c{word-spacing:3.768320pt;}
.wsc4{word-spacing:3.816960pt;}
.wsb8{word-spacing:4.032000pt;}
.wsec{word-spacing:4.085760pt;}
.wsf7{word-spacing:4.180480pt;}
.ws32{word-spacing:4.328960pt;}
.ws52{word-spacing:4.474880pt;}
.wse0{word-spacing:4.515840pt;}
.ws91{word-spacing:4.887040pt;}
.ws5b{word-spacing:5.004800pt;}
.ws31{word-spacing:5.301760pt;}
.wscb{word-spacing:5.322240pt;}
.wsa1{word-spacing:5.475840pt;}
.wsa7{word-spacing:5.593600pt;}
.ws6d{word-spacing:5.711360pt;}
.wsb0{word-spacing:5.752320pt;}
.ws79{word-spacing:5.770240pt;}
.wsbf{word-spacing:5.788160pt;}
.ws5c{word-spacing:6.300160pt;}
.wsb6{word-spacing:6.558720pt;}
.wsb5{word-spacing:6.612480pt;}
.ws6e{word-spacing:6.771200pt;}
.ws61{word-spacing:6.858240pt;}
.ws63{word-spacing:7.004160pt;}
.ws9b{word-spacing:7.006720pt;}
.wscd{word-spacing:7.042560pt;}
.ws8a{word-spacing:7.065600pt;}
.wsc1{word-spacing:7.595520pt;}
.wsc5{word-spacing:7.848960pt;}
.wseb{word-spacing:7.902720pt;}
.wsf5{word-spacing:8.007680pt;}
.wsd9{word-spacing:8.066560pt;}
.ws39{word-spacing:8.171520pt;}
.ws6f{word-spacing:8.302080pt;}
.wsce{word-spacing:8.332800pt;}
.ws88{word-spacing:8.360960pt;}
.wsa2{word-spacing:8.832000pt;}
.wsda{word-spacing:8.890880pt;}
.ws105{word-spacing:8.949760pt;}
.wse3{word-spacing:9.047040pt;}
.wsc2{word-spacing:9.139200pt;}
.wsf0{word-spacing:9.192960pt;}
.wsfa{word-spacing:9.361920pt;}
.wsbe{word-spacing:9.436160pt;}
.ws51{word-spacing:9.597440pt;}
.wse6{word-spacing:9.623040pt;}
.ws93{word-spacing:10.127360pt;}
.ws28{word-spacing:10.311680pt;}
.ws34{word-spacing:10.408960pt;}
.wsc8{word-spacing:10.429440pt;}
.wsed{word-spacing:10.483200pt;}
.ws8c{word-spacing:10.598400pt;}
.ws30{word-spacing:10.700800pt;}
.ws87{word-spacing:10.833920pt;}
.ws7d{word-spacing:10.892800pt;}
.wsb3{word-spacing:10.913280pt;}
.ws94{word-spacing:11.422720pt;}
.wsb2{word-spacing:11.719680pt;}
.ws3a{word-spacing:11.722240pt;}
.wsf6{word-spacing:12.129280pt;}
.ws9c{word-spacing:12.188160pt;}
.ws90{word-spacing:12.718080pt;}
.wsa6{word-spacing:12.956160pt;}
.ws37{word-spacing:12.986880pt;}
.wsaf{word-spacing:13.009920pt;}
.ws57{word-spacing:13.365760pt;}
.wsc7{word-spacing:13.424640pt;}
.wsd2{word-spacing:13.440000pt;}
.ws4f{word-spacing:13.483520pt;}
.ws35{word-spacing:13.619200pt;}
.ws8b{word-spacing:13.954560pt;}
.ws74{word-spacing:14.246400pt;}
.ws5d{word-spacing:14.720000pt;}
.ws9d{word-spacing:15.249920pt;}
.wsc3{word-spacing:15.536640pt;}
.wsfd{word-spacing:15.603200pt;}
.ws96{word-spacing:15.720960pt;}
.ws92{word-spacing:15.956480pt;}
.ws89{word-spacing:16.015360pt;}
.wsd6{word-spacing:16.545280pt;}
.wsa4{word-spacing:16.880640pt;}
.ws1c{word-spacing:16.894720pt;}
.wsdd{word-spacing:17.016320pt;}
.ws3c{word-spacing:17.121280pt;}
.wse7{word-spacing:17.192960pt;}
.wsd5{word-spacing:17.251840pt;}
.wse5{word-spacing:17.310720pt;}
.wsfe{word-spacing:17.840640pt;}
.wsa9{word-spacing:17.996800pt;}
.ws3b{word-spacing:18.385920pt;}
.wsae{word-spacing:18.547200pt;}
.ws83{word-spacing:18.606080pt;}
.wse8{word-spacing:19.607040pt;}
.wsa8{word-spacing:19.699200pt;}
.ws95{word-spacing:19.842560pt;}
.ws44{word-spacing:20.039680pt;}
.ws7b{word-spacing:20.372480pt;}
.ws2e{word-spacing:20.672000pt;}
.ws2c{word-spacing:21.109760pt;}
.wsee{word-spacing:21.137920pt;}
.ws68{word-spacing:21.936640pt;}
.wsad{word-spacing:22.433280pt;}
.wsff{word-spacing:22.904320pt;}
.wsb1{word-spacing:23.224320pt;}
.ws9f{word-spacing:23.669760pt;}
.ws41{word-spacing:24.514560pt;}
.wsea{word-spacing:24.965120pt;}
.ws7f{word-spacing:25.495040pt;}
.ws104{word-spacing:28.792320pt;}
.ws3e{word-spacing:32.151040pt;}
.ws46{word-spacing:33.756160pt;}
.ws2f{word-spacing:40.176640pt;}
.ws69{word-spacing:41.392640pt;}
.ws64{word-spacing:42.705920pt;}
.ws33{word-spacing:43.727360pt;}
.ws6a{word-spacing:55.206400pt;}
.ws106{word-spacing:101.803520pt;}
._c{margin-left:-4.259584pt;}
._3{margin-left:-3.193344pt;}
._5{margin-left:-2.043392pt;}
._1{margin-left:-0.996864pt;}
._0{width:1.005312pt;}
._2{width:1.926144pt;}
._4{width:3.223552pt;}
._9{width:4.119552pt;}
._8{width:5.140736pt;}
._b{width:6.030848pt;}
._d{width:7.750400pt;}
._a{width:8.713728pt;}
._7{width:30.040064pt;}
._e{width:100.195328pt;}
._6{width:214.405120pt;}
.fs9{font-size:32.000000pt;}
.fsa{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs1{font-size:42.240000pt;}
.fs0{font-size:48.640000pt;}
.fs8{font-size:53.760000pt;}
.fs3{font-size:56.320000pt;}
.fs6{font-size:58.880000pt;}
.fs5{font-size:74.240000pt;}
.fs2{font-size:85.760000pt;}
.fs4{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y1a{bottom:2.880000pt;}
.y2cc{bottom:3.199867pt;}
.y38{bottom:3.200000pt;}
.y18{bottom:4.480000pt;}
.y2ef{bottom:18.240000pt;}
.y2f1{bottom:18.560000pt;}
.y3{bottom:40.318080pt;}
.y2{bottom:52.800000pt;}
.y63{bottom:61.760000pt;}
.y5e{bottom:76.159867pt;}
.y23{bottom:86.053120pt;}
.y168{bottom:86.054400pt;}
.yf5{bottom:86.059520pt;}
.yd0{bottom:86.069760pt;}
.y5c{bottom:86.074880pt;}
.y118{bottom:86.077440pt;}
.y13c{bottom:87.031040pt;}
.y225{bottom:88.968960pt;}
.yab{bottom:89.280000pt;}
.y193{bottom:90.310400pt;}
.y2ca{bottom:94.720000pt;}
.y29a{bottom:96.794747pt;}
.y2ed{bottom:98.560000pt;}
.y22{bottom:99.818240pt;}
.y167{bottom:99.819520pt;}
.yf4{bottom:99.824640pt;}
.ycf{bottom:99.834880pt;}
.y88{bottom:99.840000pt;}
.y117{bottom:99.842560pt;}
.y1fe{bottom:101.148160pt;}
.y21c{bottom:101.173760pt;}
.yaa{bottom:101.760000pt;}
.y13b{bottom:102.392960pt;}
.y5b{bottom:103.040000pt;}
.y23a{bottom:105.266560pt;}
.y224{bottom:105.602560pt;}
.y277{bottom:106.876160pt;}
.y192{bottom:107.267840pt;}
.y2c2{bottom:113.417600pt;}
.y299{bottom:113.428347pt;}
.y21{bottom:113.583360pt;}
.y166{bottom:113.584640pt;}
.yf3{bottom:113.589760pt;}
.y2c9{bottom:115.200000pt;}
.y5a{bottom:115.520000pt;}
.y87{bottom:116.800000pt;}
.y13a{bottom:117.754880pt;}
.y1fd{bottom:118.105600pt;}
.y21b{bottom:118.131200pt;}
.y116{bottom:119.040000pt;}
.y2ec{bottom:119.360000pt;}
.y239{bottom:120.628480pt;}
.y276{bottom:122.238080pt;}
.ya9{bottom:122.269440pt;}
.y223{bottom:122.560000pt;}
.y191{bottom:124.225280pt;}
.y20{bottom:127.348480pt;}
.y165{bottom:127.349760pt;}
.yf2{bottom:127.354880pt;}
.y24e{bottom:128.663040pt;}
.y86{bottom:129.280000pt;}
.y295{bottom:129.627520pt;}
.y115{bottom:129.888000pt;}
.y2c1{bottom:130.375040pt;}
.y298{bottom:130.385787pt;}
.y139{bottom:133.116800pt;}
.y1fc{bottom:134.739200pt;}
.y21a{bottom:134.764800pt;}
.y238{bottom:135.990400pt;}
.y2c8{bottom:136.000000pt;}
.y275{bottom:137.600000pt;}
.y222{bottom:139.192827pt;}
.ya8{bottom:139.226880pt;}
.y2eb{bottom:140.160000pt;}
.y1f{bottom:141.113600pt;}
.y164{bottom:141.114880pt;}
.y190{bottom:141.182720pt;}
.y114{bottom:143.653120pt;}
.y1d9{bottom:144.320000pt;}
.yf1{bottom:145.280000pt;}
.y24d{bottom:145.620480pt;}
.yce{bottom:147.208960pt;}
.y2c0{bottom:147.332480pt;}
.y297{bottom:147.343227pt;}
.y138{bottom:148.478720pt;}
.y237{bottom:151.352320pt;}
.y219{bottom:151.398400pt;}
.y1fb{bottom:151.696640pt;}
.y274{bottom:153.282560pt;}
.y221{bottom:154.554747pt;}
.y1e{bottom:155.194880pt;}
.yf0{bottom:155.200000pt;}
.ya7{bottom:155.860480pt;}
.y1d8{bottom:156.800000pt;}
.y113{bottom:157.418240pt;}
.y18f{bottom:157.816320pt;}
.y163{bottom:158.080000pt;}
.y2ea{bottom:160.640000pt;}
.y59{bottom:161.361920pt;}
.y294{bottom:162.261760pt;}
.y24c{bottom:162.577920pt;}
.y137{bottom:163.518080pt;}
.ycd{bottom:163.842560pt;}
.y2bf{bottom:163.966080pt;}
.y296{bottom:163.976827pt;}
.yd{bottom:166.080000pt;}
.y236{bottom:166.714240pt;}
.y218{bottom:168.355840pt;}
.y1fa{bottom:168.654080pt;}
.y220{bottom:169.916667pt;}
.y273{bottom:170.240000pt;}
.yef{bottom:170.246400pt;}
.y162{bottom:170.560000pt;}
.y112{bottom:171.183360pt;}
.y1b7{bottom:172.160000pt;}
.ya6{bottom:172.817920pt;}
.y1d{bottom:173.120000pt;}
.y18e{bottom:174.773760pt;}
.y58{bottom:178.319360pt;}
.y136{bottom:178.880000pt;}
.y24b{bottom:179.211520pt;}
.y293{bottom:179.219200pt;}
.y2c7{bottom:180.800640pt;}
.y2be{bottom:180.923520pt;}
.ycc{bottom:180.934267pt;}
.y2e9{bottom:181.440000pt;}
.y235{bottom:182.076160pt;}
.y1c{bottom:182.720000pt;}
.y1d7{bottom:184.048640pt;}
.y1b6{bottom:184.320000pt;}
.y21f{bottom:184.956027pt;}
.y111{bottom:185.264640pt;}
.y1f9{bottom:185.287680pt;}
.y217{bottom:185.313280pt;}
.y272{bottom:186.554240pt;}
.yee{bottom:186.880000pt;}
.ya5{bottom:189.775360pt;}
.y18d{bottom:191.731200pt;}
.y25{bottom:193.600000pt;}
.y135{bottom:194.562560pt;}
.y85{bottom:194.887680pt;}
.y57{bottom:195.276800pt;}
.y24a{bottom:196.168960pt;}
.y292{bottom:196.176640pt;}
.y234{bottom:197.438080pt;}
.y2c6{bottom:197.758080pt;}
.y2bd{bottom:197.880960pt;}
.ycb{bottom:197.891707pt;}
.y110{bottom:199.029760pt;}
.y21e{bottom:200.317947pt;}
.y1d6{bottom:200.682240pt;}
.y271{bottom:201.916160pt;}
.y2e8{bottom:201.920000pt;}
.y24{bottom:202.240000pt;}
.y1f8{bottom:202.245120pt;}
.y216{bottom:202.270720pt;}
.y161{bottom:202.297600pt;}
.yed{bottom:203.514240pt;}
.y1b5{bottom:205.109120pt;}
.ya4{bottom:206.408960pt;}
.y18c{bottom:208.364800pt;}
.y134{bottom:211.520000pt;}
.y84{bottom:211.845120pt;}
.y56{bottom:212.234240pt;}
.y10f{bottom:212.794880pt;}
.y233{bottom:212.800000pt;}
.y249{bottom:213.126400pt;}
.y291{bottom:213.134080pt;}
.y2c5{bottom:214.715520pt;}
.y2bc{bottom:214.838400pt;}
.yca{bottom:214.849147pt;}
.y21d{bottom:215.679867pt;}
.y270{bottom:217.278080pt;}
.y1d5{bottom:217.639680pt;}
.yec{bottom:218.876160pt;}
.y1f7{bottom:219.202560pt;}
.y215{bottom:219.228160pt;}
.y160{bottom:219.255040pt;}
.y37{bottom:220.139520pt;}
.y31{bottom:220.145280pt;}
.y1b4{bottom:220.471040pt;}
.y2e7{bottom:222.720000pt;}
.ya3{bottom:223.366400pt;}
.y18b{bottom:225.322240pt;}
.y133{bottom:228.143360pt;}
.y232{bottom:228.526080pt;}
.y83{bottom:228.802560pt;}
.y55{bottom:228.867840pt;}
.y10e{bottom:229.760000pt;}
.y290{bottom:229.767680pt;}
.y2c4{bottom:231.158907pt;}
.y2bb{bottom:231.472000pt;}
.yc9{bottom:231.482747pt;}
.y26f{bottom:232.640000pt;}
.yeb{bottom:234.238080pt;}
.y1d4{bottom:234.597120pt;}
.y36{bottom:234.865280pt;}
.y30{bottom:234.871040pt;}
.y1b3{bottom:235.832960pt;}
.y1f6{bottom:236.160000pt;}
.y214{bottom:236.185600pt;}
.y15f{bottom:236.212480pt;}
.ya2{bottom:240.053760pt;}
.y10d{bottom:242.240000pt;}
.y18a{bottom:242.279680pt;}
.y2e6{bottom:243.200000pt;}
.y132{bottom:243.505280pt;}
.y231{bottom:245.159680pt;}
.y54{bottom:245.825280pt;}
.y82{bottom:245.829120pt;}
.y248{bottom:246.388480pt;}
.y28f{bottom:246.725120pt;}
.y2c3{bottom:248.116347pt;}
.y26e{bottom:248.348160pt;}
.y2ba{bottom:248.429440pt;}
.yc8{bottom:248.440187pt;}
.y35{bottom:249.262720pt;}
.y2f{bottom:249.268480pt;}
.yea{bottom:249.600000pt;}
.y1b2{bottom:251.194880pt;}
.y1d3{bottom:251.554560pt;}
.y1f5{bottom:252.478080pt;}
.y213{bottom:252.819200pt;}
.y15e{bottom:252.846080pt;}
.ya1{bottom:257.335040pt;}
.y131{bottom:258.544640pt;}
.y189{bottom:258.913280pt;}
.y247{bottom:261.750400pt;}
.y230{bottom:262.117120pt;}
.y81{bottom:262.462720pt;}
.y53{bottom:262.782720pt;}
.y28e{bottom:263.682560pt;}
.y34{bottom:263.988480pt;}
.y2e{bottom:263.994240pt;}
.y2e5{bottom:264.000000pt;}
.y26d{bottom:265.305600pt;}
.ye9{bottom:265.317120pt;}
.y2b9{bottom:265.386880pt;}
.yc7{bottom:265.397627pt;}
.y1b1{bottom:266.234240pt;}
.y1f4{bottom:267.840000pt;}
.y1d2{bottom:268.188160pt;}
.y212{bottom:269.776640pt;}
.y15d{bottom:269.803520pt;}
.y130{bottom:273.906560pt;}
.ya0{bottom:273.968640pt;}
.y2f8{bottom:275.838080pt;}
.y188{bottom:275.870720pt;}
.y246{bottom:277.112320pt;}
.y33{bottom:278.714240pt;}
.y2d{bottom:278.720000pt;}
.y22f{bottom:279.074560pt;}
.y52{bottom:279.416320pt;}
.y80{bottom:279.420160pt;}
.y28d{bottom:280.640000pt;}
.y1b0{bottom:281.596160pt;}
.y26c{bottom:281.939200pt;}
.ye8{bottom:281.950720pt;}
.y2b8{bottom:282.020480pt;}
.yc6{bottom:282.031227pt;}
.y1f3{bottom:283.531520pt;}
.y2e4{bottom:284.800000pt;}
.y1d1{bottom:285.145600pt;}
.y10c{bottom:286.375680pt;}
.y211{bottom:286.734080pt;}
.y15c{bottom:286.760960pt;}
.y12f{bottom:289.268480pt;}
.y9f{bottom:290.926080pt;}
.y2f7{bottom:291.200000pt;}
.y245{bottom:292.474240pt;}
.y187{bottom:292.828160pt;}
.y2c{bottom:293.422080pt;}
.y32{bottom:293.440000pt;}
.y22e{bottom:295.708160pt;}
.y51{bottom:296.373760pt;}
.y7f{bottom:296.377600pt;}
.y28c{bottom:296.946560pt;}
.y1af{bottom:296.958080pt;}
.y26b{bottom:298.896640pt;}
.ye7{bottom:298.908160pt;}
.y2b7{bottom:298.977920pt;}
.yc5{bottom:298.988667pt;}
.y1f2{bottom:300.488960pt;}
.y10b{bottom:301.737600pt;}
.y1d0{bottom:302.103040pt;}
.y210{bottom:303.367680pt;}
.y15b{bottom:303.394560pt;}
.y2f6{bottom:304.000000pt;}
.y12e{bottom:304.630400pt;}
.y2e3{bottom:305.280000pt;}
.y2b{bottom:307.819520pt;}
.y244{bottom:307.836160pt;}
.y9e{bottom:307.883520pt;}
.y186{bottom:309.785600pt;}
.y28b{bottom:312.308480pt;}
.y1ae{bottom:312.320000pt;}
.y22d{bottom:312.665600pt;}
.y7e{bottom:313.011200pt;}
.y50{bottom:313.331200pt;}
.y26a{bottom:315.854080pt;}
.ye6{bottom:315.865600pt;}
.y2b6{bottom:315.935360pt;}
.yc4{bottom:315.946107pt;}
.y10a{bottom:317.099520pt;}
.y1f1{bottom:317.446400pt;}
.y1cf{bottom:318.736640pt;}
.y12d{bottom:319.992320pt;}
.y20f{bottom:320.325120pt;}
.y15a{bottom:320.352000pt;}
.y2a{bottom:322.545280pt;}
.y243{bottom:323.198080pt;}
.y9d{bottom:324.517120pt;}
.y2f5{bottom:324.800000pt;}
.y2e2{bottom:326.080000pt;}
.y185{bottom:326.419200pt;}
.y28a{bottom:327.670400pt;}
.y1ad{bottom:328.039680pt;}
.y22c{bottom:329.623040pt;}
.y4f{bottom:329.964800pt;}
.y7d{bottom:329.968640pt;}
.y109{bottom:332.138880pt;}
.y269{bottom:332.487680pt;}
.ye5{bottom:332.499200pt;}
.y2b5{bottom:332.568960pt;}
.yc3{bottom:332.579707pt;}
.y1f0{bottom:334.080000pt;}
.y12c{bottom:335.354240pt;}
.y1ce{bottom:335.694080pt;}
.y29{bottom:337.271040pt;}
.y20e{bottom:337.282560pt;}
.y159{bottom:337.309440pt;}
.y242{bottom:338.560000pt;}
.y9c{bottom:341.474560pt;}
.y289{bottom:343.032320pt;}
.y184{bottom:343.376640pt;}
.y1ac{bottom:344.997120pt;}
.y2f4{bottom:345.280000pt;}
.y2e1{bottom:346.560000pt;}
.y22b{bottom:346.580480pt;}
.y4e{bottom:346.922240pt;}
.y7c{bottom:346.926080pt;}
.y108{bottom:347.500800pt;}
.y268{bottom:349.445120pt;}
.ye4{bottom:349.456640pt;}
.y2b4{bottom:349.526400pt;}
.yc2{bottom:349.537147pt;}
.y12b{bottom:350.716160pt;}
.y1ef{bottom:350.720000pt;}
.y28{bottom:351.996800pt;}
.y1cd{bottom:352.651520pt;}
.y20d{bottom:354.240000pt;}
.y241{bottom:354.251520pt;}
.y158{bottom:354.266880pt;}
.y288{bottom:358.394240pt;}
.y9b{bottom:358.432000pt;}
.y183{bottom:360.334080pt;}
.y1ab{bottom:361.630720pt;}
.y107{bottom:362.862720pt;}
.y22a{bottom:363.214080pt;}
.y4d{bottom:363.879680pt;}
.y7b{bottom:363.883520pt;}
.y12a{bottom:366.078080pt;}
.y2f3{bottom:366.080000pt;}
.ye3{bottom:366.090240pt;}
.y267{bottom:366.402560pt;}
.y1ee{bottom:366.434560pt;}
.y2b3{bottom:366.483840pt;}
.yc1{bottom:366.494587pt;}
.y27{bottom:366.722560pt;}
.y2e0{bottom:367.360000pt;}
.y1cc{bottom:369.285120pt;}
.y20c{bottom:370.537600pt;}
.y240{bottom:370.885120pt;}
.y157{bottom:370.900480pt;}
.y287{bottom:373.756160pt;}
.y9a{bottom:375.389440pt;}
.y182{bottom:376.967680pt;}
.y106{bottom:378.224640pt;}
.y1aa{bottom:378.588160pt;}
.y229{bottom:380.171520pt;}
.y7a{bottom:380.517120pt;}
.y4c{bottom:380.837120pt;}
.y26{bottom:381.120000pt;}
.y129{bottom:381.440000pt;}
.y266{bottom:383.360000pt;}
.ye2{bottom:383.371520pt;}
.y1ed{bottom:383.392000pt;}
.y2b2{bottom:383.441280pt;}
.yc0{bottom:383.452027pt;}
.y20b{bottom:385.899520pt;}
.y1cb{bottom:386.242560pt;}
.y23f{bottom:387.842560pt;}
.y156{bottom:387.857920pt;}
.y2df{bottom:388.160000pt;}
.y286{bottom:389.118080pt;}
.y99{bottom:392.023040pt;}
.y105{bottom:393.586560pt;}
.y181{bottom:393.925120pt;}
.y1a9{bottom:395.545600pt;}
.y228{bottom:397.128960pt;}
.y128{bottom:397.131520pt;}
.y2f2{bottom:397.440000pt;}
.y4b{bottom:397.470720pt;}
.y79{bottom:397.474560pt;}
.y265{bottom:399.676160pt;}
.ye1{bottom:400.005120pt;}
.y1ec{bottom:400.025600pt;}
.y2b1{bottom:400.074880pt;}
.ybf{bottom:400.085627pt;}
.y20a{bottom:401.261440pt;}
.y1ca{bottom:403.200000pt;}
.y285{bottom:404.480000pt;}
.y23e{bottom:404.800000pt;}
.y155{bottom:404.815360pt;}
.y2de{bottom:408.640000pt;}
.y104{bottom:408.948480pt;}
.y98{bottom:408.980480pt;}
.y1b{bottom:410.880000pt;}
.y180{bottom:410.882560pt;}
.y1a8{bottom:412.503040pt;}
.y227{bottom:413.762560pt;}
.y127{bottom:413.765120pt;}
.y4a{bottom:414.428160pt;}
.y78{bottom:414.432000pt;}
.y264{bottom:415.038080pt;}
.y209{bottom:416.623360pt;}
.ye0{bottom:416.962560pt;}
.y1eb{bottom:416.983040pt;}
.y2b0{bottom:417.032320pt;}
.ybe{bottom:417.043067pt;}
.y1c9{bottom:419.825280pt;}
.y284{bottom:420.197120pt;}
.y23d{bottom:421.116160pt;}
.y154{bottom:421.448960pt;}
.y103{bottom:424.310400pt;}
.yc{bottom:424.320000pt;}
.y97{bottom:425.937920pt;}
.y17f{bottom:427.840000pt;}
.y2f0{bottom:428.800000pt;}
.y1a7{bottom:429.136640pt;}
.y2dd{bottom:429.440000pt;}
.y263{bottom:430.400000pt;}
.y226{bottom:430.720000pt;}
.y126{bottom:430.722560pt;}
.y77{bottom:431.065600pt;}
.y49{bottom:431.385600pt;}
.y208{bottom:431.985280pt;}
.y1ea{bottom:433.940480pt;}
.ydf{bottom:433.972480pt;}
.y2af{bottom:433.989760pt;}
.ybd{bottom:434.000507pt;}
.y1c8{bottom:434.864640pt;}
.y23c{bottom:436.478080pt;}
.y283{bottom:436.830720pt;}
.y153{bottom:438.406400pt;}
.y102{bottom:439.672320pt;}
.y19{bottom:440.960000pt;}
.y96{bottom:442.571520pt;}
.y17e{bottom:444.148480pt;}
.y1a6{bottom:446.094080pt;}
.y262{bottom:446.096640pt;}
.y207{bottom:447.347200pt;}
.y125{bottom:447.680000pt;}
.y48{bottom:448.019200pt;}
.y76{bottom:448.023040pt;}
.y17{bottom:448.629760pt;}
.y2dc{bottom:449.920000pt;}
.y1c7{bottom:450.226560pt;}
.y1e9{bottom:450.574080pt;}
.yde{bottom:450.606080pt;}
.y2ae{bottom:450.623360pt;}
.ybc{bottom:450.634107pt;}
.y23b{bottom:451.840000pt;}
.y282{bottom:453.788160pt;}
.y101{bottom:455.034240pt;}
.y152{bottom:455.036160pt;}
.y17d{bottom:459.510400pt;}
.y95{bottom:459.528960pt;}
.y2ee{bottom:460.160000pt;}
.y16{bottom:462.394880pt;}
.y206{bottom:462.709120pt;}
.y1a5{bottom:463.051520pt;}
.y261{bottom:463.054080pt;}
.y124{bottom:464.318720pt;}
.y47{bottom:464.976640pt;}
.y75{bottom:464.980480pt;}
.y1c6{bottom:465.588480pt;}
.y1e8{bottom:467.531520pt;}
.ydd{bottom:467.563520pt;}
.y2ad{bottom:467.580800pt;}
.ybb{bottom:467.591547pt;}
.y100{bottom:470.396160pt;}
.y151{bottom:470.398080pt;}
.y2db{bottom:470.720000pt;}
.y281{bottom:470.745600pt;}
.y17c{bottom:474.872320pt;}
.y15{bottom:476.160000pt;}
.y94{bottom:476.486400pt;}
.y205{bottom:478.071040pt;}
.y123{bottom:479.358080pt;}
.y1a4{bottom:479.685120pt;}
.y260{bottom:479.687680pt;}
.y1c5{bottom:480.950400pt;}
.y74{bottom:481.614080pt;}
.y46{bottom:481.934080pt;}
.y1e7{bottom:484.488960pt;}
.ydc{bottom:484.520960pt;}
.y2ac{bottom:484.538240pt;}
.yba{bottom:484.548987pt;}
.yff{bottom:485.758080pt;}
.y150{bottom:485.760000pt;}
.y280{bottom:487.379200pt;}
.y14{bottom:489.920000pt;}
.y17b{bottom:490.234240pt;}
.y2da{bottom:491.200000pt;}
.y93{bottom:493.151360pt;}
.y204{bottom:493.432960pt;}
.y122{bottom:494.720000pt;}
.y1c4{bottom:496.312320pt;}
.y1a3{bottom:496.642560pt;}
.y25f{bottom:496.645120pt;}
.y45{bottom:498.567680pt;}
.y73{bottom:498.571520pt;}
.y1e6{bottom:501.122560pt;}
.y14f{bottom:501.125120pt;}
.yfe{bottom:501.150720pt;}
.ydb{bottom:501.154560pt;}
.y2ab{bottom:501.171840pt;}
.yb9{bottom:501.182587pt;}
.y13{bottom:503.680000pt;}
.y27f{bottom:504.336640pt;}
.y17a{bottom:505.596160pt;}
.y203{bottom:508.472320pt;}
.y92{bottom:510.108800pt;}
.y121{bottom:510.405120pt;}
.y1c3{bottom:511.674240pt;}
.y2d9{bottom:512.000000pt;}
.y1a2{bottom:513.600000pt;}
.y25e{bottom:513.602560pt;}
.y44{bottom:515.525120pt;}
.y72{bottom:515.528960pt;}
.y12{bottom:517.760000pt;}
.y1e5{bottom:518.080000pt;}
.y14e{bottom:518.082560pt;}
.yfd{bottom:518.108160pt;}
.yda{bottom:518.112000pt;}
.y2aa{bottom:518.129280pt;}
.yb8{bottom:518.140027pt;}
.y179{bottom:520.958080pt;}
.y27e{bottom:521.294080pt;}
.y202{bottom:523.834240pt;}
.y1c2{bottom:527.036160pt;}
.y91{bottom:527.066240pt;}
.y120{bottom:527.362560pt;}
.y1a1{bottom:530.232960pt;}
.y25d{bottom:530.560000pt;}
.y11{bottom:531.520000pt;}
.y43{bottom:532.482560pt;}
.y71{bottom:532.486400pt;}
.y2d8{bottom:532.800000pt;}
.y1e4{bottom:534.703360pt;}
.y14d{bottom:535.040000pt;}
.yfc{bottom:535.065600pt;}
.yd9{bottom:535.069440pt;}
.y2a9{bottom:535.086720pt;}
.yb7{bottom:535.097467pt;}
.y178{bottom:536.320000pt;}
.y27d{bottom:537.927680pt;}
.y201{bottom:539.196160pt;}
.y1c1{bottom:542.398080pt;}
.y90{bottom:544.023680pt;}
.y11f{bottom:544.320000pt;}
.y1a0{bottom:545.272320pt;}
.y10{bottom:545.280000pt;}
.y25c{bottom:546.874240pt;}
.y70{bottom:549.120000pt;}
.y42{bottom:549.463680pt;}
.y1e3{bottom:550.065280pt;}
.y14c{bottom:551.672960pt;}
.yfb{bottom:552.023040pt;}
.yd8{bottom:552.026880pt;}
.y2a8{bottom:552.044160pt;}
.yb6{bottom:552.054907pt;}
.y177{bottom:552.058880pt;}
.y2d7{bottom:553.280000pt;}
.y200{bottom:554.558080pt;}
.y27c{bottom:554.885120pt;}
.y1c0{bottom:557.760000pt;}
.yf{bottom:559.040000pt;}
.y11e{bottom:560.630400pt;}
.y19f{bottom:560.634240pt;}
.y8f{bottom:560.657280pt;}
.y25b{bottom:562.236160pt;}
.y1e2{bottom:565.427200pt;}
.y41{bottom:566.097280pt;}
.y14b{bottom:567.034880pt;}
.yfa{bottom:568.656640pt;}
.yd7{bottom:568.660480pt;}
.y2a7{bottom:568.677760pt;}
.yb5{bottom:568.688507pt;}
.y176{bottom:568.692480pt;}
.y1ff{bottom:569.920000pt;}
.y27b{bottom:571.842560pt;}
.ye{bottom:573.440000pt;}
.y1bf{bottom:573.451520pt;}
.y2d6{bottom:574.080000pt;}
.y11d{bottom:575.992320pt;}
.y19e{bottom:575.996160pt;}
.y25a{bottom:577.598080pt;}
.y8e{bottom:577.614720pt;}
.y1e1{bottom:580.789120pt;}
.y6f{bottom:581.763840pt;}
.y14a{bottom:582.074240pt;}
.y40{bottom:583.054720pt;}
.yf9{bottom:585.614080pt;}
.yd6{bottom:585.617920pt;}
.y2a6{bottom:585.635200pt;}
.yb4{bottom:585.645947pt;}
.y175{bottom:585.649920pt;}
.y27a{bottom:588.800000pt;}
.y1be{bottom:590.085120pt;}
.y11c{bottom:591.354240pt;}
.y19d{bottom:591.358080pt;}
.y259{bottom:592.960000pt;}
.y2d5{bottom:594.560000pt;}
.y8d{bottom:594.572160pt;}
.y1e0{bottom:596.151040pt;}
.y6e{bottom:597.125760pt;}
.y149{bottom:597.436160pt;}
.y3f{bottom:600.012160pt;}
.yf8{bottom:602.571520pt;}
.yd5{bottom:602.575360pt;}
.y2a5{bottom:602.592640pt;}
.yb3{bottom:602.603387pt;}
.y174{bottom:602.607360pt;}
.y279{bottom:605.118080pt;}
.y11b{bottom:606.716160pt;}
.y19c{bottom:606.720000pt;}
.y1bd{bottom:607.042560pt;}
.y258{bottom:608.660480pt;}
.y1df{bottom:611.190400pt;}
.y8c{bottom:611.205760pt;}
.y148{bottom:612.798080pt;}
.yb{bottom:613.120000pt;}
.y2d4{bottom:615.360000pt;}
.y3e{bottom:616.645760pt;}
.yf7{bottom:619.205120pt;}
.yd4{bottom:619.208960pt;}
.y2a4{bottom:619.226240pt;}
.yb2{bottom:619.236987pt;}
.y173{bottom:619.240960pt;}
.y278{bottom:620.480000pt;}
.y11a{bottom:622.078080pt;}
.y19b{bottom:622.411520pt;}
.y1bc{bottom:624.025467pt;}
.y257{bottom:625.617920pt;}
.y1de{bottom:626.552320pt;}
.y147{bottom:628.160000pt;}
.y8b{bottom:628.163200pt;}
.y6d{bottom:628.481280pt;}
.ya{bottom:636.156480pt;}
.y2d3{bottom:636.160000pt;}
.yf6{bottom:636.162560pt;}
.yd3{bottom:636.166400pt;}
.y2a3{bottom:636.183680pt;}
.yb1{bottom:636.194427pt;}
.y172{bottom:636.198400pt;}
.y119{bottom:637.440000pt;}
.y19a{bottom:639.368960pt;}
.y1bb{bottom:640.982907pt;}
.y1dd{bottom:641.914240pt;}
.y256{bottom:642.251520pt;}
.y146{bottom:643.842560pt;}
.y6c{bottom:643.843200pt;}
.y8a{bottom:645.120640pt;}
.y3d{bottom:649.287680pt;}
.yd2{bottom:652.828027pt;}
.y2a2{bottom:653.141120pt;}
.yb0{bottom:653.151867pt;}
.y171{bottom:653.155840pt;}
.y199{bottom:656.002560pt;}
.y2d2{bottom:656.640000pt;}
.y1dc{bottom:657.276160pt;}
.y1ba{bottom:657.616507pt;}
.y89{bottom:658.560000pt;}
.y255{bottom:659.208960pt;}
.y145{bottom:660.800000pt;}
.y9{bottom:662.399040pt;}
.y3c{bottom:666.245120pt;}
.yd1{bottom:669.785467pt;}
.y2a1{bottom:670.098560pt;}
.yaf{bottom:670.109307pt;}
.y170{bottom:670.113280pt;}
.y1db{bottom:672.638080pt;}
.y198{bottom:672.960000pt;}
.y1b9{bottom:674.573947pt;}
.y6b{bottom:675.198720pt;}
.y254{bottom:676.166400pt;}
.y144{bottom:677.118080pt;}
.y2d1{bottom:677.440000pt;}
.y3b{bottom:683.202560pt;}
.y2a0{bottom:686.732160pt;}
.yae{bottom:686.742907pt;}
.y16f{bottom:686.746880pt;}
.y1da{bottom:688.000000pt;}
.y8{bottom:688.320000pt;}
.y197{bottom:689.598080pt;}
.y6a{bottom:690.560640pt;}
.y1b8{bottom:691.531387pt;}
.y143{bottom:692.480000pt;}
.y253{bottom:692.800000pt;}
.y2d0{bottom:697.920000pt;}
.y3a{bottom:700.160000pt;}
.y29f{bottom:703.689600pt;}
.yad{bottom:703.700347pt;}
.y16e{bottom:703.704320pt;}
.y196{bottom:704.960000pt;}
.y69{bottom:705.600000pt;}
.y142{bottom:708.164987pt;}
.y252{bottom:709.434240pt;}
.y7{bottom:711.679867pt;}
.y5d{bottom:713.600000pt;}
.y2cf{bottom:718.720000pt;}
.y29e{bottom:720.647040pt;}
.y195{bottom:720.648827pt;}
.yac{bottom:720.657787pt;}
.y16d{bottom:720.661760pt;}
.y251{bottom:724.796160pt;}
.y141{bottom:725.122427pt;}
.y6{bottom:728.956480pt;}
.y62{bottom:731.194107pt;}
.y29d{bottom:737.280640pt;}
.y194{bottom:737.282427pt;}
.y68{bottom:737.291387pt;}
.y16c{bottom:737.295360pt;}
.y2ce{bottom:739.200000pt;}
.y250{bottom:740.158080pt;}
.y140{bottom:742.079867pt;}
.y61{bottom:745.908480pt;}
.y29c{bottom:754.238080pt;}
.y67{bottom:754.248827pt;}
.y16b{bottom:754.252800pt;}
.y5{bottom:755.199040pt;}
.y24f{bottom:755.520000pt;}
.y13f{bottom:758.396160pt;}
.y2cd{bottom:760.000000pt;}
.y60{bottom:760.634240pt;}
.y64{bottom:760.640000pt;}
.y16a{bottom:770.886400pt;}
.y29b{bottom:771.195520pt;}
.y66{bottom:771.206267pt;}
.y13e{bottom:773.758080pt;}
.y5f{bottom:775.360000pt;}
.y2cb{bottom:780.800000pt;}
.y4{bottom:781.120000pt;}
.y169{bottom:787.520000pt;}
.y65{bottom:787.839867pt;}
.y13d{bottom:789.120000pt;}
.y39{bottom:833.919867pt;}
.y1{bottom:835.839867pt;}
.h22{height:19.840000pt;}
.h23{height:19.841333pt;}
.h24{height:20.160000pt;}
.h16{height:23.451250pt;}
.h1c{height:23.895000pt;}
.hc{height:28.078125pt;}
.h11{height:29.878750pt;}
.h25{height:30.400000pt;}
.h26{height:30.401333pt;}
.h27{height:30.720000pt;}
.h6{height:33.630000pt;}
.h13{height:33.675547pt;}
.h3{height:37.063125pt;}
.he{height:37.170000pt;}
.h2{height:42.678750pt;}
.hb{height:42.719710pt;}
.h14{height:47.171250pt;}
.h10{height:51.569030pt;}
.ha{height:51.663750pt;}
.h1e{height:51.679110pt;}
.hf{height:52.296250pt;}
.h18{height:56.353558pt;}
.h21{height:56.604438pt;}
.h15{height:56.614145pt;}
.h19{height:56.680705pt;}
.h1b{height:56.763158pt;}
.h17{height:56.765185pt;}
.h20{height:56.788758pt;}
.h1f{height:56.855318pt;}
.h1d{height:56.870145pt;}
.h1a{height:56.890625pt;}
.h4{height:59.295000pt;}
.h8{height:65.141250pt;}
.h5{height:68.394080pt;}
.h12{height:87.678667pt;}
.h7{height:88.514080pt;}
.h9{height:179.200000pt;}
.hd{height:205.121333pt;}
.h0{height:907.200000pt;}
.h1{height:907.333333pt;}
.w5{width:91.520000pt;}
.w7{width:103.360000pt;}
.w8{width:146.880000pt;}
.w3{width:151.361333pt;}
.w6{width:185.280000pt;}
.w4{width:249.280000pt;}
.w2{width:340.158667pt;}
.w0{width:642.560000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x12{left:4.160000pt;}
.x4{left:10.880000pt;}
.xb{left:14.720000pt;}
.x8{left:20.800000pt;}
.x11{left:81.280000pt;}
.x3{left:82.880000pt;}
.x1{left:85.120000pt;}
.x5{left:93.760000pt;}
.x9{left:104.001920pt;}
.xe{left:113.600000pt;}
.xf{left:122.878080pt;}
.x13{left:173.440000pt;}
.xd{left:316.800000pt;}
.xa{left:332.160000pt;}
.xc{left:346.880000pt;}
.x14{left:359.360000pt;}
.x7{left:423.040000pt;}
.x6{left:442.880000pt;}
.x10{left:456.640000pt;}
.x15{left:463.360000pt;}
.x2{left:486.400000pt;}
}




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