
    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_019a65796386586bdac2df15.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006000;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_99a028ad7b8fff492fb1084a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_91d2c087ac61f282dc496b7a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.825000;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_43de820ab73724d6f6003bc1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.126000;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_868105fec71c71d8145cd667.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.065581;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_ccf3b32ef7dd1a4503d4d3e4.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.223000;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_37cffb367888fa03f9a36cd8.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.136000;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_386c29bb25405dc6b7fc167a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.239000;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_563cd764bb2d5fd5f779ea68.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_762a5377ac0158b2d77145fc.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_6b2d6dc356e72e00cd1a2168.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.065581;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_11c78c387a27d6466e507611.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.065581;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_d7355590a92192e18ab57b4b.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.144000;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:fff;src:url('chunks/assets/font_54e786c03609b81cf2b820d6.woff2')format("woff");}.fff{font-family:fff;line-height:1.065581;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:ff10;src:url('chunks/assets/font_4b7c8c4abf630f93503c30e6.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.065581;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:ff11;src:url('chunks/assets/font_74d128f107b397ecd779a109.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.328000;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-19.199982px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:22.799927px;}
.lsf{letter-spacing:-2.730000px;}
.ls10{letter-spacing:-2.100000px;}
.lsb{letter-spacing:-1.470000px;}
.lsc{letter-spacing:-1.260000px;}
.lse{letter-spacing:-1.050000px;}
.ls13{letter-spacing:-0.960000px;}
.ls11{letter-spacing:-0.855000px;}
.lsa{letter-spacing:-0.840000px;}
.ls7{letter-spacing:-0.741000px;}
.ls12{letter-spacing:-0.720000px;}
.ls3{letter-spacing:-0.570000px;}
.ls16{letter-spacing:-0.480000px;}
.ls9{letter-spacing:-0.420000px;}
.lsd{letter-spacing:-0.210000px;}
.ls8{letter-spacing:-0.114000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000044px;}
.ls5{letter-spacing:0.171000px;}
.ls6{letter-spacing:0.285000px;}
.ls14{letter-spacing:0.672000px;}
.ls15{letter-spacing:0.768000px;}
.ls4{letter-spacing:0.855000px;}
.ls1{letter-spacing:3.360000px;}
.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;}
}
.ws7{word-spacing:-14.250000px;}
.ws41{word-spacing:-13.332000px;}
.wseb{word-spacing:-12.672000px;}
.ws80{word-spacing:-12.000000px;}
.ws3{word-spacing:-11.799000px;}
.ws106{word-spacing:-11.520000px;}
.ws5{word-spacing:-11.514000px;}
.ws43{word-spacing:-11.340000px;}
.ws124{word-spacing:-11.280000px;}
.wse8{word-spacing:-11.040000px;}
.ws6{word-spacing:-10.944000px;}
.wsa7{word-spacing:-10.500000px;}
.ws2{word-spacing:-9.408000px;}
.wsac{word-spacing:-9.240000px;}
.wsc8{word-spacing:-9.216000px;}
.ws8{word-spacing:-8.400000px;}
.ws4{word-spacing:-8.259300px;}
.wsa8{word-spacing:-6.000000px;}
.ws9{word-spacing:-1.890000px;}
.ws3a{word-spacing:-1.425000px;}
.ws72{word-spacing:-1.368000px;}
.ws86{word-spacing:-1.197000px;}
.ws48{word-spacing:-1.140000px;}
.ws70{word-spacing:-1.026000px;}
.ws2b{word-spacing:-0.969000px;}
.ws29{word-spacing:-0.855000px;}
.wsa4{word-spacing:-0.741000px;}
.ws3b{word-spacing:-0.684000px;}
.ws7a{word-spacing:-0.627000px;}
.ws113{word-spacing:-0.576000px;}
.ws49{word-spacing:-0.570000px;}
.ws90{word-spacing:-0.513000px;}
.wsa{word-spacing:-0.480000px;}
.ws56{word-spacing:-0.456000px;}
.ws6b{word-spacing:-0.399000px;}
.ws18{word-spacing:-0.342000px;}
.wse5{word-spacing:-0.336000px;}
.ws7c{word-spacing:-0.285000px;}
.wsd7{word-spacing:-0.192000px;}
.wsba{word-spacing:-0.171000px;}
.wsd9{word-spacing:-0.144000px;}
.wsa9{word-spacing:-0.126000px;}
.wsef{word-spacing:-0.096000px;}
.ws1{word-spacing:-0.048000px;}
.wsad{word-spacing:-0.042000px;}
.ws0{word-spacing:0.000000px;}
.wse7{word-spacing:0.048000px;}
.wsfa{word-spacing:0.096000px;}
.ws4e{word-spacing:0.171000px;}
.ws112{word-spacing:0.192000px;}
.wsaa{word-spacing:0.210000px;}
.wsbf{word-spacing:0.228000px;}
.wsb3{word-spacing:0.285000px;}
.ws54{word-spacing:0.342000px;}
.wsdb{word-spacing:0.384000px;}
.ws83{word-spacing:0.399000px;}
.ws116{word-spacing:0.432000px;}
.ws26{word-spacing:0.456000px;}
.ws105{word-spacing:0.480000px;}
.ws7b{word-spacing:0.513000px;}
.ws1c{word-spacing:0.570000px;}
.ws117{word-spacing:0.576000px;}
.ws4c{word-spacing:0.627000px;}
.ws101{word-spacing:0.672000px;}
.ws9e{word-spacing:0.741000px;}
.ws10c{word-spacing:0.768000px;}
.ws9a{word-spacing:0.798000px;}
.ws123{word-spacing:0.816000px;}
.wsb9{word-spacing:0.855000px;}
.wsf7{word-spacing:0.864000px;}
.ws97{word-spacing:0.912000px;}
.wsda{word-spacing:0.960000px;}
.wse3{word-spacing:1.008000px;}
.ws8c{word-spacing:1.026000px;}
.wsab{word-spacing:1.050000px;}
.ws10f{word-spacing:1.056000px;}
.ws45{word-spacing:1.083000px;}
.wse2{word-spacing:1.104000px;}
.wsbb{word-spacing:1.140000px;}
.ws4a{word-spacing:1.197000px;}
.ws22{word-spacing:1.254000px;}
.ws60{word-spacing:1.311000px;}
.ws120{word-spacing:1.344000px;}
.ws53{word-spacing:1.368000px;}
.ws121{word-spacing:1.440000px;}
.ws27{word-spacing:1.482000px;}
.wsee{word-spacing:1.488000px;}
.wsed{word-spacing:1.536000px;}
.ws9f{word-spacing:1.539000px;}
.ws5f{word-spacing:1.596000px;}
.ws31{word-spacing:1.710000px;}
.ws10e{word-spacing:1.728000px;}
.ws2e{word-spacing:1.767000px;}
.wsd4{word-spacing:1.776000px;}
.ws2f{word-spacing:1.824000px;}
.ws13{word-spacing:1.881000px;}
.ws8a{word-spacing:1.938000px;}
.wsfd{word-spacing:2.016000px;}
.ws46{word-spacing:2.052000px;}
.wsff{word-spacing:2.064000px;}
.wsae{word-spacing:2.100000px;}
.ws44{word-spacing:2.109000px;}
.ws107{word-spacing:2.112000px;}
.wsd6{word-spacing:2.160000px;}
.wsb1{word-spacing:2.166000px;}
.ws100{word-spacing:2.208000px;}
.ws38{word-spacing:2.223000px;}
.ws10a{word-spacing:2.256000px;}
.ws99{word-spacing:2.280000px;}
.ws32{word-spacing:2.337000px;}
.ws25{word-spacing:2.394000px;}
.wsd1{word-spacing:2.448000px;}
.ws75{word-spacing:2.451000px;}
.wscc{word-spacing:2.496000px;}
.wsd5{word-spacing:2.544000px;}
.ws10{word-spacing:2.565000px;}
.ws58{word-spacing:2.622000px;}
.wsd8{word-spacing:2.640000px;}
.ws35{word-spacing:2.679000px;}
.ws42{word-spacing:2.736000px;}
.ws114{word-spacing:2.784000px;}
.ws11b{word-spacing:2.832000px;}
.wsf4{word-spacing:2.880000px;}
.ws6a{word-spacing:2.907000px;}
.ws6f{word-spacing:2.964000px;}
.wsf6{word-spacing:2.976000px;}
.wsc9{word-spacing:3.072000px;}
.wse{word-spacing:3.078000px;}
.ws33{word-spacing:3.135000px;}
.wsf8{word-spacing:3.168000px;}
.ws87{word-spacing:3.192000px;}
.ws23{word-spacing:3.249000px;}
.wscb{word-spacing:3.264000px;}
.ws11e{word-spacing:3.312000px;}
.ws79{word-spacing:3.420000px;}
.ws77{word-spacing:3.477000px;}
.ws11a{word-spacing:3.504000px;}
.ws5e{word-spacing:3.534000px;}
.wsf5{word-spacing:3.552000px;}
.wsfb{word-spacing:3.600000px;}
.ws6c{word-spacing:3.648000px;}
.wsf9{word-spacing:3.696000px;}
.ws82{word-spacing:3.705000px;}
.ws122{word-spacing:3.744000px;}
.ws8d{word-spacing:3.762000px;}
.ws6e{word-spacing:3.819000px;}
.ws64{word-spacing:3.876000px;}
.wsb8{word-spacing:3.933000px;}
.wsca{word-spacing:3.984000px;}
.ws24{word-spacing:3.990000px;}
.wse4{word-spacing:4.032000px;}
.ws47{word-spacing:4.047000px;}
.ws2c{word-spacing:4.161000px;}
.ws10b{word-spacing:4.176000px;}
.ws51{word-spacing:4.218000px;}
.ws3e{word-spacing:4.332000px;}
.wsc6{word-spacing:4.389000px;}
.wsb6{word-spacing:4.446000px;}
.ws109{word-spacing:4.464000px;}
.wse9{word-spacing:4.512000px;}
.wsaf{word-spacing:4.560000px;}
.wsf2{word-spacing:4.608000px;}
.ws15{word-spacing:4.617000px;}
.wsa0{word-spacing:4.674000px;}
.ws73{word-spacing:4.731000px;}
.wscd{word-spacing:4.752000px;}
.wsf{word-spacing:4.788000px;}
.wsd2{word-spacing:4.800000px;}
.ws71{word-spacing:4.845000px;}
.ws111{word-spacing:4.848000px;}
.wsf0{word-spacing:4.896000px;}
.ws8e{word-spacing:4.902000px;}
.ws3d{word-spacing:4.959000px;}
.ws6d{word-spacing:5.016000px;}
.ws67{word-spacing:5.073000px;}
.ws81{word-spacing:5.130000px;}
.wsfc{word-spacing:5.136000px;}
.wsdf{word-spacing:5.184000px;}
.wsd3{word-spacing:5.232000px;}
.ws1b{word-spacing:5.244000px;}
.ws68{word-spacing:5.301000px;}
.wsdc{word-spacing:5.424000px;}
.ws1a{word-spacing:5.472000px;}
.wse0{word-spacing:5.520000px;}
.wsb4{word-spacing:5.529000px;}
.ws9d{word-spacing:5.586000px;}
.ws103{word-spacing:5.616000px;}
.ws108{word-spacing:5.664000px;}
.ws1e{word-spacing:5.700000px;}
.ws118{word-spacing:5.712000px;}
.ws76{word-spacing:5.757000px;}
.ws126{word-spacing:5.856000px;}
.ws37{word-spacing:5.871000px;}
.wsec{word-spacing:5.904000px;}
.ws84{word-spacing:5.985000px;}
.wse1{word-spacing:6.000000px;}
.ws34{word-spacing:6.042000px;}
.ws96{word-spacing:6.099000px;}
.ws66{word-spacing:6.156000px;}
.ws17{word-spacing:6.213000px;}
.wsfe{word-spacing:6.240000px;}
.ws16{word-spacing:6.270000px;}
.wsc0{word-spacing:6.327000px;}
.ws65{word-spacing:6.384000px;}
.ws7e{word-spacing:6.441000px;}
.wsea{word-spacing:6.480000px;}
.wsb2{word-spacing:6.555000px;}
.wsf1{word-spacing:6.576000px;}
.wsa5{word-spacing:6.669000px;}
.wsb7{word-spacing:6.783000px;}
.ws5a{word-spacing:6.840000px;}
.ws63{word-spacing:6.897000px;}
.ws5d{word-spacing:6.954000px;}
.ws98{word-spacing:7.011000px;}
.ws85{word-spacing:7.068000px;}
.wsd0{word-spacing:7.104000px;}
.wsbe{word-spacing:7.125000px;}
.ws8f{word-spacing:7.182000px;}
.ws3f{word-spacing:7.239000px;}
.ws93{word-spacing:7.296000px;}
.ws102{word-spacing:7.344000px;}
.ws14{word-spacing:7.353000px;}
.wsce{word-spacing:7.392000px;}
.ws78{word-spacing:7.467000px;}
.ws5c{word-spacing:7.581000px;}
.wsa3{word-spacing:7.638000px;}
.ws12{word-spacing:7.695000px;}
.ws8b{word-spacing:7.752000px;}
.ws2a{word-spacing:7.809000px;}
.ws28{word-spacing:7.866000px;}
.ws89{word-spacing:8.037000px;}
.ws52{word-spacing:8.094000px;}
.ws115{word-spacing:8.112000px;}
.ws69{word-spacing:8.151000px;}
.ws95{word-spacing:8.208000px;}
.ws55{word-spacing:8.322000px;}
.wsa2{word-spacing:8.379000px;}
.ws21{word-spacing:8.436000px;}
.ws127{word-spacing:8.448000px;}
.ws4b{word-spacing:8.493000px;}
.ws10d{word-spacing:8.544000px;}
.wsc7{word-spacing:8.607000px;}
.ws36{word-spacing:8.664000px;}
.ws94{word-spacing:8.778000px;}
.ws11f{word-spacing:8.928000px;}
.ws92{word-spacing:8.949000px;}
.ws30{word-spacing:9.006000px;}
.ws62{word-spacing:9.024000px;}
.ws39{word-spacing:9.063000px;}
.ws119{word-spacing:9.072000px;}
.ws88{word-spacing:9.120000px;}
.ws57{word-spacing:9.177000px;}
.ws7d{word-spacing:9.348000px;}
.wsdd{word-spacing:9.360000px;}
.ws125{word-spacing:9.456000px;}
.ws1f{word-spacing:9.462000px;}
.wsf3{word-spacing:9.504000px;}
.wsde{word-spacing:9.552000px;}
.wscf{word-spacing:9.600000px;}
.ws59{word-spacing:9.633000px;}
.ws91{word-spacing:9.690000px;}
.wse6{word-spacing:9.696000px;}
.ws7f{word-spacing:9.984000px;}
.wsb5{word-spacing:10.203000px;}
.ws40{word-spacing:10.374000px;}
.wsc{word-spacing:10.431000px;}
.wsb{word-spacing:10.602000px;}
.ws110{word-spacing:10.608000px;}
.wsb0{word-spacing:10.773000px;}
.ws9c{word-spacing:10.830000px;}
.ws2d{word-spacing:10.887000px;}
.wsa1{word-spacing:10.944000px;}
.wsd{word-spacing:11.058000px;}
.ws11c{word-spacing:11.088000px;}
.wsc5{word-spacing:11.286000px;}
.wsbc{word-spacing:11.457000px;}
.ws4d{word-spacing:11.742000px;}
.ws9b{word-spacing:11.856000px;}
.ws50{word-spacing:11.970000px;}
.ws5b{word-spacing:12.027000px;}
.ws11{word-spacing:12.084000px;}
.ws3c{word-spacing:12.198000px;}
.wsc3{word-spacing:12.426000px;}
.wsbd{word-spacing:12.540000px;}
.ws20{word-spacing:13.794000px;}
.ws61{word-spacing:14.784000px;}
.wsc2{word-spacing:15.504000px;}
.wsc1{word-spacing:15.618000px;}
.ws104{word-spacing:16.032000px;}
.wsc4{word-spacing:17.100000px;}
.ws19{word-spacing:19.668000px;}
.ws4f{word-spacing:25.137000px;}
.ws11d{word-spacing:27.072000px;}
.ws1d{word-spacing:73.056000px;}
.wsa6{word-spacing:203.448000px;}
.ws74{word-spacing:333.792000px;}
._13{margin-left:-18.000000px;}
._4{margin-left:-15.600000px;}
._15{margin-left:-13.332000px;}
._17{margin-left:-11.340000px;}
._12{margin-left:-7.146000px;}
._2b{margin-left:-4.827300px;}
._2{margin-left:-3.701400px;}
._9{margin-left:-2.700000px;}
._0{margin-left:-1.632000px;}
._1{width:1.758600px;}
._b{width:3.285000px;}
._3{width:4.285791px;}
._19{width:5.757000px;}
._18{width:6.765900px;}
._a{width:8.727600px;}
._11{width:11.226000px;}
._1a{width:12.834000px;}
._e{width:14.885400px;}
._16{width:18.660000px;}
._14{width:19.668000px;}
._5{width:22.320000px;}
._10{width:30.000000px;}
._d{width:31.187400px;}
._f{width:33.000000px;}
._8{width:38.591995px;}
._c{width:47.823000px;}
._6{width:56.255995px;}
._2a{width:73.200000px;}
._29{width:101.808000px;}
._1e{width:133.788000px;}
._23{width:137.142000px;}
._24{width:138.900000px;}
._27{width:171.078000px;}
._28{width:192.864000px;}
._25{width:208.482000px;}
._1f{width:222.054000px;}
._26{width:232.596000px;}
._22{width:285.510000px;}
._1d{width:321.696000px;}
._1c{width:339.312000px;}
._1b{width:427.344000px;}
._20{width:492.245400px;}
._21{width:869.993400px;}
._7{width:1219.872000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:33.600000px;}
.fs9{font-size:39.900000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs8{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsa{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:78.000000px;}
.fs6{font-size:90.000000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y24{bottom:32.687250px;}
.ya2{bottom:33.984900px;}
.y27{bottom:33.985050px;}
.y6{bottom:35.925007px;}
.y5{bottom:66.525004px;}
.y157{bottom:73.222538px;}
.y195{bottom:73.243491px;}
.y17a{bottom:73.243564px;}
.y135{bottom:73.274976px;}
.y134{bottom:73.274998px;}
.y1bb{bottom:73.814999px;}
.yb1{bottom:73.935000px;}
.y133{bottom:74.279241px;}
.yce{bottom:74.380491px;}
.ye2{bottom:74.454752px;}
.y114{bottom:74.461502px;}
.ya1{bottom:74.473053px;}
.y230{bottom:76.255491px;}
.y4a{bottom:78.074999px;}
.y196{bottom:82.241991px;}
.y2a3{bottom:84.987471px;}
.y79{bottom:87.718781px;}
.y22f{bottom:90.127491px;}
.y1e3{bottom:90.363303px;}
.y132{bottom:91.535991px;}
.ycd{bottom:91.637241px;}
.ye1{bottom:91.711502px;}
.y113{bottom:91.718252px;}
.ya0{bottom:91.729803px;}
.y4{bottom:97.125005px;}
.y2a2{bottom:98.859471px;}
.y26b{bottom:98.866307px;}
.y49{bottom:99.497246px;}
.y1fe{bottom:103.411200px;}
.y22e{bottom:103.999491px;}
.y78{bottom:104.975531px;}
.y1e2{bottom:107.620053px;}
.y131{bottom:108.792741px;}
.ycc{bottom:108.893991px;}
.ye0{bottom:108.968252px;}
.y112{bottom:108.975002px;}
.y9f{bottom:108.986553px;}
.y2a1{bottom:112.731471px;}
.y26a{bottom:112.738307px;}
.y22d{bottom:117.871491px;}
.y1fd{bottom:120.667950px;}
.y48{bottom:120.919498px;}
.y77{bottom:122.232281px;}
.y1e1{bottom:124.876803px;}
.y130{bottom:126.049491px;}
.ycb{bottom:126.150741px;}
.ydf{bottom:126.225002px;}
.y9e{bottom:126.243303px;}
.y2a0{bottom:126.603471px;}
.y269{bottom:126.610307px;}
.y22c{bottom:131.743491px;}
.y1fc{bottom:137.924700px;}
.y23{bottom:139.264499px;}
.y76{bottom:139.489031px;}
.y29f{bottom:140.475471px;}
.y268{bottom:140.482307px;}
.y1e0{bottom:142.133553px;}
.y12f{bottom:143.306241px;}
.yca{bottom:143.407491px;}
.y9d{bottom:143.500053px;}
.y111{bottom:144.225002px;}
.y47{bottom:144.397500px;}
.y22b{bottom:145.615491px;}
.y2a5{bottom:154.342307px;}
.y29e{bottom:154.347471px;}
.y267{bottom:154.354307px;}
.y1fb{bottom:155.181450px;}
.y75{bottom:156.745781px;}
.y46{bottom:158.269500px;}
.y1df{bottom:159.390303px;}
.y22a{bottom:159.487491px;}
.y12e{bottom:160.562991px;}
.yc9{bottom:160.664241px;}
.yde{bottom:161.475002px;}
.y2a4{bottom:168.214307px;}
.y29d{bottom:168.219471px;}
.y266{bottom:168.226307px;}
.y1fa{bottom:172.438200px;}
.y229{bottom:173.359491px;}
.y74{bottom:174.002531px;}
.y1de{bottom:176.647053px;}
.y12d{bottom:177.819741px;}
.yc8{bottom:177.920991px;}
.y9c{bottom:178.750053px;}
.y29c{bottom:182.091471px;}
.y265{bottom:182.098307px;}
.y15f{bottom:185.604058px;}
.y151{bottom:185.625007px;}
.y181{bottom:185.625063px;}
.y149{bottom:185.635491px;}
.y141{bottom:185.645975px;}
.y18e{bottom:185.646016px;}
.y174{bottom:185.646033px;}
.y1a3{bottom:185.646036px;}
.y13c{bottom:185.656475px;}
.y188{bottom:185.656500px;}
.y16e{bottom:185.656517px;}
.y19b{bottom:185.656520px;}
.y166{bottom:185.667001px;}
.y110{bottom:186.095829px;}
.y228{bottom:187.231491px;}
.y1f9{bottom:189.694950px;}
.y1dd{bottom:193.903803px;}
.y160{bottom:194.602558px;}
.y158{bottom:194.613038px;}
.y197{bottom:194.623507px;}
.y182{bottom:194.623563px;}
.y14a{bottom:194.633991px;}
.y17b{bottom:194.634064px;}
.y142{bottom:194.644475px;}
.y18f{bottom:194.644516px;}
.y19c{bottom:194.655020px;}
.y136{bottom:194.665476px;}
.y167{bottom:194.665501px;}
.y12c{bottom:195.076491px;}
.yc7{bottom:195.177741px;}
.y29b{bottom:195.963471px;}
.y264{bottom:195.970307px;}
.y1a{bottom:196.933500px;}
.y227{bottom:201.103491px;}
.y10f{bottom:203.352579px;}
.y1f8{bottom:206.951700px;}
.y45{bottom:207.835057px;}
.y22{bottom:209.518500px;}
.y19{bottom:209.533503px;}
.y29a{bottom:209.835471px;}
.y263{bottom:209.842307px;}
.y73{bottom:209.998031px;}
.ydd{bottom:210.295057px;}
.y1dc{bottom:211.160553px;}
.y12b{bottom:212.333241px;}
.yc6{bottom:212.434491px;}
.y226{bottom:214.975491px;}
.y9b{bottom:219.061031px;}
.y10e{bottom:220.609329px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.y299{bottom:223.707471px;}
.y262{bottom:223.714307px;}
.y1f7{bottom:224.208450px;}
.y44{bottom:225.091807px;}
.y72{bottom:227.254781px;}
.ydc{bottom:227.551807px;}
.y1db{bottom:228.417303px;}
.y225{bottom:228.847491px;}
.y12a{bottom:229.589991px;}
.yc5{bottom:229.691241px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.y9a{bottom:236.317781px;}
.y298{bottom:237.579471px;}
.y261{bottom:237.586307px;}
.y10d{bottom:237.866079px;}
.y1f6{bottom:241.465200px;}
.y43{bottom:242.348557px;}
.y224{bottom:242.719491px;}
.y71{bottom:244.511531px;}
.ydb{bottom:244.808557px;}
.y1da{bottom:245.674053px;}
.y129{bottom:246.846741px;}
.yc4{bottom:246.947991px;}
.y297{bottom:251.451471px;}
.y260{bottom:251.458307px;}
.y99{bottom:253.574531px;}
.y10c{bottom:255.122829px;}
.y223{bottom:256.591491px;}
.y1f5{bottom:258.721950px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.y70{bottom:261.768281px;}
.yda{bottom:262.065307px;}
.y1d9{bottom:262.930803px;}
.y128{bottom:264.103491px;}
.yc3{bottom:264.204741px;}
.y296{bottom:265.323471px;}
.y25f{bottom:265.330307px;}
.y222{bottom:270.463491px;}
.y98{bottom:270.831281px;}
.y10b{bottom:272.379579px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.y1f4{bottom:275.978700px;}
.y42{bottom:277.598557px;}
.y6f{bottom:279.025031px;}
.y295{bottom:279.195471px;}
.y25e{bottom:279.202307px;}
.yd9{bottom:279.322057px;}
.y1d8{bottom:280.187553px;}
.y127{bottom:281.360241px;}
.yc2{bottom:281.461491px;}
.y221{bottom:284.335491px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.y97{bottom:288.088031px;}
.y10a{bottom:289.636329px;}
.y294{bottom:293.067471px;}
.y25d{bottom:293.074307px;}
.y1f3{bottom:293.235450px;}
.y6e{bottom:296.281781px;}
.yd8{bottom:296.578807px;}
.y220{bottom:298.207491px;}
.y126{bottom:298.616991px;}
.yc1{bottom:298.718241px;}
.y96{bottom:305.344781px;}
.y109{bottom:306.893079px;}
.y293{bottom:306.939471px;}
.y25c{bottom:306.946307px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.y1f2{bottom:310.492200px;}
.y21f{bottom:312.079491px;}
.yd7{bottom:313.835557px;}
.y1d7{bottom:315.437553px;}
.y125{bottom:315.873741px;}
.yc0{bottom:315.974991px;}
.y161{bottom:316.938058px;}
.y159{bottom:316.948538px;}
.y198{bottom:316.959007px;}
.y183{bottom:316.959063px;}
.y14b{bottom:316.969491px;}
.y17c{bottom:316.969564px;}
.y143{bottom:316.979975px;}
.y190{bottom:316.980016px;}
.y19d{bottom:316.990520px;}
.y137{bottom:317.000976px;}
.y168{bottom:317.001001px;}
.y292{bottom:320.811471px;}
.y25b{bottom:320.818307px;}
.y95{bottom:322.601531px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.y108{bottom:324.149829px;}
.y162{bottom:325.936558px;}
.y15a{bottom:325.947038px;}
.y21e{bottom:325.951491px;}
.y152{bottom:325.957507px;}
.y184{bottom:325.957563px;}
.y14c{bottom:325.967991px;}
.y17d{bottom:325.968064px;}
.y144{bottom:325.978475px;}
.y191{bottom:325.978516px;}
.y175{bottom:325.978533px;}
.y1a4{bottom:325.978536px;}
.y13d{bottom:325.988975px;}
.y189{bottom:325.989000px;}
.y16f{bottom:325.989017px;}
.y19e{bottom:325.989020px;}
.y138{bottom:325.999476px;}
.y169{bottom:325.999501px;}
.y1f1{bottom:327.748950px;}
.yd6{bottom:331.092307px;}
.y41{bottom:331.484557px;}
.y6d{bottom:332.277281px;}
.y124{bottom:333.130491px;}
.y291{bottom:334.683471px;}
.y25a{bottom:334.690307px;}
.y21d{bottom:339.823491px;}
.y94{bottom:339.858281px;}
.y107{bottom:341.406579px;}
.y1f0{bottom:345.005700px;}
.y11{bottom:348.133500px;}
.yd5{bottom:348.349057px;}
.y290{bottom:348.555471px;}
.y259{bottom:348.562307px;}
.y40{bottom:348.741307px;}
.y6c{bottom:349.534031px;}
.y123{bottom:350.387241px;}
.ybf{bottom:351.224991px;}
.y21c{bottom:353.695491px;}
.y93{bottom:357.115031px;}
.y106{bottom:358.663329px;}
.y1ef{bottom:362.262450px;}
.y28f{bottom:362.427471px;}
.y258{bottom:362.434307px;}
.yd4{bottom:365.605807px;}
.y6b{bottom:366.790781px;}
.y21b{bottom:367.567491px;}
.y122{bottom:367.643991px;}
.y92{bottom:374.371781px;}
.y1d6{bottom:374.606531px;}
.y105{bottom:375.920079px;}
.y28e{bottom:376.299471px;}
.y257{bottom:376.306307px;}
.y21a{bottom:381.439491px;}
.yd3{bottom:382.862557px;}
.y3f{bottom:383.240557px;}
.y6a{bottom:384.047531px;}
.y121{bottom:384.900741px;}
.y10{bottom:386.785499px;}
.y28d{bottom:390.171471px;}
.y256{bottom:390.178307px;}
.y91{bottom:391.628531px;}
.y1d5{bottom:391.863281px;}
.y104{bottom:393.176829px;}
.y219{bottom:395.311491px;}
.ybe{bottom:396.719837px;}
.y1ee{bottom:397.512450px;}
.yd2{bottom:400.119307px;}
.y3e{bottom:400.497307px;}
.y69{bottom:401.304281px;}
.y120{bottom:402.157491px;}
.y28c{bottom:404.043471px;}
.y255{bottom:404.050307px;}
.y1ba{bottom:405.182531px;}
.yf{bottom:408.044999px;}
.y90{bottom:408.885281px;}
.y1d4{bottom:409.120031px;}
.y218{bottom:409.183491px;}
.y103{bottom:410.433579px;}
.ybd{bottom:413.976587px;}
.yd1{bottom:417.376057px;}
.y3d{bottom:417.754057px;}
.y28b{bottom:417.915471px;}
.y254{bottom:417.922307px;}
.y68{bottom:418.561031px;}
.y11f{bottom:419.414241px;}
.y1b9{bottom:422.439281px;}
.y217{bottom:423.055491px;}
.y8f{bottom:426.142031px;}
.y1d3{bottom:426.376781px;}
.y102{bottom:427.690329px;}
.yae{bottom:430.815444px;}
.ybc{bottom:431.233337px;}
.y28a{bottom:431.787471px;}
.y253{bottom:431.794307px;}
.yd0{bottom:434.632807px;}
.y3c{bottom:435.010807px;}
.y67{bottom:435.817781px;}
.y11e{bottom:436.670991px;}
.y216{bottom:436.927491px;}
.y1b8{bottom:439.696031px;}
.y8e{bottom:443.398781px;}
.y1d2{bottom:443.633531px;}
.y101{bottom:444.947079px;}
.y289{bottom:445.659471px;}
.y252{bottom:445.666307px;}
.yad{bottom:448.072194px;}
.y215{bottom:450.799491px;}
.ycf{bottom:451.889557px;}
.y3b{bottom:452.267557px;}
.y66{bottom:453.074531px;}
.y11d{bottom:453.927741px;}
.y1ed{bottom:456.927741px;}
.y1b7{bottom:456.952781px;}
.y288{bottom:459.531471px;}
.y251{bottom:459.538307px;}
.y8d{bottom:460.655531px;}
.y1d1{bottom:460.890281px;}
.y100{bottom:462.203829px;}
.y214{bottom:464.671491px;}
.yac{bottom:465.328944px;}
.ybb{bottom:466.483337px;}
.y3a{bottom:469.524307px;}
.y65{bottom:470.331281px;}
.y11c{bottom:471.184491px;}
.y287{bottom:473.403471px;}
.y250{bottom:473.410307px;}
.y1ec{bottom:474.184491px;}
.y1b6{bottom:474.209531px;}
.y8c{bottom:477.912281px;}
.y1d0{bottom:478.147031px;}
.y213{bottom:478.543491px;}
.yff{bottom:479.460579px;}
.yab{bottom:482.585694px;}
.ye{bottom:484.864502px;}
.y39{bottom:486.781057px;}
.y286{bottom:487.275471px;}
.y24f{bottom:487.282307px;}
.y64{bottom:487.588031px;}
.y11b{bottom:488.441241px;}
.y1eb{bottom:491.441241px;}
.y1b5{bottom:491.466281px;}
.y212{bottom:492.415491px;}
.y8b{bottom:495.169031px;}
.y1cf{bottom:495.403781px;}
.yfe{bottom:496.717329px;}
.yaa{bottom:499.842444px;}
.y285{bottom:501.147471px;}
.y24e{bottom:501.154307px;}
.yba{bottom:502.481837px;}
.yd{bottom:502.864502px;}
.yf9{bottom:503.291265px;}
.y38{bottom:504.037807px;}
.y63{bottom:504.844781px;}
.y11a{bottom:505.697991px;}
.y211{bottom:506.287491px;}
.y1ea{bottom:508.697991px;}
.y1b4{bottom:508.723031px;}
.y8a{bottom:512.425781px;}
.y1ce{bottom:512.660531px;}
.y163{bottom:513.141058px;}
.y15b{bottom:513.151538px;}
.y153{bottom:513.162007px;}
.y185{bottom:513.162063px;}
.y14d{bottom:513.172491px;}
.y17e{bottom:513.172564px;}
.y145{bottom:513.182975px;}
.y192{bottom:513.183016px;}
.y176{bottom:513.183033px;}
.y1a5{bottom:513.183036px;}
.y13e{bottom:513.193475px;}
.y18a{bottom:513.193500px;}
.y170{bottom:513.193517px;}
.y19f{bottom:513.193520px;}
.y139{bottom:513.203976px;}
.y16a{bottom:513.204001px;}
.yfd{bottom:513.974079px;}
.y284{bottom:515.019471px;}
.y24d{bottom:515.026307px;}
.ya9{bottom:517.099194px;}
.yb9{bottom:520.483337px;}
.yc{bottom:520.864502px;}
.yf8{bottom:520.955265px;}
.y37{bottom:521.294557px;}
.y62{bottom:522.101531px;}
.y164{bottom:522.139558px;}
.y15c{bottom:522.150038px;}
.y154{bottom:522.160507px;}
.y186{bottom:522.160563px;}
.y14e{bottom:522.170991px;}
.y17f{bottom:522.171064px;}
.y146{bottom:522.181475px;}
.y193{bottom:522.181516px;}
.y177{bottom:522.181533px;}
.y1a6{bottom:522.181536px;}
.y13f{bottom:522.191975px;}
.y18b{bottom:522.192000px;}
.y171{bottom:522.192017px;}
.y1a0{bottom:522.192020px;}
.y13a{bottom:522.202476px;}
.y16b{bottom:522.202501px;}
.y119{bottom:522.954741px;}
.y1e9{bottom:525.954741px;}
.y1b3{bottom:525.979781px;}
.y283{bottom:528.891471px;}
.y24c{bottom:528.898307px;}
.y89{bottom:529.682531px;}
.y1cd{bottom:529.917281px;}
.yfc{bottom:531.230829px;}
.ya8{bottom:534.355944px;}
.y210{bottom:538.462509px;}
.yf7{bottom:538.547265px;}
.y36{bottom:538.551307px;}
.yb{bottom:538.864499px;}
.y61{bottom:539.358281px;}
.y118{bottom:540.211491px;}
.y282{bottom:542.763471px;}
.y24b{bottom:542.770307px;}
.y1e8{bottom:543.211491px;}
.y1b2{bottom:543.236531px;}
.y88{bottom:546.939281px;}
.y1cc{bottom:547.174031px;}
.yfb{bottom:548.487579px;}
.ya7{bottom:551.612694px;}
.y35{bottom:555.808057px;}
.yf6{bottom:556.139265px;}
.y60{bottom:556.615031px;}
.y281{bottom:556.635471px;}
.y24a{bottom:556.642307px;}
.ya{bottom:556.864499px;}
.y117{bottom:557.468241px;}
.y1e7{bottom:560.468241px;}
.y1b1{bottom:560.493281px;}
.y87{bottom:564.196031px;}
.y1cb{bottom:564.430781px;}
.ya6{bottom:568.869444px;}
.y280{bottom:570.507471px;}
.y249{bottom:570.514307px;}
.y34{bottom:573.064807px;}
.yf5{bottom:573.659265px;}
.y5f{bottom:573.871781px;}
.y116{bottom:574.724991px;}
.y1e6{bottom:577.724991px;}
.y1b0{bottom:577.750031px;}
.yb8{bottom:579.464684px;}
.y86{bottom:581.452781px;}
.y1ca{bottom:581.687531px;}
.yfa{bottom:583.737579px;}
.y27f{bottom:584.379471px;}
.y248{bottom:584.386307px;}
.ya5{bottom:586.126194px;}
.y33{bottom:590.321557px;}
.y5e{bottom:591.128531px;}
.yf4{bottom:591.323265px;}
.yb7{bottom:596.721434px;}
.y27e{bottom:598.251471px;}
.y247{bottom:598.258307px;}
.y85{bottom:598.709531px;}
.ya4{bottom:603.382944px;}
.y32{bottom:607.578307px;}
.y5d{bottom:608.385281px;}
.y20f{bottom:608.627686px;}
.yf3{bottom:608.915265px;}
.y115{bottom:609.974991px;}
.y27d{bottom:612.123471px;}
.y246{bottom:612.130307px;}
.y1e5{bottom:612.974991px;}
.y1af{bottom:613.000031px;}
.yb6{bottom:613.978184px;}
.y84{bottom:615.966281px;}
.y1c9{bottom:616.937531px;}
.ya3{bottom:620.639694px;}
.y20e{bottom:622.499686px;}
.y31{bottom:624.835057px;}
.y5c{bottom:625.642031px;}
.y27c{bottom:625.995471px;}
.y245{bottom:626.002307px;}
.yf2{bottom:626.507265px;}
.yb5{bottom:631.234934px;}
.y83{bottom:633.223031px;}
.y20d{bottom:636.371686px;}
.y27b{bottom:639.867471px;}
.y244{bottom:639.874307px;}
.y30{bottom:642.091807px;}
.y5b{bottom:642.898781px;}
.yf1{bottom:644.099265px;}
.y9{bottom:645.510000px;}
.yb4{bottom:648.491684px;}
.y20c{bottom:650.243686px;}
.y82{bottom:650.479781px;}
.y27a{bottom:653.739471px;}
.y243{bottom:653.746307px;}
.y1e4{bottom:658.856531px;}
.y2f{bottom:659.348557px;}
.y5a{bottom:660.155531px;}
.yf0{bottom:661.691265px;}
.y20b{bottom:664.115686px;}
.y8{bottom:666.771000px;}
.y279{bottom:667.611471px;}
.y242{bottom:667.618307px;}
.y81{bottom:667.736531px;}
.yb0{bottom:671.137048px;}
.y1ae{bottom:672.229781px;}
.y1c8{bottom:676.113281px;}
.y59{bottom:677.412281px;}
.y20a{bottom:677.987686px;}
.yef{bottom:679.283265px;}
.y278{bottom:681.483471px;}
.y241{bottom:681.490307px;}
.yb3{bottom:683.741684px;}
.y80{bottom:684.993281px;}
.yaf{bottom:685.009048px;}
.y1ad{bottom:689.486531px;}
.y209{bottom:691.859686px;}
.y1c7{bottom:693.370031px;}
.y58{bottom:694.669031px;}
.y277{bottom:695.355471px;}
.y240{bottom:695.362307px;}
.yee{bottom:696.875265px;}
.y7f{bottom:702.250031px;}
.y208{bottom:705.731686px;}
.y1ac{bottom:706.743281px;}
.y2e{bottom:707.087564px;}
.y276{bottom:709.227471px;}
.y23f{bottom:709.234307px;}
.y1c6{bottom:710.626781px;}
.y57{bottom:711.925781px;}
.yed{bottom:714.467265px;}
.y2d{bottom:720.959564px;}
.y275{bottom:723.099471px;}
.y23e{bottom:723.106307px;}
.y1ab{bottom:724.000031px;}
.y7{bottom:726.298500px;}
.y1c5{bottom:727.883531px;}
.y56{bottom:729.182531px;}
.yec{bottom:732.059265px;}
.y207{bottom:733.487686px;}
.y274{bottom:736.971471px;}
.y23d{bottom:736.978307px;}
.y7e{bottom:737.500031px;}
.y1c4{bottom:745.140281px;}
.y55{bottom:746.439281px;}
.yeb{bottom:749.651265px;}
.y273{bottom:750.843471px;}
.y23c{bottom:750.850307px;}
.y3{bottom:752.599495px;}
.y2c{bottom:758.731064px;}
.y1aa{bottom:759.248531px;}
.y206{bottom:761.237686px;}
.y1c3{bottom:762.397031px;}
.y54{bottom:763.696031px;}
.y272{bottom:764.715471px;}
.y23b{bottom:764.722307px;}
.yea{bottom:767.243265px;}
.y1a9{bottom:777.250031px;}
.y7d{bottom:777.993281px;}
.y271{bottom:778.587471px;}
.y23a{bottom:778.594307px;}
.y1c2{bottom:779.653781px;}
.y53{bottom:780.952781px;}
.ye9{bottom:784.835265px;}
.y165{bottom:787.453554px;}
.y15d{bottom:787.464034px;}
.y155{bottom:787.474503px;}
.y187{bottom:787.474559px;}
.y14f{bottom:787.484987px;}
.y180{bottom:787.485060px;}
.y147{bottom:787.495471px;}
.y194{bottom:787.495513px;}
.y178{bottom:787.495529px;}
.y1a7{bottom:787.495533px;}
.y140{bottom:787.505972px;}
.y18c{bottom:787.505997px;}
.y172{bottom:787.506013px;}
.y1a1{bottom:787.506017px;}
.y13b{bottom:787.516472px;}
.y16c{bottom:787.516497px;}
.y199{bottom:787.516501px;}
.y205{bottom:792.435471px;}
.y270{bottom:792.459471px;}
.y239{bottom:792.466307px;}
.y7c{bottom:795.250031px;}
.y15e{bottom:796.462538px;}
.y156{bottom:796.473003px;}
.y150{bottom:796.483487px;}
.y148{bottom:796.493971px;}
.y179{bottom:796.494029px;}
.y1a8{bottom:796.494033px;}
.y18d{bottom:796.504497px;}
.y173{bottom:796.504513px;}
.y1a2{bottom:796.504517px;}
.y16d{bottom:796.514997px;}
.y19a{bottom:796.515001px;}
.y1c1{bottom:796.910531px;}
.y52{bottom:798.209531px;}
.y2b{bottom:801.160077px;}
.ye8{bottom:802.427265px;}
.y204{bottom:806.307471px;}
.y26f{bottom:806.331471px;}
.y238{bottom:806.338307px;}
.y1c0{bottom:814.167281px;}
.y51{bottom:815.466281px;}
.ye7{bottom:820.019265px;}
.y26e{bottom:820.203471px;}
.y237{bottom:820.210307px;}
.y2a{bottom:823.663077px;}
.y7b{bottom:830.500031px;}
.y1bf{bottom:831.424031px;}
.y50{bottom:832.723031px;}
.y203{bottom:834.063471px;}
.y26d{bottom:834.075471px;}
.y236{bottom:834.082307px;}
.ye6{bottom:838.163265px;}
.y29{bottom:846.166077px;}
.y26c{bottom:847.947471px;}
.y235{bottom:847.954307px;}
.y1be{bottom:848.680781px;}
.y4f{bottom:849.979781px;}
.y202{bottom:861.819471px;}
.y234{bottom:861.826307px;}
.y1bd{bottom:865.937531px;}
.ye5{bottom:866.171265px;}
.y4e{bottom:867.236531px;}
.y201{bottom:875.691471px;}
.y233{bottom:875.698307px;}
.y2{bottom:879.369000px;}
.y4d{bottom:884.493281px;}
.y200{bottom:889.563471px;}
.ye4{bottom:889.565531px;}
.y232{bottom:889.570307px;}
.y28{bottom:899.785217px;}
.y1bc{bottom:901.187531px;}
.y4c{bottom:901.750031px;}
.y1ff{bottom:903.435471px;}
.ye3{bottom:903.437531px;}
.y231{bottom:903.442307px;}
.y26{bottom:926.117136px;}
.y4b{bottom:939.351471px;}
.y25{bottom:939.989136px;}
.yb2{bottom:940.414307px;}
.y7a{bottom:940.414490px;}
.y1{bottom:966.726000px;}
.h18{height:23.116800px;}
.h1e{height:28.896000px;}
.h8{height:32.130000px;}
.h9{height:32.172000px;}
.h17{height:33.024000px;}
.h1d{height:33.312000px;}
.hc{height:33.840000px;}
.h16{height:34.687500px;}
.h13{height:39.216000px;}
.hd{height:42.048000px;}
.h1b{height:42.528000px;}
.h7{height:45.960000px;}
.hf{height:46.704000px;}
.h19{height:47.472000px;}
.h3{height:48.195000px;}
.h6{height:48.258000px;}
.h1f{height:49.104000px;}
.h14{height:50.502000px;}
.h1a{height:53.640000px;}
.he{height:54.862258px;}
.h2{height:55.152000px;}
.h12{height:56.373000px;}
.h1c{height:58.311000px;}
.h11{height:61.622627px;}
.h15{height:65.274000px;}
.h10{height:69.108000px;}
.h5{height:78.132000px;}
.h4{height:119.055004px;}
.hb{height:999.000000px;}
.ha{height:999.213000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w3{width:659.055000px;}
.w4{width:659.250000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:70.157553px;}
.x9{left:72.368402px;}
.x8{left:74.529448px;}
.x31{left:79.157553px;}
.xa{left:87.171898px;}
.xb{left:94.154410px;}
.x5d{left:95.669553px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.xe{left:108.897148px;}
.x32{left:122.287645px;}
.x33{left:134.289145px;}
.xf{left:135.777148px;}
.x34{left:146.290645px;}
.x10{left:147.778648px;}
.x35{left:158.292145px;}
.x11{left:159.780148px;}
.x36{left:170.293645px;}
.x12{left:171.781648px;}
.x37{left:182.295145px;}
.x13{left:183.783148px;}
.x38{left:194.307145px;}
.x56{left:198.780145px;}
.x14{left:200.814146px;}
.x4{left:203.484001px;}
.x39{left:210.781646px;}
.x15{left:212.815646px;}
.x3a{left:222.783146px;}
.xd{left:223.925398px;}
.x3b{left:234.784646px;}
.x16{left:236.818646px;}
.x3c{left:246.786146px;}
.x17{left:248.820146px;}
.x3d{left:258.787646px;}
.x18{left:265.294645px;}
.x3e{left:270.789146px;}
.x57{left:275.272644px;}
.x19{left:277.296145px;}
.x3f{left:282.790646px;}
.x58{left:287.274144px;}
.x1a{left:289.297645px;}
.x40{left:299.275648px;}
.x1b{left:301.299145px;}
.x41{left:311.277148px;}
.x1c{left:317.763145px;}
.x42{left:323.278648px;}
.x1d{left:329.764645px;}
.x43{left:335.280148px;}
.x1e{left:341.766145px;}
.x44{left:347.281648px;}
.x1f{left:353.767645px;}
.x45{left:359.293648px;}
.x20{left:365.769145px;}
.x46{left:371.295148px;}
.x59{left:375.841644px;}
.x21{left:382.254145px;}
.x47{left:383.296648px;}
.x5a{left:387.843144px;}
.x22{left:394.255645px;}
.x48{left:399.771144px;}
.x23{left:406.257145px;}
.x49{left:411.772644px;}
.x24{left:418.258645px;}
.x4a{left:423.774144px;}
.x25{left:430.260145px;}
.x4b{left:435.775644px;}
.x26{left:442.261645px;}
.x4c{left:447.777144px;}
.x3{left:454.959000px;}
.x27{left:458.736144px;}
.x4d{left:459.778644px;}
.x28{left:470.737644px;}
.x4e{left:471.790644px;}
.x29{left:482.739144px;}
.x4f{left:483.792144px;}
.x5{left:485.858414px;}
.x5b{left:488.254649px;}
.x2a{left:494.740644px;}
.x50{left:500.256142px;}
.xc{left:505.743622px;}
.x2b{left:506.752644px;}
.x51{left:512.257642px;}
.x2c{left:523.227144px;}
.x52{left:524.259142px;}
.x7{left:528.009430px;}
.x2d{left:535.228644px;}
.x53{left:536.260642px;}
.x2e{left:547.230144px;}
.x54{left:548.262142px;}
.x2f{left:559.231644px;}
.x55{left:560.263642px;}
.x30{left:571.233144px;}
.x5c{left:572.265149px;}
@media print{
.v2{vertical-align:-17.066650pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:20.266602pt;}
.lsf{letter-spacing:-2.426667pt;}
.ls10{letter-spacing:-1.866667pt;}
.lsb{letter-spacing:-1.306667pt;}
.lsc{letter-spacing:-1.120000pt;}
.lse{letter-spacing:-0.933333pt;}
.ls13{letter-spacing:-0.853333pt;}
.ls11{letter-spacing:-0.760000pt;}
.lsa{letter-spacing:-0.746667pt;}
.ls7{letter-spacing:-0.658667pt;}
.ls12{letter-spacing:-0.640000pt;}
.ls3{letter-spacing:-0.506667pt;}
.ls16{letter-spacing:-0.426667pt;}
.ls9{letter-spacing:-0.373333pt;}
.lsd{letter-spacing:-0.186667pt;}
.ls8{letter-spacing:-0.101333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000039pt;}
.ls5{letter-spacing:0.152000pt;}
.ls6{letter-spacing:0.253333pt;}
.ls14{letter-spacing:0.597333pt;}
.ls15{letter-spacing:0.682667pt;}
.ls4{letter-spacing:0.760000pt;}
.ls1{letter-spacing:2.986667pt;}
.ws7{word-spacing:-12.666667pt;}
.ws41{word-spacing:-11.850667pt;}
.wseb{word-spacing:-11.264000pt;}
.ws80{word-spacing:-10.666667pt;}
.ws3{word-spacing:-10.488000pt;}
.ws106{word-spacing:-10.240000pt;}
.ws5{word-spacing:-10.234667pt;}
.ws43{word-spacing:-10.080000pt;}
.ws124{word-spacing:-10.026667pt;}
.wse8{word-spacing:-9.813333pt;}
.ws6{word-spacing:-9.728000pt;}
.wsa7{word-spacing:-9.333333pt;}
.ws2{word-spacing:-8.362667pt;}
.wsac{word-spacing:-8.213333pt;}
.wsc8{word-spacing:-8.192000pt;}
.ws8{word-spacing:-7.466667pt;}
.ws4{word-spacing:-7.341600pt;}
.wsa8{word-spacing:-5.333333pt;}
.ws9{word-spacing:-1.680000pt;}
.ws3a{word-spacing:-1.266667pt;}
.ws72{word-spacing:-1.216000pt;}
.ws86{word-spacing:-1.064000pt;}
.ws48{word-spacing:-1.013333pt;}
.ws70{word-spacing:-0.912000pt;}
.ws2b{word-spacing:-0.861333pt;}
.ws29{word-spacing:-0.760000pt;}
.wsa4{word-spacing:-0.658667pt;}
.ws3b{word-spacing:-0.608000pt;}
.ws7a{word-spacing:-0.557333pt;}
.ws113{word-spacing:-0.512000pt;}
.ws49{word-spacing:-0.506667pt;}
.ws90{word-spacing:-0.456000pt;}
.wsa{word-spacing:-0.426667pt;}
.ws56{word-spacing:-0.405333pt;}
.ws6b{word-spacing:-0.354667pt;}
.ws18{word-spacing:-0.304000pt;}
.wse5{word-spacing:-0.298667pt;}
.ws7c{word-spacing:-0.253333pt;}
.wsd7{word-spacing:-0.170667pt;}
.wsba{word-spacing:-0.152000pt;}
.wsd9{word-spacing:-0.128000pt;}
.wsa9{word-spacing:-0.112000pt;}
.wsef{word-spacing:-0.085333pt;}
.ws1{word-spacing:-0.042667pt;}
.wsad{word-spacing:-0.037333pt;}
.ws0{word-spacing:0.000000pt;}
.wse7{word-spacing:0.042667pt;}
.wsfa{word-spacing:0.085333pt;}
.ws4e{word-spacing:0.152000pt;}
.ws112{word-spacing:0.170667pt;}
.wsaa{word-spacing:0.186667pt;}
.wsbf{word-spacing:0.202667pt;}
.wsb3{word-spacing:0.253333pt;}
.ws54{word-spacing:0.304000pt;}
.wsdb{word-spacing:0.341333pt;}
.ws83{word-spacing:0.354667pt;}
.ws116{word-spacing:0.384000pt;}
.ws26{word-spacing:0.405333pt;}
.ws105{word-spacing:0.426667pt;}
.ws7b{word-spacing:0.456000pt;}
.ws1c{word-spacing:0.506667pt;}
.ws117{word-spacing:0.512000pt;}
.ws4c{word-spacing:0.557333pt;}
.ws101{word-spacing:0.597333pt;}
.ws9e{word-spacing:0.658667pt;}
.ws10c{word-spacing:0.682667pt;}
.ws9a{word-spacing:0.709333pt;}
.ws123{word-spacing:0.725333pt;}
.wsb9{word-spacing:0.760000pt;}
.wsf7{word-spacing:0.768000pt;}
.ws97{word-spacing:0.810667pt;}
.wsda{word-spacing:0.853333pt;}
.wse3{word-spacing:0.896000pt;}
.ws8c{word-spacing:0.912000pt;}
.wsab{word-spacing:0.933333pt;}
.ws10f{word-spacing:0.938667pt;}
.ws45{word-spacing:0.962667pt;}
.wse2{word-spacing:0.981333pt;}
.wsbb{word-spacing:1.013333pt;}
.ws4a{word-spacing:1.064000pt;}
.ws22{word-spacing:1.114667pt;}
.ws60{word-spacing:1.165333pt;}
.ws120{word-spacing:1.194667pt;}
.ws53{word-spacing:1.216000pt;}
.ws121{word-spacing:1.280000pt;}
.ws27{word-spacing:1.317333pt;}
.wsee{word-spacing:1.322667pt;}
.wsed{word-spacing:1.365333pt;}
.ws9f{word-spacing:1.368000pt;}
.ws5f{word-spacing:1.418667pt;}
.ws31{word-spacing:1.520000pt;}
.ws10e{word-spacing:1.536000pt;}
.ws2e{word-spacing:1.570667pt;}
.wsd4{word-spacing:1.578667pt;}
.ws2f{word-spacing:1.621333pt;}
.ws13{word-spacing:1.672000pt;}
.ws8a{word-spacing:1.722667pt;}
.wsfd{word-spacing:1.792000pt;}
.ws46{word-spacing:1.824000pt;}
.wsff{word-spacing:1.834667pt;}
.wsae{word-spacing:1.866667pt;}
.ws44{word-spacing:1.874667pt;}
.ws107{word-spacing:1.877333pt;}
.wsd6{word-spacing:1.920000pt;}
.wsb1{word-spacing:1.925333pt;}
.ws100{word-spacing:1.962667pt;}
.ws38{word-spacing:1.976000pt;}
.ws10a{word-spacing:2.005333pt;}
.ws99{word-spacing:2.026667pt;}
.ws32{word-spacing:2.077333pt;}
.ws25{word-spacing:2.128000pt;}
.wsd1{word-spacing:2.176000pt;}
.ws75{word-spacing:2.178667pt;}
.wscc{word-spacing:2.218667pt;}
.wsd5{word-spacing:2.261333pt;}
.ws10{word-spacing:2.280000pt;}
.ws58{word-spacing:2.330667pt;}
.wsd8{word-spacing:2.346667pt;}
.ws35{word-spacing:2.381333pt;}
.ws42{word-spacing:2.432000pt;}
.ws114{word-spacing:2.474667pt;}
.ws11b{word-spacing:2.517333pt;}
.wsf4{word-spacing:2.560000pt;}
.ws6a{word-spacing:2.584000pt;}
.ws6f{word-spacing:2.634667pt;}
.wsf6{word-spacing:2.645333pt;}
.wsc9{word-spacing:2.730667pt;}
.wse{word-spacing:2.736000pt;}
.ws33{word-spacing:2.786667pt;}
.wsf8{word-spacing:2.816000pt;}
.ws87{word-spacing:2.837333pt;}
.ws23{word-spacing:2.888000pt;}
.wscb{word-spacing:2.901333pt;}
.ws11e{word-spacing:2.944000pt;}
.ws79{word-spacing:3.040000pt;}
.ws77{word-spacing:3.090667pt;}
.ws11a{word-spacing:3.114667pt;}
.ws5e{word-spacing:3.141333pt;}
.wsf5{word-spacing:3.157333pt;}
.wsfb{word-spacing:3.200000pt;}
.ws6c{word-spacing:3.242667pt;}
.wsf9{word-spacing:3.285333pt;}
.ws82{word-spacing:3.293333pt;}
.ws122{word-spacing:3.328000pt;}
.ws8d{word-spacing:3.344000pt;}
.ws6e{word-spacing:3.394667pt;}
.ws64{word-spacing:3.445333pt;}
.wsb8{word-spacing:3.496000pt;}
.wsca{word-spacing:3.541333pt;}
.ws24{word-spacing:3.546667pt;}
.wse4{word-spacing:3.584000pt;}
.ws47{word-spacing:3.597333pt;}
.ws2c{word-spacing:3.698667pt;}
.ws10b{word-spacing:3.712000pt;}
.ws51{word-spacing:3.749333pt;}
.ws3e{word-spacing:3.850667pt;}
.wsc6{word-spacing:3.901333pt;}
.wsb6{word-spacing:3.952000pt;}
.ws109{word-spacing:3.968000pt;}
.wse9{word-spacing:4.010667pt;}
.wsaf{word-spacing:4.053333pt;}
.wsf2{word-spacing:4.096000pt;}
.ws15{word-spacing:4.104000pt;}
.wsa0{word-spacing:4.154667pt;}
.ws73{word-spacing:4.205333pt;}
.wscd{word-spacing:4.224000pt;}
.wsf{word-spacing:4.256000pt;}
.wsd2{word-spacing:4.266667pt;}
.ws71{word-spacing:4.306667pt;}
.ws111{word-spacing:4.309333pt;}
.wsf0{word-spacing:4.352000pt;}
.ws8e{word-spacing:4.357333pt;}
.ws3d{word-spacing:4.408000pt;}
.ws6d{word-spacing:4.458667pt;}
.ws67{word-spacing:4.509333pt;}
.ws81{word-spacing:4.560000pt;}
.wsfc{word-spacing:4.565333pt;}
.wsdf{word-spacing:4.608000pt;}
.wsd3{word-spacing:4.650667pt;}
.ws1b{word-spacing:4.661333pt;}
.ws68{word-spacing:4.712000pt;}
.wsdc{word-spacing:4.821333pt;}
.ws1a{word-spacing:4.864000pt;}
.wse0{word-spacing:4.906667pt;}
.wsb4{word-spacing:4.914667pt;}
.ws9d{word-spacing:4.965333pt;}
.ws103{word-spacing:4.992000pt;}
.ws108{word-spacing:5.034667pt;}
.ws1e{word-spacing:5.066667pt;}
.ws118{word-spacing:5.077333pt;}
.ws76{word-spacing:5.117333pt;}
.ws126{word-spacing:5.205333pt;}
.ws37{word-spacing:5.218667pt;}
.wsec{word-spacing:5.248000pt;}
.ws84{word-spacing:5.320000pt;}
.wse1{word-spacing:5.333333pt;}
.ws34{word-spacing:5.370667pt;}
.ws96{word-spacing:5.421333pt;}
.ws66{word-spacing:5.472000pt;}
.ws17{word-spacing:5.522667pt;}
.wsfe{word-spacing:5.546667pt;}
.ws16{word-spacing:5.573333pt;}
.wsc0{word-spacing:5.624000pt;}
.ws65{word-spacing:5.674667pt;}
.ws7e{word-spacing:5.725333pt;}
.wsea{word-spacing:5.760000pt;}
.wsb2{word-spacing:5.826667pt;}
.wsf1{word-spacing:5.845333pt;}
.wsa5{word-spacing:5.928000pt;}
.wsb7{word-spacing:6.029333pt;}
.ws5a{word-spacing:6.080000pt;}
.ws63{word-spacing:6.130667pt;}
.ws5d{word-spacing:6.181333pt;}
.ws98{word-spacing:6.232000pt;}
.ws85{word-spacing:6.282667pt;}
.wsd0{word-spacing:6.314667pt;}
.wsbe{word-spacing:6.333333pt;}
.ws8f{word-spacing:6.384000pt;}
.ws3f{word-spacing:6.434667pt;}
.ws93{word-spacing:6.485333pt;}
.ws102{word-spacing:6.528000pt;}
.ws14{word-spacing:6.536000pt;}
.wsce{word-spacing:6.570667pt;}
.ws78{word-spacing:6.637333pt;}
.ws5c{word-spacing:6.738667pt;}
.wsa3{word-spacing:6.789333pt;}
.ws12{word-spacing:6.840000pt;}
.ws8b{word-spacing:6.890667pt;}
.ws2a{word-spacing:6.941333pt;}
.ws28{word-spacing:6.992000pt;}
.ws89{word-spacing:7.144000pt;}
.ws52{word-spacing:7.194667pt;}
.ws115{word-spacing:7.210667pt;}
.ws69{word-spacing:7.245333pt;}
.ws95{word-spacing:7.296000pt;}
.ws55{word-spacing:7.397333pt;}
.wsa2{word-spacing:7.448000pt;}
.ws21{word-spacing:7.498667pt;}
.ws127{word-spacing:7.509333pt;}
.ws4b{word-spacing:7.549333pt;}
.ws10d{word-spacing:7.594667pt;}
.wsc7{word-spacing:7.650667pt;}
.ws36{word-spacing:7.701333pt;}
.ws94{word-spacing:7.802667pt;}
.ws11f{word-spacing:7.936000pt;}
.ws92{word-spacing:7.954667pt;}
.ws30{word-spacing:8.005333pt;}
.ws62{word-spacing:8.021333pt;}
.ws39{word-spacing:8.056000pt;}
.ws119{word-spacing:8.064000pt;}
.ws88{word-spacing:8.106667pt;}
.ws57{word-spacing:8.157333pt;}
.ws7d{word-spacing:8.309333pt;}
.wsdd{word-spacing:8.320000pt;}
.ws125{word-spacing:8.405333pt;}
.ws1f{word-spacing:8.410667pt;}
.wsf3{word-spacing:8.448000pt;}
.wsde{word-spacing:8.490667pt;}
.wscf{word-spacing:8.533333pt;}
.ws59{word-spacing:8.562667pt;}
.ws91{word-spacing:8.613333pt;}
.wse6{word-spacing:8.618667pt;}
.ws7f{word-spacing:8.874667pt;}
.wsb5{word-spacing:9.069333pt;}
.ws40{word-spacing:9.221333pt;}
.wsc{word-spacing:9.272000pt;}
.wsb{word-spacing:9.424000pt;}
.ws110{word-spacing:9.429333pt;}
.wsb0{word-spacing:9.576000pt;}
.ws9c{word-spacing:9.626667pt;}
.ws2d{word-spacing:9.677333pt;}
.wsa1{word-spacing:9.728000pt;}
.wsd{word-spacing:9.829333pt;}
.ws11c{word-spacing:9.856000pt;}
.wsc5{word-spacing:10.032000pt;}
.wsbc{word-spacing:10.184000pt;}
.ws4d{word-spacing:10.437333pt;}
.ws9b{word-spacing:10.538667pt;}
.ws50{word-spacing:10.640000pt;}
.ws5b{word-spacing:10.690667pt;}
.ws11{word-spacing:10.741333pt;}
.ws3c{word-spacing:10.842667pt;}
.wsc3{word-spacing:11.045333pt;}
.wsbd{word-spacing:11.146667pt;}
.ws20{word-spacing:12.261333pt;}
.ws61{word-spacing:13.141333pt;}
.wsc2{word-spacing:13.781333pt;}
.wsc1{word-spacing:13.882667pt;}
.ws104{word-spacing:14.250667pt;}
.wsc4{word-spacing:15.200000pt;}
.ws19{word-spacing:17.482667pt;}
.ws4f{word-spacing:22.344000pt;}
.ws11d{word-spacing:24.064000pt;}
.ws1d{word-spacing:64.938667pt;}
.wsa6{word-spacing:180.842667pt;}
.ws74{word-spacing:296.704000pt;}
._13{margin-left:-16.000000pt;}
._4{margin-left:-13.866667pt;}
._15{margin-left:-11.850667pt;}
._17{margin-left:-10.080000pt;}
._12{margin-left:-6.352000pt;}
._2b{margin-left:-4.290933pt;}
._2{margin-left:-3.290133pt;}
._9{margin-left:-2.400000pt;}
._0{margin-left:-1.450667pt;}
._1{width:1.563200pt;}
._b{width:2.920000pt;}
._3{width:3.809592pt;}
._19{width:5.117333pt;}
._18{width:6.014133pt;}
._a{width:7.757867pt;}
._11{width:9.978667pt;}
._1a{width:11.408000pt;}
._e{width:13.231467pt;}
._16{width:16.586667pt;}
._14{width:17.482667pt;}
._5{width:19.840000pt;}
._10{width:26.666667pt;}
._d{width:27.722133pt;}
._f{width:29.333333pt;}
._8{width:34.303996pt;}
._c{width:42.509333pt;}
._6{width:50.005329pt;}
._2a{width:65.066667pt;}
._29{width:90.496000pt;}
._1e{width:118.922667pt;}
._23{width:121.904000pt;}
._24{width:123.466667pt;}
._27{width:152.069333pt;}
._28{width:171.434667pt;}
._25{width:185.317333pt;}
._1f{width:197.381333pt;}
._26{width:206.752000pt;}
._22{width:253.786667pt;}
._1d{width:285.952000pt;}
._1c{width:301.610667pt;}
._1b{width:379.861333pt;}
._20{width:437.551467pt;}
._21{width:773.327467pt;}
._7{width:1084.330667pt;}
.fsb{font-size:29.866667pt;}
.fs9{font-size:35.466667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs8{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsa{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:69.333333pt;}
.fs6{font-size:80.000000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:29.055333pt;}
.ya2{bottom:30.208800pt;}
.y27{bottom:30.208933pt;}
.y6{bottom:31.933340pt;}
.y5{bottom:59.133337pt;}
.y157{bottom:65.086700pt;}
.y195{bottom:65.105325pt;}
.y17a{bottom:65.105390pt;}
.y135{bottom:65.133312pt;}
.y134{bottom:65.133331pt;}
.y1bb{bottom:65.613332pt;}
.yb1{bottom:65.720000pt;}
.y133{bottom:66.025992pt;}
.yce{bottom:66.115992pt;}
.ye2{bottom:66.182002pt;}
.y114{bottom:66.188002pt;}
.ya1{bottom:66.198270pt;}
.y230{bottom:67.782659pt;}
.y4a{bottom:69.399999pt;}
.y196{bottom:73.103992pt;}
.y2a3{bottom:75.544419pt;}
.y79{bottom:77.972249pt;}
.y22f{bottom:80.113325pt;}
.y1e3{bottom:80.322936pt;}
.y132{bottom:81.365325pt;}
.ycd{bottom:81.455325pt;}
.ye1{bottom:81.521335pt;}
.y113{bottom:81.527335pt;}
.ya0{bottom:81.537603pt;}
.y4{bottom:86.333337pt;}
.y2a2{bottom:87.875085pt;}
.y26b{bottom:87.881161pt;}
.y49{bottom:88.441996pt;}
.y1fe{bottom:91.921067pt;}
.y22e{bottom:92.443992pt;}
.y78{bottom:93.311583pt;}
.y1e2{bottom:95.662270pt;}
.y131{bottom:96.704659pt;}
.ycc{bottom:96.794659pt;}
.ye0{bottom:96.860669pt;}
.y112{bottom:96.866669pt;}
.y9f{bottom:96.876936pt;}
.y2a1{bottom:100.205752pt;}
.y26a{bottom:100.211828pt;}
.y22d{bottom:104.774659pt;}
.y1fd{bottom:107.260400pt;}
.y48{bottom:107.483999pt;}
.y77{bottom:108.650916pt;}
.y1e1{bottom:111.001603pt;}
.y130{bottom:112.043992pt;}
.ycb{bottom:112.133992pt;}
.ydf{bottom:112.200002pt;}
.y9e{bottom:112.216270pt;}
.y2a0{bottom:112.536419pt;}
.y269{bottom:112.542495pt;}
.y22c{bottom:117.105325pt;}
.y1fc{bottom:122.599733pt;}
.y23{bottom:123.790666pt;}
.y76{bottom:123.990249pt;}
.y29f{bottom:124.867085pt;}
.y268{bottom:124.873161pt;}
.y1e0{bottom:126.340936pt;}
.y12f{bottom:127.383325pt;}
.yca{bottom:127.473325pt;}
.y9d{bottom:127.555603pt;}
.y111{bottom:128.200002pt;}
.y47{bottom:128.353333pt;}
.y22b{bottom:129.435992pt;}
.y2a5{bottom:137.193161pt;}
.y29e{bottom:137.197752pt;}
.y267{bottom:137.203828pt;}
.y1fb{bottom:137.939067pt;}
.y75{bottom:139.329583pt;}
.y46{bottom:140.684000pt;}
.y1df{bottom:141.680270pt;}
.y22a{bottom:141.766659pt;}
.y12e{bottom:142.722659pt;}
.yc9{bottom:142.812659pt;}
.yde{bottom:143.533335pt;}
.y2a4{bottom:149.523828pt;}
.y29d{bottom:149.528419pt;}
.y266{bottom:149.534495pt;}
.y1fa{bottom:153.278400pt;}
.y229{bottom:154.097325pt;}
.y74{bottom:154.668916pt;}
.y1de{bottom:157.019603pt;}
.y12d{bottom:158.061992pt;}
.yc8{bottom:158.151992pt;}
.y9c{bottom:158.888936pt;}
.y29c{bottom:161.859085pt;}
.y265{bottom:161.865161pt;}
.y15f{bottom:164.981385pt;}
.y151{bottom:165.000006pt;}
.y181{bottom:165.000056pt;}
.y149{bottom:165.009325pt;}
.y141{bottom:165.018644pt;}
.y18e{bottom:165.018681pt;}
.y174{bottom:165.018696pt;}
.y1a3{bottom:165.018699pt;}
.y13c{bottom:165.027978pt;}
.y188{bottom:165.028000pt;}
.y16e{bottom:165.028015pt;}
.y19b{bottom:165.028018pt;}
.y166{bottom:165.037334pt;}
.y110{bottom:165.418515pt;}
.y228{bottom:166.427992pt;}
.y1f9{bottom:168.617733pt;}
.y1dd{bottom:172.358936pt;}
.y160{bottom:172.980051pt;}
.y158{bottom:172.989367pt;}
.y197{bottom:172.998673pt;}
.y182{bottom:172.998723pt;}
.y14a{bottom:173.007992pt;}
.y17b{bottom:173.008057pt;}
.y142{bottom:173.017311pt;}
.y18f{bottom:173.017348pt;}
.y19c{bottom:173.026685pt;}
.y136{bottom:173.035979pt;}
.y167{bottom:173.036001pt;}
.y12c{bottom:173.401325pt;}
.yc7{bottom:173.491325pt;}
.y29b{bottom:174.189752pt;}
.y264{bottom:174.195828pt;}
.y1a{bottom:175.052000pt;}
.y227{bottom:178.758659pt;}
.y10f{bottom:180.757848pt;}
.y1f8{bottom:183.957067pt;}
.y45{bottom:184.742272pt;}
.y22{bottom:186.238666pt;}
.y19{bottom:186.252002pt;}
.y29a{bottom:186.520419pt;}
.y263{bottom:186.526495pt;}
.y73{bottom:186.664916pt;}
.ydd{bottom:186.928939pt;}
.y1dc{bottom:187.698270pt;}
.y12b{bottom:188.740659pt;}
.yc6{bottom:188.830659pt;}
.y226{bottom:191.089325pt;}
.y9b{bottom:194.720916pt;}
.y10e{bottom:196.097182pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.y299{bottom:198.851085pt;}
.y262{bottom:198.857161pt;}
.y1f7{bottom:199.296400pt;}
.y44{bottom:200.081606pt;}
.y72{bottom:202.004249pt;}
.ydc{bottom:202.268273pt;}
.y1db{bottom:203.037603pt;}
.y225{bottom:203.419992pt;}
.y12a{bottom:204.079992pt;}
.yc5{bottom:204.169992pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.y9a{bottom:210.060249pt;}
.y298{bottom:211.181752pt;}
.y261{bottom:211.187828pt;}
.y10d{bottom:211.436515pt;}
.y1f6{bottom:214.635733pt;}
.y43{bottom:215.420939pt;}
.y224{bottom:215.750659pt;}
.y71{bottom:217.343583pt;}
.ydb{bottom:217.607606pt;}
.y1da{bottom:218.376936pt;}
.y129{bottom:219.419325pt;}
.yc4{bottom:219.509325pt;}
.y297{bottom:223.512419pt;}
.y260{bottom:223.518495pt;}
.y99{bottom:225.399583pt;}
.y10c{bottom:226.775848pt;}
.y223{bottom:228.081325pt;}
.y1f5{bottom:229.975067pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.y70{bottom:232.682916pt;}
.yda{bottom:232.946939pt;}
.y1d9{bottom:233.716270pt;}
.y128{bottom:234.758659pt;}
.yc3{bottom:234.848659pt;}
.y296{bottom:235.843085pt;}
.y25f{bottom:235.849161pt;}
.y222{bottom:240.411992pt;}
.y98{bottom:240.738916pt;}
.y10b{bottom:242.115182pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.y1f4{bottom:245.314400pt;}
.y42{bottom:246.754272pt;}
.y6f{bottom:248.022249pt;}
.y295{bottom:248.173752pt;}
.y25e{bottom:248.179828pt;}
.yd9{bottom:248.286273pt;}
.y1d8{bottom:249.055603pt;}
.y127{bottom:250.097992pt;}
.yc2{bottom:250.187992pt;}
.y221{bottom:252.742659pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.y97{bottom:256.078249pt;}
.y10a{bottom:257.454515pt;}
.y294{bottom:260.504419pt;}
.y25d{bottom:260.510495pt;}
.y1f3{bottom:260.653733pt;}
.y6e{bottom:263.361583pt;}
.yd8{bottom:263.625606pt;}
.y220{bottom:265.073325pt;}
.y126{bottom:265.437325pt;}
.yc1{bottom:265.527325pt;}
.y96{bottom:271.417583pt;}
.y109{bottom:272.793848pt;}
.y293{bottom:272.835085pt;}
.y25c{bottom:272.841161pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.y1f2{bottom:275.993067pt;}
.y21f{bottom:277.403992pt;}
.yd7{bottom:278.964939pt;}
.y1d7{bottom:280.388936pt;}
.y125{bottom:280.776659pt;}
.yc0{bottom:280.866659pt;}
.y161{bottom:281.722718pt;}
.y159{bottom:281.732033pt;}
.y198{bottom:281.741339pt;}
.y183{bottom:281.741389pt;}
.y14b{bottom:281.750659pt;}
.y17c{bottom:281.750723pt;}
.y143{bottom:281.759978pt;}
.y190{bottom:281.760015pt;}
.y19d{bottom:281.769352pt;}
.y137{bottom:281.778645pt;}
.y168{bottom:281.778667pt;}
.y292{bottom:285.165752pt;}
.y25b{bottom:285.171828pt;}
.y95{bottom:286.756916pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.y108{bottom:288.133182pt;}
.y162{bottom:289.721385pt;}
.y15a{bottom:289.730700pt;}
.y21e{bottom:289.734659pt;}
.y152{bottom:289.740006pt;}
.y184{bottom:289.740056pt;}
.y14c{bottom:289.749325pt;}
.y17d{bottom:289.749390pt;}
.y144{bottom:289.758644pt;}
.y191{bottom:289.758681pt;}
.y175{bottom:289.758696pt;}
.y1a4{bottom:289.758699pt;}
.y13d{bottom:289.767978pt;}
.y189{bottom:289.768000pt;}
.y16f{bottom:289.768015pt;}
.y19e{bottom:289.768018pt;}
.y138{bottom:289.777312pt;}
.y169{bottom:289.777334pt;}
.y1f1{bottom:291.332400pt;}
.yd6{bottom:294.304273pt;}
.y41{bottom:294.652939pt;}
.y6d{bottom:295.357583pt;}
.y124{bottom:296.115992pt;}
.y291{bottom:297.496419pt;}
.y25a{bottom:297.502495pt;}
.y21d{bottom:302.065325pt;}
.y94{bottom:302.096249pt;}
.y107{bottom:303.472515pt;}
.y1f0{bottom:306.671733pt;}
.y11{bottom:309.452000pt;}
.yd5{bottom:309.643606pt;}
.y290{bottom:309.827085pt;}
.y259{bottom:309.833161pt;}
.y40{bottom:309.992272pt;}
.y6c{bottom:310.696916pt;}
.y123{bottom:311.455325pt;}
.ybf{bottom:312.199992pt;}
.y21c{bottom:314.395992pt;}
.y93{bottom:317.435583pt;}
.y106{bottom:318.811848pt;}
.y1ef{bottom:322.011067pt;}
.y28f{bottom:322.157752pt;}
.y258{bottom:322.163828pt;}
.yd4{bottom:324.982939pt;}
.y6b{bottom:326.036249pt;}
.y21b{bottom:326.726659pt;}
.y122{bottom:326.794659pt;}
.y92{bottom:332.774916pt;}
.y1d6{bottom:332.983583pt;}
.y105{bottom:334.151182pt;}
.y28e{bottom:334.488419pt;}
.y257{bottom:334.494495pt;}
.y21a{bottom:339.057325pt;}
.yd3{bottom:340.322273pt;}
.y3f{bottom:340.658272pt;}
.y6a{bottom:341.375583pt;}
.y121{bottom:342.133992pt;}
.y10{bottom:343.809333pt;}
.y28d{bottom:346.819085pt;}
.y256{bottom:346.825161pt;}
.y91{bottom:348.114249pt;}
.y1d5{bottom:348.322916pt;}
.y104{bottom:349.490515pt;}
.y219{bottom:351.387992pt;}
.ybe{bottom:352.639855pt;}
.y1ee{bottom:353.344400pt;}
.yd2{bottom:355.661606pt;}
.y3e{bottom:355.997606pt;}
.y69{bottom:356.714916pt;}
.y120{bottom:357.473325pt;}
.y28c{bottom:359.149752pt;}
.y255{bottom:359.155828pt;}
.y1ba{bottom:360.162249pt;}
.yf{bottom:362.706666pt;}
.y90{bottom:363.453583pt;}
.y1d4{bottom:363.662249pt;}
.y218{bottom:363.718659pt;}
.y103{bottom:364.829848pt;}
.ybd{bottom:367.979189pt;}
.yd1{bottom:371.000939pt;}
.y3d{bottom:371.336939pt;}
.y28b{bottom:371.480419pt;}
.y254{bottom:371.486495pt;}
.y68{bottom:372.054249pt;}
.y11f{bottom:372.812659pt;}
.y1b9{bottom:375.501583pt;}
.y217{bottom:376.049325pt;}
.y8f{bottom:378.792916pt;}
.y1d3{bottom:379.001583pt;}
.y102{bottom:380.169182pt;}
.yae{bottom:382.947062pt;}
.ybc{bottom:383.318522pt;}
.y28a{bottom:383.811085pt;}
.y253{bottom:383.817161pt;}
.yd0{bottom:386.340273pt;}
.y3c{bottom:386.676272pt;}
.y67{bottom:387.393583pt;}
.y11e{bottom:388.151992pt;}
.y216{bottom:388.379992pt;}
.y1b8{bottom:390.840916pt;}
.y8e{bottom:394.132249pt;}
.y1d2{bottom:394.340916pt;}
.y101{bottom:395.508515pt;}
.y289{bottom:396.141752pt;}
.y252{bottom:396.147828pt;}
.yad{bottom:398.286395pt;}
.y215{bottom:400.710659pt;}
.ycf{bottom:401.679606pt;}
.y3b{bottom:402.015606pt;}
.y66{bottom:402.732916pt;}
.y11d{bottom:403.491325pt;}
.y1ed{bottom:406.157992pt;}
.y1b7{bottom:406.180249pt;}
.y288{bottom:408.472419pt;}
.y251{bottom:408.478495pt;}
.y8d{bottom:409.471583pt;}
.y1d1{bottom:409.680249pt;}
.y100{bottom:410.847848pt;}
.y214{bottom:413.041325pt;}
.yac{bottom:413.625728pt;}
.ybb{bottom:414.651855pt;}
.y3a{bottom:417.354939pt;}
.y65{bottom:418.072249pt;}
.y11c{bottom:418.830659pt;}
.y287{bottom:420.803085pt;}
.y250{bottom:420.809161pt;}
.y1ec{bottom:421.497325pt;}
.y1b6{bottom:421.519583pt;}
.y8c{bottom:424.810916pt;}
.y1d0{bottom:425.019583pt;}
.y213{bottom:425.371992pt;}
.yff{bottom:426.187182pt;}
.yab{bottom:428.965062pt;}
.ye{bottom:430.990669pt;}
.y39{bottom:432.694272pt;}
.y286{bottom:433.133752pt;}
.y24f{bottom:433.139828pt;}
.y64{bottom:433.411583pt;}
.y11b{bottom:434.169992pt;}
.y1eb{bottom:436.836659pt;}
.y1b5{bottom:436.858916pt;}
.y212{bottom:437.702659pt;}
.y8b{bottom:440.150249pt;}
.y1cf{bottom:440.358916pt;}
.yfe{bottom:441.526515pt;}
.yaa{bottom:444.304395pt;}
.y285{bottom:445.464419pt;}
.y24e{bottom:445.470495pt;}
.yba{bottom:446.650522pt;}
.yd{bottom:446.990669pt;}
.yf9{bottom:447.370013pt;}
.y38{bottom:448.033606pt;}
.y63{bottom:448.750916pt;}
.y11a{bottom:449.509325pt;}
.y211{bottom:450.033325pt;}
.y1ea{bottom:452.175992pt;}
.y1b4{bottom:452.198249pt;}
.y8a{bottom:455.489583pt;}
.y1ce{bottom:455.698249pt;}
.y163{bottom:456.125385pt;}
.y15b{bottom:456.134700pt;}
.y153{bottom:456.144006pt;}
.y185{bottom:456.144056pt;}
.y14d{bottom:456.153325pt;}
.y17e{bottom:456.153390pt;}
.y145{bottom:456.162644pt;}
.y192{bottom:456.162681pt;}
.y176{bottom:456.162696pt;}
.y1a5{bottom:456.162699pt;}
.y13e{bottom:456.171978pt;}
.y18a{bottom:456.172000pt;}
.y170{bottom:456.172015pt;}
.y19f{bottom:456.172018pt;}
.y139{bottom:456.181312pt;}
.y16a{bottom:456.181334pt;}
.yfd{bottom:456.865848pt;}
.y284{bottom:457.795085pt;}
.y24d{bottom:457.801161pt;}
.ya9{bottom:459.643728pt;}
.yb9{bottom:462.651855pt;}
.yc{bottom:462.990669pt;}
.yf8{bottom:463.071346pt;}
.y37{bottom:463.372939pt;}
.y62{bottom:464.090249pt;}
.y164{bottom:464.124051pt;}
.y15c{bottom:464.133367pt;}
.y154{bottom:464.142673pt;}
.y186{bottom:464.142723pt;}
.y14e{bottom:464.151992pt;}
.y17f{bottom:464.152057pt;}
.y146{bottom:464.161311pt;}
.y193{bottom:464.161348pt;}
.y177{bottom:464.161362pt;}
.y1a6{bottom:464.161366pt;}
.y13f{bottom:464.170645pt;}
.y18b{bottom:464.170667pt;}
.y171{bottom:464.170682pt;}
.y1a0{bottom:464.170685pt;}
.y13a{bottom:464.179979pt;}
.y16b{bottom:464.180001pt;}
.y119{bottom:464.848659pt;}
.y1e9{bottom:467.515325pt;}
.y1b3{bottom:467.537583pt;}
.y283{bottom:470.125752pt;}
.y24c{bottom:470.131828pt;}
.y89{bottom:470.828916pt;}
.y1cd{bottom:471.037583pt;}
.yfc{bottom:472.205182pt;}
.ya8{bottom:474.983062pt;}
.y210{bottom:478.633341pt;}
.yf7{bottom:478.708680pt;}
.y36{bottom:478.712272pt;}
.yb{bottom:478.990666pt;}
.y61{bottom:479.429583pt;}
.y118{bottom:480.187992pt;}
.y282{bottom:482.456419pt;}
.y24b{bottom:482.462495pt;}
.y1e8{bottom:482.854659pt;}
.y1b2{bottom:482.876916pt;}
.y88{bottom:486.168249pt;}
.y1cc{bottom:486.376916pt;}
.yfb{bottom:487.544515pt;}
.ya7{bottom:490.322395pt;}
.y35{bottom:494.051606pt;}
.yf6{bottom:494.346013pt;}
.y60{bottom:494.768916pt;}
.y281{bottom:494.787085pt;}
.y24a{bottom:494.793161pt;}
.ya{bottom:494.990666pt;}
.y117{bottom:495.527325pt;}
.y1e7{bottom:498.193992pt;}
.y1b1{bottom:498.216249pt;}
.y87{bottom:501.507583pt;}
.y1cb{bottom:501.716249pt;}
.ya6{bottom:505.661728pt;}
.y280{bottom:507.117752pt;}
.y249{bottom:507.123828pt;}
.y34{bottom:509.390939pt;}
.yf5{bottom:509.919346pt;}
.y5f{bottom:510.108249pt;}
.y116{bottom:510.866659pt;}
.y1e6{bottom:513.533325pt;}
.y1b0{bottom:513.555583pt;}
.yb8{bottom:515.079719pt;}
.y86{bottom:516.846916pt;}
.y1ca{bottom:517.055583pt;}
.yfa{bottom:518.877848pt;}
.y27f{bottom:519.448419pt;}
.y248{bottom:519.454495pt;}
.ya5{bottom:521.001062pt;}
.y33{bottom:524.730272pt;}
.y5e{bottom:525.447583pt;}
.yf4{bottom:525.620680pt;}
.yb7{bottom:530.419052pt;}
.y27e{bottom:531.779085pt;}
.y247{bottom:531.785161pt;}
.y85{bottom:532.186249pt;}
.ya4{bottom:536.340395pt;}
.y32{bottom:540.069606pt;}
.y5d{bottom:540.786916pt;}
.y20f{bottom:541.002388pt;}
.yf3{bottom:541.258013pt;}
.y115{bottom:542.199992pt;}
.y27d{bottom:544.109752pt;}
.y246{bottom:544.115828pt;}
.y1e5{bottom:544.866659pt;}
.y1af{bottom:544.888916pt;}
.yb6{bottom:545.758386pt;}
.y84{bottom:547.525583pt;}
.y1c9{bottom:548.388916pt;}
.ya3{bottom:551.679728pt;}
.y20e{bottom:553.333054pt;}
.y31{bottom:555.408939pt;}
.y5c{bottom:556.126249pt;}
.y27c{bottom:556.440419pt;}
.y245{bottom:556.446495pt;}
.yf2{bottom:556.895346pt;}
.yb5{bottom:561.097719pt;}
.y83{bottom:562.864916pt;}
.y20d{bottom:565.663721pt;}
.y27b{bottom:568.771085pt;}
.y244{bottom:568.777161pt;}
.y30{bottom:570.748272pt;}
.y5b{bottom:571.465583pt;}
.yf1{bottom:572.532680pt;}
.y9{bottom:573.786667pt;}
.yb4{bottom:576.437052pt;}
.y20c{bottom:577.994388pt;}
.y82{bottom:578.204249pt;}
.y27a{bottom:581.101752pt;}
.y243{bottom:581.107828pt;}
.y1e4{bottom:585.650249pt;}
.y2f{bottom:586.087606pt;}
.y5a{bottom:586.804916pt;}
.yf0{bottom:588.170013pt;}
.y20b{bottom:590.325054pt;}
.y8{bottom:592.685334pt;}
.y279{bottom:593.432419pt;}
.y242{bottom:593.438495pt;}
.y81{bottom:593.543583pt;}
.yb0{bottom:596.566265pt;}
.y1ae{bottom:597.537583pt;}
.y1c8{bottom:600.989583pt;}
.y59{bottom:602.144249pt;}
.y20a{bottom:602.655721pt;}
.yef{bottom:603.807346pt;}
.y278{bottom:605.763085pt;}
.y241{bottom:605.769161pt;}
.yb3{bottom:607.770386pt;}
.y80{bottom:608.882916pt;}
.yaf{bottom:608.896932pt;}
.y1ad{bottom:612.876916pt;}
.y209{bottom:614.986388pt;}
.y1c7{bottom:616.328916pt;}
.y58{bottom:617.483583pt;}
.y277{bottom:618.093752pt;}
.y240{bottom:618.099828pt;}
.yee{bottom:619.444680pt;}
.y7f{bottom:624.222249pt;}
.y208{bottom:627.317054pt;}
.y1ac{bottom:628.216249pt;}
.y2e{bottom:628.522279pt;}
.y276{bottom:630.424419pt;}
.y23f{bottom:630.430495pt;}
.y1c6{bottom:631.668249pt;}
.y57{bottom:632.822916pt;}
.yed{bottom:635.082013pt;}
.y2d{bottom:640.852946pt;}
.y275{bottom:642.755085pt;}
.y23e{bottom:642.761161pt;}
.y1ab{bottom:643.555583pt;}
.y7{bottom:645.598667pt;}
.y1c5{bottom:647.007583pt;}
.y56{bottom:648.162249pt;}
.yec{bottom:650.719346pt;}
.y207{bottom:651.989054pt;}
.y274{bottom:655.085752pt;}
.y23d{bottom:655.091828pt;}
.y7e{bottom:655.555583pt;}
.y1c4{bottom:662.346916pt;}
.y55{bottom:663.501583pt;}
.yeb{bottom:666.356680pt;}
.y273{bottom:667.416419pt;}
.y23c{bottom:667.422495pt;}
.y3{bottom:668.977329pt;}
.y2c{bottom:674.427612pt;}
.y1aa{bottom:674.887583pt;}
.y206{bottom:676.655721pt;}
.y1c3{bottom:677.686249pt;}
.y54{bottom:678.840916pt;}
.y272{bottom:679.747085pt;}
.y23b{bottom:679.753161pt;}
.yea{bottom:681.994013pt;}
.y1a9{bottom:690.888916pt;}
.y7d{bottom:691.549583pt;}
.y271{bottom:692.077752pt;}
.y23a{bottom:692.083828pt;}
.y1c2{bottom:693.025583pt;}
.y53{bottom:694.180249pt;}
.ye9{bottom:697.631346pt;}
.y165{bottom:699.958715pt;}
.y15d{bottom:699.968030pt;}
.y155{bottom:699.977336pt;}
.y187{bottom:699.977386pt;}
.y14f{bottom:699.986655pt;}
.y180{bottom:699.986720pt;}
.y147{bottom:699.995974pt;}
.y194{bottom:699.996011pt;}
.y178{bottom:699.996026pt;}
.y1a7{bottom:699.996029pt;}
.y140{bottom:700.005308pt;}
.y18c{bottom:700.005330pt;}
.y172{bottom:700.005345pt;}
.y1a1{bottom:700.005348pt;}
.y13b{bottom:700.014642pt;}
.y16c{bottom:700.014664pt;}
.y199{bottom:700.014667pt;}
.y205{bottom:704.387085pt;}
.y270{bottom:704.408419pt;}
.y239{bottom:704.414495pt;}
.y7c{bottom:706.888916pt;}
.y15e{bottom:707.966700pt;}
.y156{bottom:707.976003pt;}
.y150{bottom:707.985322pt;}
.y148{bottom:707.994641pt;}
.y179{bottom:707.994692pt;}
.y1a8{bottom:707.994696pt;}
.y18d{bottom:708.003997pt;}
.y173{bottom:708.004012pt;}
.y1a2{bottom:708.004015pt;}
.y16d{bottom:708.013331pt;}
.y19a{bottom:708.013334pt;}
.y1c1{bottom:708.364916pt;}
.y52{bottom:709.519583pt;}
.y2b{bottom:712.142290pt;}
.ye8{bottom:713.268680pt;}
.y204{bottom:716.717752pt;}
.y26f{bottom:716.739085pt;}
.y238{bottom:716.745161pt;}
.y1c0{bottom:723.704249pt;}
.y51{bottom:724.858916pt;}
.ye7{bottom:728.906013pt;}
.y26e{bottom:729.069752pt;}
.y237{bottom:729.075828pt;}
.y2a{bottom:732.144957pt;}
.y7b{bottom:738.222249pt;}
.y1bf{bottom:739.043583pt;}
.y50{bottom:740.198249pt;}
.y203{bottom:741.389752pt;}
.y26d{bottom:741.400419pt;}
.y236{bottom:741.406495pt;}
.ye6{bottom:745.034013pt;}
.y29{bottom:752.147624pt;}
.y26c{bottom:753.731085pt;}
.y235{bottom:753.737161pt;}
.y1be{bottom:754.382916pt;}
.y4f{bottom:755.537583pt;}
.y202{bottom:766.061752pt;}
.y234{bottom:766.067828pt;}
.y1bd{bottom:769.722249pt;}
.ye5{bottom:769.930013pt;}
.y4e{bottom:770.876916pt;}
.y201{bottom:778.392419pt;}
.y233{bottom:778.398495pt;}
.y2{bottom:781.661334pt;}
.y4d{bottom:786.216249pt;}
.y200{bottom:790.723085pt;}
.ye4{bottom:790.724916pt;}
.y232{bottom:790.729161pt;}
.y28{bottom:799.809082pt;}
.y1bc{bottom:801.055583pt;}
.y4c{bottom:801.555583pt;}
.y1ff{bottom:803.053752pt;}
.ye3{bottom:803.055583pt;}
.y231{bottom:803.059828pt;}
.y26{bottom:823.215232pt;}
.y4b{bottom:834.979085pt;}
.y25{bottom:835.545898pt;}
.yb2{bottom:835.923828pt;}
.y7a{bottom:835.923991pt;}
.y1{bottom:859.312000pt;}
.h18{height:20.548267pt;}
.h1e{height:25.685333pt;}
.h8{height:28.560000pt;}
.h9{height:28.597333pt;}
.h17{height:29.354667pt;}
.h1d{height:29.610667pt;}
.hc{height:30.080000pt;}
.h16{height:30.833333pt;}
.h13{height:34.858667pt;}
.hd{height:37.376000pt;}
.h1b{height:37.802667pt;}
.h7{height:40.853333pt;}
.hf{height:41.514667pt;}
.h19{height:42.197333pt;}
.h3{height:42.840000pt;}
.h6{height:42.896000pt;}
.h1f{height:43.648000pt;}
.h14{height:44.890667pt;}
.h1a{height:47.680000pt;}
.he{height:48.766452pt;}
.h2{height:49.024000pt;}
.h12{height:50.109333pt;}
.h1c{height:51.832000pt;}
.h11{height:54.775668pt;}
.h15{height:58.021333pt;}
.h10{height:61.429333pt;}
.h5{height:69.450667pt;}
.h4{height:105.826671pt;}
.hb{height:888.000000pt;}
.ha{height:888.189333pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w3{width:585.826667pt;}
.w4{width:586.000000pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:62.362269pt;}
.x9{left:64.327469pt;}
.x8{left:66.248398pt;}
.x31{left:70.362269pt;}
.xa{left:77.486132pt;}
.xb{left:83.692808pt;}
.x5d{left:85.039602pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.xe{left:96.797465pt;}
.x32{left:108.700129pt;}
.x33{left:119.368129pt;}
.xf{left:120.690798pt;}
.x34{left:130.036129pt;}
.x10{left:131.358798pt;}
.x35{left:140.704129pt;}
.x11{left:142.026798pt;}
.x36{left:151.372129pt;}
.x12{left:152.694798pt;}
.x37{left:162.040129pt;}
.x13{left:163.362798pt;}
.x38{left:172.717462pt;}
.x56{left:176.693462pt;}
.x14{left:178.501464pt;}
.x4{left:180.874667pt;}
.x39{left:187.361463pt;}
.x15{left:189.169464pt;}
.x3a{left:198.029463pt;}
.xd{left:199.044798pt;}
.x3b{left:208.697463pt;}
.x16{left:210.505464pt;}
.x3c{left:219.365463pt;}
.x17{left:221.173464pt;}
.x3d{left:230.033463pt;}
.x18{left:235.817462pt;}
.x3e{left:240.701463pt;}
.x57{left:244.686794pt;}
.x19{left:246.485462pt;}
.x3f{left:251.369463pt;}
.x58{left:255.354794pt;}
.x1a{left:257.153462pt;}
.x40{left:266.022798pt;}
.x1b{left:267.821462pt;}
.x41{left:276.690798pt;}
.x1c{left:282.456129pt;}
.x42{left:287.358798pt;}
.x1d{left:293.124129pt;}
.x43{left:298.026798pt;}
.x1e{left:303.792129pt;}
.x44{left:308.694798pt;}
.x1f{left:314.460129pt;}
.x45{left:319.372131pt;}
.x20{left:325.128129pt;}
.x46{left:330.040131pt;}
.x59{left:334.081461pt;}
.x21{left:339.781462pt;}
.x47{left:340.708131pt;}
.x5a{left:344.749461pt;}
.x22{left:350.449462pt;}
.x48{left:355.352128pt;}
.x23{left:361.117462pt;}
.x49{left:366.020128pt;}
.x24{left:371.785462pt;}
.x4a{left:376.688128pt;}
.x25{left:382.453462pt;}
.x4b{left:387.356128pt;}
.x26{left:393.121462pt;}
.x4c{left:398.024128pt;}
.x3{left:404.408000pt;}
.x27{left:407.765461pt;}
.x4d{left:408.692128pt;}
.x28{left:418.433461pt;}
.x4e{left:419.369461pt;}
.x29{left:429.101461pt;}
.x4f{left:430.037461pt;}
.x5{left:431.874146pt;}
.x5b{left:434.004133pt;}
.x2a{left:439.769461pt;}
.x50{left:444.672126pt;}
.xc{left:449.549886pt;}
.x2b{left:450.446794pt;}
.x51{left:455.340126pt;}
.x2c{left:465.090794pt;}
.x52{left:466.008126pt;}
.x7{left:469.341715pt;}
.x2d{left:475.758794pt;}
.x53{left:476.676126pt;}
.x2e{left:486.426794pt;}
.x54{left:487.344126pt;}
.x2f{left:497.094794pt;}
.x55{left:498.012126pt;}
.x30{left:507.762794pt;}
.x5c{left:508.680133pt;}
}




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