
    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_a1e6abd72917667b4b1cdad5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.958496;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_48a192f4f2fd3dbe0b9476e6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958496;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_ab8d574ca49f1bd084ac0aa5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.958496;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_3f5f8199ad0d06a76832c2d4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.190918;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_f23c712d428827d665fecfb8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.190918;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_033036a802385b652668aa24.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.722656;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_c91374dd2e45c4f1b9a57cb5.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.349000;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_1aa7fe0d96db3c8d804d00a6.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.384000;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_4701577aa8fc1c3db2366146.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.362000;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_d596f22bb633f4ac761fa0ec.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.908203;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);}
.v5{vertical-align:-29.694600px;}
.v2{vertical-align:-21.000000px;}
.v6{vertical-align:-18.900055px;}
.v4{vertical-align:-17.849991px;}
.v1{vertical-align:-1.488000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.767963px;}
.ls49{letter-spacing:-3.834000px;}
.ls27{letter-spacing:-3.564000px;}
.ls5f{letter-spacing:-2.880000px;}
.ls28{letter-spacing:-1.848000px;}
.ls61{letter-spacing:-0.900000px;}
.ls46{letter-spacing:-0.798000px;}
.ls45{letter-spacing:-0.648000px;}
.ls67{letter-spacing:-0.405000px;}
.ls59{letter-spacing:-0.378000px;}
.ls69{letter-spacing:-0.360000px;}
.ls1d{letter-spacing:-0.324000px;}
.ls5c{letter-spacing:-0.315000px;}
.ls11{letter-spacing:-0.270000px;}
.ls66{letter-spacing:-0.225000px;}
.ls1f{letter-spacing:-0.216000px;}
.ls1e{letter-spacing:-0.210600px;}
.ls4d{letter-spacing:-0.175500px;}
.ls20{letter-spacing:-0.162000px;}
.ls5a{letter-spacing:-0.135000px;}
.ls18{letter-spacing:-0.108000px;}
.ls5e{letter-spacing:-0.090000px;}
.ls10{letter-spacing:-0.054000px;}
.ls60{letter-spacing:-0.045000px;}
.lse{letter-spacing:0.000000px;}
.ls47{letter-spacing:0.000083px;}
.ls1{letter-spacing:0.013223px;}
.ls48{letter-spacing:0.016675px;}
.lsd{letter-spacing:0.018028px;}
.ls23{letter-spacing:0.035100px;}
.ls5d{letter-spacing:0.045000px;}
.ls22{letter-spacing:0.054000px;}
.ls8{letter-spacing:0.054008px;}
.ls15{letter-spacing:0.070200px;}
.lsa{letter-spacing:0.072593px;}
.ls65{letter-spacing:0.090000px;}
.ls34{letter-spacing:0.096015px;}
.ls35{letter-spacing:0.096930px;}
.ls21{letter-spacing:0.105300px;}
.ls3{letter-spacing:0.105572px;}
.ls9{letter-spacing:0.108000px;}
.ls50{letter-spacing:0.133842px;}
.ls68{letter-spacing:0.135000px;}
.ls1c{letter-spacing:0.140400px;}
.ls43{letter-spacing:0.143608px;}
.ls32{letter-spacing:0.144157px;}
.ls3e{letter-spacing:0.144249px;}
.ls33{letter-spacing:0.144340px;}
.ls2c{letter-spacing:0.145652px;}
.ls2b{letter-spacing:0.146385px;}
.ls5{letter-spacing:0.154258px;}
.ls4{letter-spacing:0.156353px;}
.ls12{letter-spacing:0.157950px;}
.lsc{letter-spacing:0.158836px;}
.ls6{letter-spacing:0.159019px;}
.lsb{letter-spacing:0.159568px;}
.ls1b{letter-spacing:0.162000px;}
.ls14{letter-spacing:0.175500px;}
.ls56{letter-spacing:0.180000px;}
.ls55{letter-spacing:0.202500px;}
.ls2{letter-spacing:0.216000px;}
.ls5b{letter-spacing:0.225000px;}
.ls4c{letter-spacing:0.245700px;}
.ls51{letter-spacing:0.264000px;}
.ls3d{letter-spacing:0.265274px;}
.lsf{letter-spacing:0.270000px;}
.ls2a{letter-spacing:0.274192px;}
.ls29{letter-spacing:0.274742px;}
.ls24{letter-spacing:0.280800px;}
.ls26{letter-spacing:0.324000px;}
.ls6a{letter-spacing:0.360000px;}
.ls44{letter-spacing:0.378000px;}
.ls54{letter-spacing:0.382500px;}
.ls52{letter-spacing:0.405000px;}
.ls16{letter-spacing:0.432000px;}
.ls1a{letter-spacing:0.456300px;}
.ls4a{letter-spacing:0.486000px;}
.ls37{letter-spacing:0.491400px;}
.ls57{letter-spacing:0.495000px;}
.ls2d{letter-spacing:0.510032px;}
.ls38{letter-spacing:0.520762px;}
.ls25{letter-spacing:0.526500px;}
.ls31{letter-spacing:0.536439px;}
.ls30{letter-spacing:0.536440px;}
.ls4b{letter-spacing:0.540000px;}
.ls2f{letter-spacing:0.561600px;}
.ls13{letter-spacing:0.594000px;}
.ls40{letter-spacing:0.596700px;}
.ls58{letter-spacing:0.598472px;}
.ls41{letter-spacing:0.626674px;}
.ls42{letter-spacing:0.627315px;}
.ls3b{letter-spacing:0.640978px;}
.ls3a{letter-spacing:0.641069px;}
.ls7{letter-spacing:0.648000px;}
.ls39{letter-spacing:0.666900px;}
.ls19{letter-spacing:0.702000px;}
.ls4f{letter-spacing:0.737100px;}
.ls36{letter-spacing:0.756000px;}
.ls17{letter-spacing:0.810000px;}
.ls2e{letter-spacing:0.864000px;}
.ls3f{letter-spacing:0.918000px;}
.ls63{letter-spacing:1.003464px;}
.ls3c{letter-spacing:1.026000px;}
.ls53{letter-spacing:1.030434px;}
.ls4e{letter-spacing:1.134000px;}
.ls64{letter-spacing:1.260000px;}
.ls62{letter-spacing:1.440000px;}
.ls0{letter-spacing:3.000000px;}
.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;}
}
.ws0{word-spacing:-48.000000px;}
.ws1{word-spacing:-15.000000px;}
.ws6c{word-spacing:-13.860000px;}
.ws3c{word-spacing:-13.596000px;}
.ws3d{word-spacing:-13.068000px;}
.ws22{word-spacing:-12.528000px;}
.wsd{word-spacing:-12.366000px;}
.ws69{word-spacing:-12.312000px;}
.ws3e{word-spacing:-12.258000px;}
.ws29{word-spacing:-12.096000px;}
.ws82{word-spacing:-11.718000px;}
.ws74{word-spacing:-10.440000px;}
.ws6d{word-spacing:-10.417500px;}
.ws80{word-spacing:-10.215000px;}
.ws6e{word-spacing:-10.170000px;}
.ws81{word-spacing:-9.945000px;}
.ws15{word-spacing:-9.600000px;}
.ws1f{word-spacing:-8.802000px;}
.ws5d{word-spacing:-8.736000px;}
.ws68{word-spacing:-8.704800px;}
.ws64{word-spacing:-8.532000px;}
.ws1e{word-spacing:-8.494200px;}
.ws17{word-spacing:-8.424000px;}
.ws1d{word-spacing:-8.248500px;}
.ws66{word-spacing:-8.213400px;}
.ws16{word-spacing:-8.143200px;}
.ws18{word-spacing:-8.108100px;}
.ws1b{word-spacing:-8.073000px;}
.ws3b{word-spacing:-8.037900px;}
.ws2{word-spacing:-8.034000px;}
.ws1c{word-spacing:-8.002800px;}
.ws19{word-spacing:-7.967700px;}
.ws67{word-spacing:-7.792200px;}
.ws1a{word-spacing:-7.757100px;}
.ws4{word-spacing:-6.630000px;}
.ws83{word-spacing:-6.210000px;}
.ws88{word-spacing:-6.075000px;}
.ws7d{word-spacing:-6.030000px;}
.ws85{word-spacing:-5.805000px;}
.ws45{word-spacing:-5.508000px;}
.ws5e{word-spacing:-4.284000px;}
.ws12{word-spacing:-3.468000px;}
.ws32{word-spacing:-2.430000px;}
.ws41{word-spacing:-1.944000px;}
.ws33{word-spacing:-1.890000px;}
.ws36{word-spacing:-1.296000px;}
.ws9{word-spacing:-1.242000px;}
.ws13{word-spacing:-1.224000px;}
.ws7{word-spacing:-1.188000px;}
.ws62{word-spacing:-1.080000px;}
.ws72{word-spacing:-1.035000px;}
.ws79{word-spacing:-0.990000px;}
.ws49{word-spacing:-0.972000px;}
.ws8{word-spacing:-0.918000px;}
.ws87{word-spacing:-0.900000px;}
.ws10{word-spacing:-0.864000px;}
.ws7a{word-spacing:-0.810000px;}
.ws5a{word-spacing:-0.756000px;}
.ws52{word-spacing:-0.702000px;}
.wsa{word-spacing:-0.648000px;}
.ws43{word-spacing:-0.594000px;}
.ws8c{word-spacing:-0.585000px;}
.ws24{word-spacing:-0.540000px;}
.ws5f{word-spacing:-0.486000px;}
.ws59{word-spacing:-0.432000px;}
.ws71{word-spacing:-0.405000px;}
.ws38{word-spacing:-0.378000px;}
.ws75{word-spacing:-0.360000px;}
.ws40{word-spacing:-0.324000px;}
.ws2c{word-spacing:-0.270000px;}
.ws6f{word-spacing:-0.264000px;}
.ws78{word-spacing:-0.225000px;}
.ws6{word-spacing:-0.216000px;}
.ws76{word-spacing:-0.180000px;}
.ws2a{word-spacing:-0.162000px;}
.ws63{word-spacing:-0.108000px;}
.ws8a{word-spacing:-0.090000px;}
.ws48{word-spacing:-0.070200px;}
.ws6a{word-spacing:-0.054000px;}
.ws77{word-spacing:-0.045000px;}
.ws3{word-spacing:-0.039000px;}
.ws2b{word-spacing:-0.035100px;}
.ws5{word-spacing:0.000000px;}
.ws7c{word-spacing:0.045000px;}
.ws86{word-spacing:0.090000px;}
.ws27{word-spacing:0.108000px;}
.ws7f{word-spacing:0.135000px;}
.ws7e{word-spacing:0.180000px;}
.ws58{word-spacing:0.216000px;}
.ws28{word-spacing:0.270000px;}
.ws46{word-spacing:0.324000px;}
.ws8b{word-spacing:0.360000px;}
.ws50{word-spacing:0.378000px;}
.ws73{word-spacing:0.405000px;}
.ws4a{word-spacing:0.486000px;}
.ws2d{word-spacing:0.540000px;}
.ws31{word-spacing:0.594000px;}
.wsf{word-spacing:0.648000px;}
.ws44{word-spacing:0.756000px;}
.ws25{word-spacing:0.864000px;}
.wsb{word-spacing:0.972000px;}
.ws89{word-spacing:0.990000px;}
.ws70{word-spacing:1.035000px;}
.wse{word-spacing:1.080000px;}
.ws2e{word-spacing:1.134000px;}
.ws30{word-spacing:1.188000px;}
.ws23{word-spacing:1.242000px;}
.wsc{word-spacing:1.350000px;}
.ws4b{word-spacing:1.458000px;}
.ws56{word-spacing:1.512000px;}
.ws84{word-spacing:1.665000px;}
.ws26{word-spacing:1.728000px;}
.ws3f{word-spacing:1.998000px;}
.ws47{word-spacing:2.052000px;}
.ws57{word-spacing:2.106000px;}
.ws55{word-spacing:2.160000px;}
.ws2f{word-spacing:2.322000px;}
.ws4e{word-spacing:2.430000px;}
.ws54{word-spacing:2.484000px;}
.ws37{word-spacing:2.592000px;}
.ws34{word-spacing:2.646000px;}
.ws3a{word-spacing:2.700000px;}
.ws35{word-spacing:2.754000px;}
.ws8d{word-spacing:3.024000px;}
.ws42{word-spacing:3.078000px;}
.ws8e{word-spacing:3.132000px;}
.ws4f{word-spacing:3.240000px;}
.ws51{word-spacing:3.510000px;}
.ws39{word-spacing:3.564000px;}
.ws6b{word-spacing:3.834000px;}
.ws4d{word-spacing:3.996000px;}
.ws7b{word-spacing:4.185000px;}
.ws11{word-spacing:5.049000px;}
.ws53{word-spacing:5.616000px;}
.ws91{word-spacing:5.670000px;}
.ws4c{word-spacing:5.724000px;}
.ws92{word-spacing:6.264000px;}
.ws8f{word-spacing:6.480000px;}
.ws90{word-spacing:6.750000px;}
.ws14{word-spacing:10.710000px;}
.ws65{word-spacing:15.282000px;}
.ws21{word-spacing:162.624000px;}
.ws20{word-spacing:166.320000px;}
.ws60{word-spacing:187.110000px;}
.ws5c{word-spacing:224.616000px;}
.ws61{word-spacing:262.878000px;}
.ws5b{word-spacing:294.755992px;}
._43{margin-left:-20.952007px;}
._c{margin-left:-15.228000px;}
._e{margin-left:-13.945225px;}
._7{margin-left:-12.791400px;}
._6{margin-left:-11.448042px;}
._8{margin-left:-10.051826px;}
._11{margin-left:-8.958029px;}
._d{margin-left:-7.762997px;}
._f{margin-left:-6.046800px;}
._2{margin-left:-5.000318px;}
._3{margin-left:-3.193200px;}
._0{margin-left:-1.876800px;}
._4{width:1.089000px;}
._5{width:2.385600px;}
._9{width:4.319700px;}
._1c{width:5.980800px;}
._46{width:7.294195px;}
._1d{width:8.700460px;}
._47{width:10.372997px;}
._a{width:11.449500px;}
._b{width:12.744900px;}
._45{width:14.175000px;}
._12{width:15.206318px;}
._44{width:17.145000px;}
._48{width:18.720000px;}
._10{width:47.668773px;}
._33{width:53.468318px;}
._35{width:129.696025px;}
._34{width:130.703987px;}
._23{width:142.002000px;}
._32{width:144.858000px;}
._22{width:161.114309px;}
._24{width:162.298192px;}
._26{width:170.057992px;}
._37{width:172.073987px;}
._25{width:174.562192px;}
._38{width:180.264000px;}
._28{width:182.322000px;}
._1b{width:189.564600px;}
._42{width:200.511013px;}
._21{width:203.196000px;}
._40{width:211.637987px;}
._2b{width:213.066000px;}
._14{width:219.366000px;}
._3a{width:220.402787px;}
._1a{width:221.928000px;}
._20{width:223.356000px;}
._1e{width:227.914118px;}
._3b{width:233.044788px;}
._1f{width:236.082000px;}
._15{width:239.526000px;}
._3c{width:240.744000px;}
._16{width:242.088000px;}
._2e{width:243.516000px;}
._41{width:251.957976px;}
._3e{width:253.204776px;}
._3d{width:260.903996px;}
._30{width:262.174705px;}
._36{width:263.549987px;}
._31{width:265.955400px;}
._3f{width:281.064000px;}
._39{width:283.710000px;}
._2c{width:309.834000px;}
._29{width:313.642800px;}
._1{width:326.644800px;}
._2d{width:329.993986px;}
._2a{width:333.802785px;}
._2f{width:336.169184px;}
._19{width:342.373800px;}
._27{width:354.773984px;}
._18{width:366.116318px;}
._17{width:368.975318px;}
._13{width:490.145318px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(205,221,228);}
.fs7{font-size:33.150000px;}
.fs5{font-size:35.100000px;}
.fs3{font-size:39.000000px;}
.fsa{font-size:42.000000px;}
.fsb{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs4{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs6{font-size:108.000000px;}
.fs2{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.yb3{bottom:3.199200px;}
.y33{bottom:3.199350px;}
.y153{bottom:3.199950px;}
.y2{bottom:3.200100px;}
.y32{bottom:27.430500px;}
.y1{bottom:27.430650px;}
.yb4{bottom:27.555599px;}
.y3{bottom:27.555750px;}
.y271{bottom:67.981648px;}
.y31{bottom:68.037452px;}
.y2ac{bottom:71.118898px;}
.yb2{bottom:72.096744px;}
.y1a9{bottom:76.648047px;}
.y218{bottom:76.673694px;}
.y6b{bottom:82.766100px;}
.y270{bottom:82.995148px;}
.y30{bottom:83.037452px;}
.y2ab{bottom:83.865148px;}
.yb1{bottom:87.095244px;}
.y1a8{bottom:91.646547px;}
.y217{bottom:91.672194px;}
.y2aa{bottom:96.611398px;}
.y6a{bottom:97.764600px;}
.y26f{bottom:97.993648px;}
.y2f{bottom:98.037452px;}
.yb0{bottom:102.093744px;}
.y1a7{bottom:106.645047px;}
.y216{bottom:106.670694px;}
.y2a9{bottom:109.357648px;}
.y69{bottom:112.763100px;}
.y26e{bottom:112.992148px;}
.y2e{bottom:113.037452px;}
.yaf{bottom:117.092244px;}
.y1a6{bottom:121.643547px;}
.y215{bottom:121.669194px;}
.y2a8{bottom:122.103898px;}
.y68{bottom:127.761600px;}
.y26d{bottom:127.990648px;}
.y2d{bottom:128.037452px;}
.yae{bottom:132.090744px;}
.y2a7{bottom:134.850148px;}
.y1a5{bottom:136.642047px;}
.y214{bottom:136.667694px;}
.y26c{bottom:142.989148px;}
.y2c{bottom:143.037452px;}
.y22c{bottom:145.653146px;}
.yad{bottom:147.089244px;}
.y2a6{bottom:147.596398px;}
.y226{bottom:148.539154px;}
.y1a4{bottom:151.640547px;}
.y213{bottom:151.666194px;}
.y26b{bottom:157.987648px;}
.y71{bottom:160.263446px;}
.y2a5{bottom:160.342648px;}
.y22b{bottom:160.653146px;}
.yac{bottom:162.087744px;}
.y2b{bottom:162.493950px;}
.y225{bottom:163.537654px;}
.y1a3{bottom:166.639047px;}
.y212{bottom:166.664694px;}
.y26a{bottom:172.986148px;}
.y2a4{bottom:173.088898px;}
.y22a{bottom:175.656157px;}
.yab{bottom:177.086244px;}
.y70{bottom:177.798446px;}
.y224{bottom:178.536154px;}
.y1a2{bottom:181.637547px;}
.y211{bottom:181.663194px;}
.y2a3{bottom:185.835148px;}
.y269{bottom:187.984648px;}
.y229{bottom:190.654657px;}
.yaa{bottom:192.084744px;}
.y223{bottom:193.534654px;}
.y1a0{bottom:194.107984px;}
.y152{bottom:194.118486px;}
.y6f{bottom:195.333446px;}
.y1a1{bottom:196.637558px;}
.y210{bottom:196.661694px;}
.y2a2{bottom:198.581398px;}
.y268{bottom:202.983148px;}
.y228{bottom:205.653157px;}
.ya9{bottom:207.084744px;}
.y222{bottom:208.533154px;}
.y2a1{bottom:211.327648px;}
.y190{bottom:211.579984px;}
.y142{bottom:211.590486px;}
.y19f{bottom:211.642984px;}
.y151{bottom:211.653486px;}
.y20f{bottom:211.660194px;}
.y6e{bottom:212.868446px;}
.y29{bottom:214.570805px;}
.y267{bottom:217.981648px;}
.y227{bottom:220.651657px;}
.ya8{bottom:222.084744px;}
.y18f{bottom:222.825484px;}
.y141{bottom:222.835986px;}
.y19e{bottom:222.888484px;}
.y150{bottom:222.898986px;}
.y221{bottom:223.531654px;}
.y2a0{bottom:224.073898px;}
.y2e5{bottom:227.162244px;}
.y28{bottom:229.572305px;}
.y6d{bottom:230.403446px;}
.y266{bottom:232.986148px;}
.y18e{bottom:234.070984px;}
.y140{bottom:234.081486px;}
.y19d{bottom:234.133984px;}
.y14f{bottom:234.144486px;}
.y29f{bottom:236.820148px;}
.ya7{bottom:237.084744px;}
.y27{bottom:244.570805px;}
.y18d{bottom:245.316484px;}
.y13f{bottom:245.326986px;}
.y19c{bottom:245.379484px;}
.y14e{bottom:245.389986px;}
.y1b1{bottom:247.639493px;}
.y6c{bottom:247.938446px;}
.y265{bottom:247.984648px;}
.y29e{bottom:249.566398px;}
.ya6{bottom:252.084744px;}
.y18c{bottom:256.561984px;}
.y13e{bottom:256.572486px;}
.y19b{bottom:256.624984px;}
.y14d{bottom:256.635486px;}
.y2e4{bottom:257.159243px;}
.y26{bottom:259.570805px;}
.y220{bottom:260.206204px;}
.y29d{bottom:262.312648px;}
.y1b0{bottom:262.639493px;}
.y264{bottom:262.983148px;}
.ya5{bottom:267.084744px;}
.y18b{bottom:267.807484px;}
.y13d{bottom:267.817986px;}
.y19a{bottom:267.870484px;}
.y14c{bottom:267.880986px;}
.y2e3{bottom:272.157743px;}
.y25{bottom:274.570805px;}
.y29c{bottom:275.058898px;}
.y21f{bottom:275.206204px;}
.y1af{bottom:277.645493px;}
.y263{bottom:277.981648px;}
.y18a{bottom:279.052984px;}
.y13c{bottom:279.063486px;}
.y199{bottom:279.115984px;}
.y14b{bottom:279.126486px;}
.ya4{bottom:282.086244px;}
.y2e2{bottom:287.156243px;}
.y29b{bottom:287.805148px;}
.y24{bottom:289.570805px;}
.y21e{bottom:290.212204px;}
.y181{bottom:290.266984px;}
.y133{bottom:290.277486px;}
.y189{bottom:290.298484px;}
.y13b{bottom:290.308986px;}
.y198{bottom:290.361484px;}
.y14a{bottom:290.371986px;}
.y1ae{bottom:292.643993px;}
.y262{bottom:292.981648px;}
.ya3{bottom:297.084744px;}
.y29a{bottom:300.551398px;}
.y188{bottom:301.543984px;}
.y13a{bottom:301.554486px;}
.y197{bottom:301.606984px;}
.y149{bottom:301.617486px;}
.y67{bottom:302.057415px;}
.y2e1{bottom:302.154743px;}
.y23{bottom:304.572305px;}
.y21d{bottom:305.210704px;}
.y1ad{bottom:307.642493px;}
.y261{bottom:307.986148px;}
.ya2{bottom:312.084744px;}
.y187{bottom:312.789484px;}
.y139{bottom:312.799986px;}
.y196{bottom:312.852484px;}
.y148{bottom:312.862986px;}
.y299{bottom:313.297648px;}
.y66{bottom:317.055915px;}
.y2e0{bottom:317.153243px;}
.y22{bottom:319.570805px;}
.y21c{bottom:320.209204px;}
.y1ac{bottom:322.640993px;}
.y260{bottom:322.984648px;}
.y186{bottom:324.034984px;}
.y138{bottom:324.045486px;}
.y195{bottom:324.097984px;}
.y147{bottom:324.108486px;}
.y298{bottom:326.043898px;}
.ya1{bottom:327.084744px;}
.y65{bottom:332.054415px;}
.y2df{bottom:332.151743px;}
.y21{bottom:334.570805px;}
.y21b{bottom:335.207704px;}
.y185{bottom:335.280484px;}
.y137{bottom:335.290986px;}
.y194{bottom:335.343484px;}
.y146{bottom:335.353986px;}
.y1ab{bottom:337.639493px;}
.y25f{bottom:337.983148px;}
.y297{bottom:338.790148px;}
.ya0{bottom:342.084744px;}
.y184{bottom:346.525984px;}
.y136{bottom:346.536486px;}
.y193{bottom:346.588984px;}
.y145{bottom:346.599486px;}
.y64{bottom:347.052915px;}
.y2de{bottom:347.150243px;}
.y20{bottom:349.572305px;}
.y21a{bottom:350.206204px;}
.y296{bottom:351.536398px;}
.y1aa{bottom:352.637993px;}
.y25e{bottom:352.981648px;}
.y9f{bottom:357.084744px;}
.y183{bottom:357.771484px;}
.y135{bottom:357.781986px;}
.y192{bottom:357.834484px;}
.y144{bottom:357.844986px;}
.y63{bottom:362.051415px;}
.y2dd{bottom:362.148743px;}
.y295{bottom:364.282648px;}
.y1f{bottom:364.570805px;}
.y219{bottom:365.204704px;}
.y25d{bottom:367.981648px;}
.y182{bottom:369.016984px;}
.y134{bottom:369.027486px;}
.y191{bottom:369.079984px;}
.y143{bottom:369.090486px;}
.y9e{bottom:372.086267px;}
.y294{bottom:377.028898px;}
.y62{bottom:377.049915px;}
.y1e{bottom:379.570805px;}
.y20e{bottom:381.490986px;}
.y25c{bottom:382.983148px;}
.y2dc{bottom:384.641243px;}
.y171{bottom:386.488984px;}
.y123{bottom:386.499486px;}
.y180{bottom:386.551984px;}
.y132{bottom:386.562486px;}
.y9d{bottom:387.084767px;}
.y293{bottom:389.775148px;}
.y61{bottom:392.048415px;}
.y1d{bottom:394.590315px;}
.y170{bottom:397.734484px;}
.y122{bottom:397.744986px;}
.y17f{bottom:397.797484px;}
.y131{bottom:397.807986px;}
.y25b{bottom:397.981648px;}
.y1fe{bottom:398.962994px;}
.y2db{bottom:399.639743px;}
.y9c{bottom:402.083267px;}
.y292{bottom:402.521398px;}
.y60{bottom:407.046915px;}
.y16f{bottom:408.979984px;}
.y121{bottom:408.990486px;}
.y17e{bottom:409.042984px;}
.y130{bottom:409.053486px;}
.y1fd{bottom:410.208494px;}
.y25a{bottom:412.981648px;}
.y291{bottom:415.267648px;}
.y9b{bottom:417.083267px;}
.y16e{bottom:420.225484px;}
.y120{bottom:420.235986px;}
.y17d{bottom:420.288484px;}
.y12f{bottom:420.298986px;}
.y1fc{bottom:421.453994px;}
.y5f{bottom:422.045415px;}
.y2da{bottom:422.144243px;}
.y259{bottom:427.984648px;}
.y290{bottom:428.013898px;}
.y16d{bottom:431.470984px;}
.y11f{bottom:431.481486px;}
.y17c{bottom:431.533984px;}
.y12e{bottom:431.544486px;}
.y1fb{bottom:432.699494px;}
.y5e{bottom:437.043915px;}
.y1c{bottom:439.734315px;}
.y28f{bottom:440.760148px;}
.y16c{bottom:442.716484px;}
.y11e{bottom:442.726986px;}
.y17b{bottom:442.779484px;}
.y12d{bottom:442.789986px;}
.y258{bottom:442.983148px;}
.y1fa{bottom:443.944994px;}
.y2d9{bottom:444.648743px;}
.y9a{bottom:450.087767px;}
.y28e{bottom:453.506398px;}
.y16b{bottom:453.961984px;}
.y11d{bottom:453.972486px;}
.y17a{bottom:454.024984px;}
.y12c{bottom:454.035486px;}
.y1f9{bottom:455.190494px;}
.y1b{bottom:456.231315px;}
.y257{bottom:457.981648px;}
.y2d8{bottom:459.648743px;}
.y99{bottom:465.086267px;}
.y162{bottom:465.175984px;}
.y114{bottom:465.186486px;}
.y16a{bottom:465.207484px;}
.y11c{bottom:465.217986px;}
.y179{bottom:465.270484px;}
.y12b{bottom:465.280986px;}
.y28d{bottom:466.252648px;}
.y1f8{bottom:466.435994px;}
.y5d{bottom:470.049915px;}
.y1a{bottom:472.728315px;}
.y256{bottom:473.001148px;}
.y169{bottom:476.452984px;}
.y11b{bottom:476.463486px;}
.y178{bottom:476.515984px;}
.y12a{bottom:476.526486px;}
.y1f7{bottom:477.681494px;}
.y28c{bottom:478.998898px;}
.y98{bottom:480.084767px;}
.y20d{bottom:483.403986px;}
.y5c{bottom:485.048415px;}
.y168{bottom:487.698484px;}
.y11a{bottom:487.708986px;}
.y177{bottom:487.761484px;}
.y129{bottom:487.771986px;}
.y255{bottom:487.999648px;}
.y1f6{bottom:488.926994px;}
.y19{bottom:489.225315px;}
.y2d7{bottom:489.648743px;}
.y28b{bottom:491.745148px;}
.y20c{bottom:494.649486px;}
.y97{bottom:495.083267px;}
.y167{bottom:498.943984px;}
.y119{bottom:498.954486px;}
.y176{bottom:499.006984px;}
.y128{bottom:499.017486px;}
.y5b{bottom:500.046915px;}
.y1f5{bottom:500.172494px;}
.y254{bottom:502.998148px;}
.y28a{bottom:504.491398px;}
.y2d6{bottom:504.648743px;}
.y18{bottom:505.722315px;}
.y20b{bottom:505.894986px;}
.y166{bottom:510.189484px;}
.y118{bottom:510.199986px;}
.y175{bottom:510.252484px;}
.y127{bottom:510.262986px;}
.y1f4{bottom:511.417994px;}
.y5a{bottom:515.045415px;}
.y20a{bottom:517.140486px;}
.y289{bottom:517.237648px;}
.y253{bottom:517.996648px;}
.y165{bottom:521.434984px;}
.y117{bottom:521.445486px;}
.y174{bottom:521.497984px;}
.y126{bottom:521.508486px;}
.y17{bottom:522.252315px;}
.y1f3{bottom:522.663494px;}
.y96{bottom:528.098267px;}
.y209{bottom:528.385986px;}
.y288{bottom:529.983898px;}
.y59{bottom:530.043915px;}
.y164{bottom:532.680484px;}
.y116{bottom:532.690986px;}
.y173{bottom:532.743484px;}
.y125{bottom:532.753986px;}
.y252{bottom:532.995148px;}
.y1f2{bottom:533.908994px;}
.y2d5{bottom:536.118738px;}
.y16{bottom:538.749315px;}
.y208{bottom:539.631486px;}
.y287{bottom:542.730148px;}
.y95{bottom:543.096767px;}
.y163{bottom:543.925984px;}
.y115{bottom:543.936486px;}
.y172{bottom:543.988984px;}
.y124{bottom:543.999486px;}
.y58{bottom:545.043915px;}
.y1f1{bottom:545.154494px;}
.y251{bottom:547.993648px;}
.y207{bottom:550.876986px;}
.y2d4{bottom:551.117238px;}
.y15{bottom:555.246315px;}
.y286{bottom:555.480148px;}
.y1f0{bottom:556.399994px;}
.y94{bottom:558.095267px;}
.y104{bottom:561.408486px;}
.y113{bottom:561.471486px;}
.y1e0{bottom:561.954494px;}
.y206{bottom:562.122486px;}
.y250{bottom:562.992148px;}
.y2d3{bottom:566.115738px;}
.y161{bottom:567.088984px;}
.y1ef{bottom:567.645494px;}
.y14{bottom:571.743315px;}
.y103{bottom:572.653986px;}
.y112{bottom:572.716986px;}
.y93{bottom:573.093767px;}
.y205{bottom:573.367986px;}
.y24f{bottom:577.990648px;}
.y57{bottom:578.049915px;}
.y160{bottom:578.334484px;}
.y1ee{bottom:578.890994px;}
.y2d2{bottom:581.115738px;}
.y102{bottom:583.899486px;}
.y111{bottom:583.962486px;}
.y204{bottom:584.613486px;}
.y92{bottom:588.092267px;}
.y13{bottom:588.240315px;}
.y15f{bottom:589.579984px;}
.y1ed{bottom:590.136494px;}
.y24e{bottom:592.989148px;}
.y56{bottom:593.048415px;}
.y101{bottom:595.144986px;}
.y110{bottom:595.207986px;}
.y203{bottom:595.858986px;}
.y15e{bottom:600.825484px;}
.y1ec{bottom:601.381994px;}
.y91{bottom:603.090767px;}
.y12{bottom:604.737315px;}
.y285{bottom:604.980148px;}
.y100{bottom:606.390486px;}
.y10f{bottom:606.453486px;}
.y202{bottom:607.104486px;}
.y24d{bottom:607.987648px;}
.y55{bottom:608.046915px;}
.y2d1{bottom:611.115738px;}
.y15d{bottom:612.070984px;}
.y1eb{bottom:612.627494px;}
.yff{bottom:617.635986px;}
.y10e{bottom:617.698986px;}
.y90{bottom:618.089267px;}
.y201{bottom:618.349986px;}
.y11{bottom:621.234315px;}
.y24c{bottom:622.986148px;}
.y54{bottom:623.045415px;}
.y15c{bottom:623.316484px;}
.y1ea{bottom:623.872994px;}
.y2d0{bottom:626.115738px;}
.yfe{bottom:628.881486px;}
.y10d{bottom:628.944486px;}
.y200{bottom:629.595486px;}
.y8f{bottom:633.087767px;}
.y15b{bottom:634.561984px;}
.y284{bottom:634.981648px;}
.y1e9{bottom:635.118494px;}
.y10{bottom:637.731315px;}
.y24b{bottom:637.984648px;}
.y53{bottom:638.049915px;}
.yf5{bottom:640.095486px;}
.yfd{bottom:640.126986px;}
.y10c{bottom:640.189986px;}
.y1ff{bottom:640.840986px;}
.y15a{bottom:645.807484px;}
.y1e8{bottom:646.363994px;}
.y8e{bottom:648.086267px;}
.y283{bottom:649.980148px;}
.yfc{bottom:651.372486px;}
.y10b{bottom:651.435486px;}
.y24a{bottom:652.983148px;}
.y52{bottom:653.048415px;}
.yf{bottom:654.228315px;}
.y2cf{bottom:656.243284px;}
.y159{bottom:657.052984px;}
.y1e7{bottom:657.609494px;}
.yfb{bottom:662.617986px;}
.y10a{bottom:662.680986px;}
.y8d{bottom:663.084767px;}
.y282{bottom:664.980148px;}
.y249{bottom:667.981648px;}
.y51{bottom:668.046915px;}
.y158{bottom:668.298484px;}
.y1e6{bottom:668.854994px;}
.y2ce{bottom:668.989534px;}
.ye{bottom:670.725315px;}
.yfa{bottom:673.863486px;}
.y109{bottom:673.926486px;}
.y8c{bottom:678.083267px;}
.y157{bottom:679.543984px;}
.y1e5{bottom:680.100494px;}
.y2cd{bottom:681.735784px;}
.y248{bottom:682.993694px;}
.y50{bottom:683.045415px;}
.yf9{bottom:685.108986px;}
.y108{bottom:685.171986px;}
.yd{bottom:687.222315px;}
.y156{bottom:690.789484px;}
.y1e4{bottom:691.345994px;}
.y2cc{bottom:694.482034px;}
.y281{bottom:694.995194px;}
.yf8{bottom:696.354486px;}
.y107{bottom:696.417486px;}
.y247{bottom:697.992194px;}
.y4f{bottom:698.045415px;}
.y155{bottom:702.034984px;}
.y1e3{bottom:702.591494px;}
.yc{bottom:703.719315px;}
.y2cb{bottom:707.228284px;}
.yf7{bottom:707.599986px;}
.y106{bottom:707.662986px;}
.y280{bottom:709.993694px;}
.y8b{bottom:711.084767px;}
.y246{bottom:712.990694px;}
.y4e{bottom:713.046915px;}
.y154{bottom:713.280484px;}
.y1e2{bottom:713.836994px;}
.yf6{bottom:718.845486px;}
.y105{bottom:718.908486px;}
.y2ca{bottom:719.974534px;}
.y27f{bottom:724.992194px;}
.y1e1{bottom:725.082494px;}
.y8a{bottom:726.084767px;}
.y245{bottom:727.989194px;}
.y4d{bottom:728.045415px;}
.y2c9{bottom:732.720784px;}
.ya{bottom:733.719315px;}
.ye5{bottom:736.317486px;}
.yf4{bottom:736.380486px;}
.yb{bottom:738.969315px;}
.y27e{bottom:739.990694px;}
.y89{bottom:741.084767px;}
.y1d0{bottom:742.543993px;}
.y244{bottom:742.987694px;}
.y4c{bottom:743.051415px;}
.y2c8{bottom:745.467034px;}
.ye4{bottom:747.562986px;}
.yf3{bottom:747.625986px;}
.y1cf{bottom:753.789493px;}
.y27d{bottom:754.989194px;}
.y88{bottom:756.084721px;}
.y243{bottom:757.986194px;}
.y4b{bottom:758.049915px;}
.y2c7{bottom:758.213284px;}
.ye3{bottom:758.808486px;}
.yf2{bottom:758.871486px;}
.y1ce{bottom:765.034993px;}
.y9{bottom:766.695269px;}
.y27c{bottom:769.987694px;}
.ye2{bottom:770.053986px;}
.yf1{bottom:770.116986px;}
.y2c6{bottom:770.959534px;}
.y87{bottom:771.084721px;}
.y242{bottom:772.984694px;}
.y4a{bottom:773.048415px;}
.y1cd{bottom:776.280493px;}
.ye1{bottom:781.299486px;}
.yf0{bottom:781.362486px;}
.y2c5{bottom:783.705784px;}
.y27b{bottom:784.986194px;}
.y86{bottom:786.101221px;}
.y1cc{bottom:787.525993px;}
.y241{bottom:787.983194px;}
.y49{bottom:788.046915px;}
.ye0{bottom:792.544986px;}
.yef{bottom:792.607986px;}
.y2c4{bottom:796.452034px;}
.y1cb{bottom:798.771493px;}
.y27a{bottom:799.984694px;}
.y85{bottom:801.099721px;}
.y240{bottom:802.981694px;}
.y48{bottom:803.045415px;}
.ydf{bottom:803.790486px;}
.yee{bottom:803.853486px;}
.y2c3{bottom:809.198284px;}
.y1ca{bottom:810.016993px;}
.y8{bottom:811.701269px;}
.y279{bottom:814.983194px;}
.yd6{bottom:815.004486px;}
.yde{bottom:815.035986px;}
.yed{bottom:815.098986px;}
.y84{bottom:816.098221px;}
.y23f{bottom:817.981694px;}
.y47{bottom:818.045415px;}
.y1c9{bottom:821.262493px;}
.y2c2{bottom:821.944534px;}
.ydd{bottom:826.281486px;}
.yec{bottom:826.344486px;}
.y1df{bottom:826.984986px;}
.y278{bottom:829.981694px;}
.y83{bottom:831.096721px;}
.y1c8{bottom:832.507993px;}
.y23e{bottom:832.986194px;}
.y46{bottom:833.045415px;}
.y2c1{bottom:834.690784px;}
.ydc{bottom:837.526986px;}
.yeb{bottom:837.589986px;}
.y1de{bottom:838.230486px;}
.y1c7{bottom:843.753493px;}
.y277{bottom:844.981694px;}
.y82{bottom:846.095221px;}
.y2c0{bottom:847.437034px;}
.y23d{bottom:847.984694px;}
.y45{bottom:848.045415px;}
.ydb{bottom:848.772486px;}
.yea{bottom:848.835486px;}
.y1dd{bottom:849.475986px;}
.y1c6{bottom:854.998993px;}
.y7{bottom:856.707269px;}
.y276{bottom:859.980194px;}
.yda{bottom:860.017986px;}
.ye9{bottom:860.080986px;}
.y2bf{bottom:860.183284px;}
.y1dc{bottom:860.721486px;}
.y81{bottom:861.093721px;}
.y23c{bottom:862.983194px;}
.y44{bottom:863.046915px;}
.y1c5{bottom:866.244493px;}
.yd9{bottom:871.263486px;}
.ye8{bottom:871.326486px;}
.y1db{bottom:871.966986px;}
.y2be{bottom:872.929534px;}
.y275{bottom:874.980194px;}
.y80{bottom:876.092221px;}
.y1c4{bottom:877.489993px;}
.y23b{bottom:877.981694px;}
.y43{bottom:878.045415px;}
.yd8{bottom:882.508986px;}
.ye7{bottom:882.571986px;}
.y1da{bottom:883.212486px;}
.y2bd{bottom:885.675784px;}
.y1c3{bottom:888.735493px;}
.y7f{bottom:891.090721px;}
.y23a{bottom:892.981694px;}
.y42{bottom:893.046915px;}
.yd7{bottom:893.754486px;}
.ye6{bottom:893.817486px;}
.y1d9{bottom:894.457986px;}
.y2bc{bottom:898.422034px;}
.y1c2{bottom:899.980993px;}
.y6{bottom:901.713269px;}
.y1b2{bottom:905.535493px;}
.y1d8{bottom:905.703486px;}
.y7e{bottom:906.089221px;}
.y239{bottom:907.984694px;}
.y274{bottom:907.998194px;}
.y41{bottom:908.045415px;}
.y2bb{bottom:911.168284px;}
.yc6{bottom:911.226486px;}
.y1c1{bottom:911.226493px;}
.yd5{bottom:911.289486px;}
.y1d7{bottom:916.948986px;}
.y7d{bottom:921.087721px;}
.yc5{bottom:922.471986px;}
.y1c0{bottom:922.471993px;}
.yd4{bottom:922.534986px;}
.y238{bottom:922.983194px;}
.y273{bottom:922.996694px;}
.y40{bottom:923.045415px;}
.y2ba{bottom:923.914534px;}
.y1d6{bottom:928.194486px;}
.yc4{bottom:933.717486px;}
.y1bf{bottom:933.717493px;}
.yd3{bottom:933.780486px;}
.y7c{bottom:936.086221px;}
.y2b9{bottom:936.660784px;}
.y237{bottom:937.981694px;}
.y272{bottom:937.995194px;}
.y3f{bottom:938.045415px;}
.y1d5{bottom:939.439986px;}
.yc3{bottom:944.962986px;}
.y1be{bottom:944.962993px;}
.yd2{bottom:945.025986px;}
.y5{bottom:946.719269px;}
.y2b8{bottom:949.407034px;}
.y1d4{bottom:950.685486px;}
.y7b{bottom:951.084721px;}
.y236{bottom:952.993694px;}
.y3e{bottom:953.048415px;}
.y2a{bottom:954.366760px;}
.yc2{bottom:956.208486px;}
.y1bd{bottom:956.208493px;}
.yd1{bottom:956.271486px;}
.y1d3{bottom:961.930986px;}
.y2b7{bottom:962.153284px;}
.y7a{bottom:966.089221px;}
.yc1{bottom:967.453986px;}
.y1bc{bottom:967.453993px;}
.yd0{bottom:967.516986px;}
.y235{bottom:967.992194px;}
.y3d{bottom:968.046915px;}
.y1d2{bottom:973.176486px;}
.y2b6{bottom:974.899534px;}
.yc0{bottom:978.699486px;}
.y1bb{bottom:978.699493px;}
.ycf{bottom:978.762486px;}
.y79{bottom:981.087721px;}
.y234{bottom:982.990694px;}
.y3c{bottom:983.045415px;}
.y1d1{bottom:984.421986px;}
.y2b5{bottom:987.645784px;}
.yb7{bottom:989.913486px;}
.ybf{bottom:989.944986px;}
.y1ba{bottom:989.944993px;}
.yce{bottom:990.007986px;}
.y78{bottom:996.086221px;}
.y233{bottom:997.989194px;}
.y3b{bottom:998.045415px;}
.y2b4{bottom:1000.392034px;}
.ybe{bottom:1001.190486px;}
.y1b9{bottom:1001.190493px;}
.ycd{bottom:1001.253486px;}
.y77{bottom:1011.084721px;}
.ybd{bottom:1012.435986px;}
.y1b8{bottom:1012.435993px;}
.ycc{bottom:1012.498986px;}
.y232{bottom:1012.987694px;}
.y3a{bottom:1013.049915px;}
.y2b3{bottom:1013.138284px;}
.ybc{bottom:1023.681486px;}
.y1b7{bottom:1023.681493px;}
.ycb{bottom:1023.744486px;}
.y2b2{bottom:1025.884534px;}
.y76{bottom:1026.083221px;}
.y231{bottom:1027.986194px;}
.y39{bottom:1028.048415px;}
.ybb{bottom:1034.926986px;}
.y1b6{bottom:1034.926993px;}
.yca{bottom:1034.989986px;}
.y2b1{bottom:1038.630784px;}
.y230{bottom:1042.984694px;}
.y38{bottom:1043.046915px;}
.yba{bottom:1046.172486px;}
.y1b5{bottom:1046.172493px;}
.yc9{bottom:1046.235486px;}
.y2b0{bottom:1051.377034px;}
.yb9{bottom:1057.417986px;}
.y1b4{bottom:1057.417993px;}
.yc8{bottom:1057.480986px;}
.y22f{bottom:1057.983194px;}
.y37{bottom:1058.045415px;}
.y75{bottom:1059.086221px;}
.y2af{bottom:1064.123284px;}
.yb8{bottom:1068.663486px;}
.y1b3{bottom:1068.663493px;}
.yc7{bottom:1068.726486px;}
.y22e{bottom:1072.981694px;}
.y36{bottom:1073.045415px;}
.y74{bottom:1074.084721px;}
.y2ae{bottom:1076.869534px;}
.yb6{bottom:1086.198486px;}
.y22d{bottom:1087.980194px;}
.y35{bottom:1088.043915px;}
.y73{bottom:1089.083221px;}
.y2ad{bottom:1089.615784px;}
.y72{bottom:1140.640320px;}
.yb5{bottom:1140.746521px;}
.y34{bottom:1140.746704px;}
.y4{bottom:1141.922516px;}
.h8{height:28.050293px;}
.h7{height:28.183594px;}
.h10{height:30.684677px;}
.h2{height:34.523438px;}
.h2d{height:35.411133px;}
.h9{height:38.838867px;}
.h20{height:41.538000px;}
.h13{height:41.668740px;}
.h1f{height:43.008000px;}
.h6{height:43.154297px;}
.ha{height:44.013227px;}
.h2f{height:44.505000px;}
.h30{height:45.090000px;}
.h3{height:45.679688px;}
.h2e{height:46.080000px;}
.h1b{height:47.469727px;}
.h12{height:48.510668px;}
.h11{height:48.534668px;}
.h14{height:49.373525px;}
.h31{height:50.439000px;}
.hd{height:53.406000px;}
.hb{height:53.529827px;}
.h2a{height:53.529863px;}
.h22{height:53.542779px;}
.h25{height:53.553863px;}
.h2c{height:53.553907px;}
.h29{height:53.559680px;}
.h19{height:53.583863px;}
.h16{height:53.589680px;}
.h1a{height:53.589863px;}
.h21{height:53.590779px;}
.h17{height:53.595680px;}
.h2b{height:53.595863px;}
.h18{height:53.601680px;}
.he{height:53.601863px;}
.h27{height:53.601955px;}
.h15{height:53.607680px;}
.hc{height:53.607863px;}
.h26{height:53.607955px;}
.h24{height:53.608046px;}
.h23{height:53.608779px;}
.h1c{height:53.613863px;}
.h28{height:54.102000px;}
.h1e{height:54.108000px;}
.h1d{height:55.296000px;}
.h4{height:57.099609px;}
.hf{height:77.677734px;}
.h5{height:112.201172px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:7.228350px;}
.x3{left:61.653603px;}
.x10{left:66.472052px;}
.xb{left:141.395702px;}
.x5{left:233.858253px;}
.xe{left:238.594032px;}
.xa{left:251.854938px;}
.x15{left:254.108237px;}
.x16{left:302.499000px;}
.x6{left:312.127350px;}
.xd{left:403.706543px;}
.x7{left:454.697388px;}
.x4{left:586.814117px;}
.x8{left:601.732498px;}
.x11{left:660.079045px;}
.x13{left:688.523693px;}
.x9{left:718.102066px;}
.x12{left:778.141045px;}
.xf{left:797.390808px;}
.x2{left:798.901611px;}
.x14{left:818.848755px;}
.x1{left:825.001190px;}
@media print{
.v5{vertical-align:-26.395200pt;}
.v2{vertical-align:-18.666667pt;}
.v6{vertical-align:-16.800049pt;}
.v4{vertical-align:-15.866659pt;}
.v1{vertical-align:-1.322667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.682634pt;}
.ls49{letter-spacing:-3.408000pt;}
.ls27{letter-spacing:-3.168000pt;}
.ls5f{letter-spacing:-2.560000pt;}
.ls28{letter-spacing:-1.642667pt;}
.ls61{letter-spacing:-0.800000pt;}
.ls46{letter-spacing:-0.709333pt;}
.ls45{letter-spacing:-0.576000pt;}
.ls67{letter-spacing:-0.360000pt;}
.ls59{letter-spacing:-0.336000pt;}
.ls69{letter-spacing:-0.320000pt;}
.ls1d{letter-spacing:-0.288000pt;}
.ls5c{letter-spacing:-0.280000pt;}
.ls11{letter-spacing:-0.240000pt;}
.ls66{letter-spacing:-0.200000pt;}
.ls1f{letter-spacing:-0.192000pt;}
.ls1e{letter-spacing:-0.187200pt;}
.ls4d{letter-spacing:-0.156000pt;}
.ls20{letter-spacing:-0.144000pt;}
.ls5a{letter-spacing:-0.120000pt;}
.ls18{letter-spacing:-0.096000pt;}
.ls5e{letter-spacing:-0.080000pt;}
.ls10{letter-spacing:-0.048000pt;}
.ls60{letter-spacing:-0.040000pt;}
.lse{letter-spacing:0.000000pt;}
.ls47{letter-spacing:0.000074pt;}
.ls1{letter-spacing:0.011754pt;}
.ls48{letter-spacing:0.014822pt;}
.lsd{letter-spacing:0.016025pt;}
.ls23{letter-spacing:0.031200pt;}
.ls5d{letter-spacing:0.040000pt;}
.ls22{letter-spacing:0.048000pt;}
.ls8{letter-spacing:0.048007pt;}
.ls15{letter-spacing:0.062400pt;}
.lsa{letter-spacing:0.064527pt;}
.ls65{letter-spacing:0.080000pt;}
.ls34{letter-spacing:0.085347pt;}
.ls35{letter-spacing:0.086160pt;}
.ls21{letter-spacing:0.093600pt;}
.ls3{letter-spacing:0.093842pt;}
.ls9{letter-spacing:0.096000pt;}
.ls50{letter-spacing:0.118971pt;}
.ls68{letter-spacing:0.120000pt;}
.ls1c{letter-spacing:0.124800pt;}
.ls43{letter-spacing:0.127652pt;}
.ls32{letter-spacing:0.128140pt;}
.ls3e{letter-spacing:0.128221pt;}
.ls33{letter-spacing:0.128303pt;}
.ls2c{letter-spacing:0.129469pt;}
.ls2b{letter-spacing:0.130120pt;}
.ls5{letter-spacing:0.137118pt;}
.ls4{letter-spacing:0.138980pt;}
.ls12{letter-spacing:0.140400pt;}
.lsc{letter-spacing:0.141187pt;}
.ls6{letter-spacing:0.141350pt;}
.lsb{letter-spacing:0.141839pt;}
.ls1b{letter-spacing:0.144000pt;}
.ls14{letter-spacing:0.156000pt;}
.ls56{letter-spacing:0.160000pt;}
.ls55{letter-spacing:0.180000pt;}
.ls2{letter-spacing:0.192000pt;}
.ls5b{letter-spacing:0.200000pt;}
.ls4c{letter-spacing:0.218400pt;}
.ls51{letter-spacing:0.234667pt;}
.ls3d{letter-spacing:0.235799pt;}
.lsf{letter-spacing:0.240000pt;}
.ls2a{letter-spacing:0.243727pt;}
.ls29{letter-spacing:0.244215pt;}
.ls24{letter-spacing:0.249600pt;}
.ls26{letter-spacing:0.288000pt;}
.ls6a{letter-spacing:0.320000pt;}
.ls44{letter-spacing:0.336000pt;}
.ls54{letter-spacing:0.340000pt;}
.ls52{letter-spacing:0.360000pt;}
.ls16{letter-spacing:0.384000pt;}
.ls1a{letter-spacing:0.405600pt;}
.ls4a{letter-spacing:0.432000pt;}
.ls37{letter-spacing:0.436800pt;}
.ls57{letter-spacing:0.440000pt;}
.ls2d{letter-spacing:0.453362pt;}
.ls38{letter-spacing:0.462900pt;}
.ls25{letter-spacing:0.468000pt;}
.ls31{letter-spacing:0.476834pt;}
.ls30{letter-spacing:0.476836pt;}
.ls4b{letter-spacing:0.480000pt;}
.ls2f{letter-spacing:0.499200pt;}
.ls13{letter-spacing:0.528000pt;}
.ls40{letter-spacing:0.530400pt;}
.ls58{letter-spacing:0.531975pt;}
.ls41{letter-spacing:0.557044pt;}
.ls42{letter-spacing:0.557614pt;}
.ls3b{letter-spacing:0.569758pt;}
.ls3a{letter-spacing:0.569839pt;}
.ls7{letter-spacing:0.576000pt;}
.ls39{letter-spacing:0.592800pt;}
.ls19{letter-spacing:0.624000pt;}
.ls4f{letter-spacing:0.655200pt;}
.ls36{letter-spacing:0.672000pt;}
.ls17{letter-spacing:0.720000pt;}
.ls2e{letter-spacing:0.768000pt;}
.ls3f{letter-spacing:0.816000pt;}
.ls63{letter-spacing:0.891968pt;}
.ls3c{letter-spacing:0.912000pt;}
.ls53{letter-spacing:0.915941pt;}
.ls4e{letter-spacing:1.008000pt;}
.ls64{letter-spacing:1.120000pt;}
.ls62{letter-spacing:1.280000pt;}
.ls0{letter-spacing:2.666667pt;}
.ws0{word-spacing:-42.666667pt;}
.ws1{word-spacing:-13.333333pt;}
.ws6c{word-spacing:-12.320000pt;}
.ws3c{word-spacing:-12.085333pt;}
.ws3d{word-spacing:-11.616000pt;}
.ws22{word-spacing:-11.136000pt;}
.wsd{word-spacing:-10.992000pt;}
.ws69{word-spacing:-10.944000pt;}
.ws3e{word-spacing:-10.896000pt;}
.ws29{word-spacing:-10.752000pt;}
.ws82{word-spacing:-10.416000pt;}
.ws74{word-spacing:-9.280000pt;}
.ws6d{word-spacing:-9.260000pt;}
.ws80{word-spacing:-9.080000pt;}
.ws6e{word-spacing:-9.040000pt;}
.ws81{word-spacing:-8.840000pt;}
.ws15{word-spacing:-8.533333pt;}
.ws1f{word-spacing:-7.824000pt;}
.ws5d{word-spacing:-7.765333pt;}
.ws68{word-spacing:-7.737600pt;}
.ws64{word-spacing:-7.584000pt;}
.ws1e{word-spacing:-7.550400pt;}
.ws17{word-spacing:-7.488000pt;}
.ws1d{word-spacing:-7.332000pt;}
.ws66{word-spacing:-7.300800pt;}
.ws16{word-spacing:-7.238400pt;}
.ws18{word-spacing:-7.207200pt;}
.ws1b{word-spacing:-7.176000pt;}
.ws3b{word-spacing:-7.144800pt;}
.ws2{word-spacing:-7.141333pt;}
.ws1c{word-spacing:-7.113600pt;}
.ws19{word-spacing:-7.082400pt;}
.ws67{word-spacing:-6.926400pt;}
.ws1a{word-spacing:-6.895200pt;}
.ws4{word-spacing:-5.893333pt;}
.ws83{word-spacing:-5.520000pt;}
.ws88{word-spacing:-5.400000pt;}
.ws7d{word-spacing:-5.360000pt;}
.ws85{word-spacing:-5.160000pt;}
.ws45{word-spacing:-4.896000pt;}
.ws5e{word-spacing:-3.808000pt;}
.ws12{word-spacing:-3.082667pt;}
.ws32{word-spacing:-2.160000pt;}
.ws41{word-spacing:-1.728000pt;}
.ws33{word-spacing:-1.680000pt;}
.ws36{word-spacing:-1.152000pt;}
.ws9{word-spacing:-1.104000pt;}
.ws13{word-spacing:-1.088000pt;}
.ws7{word-spacing:-1.056000pt;}
.ws62{word-spacing:-0.960000pt;}
.ws72{word-spacing:-0.920000pt;}
.ws79{word-spacing:-0.880000pt;}
.ws49{word-spacing:-0.864000pt;}
.ws8{word-spacing:-0.816000pt;}
.ws87{word-spacing:-0.800000pt;}
.ws10{word-spacing:-0.768000pt;}
.ws7a{word-spacing:-0.720000pt;}
.ws5a{word-spacing:-0.672000pt;}
.ws52{word-spacing:-0.624000pt;}
.wsa{word-spacing:-0.576000pt;}
.ws43{word-spacing:-0.528000pt;}
.ws8c{word-spacing:-0.520000pt;}
.ws24{word-spacing:-0.480000pt;}
.ws5f{word-spacing:-0.432000pt;}
.ws59{word-spacing:-0.384000pt;}
.ws71{word-spacing:-0.360000pt;}
.ws38{word-spacing:-0.336000pt;}
.ws75{word-spacing:-0.320000pt;}
.ws40{word-spacing:-0.288000pt;}
.ws2c{word-spacing:-0.240000pt;}
.ws6f{word-spacing:-0.234667pt;}
.ws78{word-spacing:-0.200000pt;}
.ws6{word-spacing:-0.192000pt;}
.ws76{word-spacing:-0.160000pt;}
.ws2a{word-spacing:-0.144000pt;}
.ws63{word-spacing:-0.096000pt;}
.ws8a{word-spacing:-0.080000pt;}
.ws48{word-spacing:-0.062400pt;}
.ws6a{word-spacing:-0.048000pt;}
.ws77{word-spacing:-0.040000pt;}
.ws3{word-spacing:-0.034667pt;}
.ws2b{word-spacing:-0.031200pt;}
.ws5{word-spacing:0.000000pt;}
.ws7c{word-spacing:0.040000pt;}
.ws86{word-spacing:0.080000pt;}
.ws27{word-spacing:0.096000pt;}
.ws7f{word-spacing:0.120000pt;}
.ws7e{word-spacing:0.160000pt;}
.ws58{word-spacing:0.192000pt;}
.ws28{word-spacing:0.240000pt;}
.ws46{word-spacing:0.288000pt;}
.ws8b{word-spacing:0.320000pt;}
.ws50{word-spacing:0.336000pt;}
.ws73{word-spacing:0.360000pt;}
.ws4a{word-spacing:0.432000pt;}
.ws2d{word-spacing:0.480000pt;}
.ws31{word-spacing:0.528000pt;}
.wsf{word-spacing:0.576000pt;}
.ws44{word-spacing:0.672000pt;}
.ws25{word-spacing:0.768000pt;}
.wsb{word-spacing:0.864000pt;}
.ws89{word-spacing:0.880000pt;}
.ws70{word-spacing:0.920000pt;}
.wse{word-spacing:0.960000pt;}
.ws2e{word-spacing:1.008000pt;}
.ws30{word-spacing:1.056000pt;}
.ws23{word-spacing:1.104000pt;}
.wsc{word-spacing:1.200000pt;}
.ws4b{word-spacing:1.296000pt;}
.ws56{word-spacing:1.344000pt;}
.ws84{word-spacing:1.480000pt;}
.ws26{word-spacing:1.536000pt;}
.ws3f{word-spacing:1.776000pt;}
.ws47{word-spacing:1.824000pt;}
.ws57{word-spacing:1.872000pt;}
.ws55{word-spacing:1.920000pt;}
.ws2f{word-spacing:2.064000pt;}
.ws4e{word-spacing:2.160000pt;}
.ws54{word-spacing:2.208000pt;}
.ws37{word-spacing:2.304000pt;}
.ws34{word-spacing:2.352000pt;}
.ws3a{word-spacing:2.400000pt;}
.ws35{word-spacing:2.448000pt;}
.ws8d{word-spacing:2.688000pt;}
.ws42{word-spacing:2.736000pt;}
.ws8e{word-spacing:2.784000pt;}
.ws4f{word-spacing:2.880000pt;}
.ws51{word-spacing:3.120000pt;}
.ws39{word-spacing:3.168000pt;}
.ws6b{word-spacing:3.408000pt;}
.ws4d{word-spacing:3.552000pt;}
.ws7b{word-spacing:3.720000pt;}
.ws11{word-spacing:4.488000pt;}
.ws53{word-spacing:4.992000pt;}
.ws91{word-spacing:5.040000pt;}
.ws4c{word-spacing:5.088000pt;}
.ws92{word-spacing:5.568000pt;}
.ws8f{word-spacing:5.760000pt;}
.ws90{word-spacing:6.000000pt;}
.ws14{word-spacing:9.520000pt;}
.ws65{word-spacing:13.584000pt;}
.ws21{word-spacing:144.554667pt;}
.ws20{word-spacing:147.840000pt;}
.ws60{word-spacing:166.320000pt;}
.ws5c{word-spacing:199.658667pt;}
.ws61{word-spacing:233.669333pt;}
.ws5b{word-spacing:262.005326pt;}
._43{margin-left:-18.624006pt;}
._c{margin-left:-13.536000pt;}
._e{margin-left:-12.395755pt;}
._7{margin-left:-11.370134pt;}
._6{margin-left:-10.176037pt;}
._8{margin-left:-8.934957pt;}
._11{margin-left:-7.962692pt;}
._d{margin-left:-6.900442pt;}
._f{margin-left:-5.374934pt;}
._2{margin-left:-4.444727pt;}
._3{margin-left:-2.838400pt;}
._0{margin-left:-1.668267pt;}
._4{width:0.968000pt;}
._5{width:2.120533pt;}
._9{width:3.839733pt;}
._1c{width:5.316267pt;}
._46{width:6.483729pt;}
._1d{width:7.733742pt;}
._47{width:9.220442pt;}
._a{width:10.177333pt;}
._b{width:11.328800pt;}
._45{width:12.600000pt;}
._12{width:13.516727pt;}
._44{width:15.240000pt;}
._48{width:16.640000pt;}
._10{width:42.372243pt;}
._33{width:47.527394pt;}
._35{width:115.285356pt;}
._34{width:116.181322pt;}
._23{width:126.224000pt;}
._32{width:128.762667pt;}
._22{width:143.212719pt;}
._24{width:144.265059pt;}
._26{width:151.162659pt;}
._37{width:152.954656pt;}
._25{width:155.166392pt;}
._38{width:160.234667pt;}
._28{width:162.064000pt;}
._1b{width:168.501867pt;}
._42{width:178.232011pt;}
._21{width:180.618667pt;}
._40{width:188.122656pt;}
._2b{width:189.392000pt;}
._14{width:194.992000pt;}
._3a{width:195.913589pt;}
._1a{width:197.269333pt;}
._20{width:198.538667pt;}
._1e{width:202.590327pt;}
._3b{width:207.150923pt;}
._1f{width:209.850667pt;}
._15{width:212.912000pt;}
._3c{width:213.994667pt;}
._16{width:215.189333pt;}
._2e{width:216.458667pt;}
._41{width:223.962645pt;}
._3e{width:225.070912pt;}
._3d{width:231.914663pt;}
._30{width:233.044182pt;}
._36{width:234.266655pt;}
._31{width:236.404800pt;}
._3f{width:249.834667pt;}
._39{width:252.186667pt;}
._2c{width:275.408000pt;}
._29{width:278.793600pt;}
._1{width:290.350933pt;}
._2d{width:293.327987pt;}
._2a{width:296.713587pt;}
._2f{width:298.817053pt;}
._19{width:304.332267pt;}
._27{width:315.354652pt;}
._18{width:325.436727pt;}
._17{width:327.978060pt;}
._13{width:435.684727pt;}
.fs7{font-size:29.466667pt;}
.fs5{font-size:31.200000pt;}
.fs3{font-size:34.666667pt;}
.fsa{font-size:37.333333pt;}
.fsb{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs4{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs6{font-size:96.000000pt;}
.fs2{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.yb3{bottom:2.843733pt;}
.y33{bottom:2.843867pt;}
.y153{bottom:2.844400pt;}
.y2{bottom:2.844533pt;}
.y32{bottom:24.382667pt;}
.y1{bottom:24.382800pt;}
.yb4{bottom:24.493866pt;}
.y3{bottom:24.494000pt;}
.y271{bottom:60.428132pt;}
.y31{bottom:60.477735pt;}
.y2ac{bottom:63.216799pt;}
.yb2{bottom:64.085995pt;}
.y1a9{bottom:68.131597pt;}
.y218{bottom:68.154395pt;}
.y6b{bottom:73.569867pt;}
.y270{bottom:73.773465pt;}
.y30{bottom:73.811069pt;}
.y2ab{bottom:74.546799pt;}
.yb1{bottom:77.417995pt;}
.y1a8{bottom:81.463597pt;}
.y217{bottom:81.486395pt;}
.y2aa{bottom:85.876799pt;}
.y6a{bottom:86.901867pt;}
.y26f{bottom:87.105465pt;}
.y2f{bottom:87.144402pt;}
.yb0{bottom:90.749995pt;}
.y1a7{bottom:94.795597pt;}
.y216{bottom:94.818395pt;}
.y2a9{bottom:97.206799pt;}
.y69{bottom:100.233867pt;}
.y26e{bottom:100.437465pt;}
.y2e{bottom:100.477735pt;}
.yaf{bottom:104.081995pt;}
.y1a6{bottom:108.127597pt;}
.y215{bottom:108.150395pt;}
.y2a8{bottom:108.536799pt;}
.y68{bottom:113.565867pt;}
.y26d{bottom:113.769465pt;}
.y2d{bottom:113.811069pt;}
.yae{bottom:117.413995pt;}
.y2a7{bottom:119.866799pt;}
.y1a5{bottom:121.459597pt;}
.y214{bottom:121.482395pt;}
.y26c{bottom:127.101465pt;}
.y2c{bottom:127.144402pt;}
.y22c{bottom:129.469463pt;}
.yad{bottom:130.745995pt;}
.y2a6{bottom:131.196799pt;}
.y226{bottom:132.034804pt;}
.y1a4{bottom:134.791597pt;}
.y213{bottom:134.814395pt;}
.y26b{bottom:140.433465pt;}
.y71{bottom:142.456396pt;}
.y2a5{bottom:142.526799pt;}
.y22b{bottom:142.802796pt;}
.yac{bottom:144.077995pt;}
.y2b{bottom:144.439067pt;}
.y225{bottom:145.366804pt;}
.y1a3{bottom:148.123597pt;}
.y212{bottom:148.146395pt;}
.y26a{bottom:153.765465pt;}
.y2a4{bottom:153.856799pt;}
.y22a{bottom:156.138806pt;}
.yab{bottom:157.409995pt;}
.y70{bottom:158.043063pt;}
.y224{bottom:158.698804pt;}
.y1a2{bottom:161.455597pt;}
.y211{bottom:161.478395pt;}
.y2a3{bottom:165.186799pt;}
.y269{bottom:167.097465pt;}
.y229{bottom:169.470806pt;}
.yaa{bottom:170.741995pt;}
.y223{bottom:172.030804pt;}
.y1a0{bottom:172.540430pt;}
.y152{bottom:172.549766pt;}
.y6f{bottom:173.629730pt;}
.y1a1{bottom:174.788940pt;}
.y210{bottom:174.810395pt;}
.y2a2{bottom:176.516799pt;}
.y268{bottom:180.429465pt;}
.y228{bottom:182.802806pt;}
.ya9{bottom:184.075328pt;}
.y222{bottom:185.362804pt;}
.y2a1{bottom:187.846799pt;}
.y190{bottom:188.071097pt;}
.y142{bottom:188.080432pt;}
.y19f{bottom:188.127097pt;}
.y151{bottom:188.136432pt;}
.y20f{bottom:188.142395pt;}
.y6e{bottom:189.216396pt;}
.y29{bottom:190.729605pt;}
.y267{bottom:193.761465pt;}
.y227{bottom:196.134806pt;}
.ya8{bottom:197.408662pt;}
.y18f{bottom:198.067097pt;}
.y141{bottom:198.076432pt;}
.y19e{bottom:198.123097pt;}
.y150{bottom:198.132432pt;}
.y221{bottom:198.694804pt;}
.y2a0{bottom:199.176799pt;}
.y2e5{bottom:201.921995pt;}
.y28{bottom:204.064271pt;}
.y6d{bottom:204.803063pt;}
.y266{bottom:207.098799pt;}
.y18e{bottom:208.063097pt;}
.y140{bottom:208.072432pt;}
.y19d{bottom:208.119097pt;}
.y14f{bottom:208.128432pt;}
.y29f{bottom:210.506799pt;}
.ya7{bottom:210.741995pt;}
.y27{bottom:217.396271pt;}
.y18d{bottom:218.059097pt;}
.y13f{bottom:218.068432pt;}
.y19c{bottom:218.115097pt;}
.y14e{bottom:218.124432pt;}
.y1b1{bottom:220.123994pt;}
.y6c{bottom:220.389730pt;}
.y265{bottom:220.430799pt;}
.y29e{bottom:221.836799pt;}
.ya6{bottom:224.075328pt;}
.y18c{bottom:228.055097pt;}
.y13e{bottom:228.064432pt;}
.y19b{bottom:228.111097pt;}
.y14d{bottom:228.120432pt;}
.y2e4{bottom:228.585993pt;}
.y26{bottom:230.729605pt;}
.y220{bottom:231.294404pt;}
.y29d{bottom:233.166799pt;}
.y1b0{bottom:233.457327pt;}
.y264{bottom:233.762799pt;}
.ya5{bottom:237.408662pt;}
.y18b{bottom:238.051097pt;}
.y13d{bottom:238.060432pt;}
.y19a{bottom:238.107097pt;}
.y14c{bottom:238.116432pt;}
.y2e3{bottom:241.917993pt;}
.y25{bottom:244.062938pt;}
.y29c{bottom:244.496799pt;}
.y21f{bottom:244.627737pt;}
.y1af{bottom:246.795994pt;}
.y263{bottom:247.094799pt;}
.y18a{bottom:248.047097pt;}
.y13c{bottom:248.056432pt;}
.y199{bottom:248.103097pt;}
.y14b{bottom:248.112432pt;}
.ya4{bottom:250.743328pt;}
.y2e2{bottom:255.249993pt;}
.y29b{bottom:255.826799pt;}
.y24{bottom:257.396271pt;}
.y21e{bottom:257.966404pt;}
.y181{bottom:258.015097pt;}
.y133{bottom:258.024432pt;}
.y189{bottom:258.043097pt;}
.y13b{bottom:258.052432pt;}
.y198{bottom:258.099097pt;}
.y14a{bottom:258.108432pt;}
.y1ae{bottom:260.127994pt;}
.y262{bottom:260.428132pt;}
.ya3{bottom:264.075328pt;}
.y29a{bottom:267.156799pt;}
.y188{bottom:268.039097pt;}
.y13a{bottom:268.048432pt;}
.y197{bottom:268.095097pt;}
.y149{bottom:268.104432pt;}
.y67{bottom:268.495480pt;}
.y2e1{bottom:268.581993pt;}
.y23{bottom:270.730938pt;}
.y21d{bottom:271.298404pt;}
.y1ad{bottom:273.459994pt;}
.y261{bottom:273.765465pt;}
.ya2{bottom:277.408662pt;}
.y187{bottom:278.035097pt;}
.y139{bottom:278.044432pt;}
.y196{bottom:278.091097pt;}
.y148{bottom:278.100432pt;}
.y299{bottom:278.486799pt;}
.y66{bottom:281.827480pt;}
.y2e0{bottom:281.913993pt;}
.y22{bottom:284.062938pt;}
.y21c{bottom:284.630404pt;}
.y1ac{bottom:286.791994pt;}
.y260{bottom:287.097465pt;}
.y186{bottom:288.031097pt;}
.y138{bottom:288.040432pt;}
.y195{bottom:288.087097pt;}
.y147{bottom:288.096432pt;}
.y298{bottom:289.816799pt;}
.ya1{bottom:290.741995pt;}
.y65{bottom:295.159480pt;}
.y2df{bottom:295.245993pt;}
.y21{bottom:297.396271pt;}
.y21b{bottom:297.962404pt;}
.y185{bottom:298.027097pt;}
.y137{bottom:298.036432pt;}
.y194{bottom:298.083097pt;}
.y146{bottom:298.092432pt;}
.y1ab{bottom:300.123994pt;}
.y25f{bottom:300.429465pt;}
.y297{bottom:301.146799pt;}
.ya0{bottom:304.075328pt;}
.y184{bottom:308.023097pt;}
.y136{bottom:308.032432pt;}
.y193{bottom:308.079097pt;}
.y145{bottom:308.088432pt;}
.y64{bottom:308.491480pt;}
.y2de{bottom:308.577993pt;}
.y20{bottom:310.730938pt;}
.y21a{bottom:311.294404pt;}
.y296{bottom:312.476799pt;}
.y1aa{bottom:313.455994pt;}
.y25e{bottom:313.761465pt;}
.y9f{bottom:317.408662pt;}
.y183{bottom:318.019097pt;}
.y135{bottom:318.028432pt;}
.y192{bottom:318.075097pt;}
.y144{bottom:318.084432pt;}
.y63{bottom:321.823480pt;}
.y2dd{bottom:321.909993pt;}
.y295{bottom:323.806799pt;}
.y1f{bottom:324.062938pt;}
.y219{bottom:324.626404pt;}
.y25d{bottom:327.094799pt;}
.y182{bottom:328.015097pt;}
.y134{bottom:328.024432pt;}
.y191{bottom:328.071097pt;}
.y143{bottom:328.080432pt;}
.y9e{bottom:330.743349pt;}
.y294{bottom:335.136799pt;}
.y62{bottom:335.155480pt;}
.y1e{bottom:337.396271pt;}
.y20e{bottom:339.103099pt;}
.y25c{bottom:340.429465pt;}
.y2dc{bottom:341.903327pt;}
.y171{bottom:343.545763pt;}
.y123{bottom:343.555099pt;}
.y180{bottom:343.601763pt;}
.y132{bottom:343.611099pt;}
.y9d{bottom:344.075349pt;}
.y293{bottom:346.466799pt;}
.y61{bottom:348.487480pt;}
.y1d{bottom:350.746946pt;}
.y170{bottom:353.541763pt;}
.y122{bottom:353.551099pt;}
.y17f{bottom:353.597763pt;}
.y131{bottom:353.607099pt;}
.y25b{bottom:353.761465pt;}
.y1fe{bottom:354.633772pt;}
.y2db{bottom:355.235327pt;}
.y9c{bottom:357.407349pt;}
.y292{bottom:357.796799pt;}
.y60{bottom:361.819480pt;}
.y16f{bottom:363.537763pt;}
.y121{bottom:363.547099pt;}
.y17e{bottom:363.593763pt;}
.y130{bottom:363.603099pt;}
.y1fd{bottom:364.629772pt;}
.y25a{bottom:367.094799pt;}
.y291{bottom:369.126799pt;}
.y9b{bottom:370.740682pt;}
.y16e{bottom:373.533763pt;}
.y120{bottom:373.543099pt;}
.y17d{bottom:373.589763pt;}
.y12f{bottom:373.599099pt;}
.y1fc{bottom:374.625772pt;}
.y5f{bottom:375.151480pt;}
.y2da{bottom:375.239327pt;}
.y259{bottom:380.430799pt;}
.y290{bottom:380.456799pt;}
.y16d{bottom:383.529763pt;}
.y11f{bottom:383.539099pt;}
.y17c{bottom:383.585763pt;}
.y12e{bottom:383.595099pt;}
.y1fb{bottom:384.621772pt;}
.y5e{bottom:388.483480pt;}
.y1c{bottom:390.874946pt;}
.y28f{bottom:391.786799pt;}
.y16c{bottom:393.525763pt;}
.y11e{bottom:393.535099pt;}
.y17b{bottom:393.581763pt;}
.y12d{bottom:393.591099pt;}
.y258{bottom:393.762799pt;}
.y1fa{bottom:394.617772pt;}
.y2d9{bottom:395.243327pt;}
.y9a{bottom:400.078015pt;}
.y28e{bottom:403.116799pt;}
.y16b{bottom:403.521763pt;}
.y11d{bottom:403.531099pt;}
.y17a{bottom:403.577763pt;}
.y12c{bottom:403.587099pt;}
.y1f9{bottom:404.613772pt;}
.y1b{bottom:405.538946pt;}
.y257{bottom:407.094799pt;}
.y2d8{bottom:408.576660pt;}
.y99{bottom:413.410015pt;}
.y162{bottom:413.489763pt;}
.y114{bottom:413.499099pt;}
.y16a{bottom:413.517763pt;}
.y11c{bottom:413.527099pt;}
.y179{bottom:413.573763pt;}
.y12b{bottom:413.583099pt;}
.y28d{bottom:414.446799pt;}
.y1f8{bottom:414.609772pt;}
.y5d{bottom:417.822146pt;}
.y1a{bottom:420.202946pt;}
.y256{bottom:420.445465pt;}
.y169{bottom:423.513763pt;}
.y11b{bottom:423.523099pt;}
.y178{bottom:423.569763pt;}
.y12a{bottom:423.579099pt;}
.y1f7{bottom:424.605772pt;}
.y28c{bottom:425.776799pt;}
.y98{bottom:426.742015pt;}
.y20d{bottom:429.692432pt;}
.y5c{bottom:431.154146pt;}
.y168{bottom:433.509763pt;}
.y11a{bottom:433.519099pt;}
.y177{bottom:433.565763pt;}
.y129{bottom:433.575099pt;}
.y255{bottom:433.777465pt;}
.y1f6{bottom:434.601772pt;}
.y19{bottom:434.866946pt;}
.y2d7{bottom:435.243327pt;}
.y28b{bottom:437.106799pt;}
.y20c{bottom:439.688432pt;}
.y97{bottom:440.074015pt;}
.y167{bottom:443.505763pt;}
.y119{bottom:443.515099pt;}
.y176{bottom:443.561763pt;}
.y128{bottom:443.571099pt;}
.y5b{bottom:444.486146pt;}
.y1f5{bottom:444.597772pt;}
.y254{bottom:447.109465pt;}
.y28a{bottom:448.436799pt;}
.y2d6{bottom:448.576660pt;}
.y18{bottom:449.530946pt;}
.y20b{bottom:449.684432pt;}
.y166{bottom:453.501763pt;}
.y118{bottom:453.511099pt;}
.y175{bottom:453.557763pt;}
.y127{bottom:453.567099pt;}
.y1f4{bottom:454.593772pt;}
.y5a{bottom:457.818146pt;}
.y20a{bottom:459.680432pt;}
.y289{bottom:459.766799pt;}
.y253{bottom:460.441465pt;}
.y165{bottom:463.497763pt;}
.y117{bottom:463.507099pt;}
.y174{bottom:463.553763pt;}
.y126{bottom:463.563099pt;}
.y17{bottom:464.224280pt;}
.y1f3{bottom:464.589772pt;}
.y96{bottom:469.420682pt;}
.y209{bottom:469.676432pt;}
.y288{bottom:471.096799pt;}
.y59{bottom:471.150146pt;}
.y164{bottom:473.493763pt;}
.y116{bottom:473.503099pt;}
.y173{bottom:473.549763pt;}
.y125{bottom:473.559099pt;}
.y252{bottom:473.773465pt;}
.y1f2{bottom:474.585772pt;}
.y2d5{bottom:476.549989pt;}
.y16{bottom:478.888280pt;}
.y208{bottom:479.672432pt;}
.y287{bottom:482.426799pt;}
.y95{bottom:482.752682pt;}
.y163{bottom:483.489763pt;}
.y115{bottom:483.499099pt;}
.y172{bottom:483.545763pt;}
.y124{bottom:483.555099pt;}
.y58{bottom:484.483480pt;}
.y1f1{bottom:484.581772pt;}
.y251{bottom:487.105465pt;}
.y207{bottom:489.668432pt;}
.y2d4{bottom:489.881989pt;}
.y15{bottom:493.552280pt;}
.y286{bottom:493.760132pt;}
.y1f0{bottom:494.577772pt;}
.y94{bottom:496.084682pt;}
.y104{bottom:499.029766pt;}
.y113{bottom:499.085766pt;}
.y1e0{bottom:499.515106pt;}
.y206{bottom:499.664432pt;}
.y250{bottom:500.437465pt;}
.y2d3{bottom:503.213989pt;}
.y161{bottom:504.079097pt;}
.y1ef{bottom:504.573772pt;}
.y14{bottom:508.216280pt;}
.y103{bottom:509.025766pt;}
.y112{bottom:509.081766pt;}
.y93{bottom:509.416682pt;}
.y205{bottom:509.660432pt;}
.y24f{bottom:513.769465pt;}
.y57{bottom:513.822146pt;}
.y160{bottom:514.075097pt;}
.y1ee{bottom:514.569772pt;}
.y2d2{bottom:516.547323pt;}
.y102{bottom:519.021766pt;}
.y111{bottom:519.077766pt;}
.y204{bottom:519.656432pt;}
.y92{bottom:522.748682pt;}
.y13{bottom:522.880280pt;}
.y15f{bottom:524.071097pt;}
.y1ed{bottom:524.565772pt;}
.y24e{bottom:527.101465pt;}
.y56{bottom:527.154146pt;}
.y101{bottom:529.017766pt;}
.y110{bottom:529.073766pt;}
.y203{bottom:529.652432pt;}
.y15e{bottom:534.067097pt;}
.y1ec{bottom:534.561772pt;}
.y91{bottom:536.080682pt;}
.y12{bottom:537.544280pt;}
.y285{bottom:537.760132pt;}
.y100{bottom:539.013766pt;}
.y10f{bottom:539.069766pt;}
.y202{bottom:539.648432pt;}
.y24d{bottom:540.433465pt;}
.y55{bottom:540.486146pt;}
.y2d1{bottom:543.213989pt;}
.y15d{bottom:544.063097pt;}
.y1eb{bottom:544.557772pt;}
.yff{bottom:549.009766pt;}
.y10e{bottom:549.065766pt;}
.y90{bottom:549.412682pt;}
.y201{bottom:549.644432pt;}
.y11{bottom:552.208280pt;}
.y24c{bottom:553.765465pt;}
.y54{bottom:553.818146pt;}
.y15c{bottom:554.059097pt;}
.y1ea{bottom:554.553772pt;}
.y2d0{bottom:556.547323pt;}
.yfe{bottom:559.005766pt;}
.y10d{bottom:559.061766pt;}
.y200{bottom:559.640432pt;}
.y8f{bottom:562.744682pt;}
.y15b{bottom:564.055097pt;}
.y284{bottom:564.428132pt;}
.y1e9{bottom:564.549772pt;}
.y10{bottom:566.872280pt;}
.y24b{bottom:567.097465pt;}
.y53{bottom:567.155480pt;}
.yf5{bottom:568.973766pt;}
.yfd{bottom:569.001766pt;}
.y10c{bottom:569.057766pt;}
.y1ff{bottom:569.636432pt;}
.y15a{bottom:574.051097pt;}
.y1e8{bottom:574.545772pt;}
.y8e{bottom:576.076682pt;}
.y283{bottom:577.760132pt;}
.yfc{bottom:578.997766pt;}
.y10b{bottom:579.053766pt;}
.y24a{bottom:580.429465pt;}
.y52{bottom:580.487480pt;}
.yf{bottom:581.536280pt;}
.y2cf{bottom:583.327363pt;}
.y159{bottom:584.047097pt;}
.y1e7{bottom:584.541772pt;}
.yfb{bottom:588.993766pt;}
.y10a{bottom:589.049766pt;}
.y8d{bottom:589.408682pt;}
.y282{bottom:591.093465pt;}
.y249{bottom:593.761465pt;}
.y51{bottom:593.819480pt;}
.y158{bottom:594.043097pt;}
.y1e6{bottom:594.537772pt;}
.y2ce{bottom:594.657363pt;}
.ye{bottom:596.200280pt;}
.yfa{bottom:598.989766pt;}
.y109{bottom:599.045766pt;}
.y8c{bottom:602.740682pt;}
.y157{bottom:604.039097pt;}
.y1e5{bottom:604.533772pt;}
.y2cd{bottom:605.987363pt;}
.y248{bottom:607.105506pt;}
.y50{bottom:607.151480pt;}
.yf9{bottom:608.985766pt;}
.y108{bottom:609.041766pt;}
.yd{bottom:610.864280pt;}
.y156{bottom:614.035097pt;}
.y1e4{bottom:614.529772pt;}
.y2cc{bottom:617.317363pt;}
.y281{bottom:617.773506pt;}
.yf8{bottom:618.981766pt;}
.y107{bottom:619.037766pt;}
.y247{bottom:620.437506pt;}
.y4f{bottom:620.484813pt;}
.y155{bottom:624.031097pt;}
.y1e3{bottom:624.525772pt;}
.yc{bottom:625.528280pt;}
.y2cb{bottom:628.647363pt;}
.yf7{bottom:628.977766pt;}
.y106{bottom:629.033766pt;}
.y280{bottom:631.105506pt;}
.y8b{bottom:632.075349pt;}
.y246{bottom:633.769506pt;}
.y4e{bottom:633.819480pt;}
.y154{bottom:634.027097pt;}
.y1e2{bottom:634.521772pt;}
.yf6{bottom:638.973766pt;}
.y105{bottom:639.029766pt;}
.y2ca{bottom:639.977363pt;}
.y27f{bottom:644.437506pt;}
.y1e1{bottom:644.517772pt;}
.y8a{bottom:645.408682pt;}
.y245{bottom:647.101506pt;}
.y4d{bottom:647.151480pt;}
.y2c9{bottom:651.307363pt;}
.ya{bottom:652.194946pt;}
.ye5{bottom:654.504432pt;}
.yf4{bottom:654.560432pt;}
.yb{bottom:656.861613pt;}
.y27e{bottom:657.769506pt;}
.y89{bottom:658.742015pt;}
.y1d0{bottom:660.039105pt;}
.y244{bottom:660.433506pt;}
.y4c{bottom:660.490146pt;}
.y2c8{bottom:662.637363pt;}
.ye4{bottom:664.500432pt;}
.yf3{bottom:664.556432pt;}
.y1cf{bottom:670.035105pt;}
.y27d{bottom:671.101506pt;}
.y88{bottom:672.075308pt;}
.y243{bottom:673.765506pt;}
.y4b{bottom:673.822146pt;}
.y2c7{bottom:673.967363pt;}
.ye3{bottom:674.496432pt;}
.yf2{bottom:674.552432pt;}
.y1ce{bottom:680.031105pt;}
.y9{bottom:681.506906pt;}
.y27c{bottom:684.433506pt;}
.ye2{bottom:684.492432pt;}
.yf1{bottom:684.548432pt;}
.y2c6{bottom:685.297363pt;}
.y87{bottom:685.408641pt;}
.y242{bottom:687.097506pt;}
.y4a{bottom:687.154146pt;}
.y1cd{bottom:690.027105pt;}
.ye1{bottom:694.488432pt;}
.yf0{bottom:694.544432pt;}
.y2c5{bottom:696.627363pt;}
.y27b{bottom:697.765506pt;}
.y86{bottom:698.756641pt;}
.y1cc{bottom:700.023105pt;}
.y241{bottom:700.429506pt;}
.y49{bottom:700.486146pt;}
.ye0{bottom:704.484432pt;}
.yef{bottom:704.540432pt;}
.y2c4{bottom:707.957363pt;}
.y1cb{bottom:710.019105pt;}
.y27a{bottom:711.097506pt;}
.y85{bottom:712.088641pt;}
.y240{bottom:713.761506pt;}
.y48{bottom:713.818146pt;}
.ydf{bottom:714.480432pt;}
.yee{bottom:714.536432pt;}
.y2c3{bottom:719.287363pt;}
.y1ca{bottom:720.015105pt;}
.y8{bottom:721.512239pt;}
.y279{bottom:724.429506pt;}
.yd6{bottom:724.448432pt;}
.yde{bottom:724.476432pt;}
.yed{bottom:724.532432pt;}
.y84{bottom:725.420641pt;}
.y23f{bottom:727.094839pt;}
.y47{bottom:727.151480pt;}
.y1c9{bottom:730.011105pt;}
.y2c2{bottom:730.617363pt;}
.ydd{bottom:734.472432pt;}
.yec{bottom:734.528432pt;}
.y1df{bottom:735.097765pt;}
.y278{bottom:737.761506pt;}
.y83{bottom:738.752641pt;}
.y1c8{bottom:740.007105pt;}
.y23e{bottom:740.432173pt;}
.y46{bottom:740.484813pt;}
.y2c1{bottom:741.947363pt;}
.ydc{bottom:744.468432pt;}
.yeb{bottom:744.524432pt;}
.y1de{bottom:745.093765pt;}
.y1c7{bottom:750.003105pt;}
.y277{bottom:751.094839pt;}
.y82{bottom:752.084641pt;}
.y2c0{bottom:753.277363pt;}
.y23d{bottom:753.764173pt;}
.y45{bottom:753.818146pt;}
.ydb{bottom:754.464432pt;}
.yea{bottom:754.520432pt;}
.y1dd{bottom:755.089765pt;}
.y1c6{bottom:759.999105pt;}
.y7{bottom:761.517572pt;}
.y276{bottom:764.426839pt;}
.yda{bottom:764.460432pt;}
.ye9{bottom:764.516432pt;}
.y2bf{bottom:764.607363pt;}
.y1dc{bottom:765.085765pt;}
.y81{bottom:765.416641pt;}
.y23c{bottom:767.096173pt;}
.y44{bottom:767.152813pt;}
.y1c5{bottom:769.995105pt;}
.yd9{bottom:774.456432pt;}
.ye8{bottom:774.512432pt;}
.y1db{bottom:775.081765pt;}
.y2be{bottom:775.937363pt;}
.y275{bottom:777.760173pt;}
.y80{bottom:778.748641pt;}
.y1c4{bottom:779.991105pt;}
.y23b{bottom:780.428173pt;}
.y43{bottom:780.484813pt;}
.yd8{bottom:784.452432pt;}
.ye7{bottom:784.508432pt;}
.y1da{bottom:785.077765pt;}
.y2bd{bottom:787.267363pt;}
.y1c3{bottom:789.987105pt;}
.y7f{bottom:792.080641pt;}
.y23a{bottom:793.761506pt;}
.y42{bottom:793.819480pt;}
.yd7{bottom:794.448432pt;}
.ye6{bottom:794.504432pt;}
.y1d9{bottom:795.073765pt;}
.y2bc{bottom:798.597363pt;}
.y1c2{bottom:799.983105pt;}
.y6{bottom:801.522906pt;}
.y1b2{bottom:804.920438pt;}
.y1d8{bottom:805.069765pt;}
.y7e{bottom:805.412641pt;}
.y239{bottom:807.097506pt;}
.y274{bottom:807.109506pt;}
.y41{bottom:807.151480pt;}
.y2bb{bottom:809.927363pt;}
.yc6{bottom:809.979099pt;}
.y1c1{bottom:809.979105pt;}
.yd5{bottom:810.035099pt;}
.y1d7{bottom:815.065765pt;}
.y7d{bottom:818.744641pt;}
.yc5{bottom:819.975099pt;}
.y1c0{bottom:819.975105pt;}
.yd4{bottom:820.031099pt;}
.y238{bottom:820.429506pt;}
.y273{bottom:820.441506pt;}
.y40{bottom:820.484813pt;}
.y2ba{bottom:821.257363pt;}
.y1d6{bottom:825.061765pt;}
.yc4{bottom:829.971099pt;}
.y1bf{bottom:829.971105pt;}
.yd3{bottom:830.027099pt;}
.y7c{bottom:832.076641pt;}
.y2b9{bottom:832.587363pt;}
.y237{bottom:833.761506pt;}
.y272{bottom:833.773506pt;}
.y3f{bottom:833.818146pt;}
.y1d5{bottom:835.057765pt;}
.yc3{bottom:839.967099pt;}
.y1be{bottom:839.967105pt;}
.yd2{bottom:840.023099pt;}
.y5{bottom:841.528239pt;}
.y2b8{bottom:843.917363pt;}
.y1d4{bottom:845.053765pt;}
.y7b{bottom:845.408641pt;}
.y236{bottom:847.105506pt;}
.y3e{bottom:847.154146pt;}
.y2a{bottom:848.326009pt;}
.yc2{bottom:849.963099pt;}
.y1bd{bottom:849.963105pt;}
.yd1{bottom:850.019099pt;}
.y1d3{bottom:855.049765pt;}
.y2b7{bottom:855.247363pt;}
.y7a{bottom:858.745975pt;}
.yc1{bottom:859.959099pt;}
.y1bc{bottom:859.959105pt;}
.yd0{bottom:860.015099pt;}
.y235{bottom:860.437506pt;}
.y3d{bottom:860.486146pt;}
.y1d2{bottom:865.045765pt;}
.y2b6{bottom:866.577363pt;}
.yc0{bottom:869.955099pt;}
.y1bb{bottom:869.955105pt;}
.ycf{bottom:870.011099pt;}
.y79{bottom:872.077975pt;}
.y234{bottom:873.769506pt;}
.y3c{bottom:873.818146pt;}
.y1d1{bottom:875.041765pt;}
.y2b5{bottom:877.907363pt;}
.yb7{bottom:879.923099pt;}
.ybf{bottom:879.951099pt;}
.y1ba{bottom:879.951105pt;}
.yce{bottom:880.007099pt;}
.y78{bottom:885.409975pt;}
.y233{bottom:887.101506pt;}
.y3b{bottom:887.151480pt;}
.y2b4{bottom:889.237363pt;}
.ybe{bottom:889.947099pt;}
.y1b9{bottom:889.947105pt;}
.ycd{bottom:890.003099pt;}
.y77{bottom:898.741975pt;}
.ybd{bottom:899.943099pt;}
.y1b8{bottom:899.943105pt;}
.ycc{bottom:899.999099pt;}
.y232{bottom:900.433506pt;}
.y3a{bottom:900.488813pt;}
.y2b3{bottom:900.567363pt;}
.ybc{bottom:909.939099pt;}
.y1b7{bottom:909.939105pt;}
.ycb{bottom:909.995099pt;}
.y2b2{bottom:911.897363pt;}
.y76{bottom:912.073975pt;}
.y231{bottom:913.765506pt;}
.y39{bottom:913.820813pt;}
.ybb{bottom:919.935099pt;}
.y1b6{bottom:919.935105pt;}
.yca{bottom:919.991099pt;}
.y2b1{bottom:923.227363pt;}
.y230{bottom:927.097506pt;}
.y38{bottom:927.152813pt;}
.yba{bottom:929.931099pt;}
.y1b5{bottom:929.931105pt;}
.yc9{bottom:929.987099pt;}
.y2b0{bottom:934.557363pt;}
.yb9{bottom:939.927099pt;}
.y1b4{bottom:939.927105pt;}
.yc8{bottom:939.983099pt;}
.y22f{bottom:940.429506pt;}
.y37{bottom:940.484813pt;}
.y75{bottom:941.409975pt;}
.y2af{bottom:945.887363pt;}
.yb8{bottom:949.923099pt;}
.y1b3{bottom:949.923105pt;}
.yc7{bottom:949.979099pt;}
.y22e{bottom:953.761506pt;}
.y36{bottom:953.818146pt;}
.y74{bottom:954.741975pt;}
.y2ae{bottom:957.217363pt;}
.yb6{bottom:965.509766pt;}
.y22d{bottom:967.093506pt;}
.y35{bottom:967.150146pt;}
.y73{bottom:968.073975pt;}
.y2ad{bottom:968.547363pt;}
.y72{bottom:1013.902507pt;}
.yb5{bottom:1013.996908pt;}
.y34{bottom:1013.997070pt;}
.y4{bottom:1015.042236pt;}
.h8{height:24.933594pt;}
.h7{height:25.052083pt;}
.h10{height:27.275268pt;}
.h2{height:30.687500pt;}
.h2d{height:31.476562pt;}
.h9{height:34.523438pt;}
.h20{height:36.922667pt;}
.h13{height:37.038880pt;}
.h1f{height:38.229333pt;}
.h6{height:38.359375pt;}
.ha{height:39.122868pt;}
.h2f{height:39.560000pt;}
.h30{height:40.080000pt;}
.h3{height:40.604167pt;}
.h2e{height:40.960000pt;}
.h1b{height:42.195312pt;}
.h12{height:43.120594pt;}
.h11{height:43.141927pt;}
.h14{height:43.887578pt;}
.h31{height:44.834667pt;}
.hd{height:47.472000pt;}
.hb{height:47.582068pt;}
.h2a{height:47.582101pt;}
.h22{height:47.593581pt;}
.h25{height:47.603434pt;}
.h2c{height:47.603473pt;}
.h29{height:47.608605pt;}
.h19{height:47.630101pt;}
.h16{height:47.635271pt;}
.h1a{height:47.635434pt;}
.h21{height:47.636248pt;}
.h17{height:47.640605pt;}
.h2b{height:47.640767pt;}
.h18{height:47.645938pt;}
.he{height:47.646101pt;}
.h27{height:47.646182pt;}
.h15{height:47.651271pt;}
.hc{height:47.651434pt;}
.h26{height:47.651515pt;}
.h24{height:47.651597pt;}
.h23{height:47.652248pt;}
.h1c{height:47.656767pt;}
.h28{height:48.090667pt;}
.h1e{height:48.096000pt;}
.h1d{height:49.152000pt;}
.h4{height:50.755208pt;}
.hf{height:69.046875pt;}
.h5{height:99.734375pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:6.425200pt;}
.x3{left:54.803202pt;}
.x10{left:59.086268pt;}
.xb{left:125.685069pt;}
.x5{left:207.874003pt;}
.xe{left:212.083584pt;}
.xa{left:223.871056pt;}
.x15{left:225.873988pt;}
.x16{left:268.888000pt;}
.x6{left:277.446533pt;}
.xd{left:358.850260pt;}
.x7{left:404.175456pt;}
.x4{left:521.612549pt;}
.x8{left:534.873332pt;}
.x11{left:586.736929pt;}
.x13{left:612.021061pt;}
.x9{left:638.312948pt;}
.x12{left:691.680929pt;}
.xf{left:708.791829pt;}
.x2{left:710.134766pt;}
.x14{left:727.865560pt;}
.x1{left:733.334391pt;}
}




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