
    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_11f1b14fc0ba808c0de3d6e0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202000;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_6a60e8c26e37f5fa7cf47037.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.203000;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_e849931d006d7945107b565d.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_3b2c6075cc9896bba7dd9186.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.133000;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_722b549e23ef3f70b725f485.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_edd9a77dd1d0854e84993308.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.202000;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_736bcf8264e1a23f99b0073f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.483000;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_821c507e3a445eb6da15ef9d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.066000;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_f7b4383a50c4184faff249bb.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.202000;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_3da6756f10d819a6ac8be4ba.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.719000;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_e5a533b86aa2e794eb44b63d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.588000;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_79b45d1fd4d927ff3f63ed13.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.202000;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_24011f9644152a53f70e2907.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.714000;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_30fbb3702939960a49ebc2a1.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_176ce6c31831092a38d683c6.woff2')format("woff");}.fff{font-family:fff;line-height:1.000000;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_7989adc5987bb84292abd1ef.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.027000;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.250000,0.000000,-0.051979,0.244537,0,0);-ms-transform:matrix(0.250000,0.000000,-0.051979,0.244537,0,0);-webkit-transform:matrix(0.250000,0.000000,-0.051979,0.244537,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);}
.m3{transform:matrix(0.250004,0.000000,-0.051977,0.244537,0,0);-ms-transform:matrix(0.250004,0.000000,-0.051977,0.244537,0,0);-webkit-transform:matrix(0.250004,0.000000,-0.051977,0.244537,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);}
.v3{vertical-align:-18.000000px;}
.v5{vertical-align:-16.799927px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.488000px;}
.v7{vertical-align:3.402000px;}
.v6{vertical-align:19.200073px;}
.v2{vertical-align:26.399780px;}
.v4{vertical-align:54.000000px;}
.ls5{letter-spacing:-1.050000px;}
.ls4{letter-spacing:-0.540000px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000002px;}
.ls1{letter-spacing:0.074580px;}
.ls14{letter-spacing:0.150130px;}
.ls15{letter-spacing:0.225194px;}
.ls11{letter-spacing:0.352800px;}
.lsb{letter-spacing:0.664440px;}
.lsa{letter-spacing:0.776108px;}
.lsc{letter-spacing:0.805538px;}
.ls7{letter-spacing:0.823188px;}
.ls12{letter-spacing:0.823189px;}
.ls6{letter-spacing:0.823200px;}
.ls8{letter-spacing:0.829080px;}
.lse{letter-spacing:0.834960px;}
.ls9{letter-spacing:0.840825px;}
.lsf{letter-spacing:0.840840px;}
.lsd{letter-spacing:0.852600px;}
.ls16{letter-spacing:1.125972px;}
.ls10{letter-spacing:1.176000px;}
.ls13{letter-spacing:1.876621px;}
.ls0{letter-spacing:5.460000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-21.216000px;}
.wsa{word-spacing:-14.994000px;}
.ws83{word-spacing:-14.170800px;}
.ws53{word-spacing:-13.818000px;}
.ws3{word-spacing:-12.483600px;}
.ws4{word-spacing:-12.420000px;}
.ws10f{word-spacing:-12.310630px;}
.ws5{word-spacing:-11.880000px;}
.ws10e{word-spacing:-11.559982px;}
.ws109{word-spacing:-11.426400px;}
.ws10d{word-spacing:-10.659204px;}
.ws10c{word-spacing:-10.584140px;}
.ws0{word-spacing:-10.176000px;}
.ws2{word-spacing:-10.117800px;}
.wsb3{word-spacing:-9.936000px;}
.ws7{word-spacing:-9.855000px;}
.ws108{word-spacing:-9.315000px;}
.ws95{word-spacing:-8.904000px;}
.ws6{word-spacing:-8.148000px;}
.ws8{word-spacing:-6.898500px;}
.ws84{word-spacing:-6.232800px;}
.wsb4{word-spacing:-4.512000px;}
.wsb6{word-spacing:-2.016000px;}
.ws111{word-spacing:-1.890000px;}
.ws110{word-spacing:-1.876621px;}
.ws10b{word-spacing:-1.800000px;}
.wse{word-spacing:-0.823200px;}
.wsd{word-spacing:-0.705600px;}
.wsc2{word-spacing:-0.646800px;}
.ws102{word-spacing:-0.588000px;}
.ws4b{word-spacing:-0.529200px;}
.ws1e{word-spacing:-0.470400px;}
.ws5b{word-spacing:-0.411600px;}
.ws2c{word-spacing:-0.352800px;}
.ws6f{word-spacing:-0.294000px;}
.ws51{word-spacing:-0.235200px;}
.wsc3{word-spacing:-0.176400px;}
.ws99{word-spacing:-0.117600px;}
.ws112{word-spacing:-0.090000px;}
.ws9{word-spacing:0.000000px;}
.ws5a{word-spacing:0.058800px;}
.wsa2{word-spacing:0.176400px;}
.ws74{word-spacing:0.294000px;}
.ws7c{word-spacing:0.352800px;}
.wsf7{word-spacing:0.470400px;}
.ws4a{word-spacing:0.588000px;}
.ws15{word-spacing:0.646800px;}
.ws24{word-spacing:0.705600px;}
.ws3c{word-spacing:0.823200px;}
.ws71{word-spacing:0.882000px;}
.ws76{word-spacing:0.940800px;}
.ws59{word-spacing:0.999600px;}
.wsf{word-spacing:1.058400px;}
.wsfc{word-spacing:1.176000px;}
.ws104{word-spacing:1.234800px;}
.ws3d{word-spacing:1.293600px;}
.wsee{word-spacing:1.352400px;}
.ws2e{word-spacing:1.411200px;}
.ws32{word-spacing:1.470000px;}
.ws3a{word-spacing:1.528800px;}
.wsa5{word-spacing:1.587600px;}
.ws6e{word-spacing:1.705200px;}
.wsf9{word-spacing:1.822800px;}
.ws3f{word-spacing:1.881600px;}
.ws8e{word-spacing:1.940400px;}
.wsfa{word-spacing:2.058000px;}
.ws28{word-spacing:2.116800px;}
.ws72{word-spacing:2.175600px;}
.ws29{word-spacing:2.528400px;}
.ws9a{word-spacing:2.822400px;}
.wsff{word-spacing:2.940000px;}
.ws8f{word-spacing:2.998800px;}
.ws79{word-spacing:3.057600px;}
.ws9b{word-spacing:3.116400px;}
.wsac{word-spacing:3.175200px;}
.ws45{word-spacing:3.234000px;}
.wsdd{word-spacing:3.292800px;}
.wsd1{word-spacing:3.586800px;}
.ws2a{word-spacing:3.704400px;}
.ws40{word-spacing:3.822000px;}
.ws107{word-spacing:3.880800px;}
.ws81{word-spacing:4.057200px;}
.wsa1{word-spacing:4.116000px;}
.ws68{word-spacing:4.174800px;}
.ws42{word-spacing:4.233600px;}
.wseb{word-spacing:4.292400px;}
.ws61{word-spacing:4.351200px;}
.wsb{word-spacing:4.410000px;}
.ws63{word-spacing:4.468800px;}
.ws58{word-spacing:4.527600px;}
.ws30{word-spacing:4.586400px;}
.ws60{word-spacing:4.645200px;}
.ws7f{word-spacing:4.821600px;}
.ws36{word-spacing:4.880400px;}
.wsf0{word-spacing:4.939200px;}
.ws35{word-spacing:5.056800px;}
.wsbf{word-spacing:5.115600px;}
.ws103{word-spacing:5.174400px;}
.ws37{word-spacing:5.233200px;}
.ws88{word-spacing:5.292000px;}
.wsbc{word-spacing:5.409600px;}
.ws16{word-spacing:5.468400px;}
.wse5{word-spacing:5.527200px;}
.wsca{word-spacing:5.703600px;}
.ws75{word-spacing:5.762400px;}
.ws70{word-spacing:5.821200px;}
.ws50{word-spacing:5.880000px;}
.ws21{word-spacing:5.938800px;}
.wsfd{word-spacing:5.997600px;}
.wse6{word-spacing:6.056400px;}
.ws80{word-spacing:6.232800px;}
.wsc6{word-spacing:6.291600px;}
.wsa9{word-spacing:6.350400px;}
.ws19{word-spacing:6.468000px;}
.wse8{word-spacing:6.526800px;}
.ws4f{word-spacing:6.585600px;}
.wsd7{word-spacing:6.644400px;}
.wsc{word-spacing:6.703200px;}
.ws9e{word-spacing:6.762000px;}
.wsa6{word-spacing:6.879600px;}
.wsec{word-spacing:6.938400px;}
.ws9d{word-spacing:6.997200px;}
.wsf1{word-spacing:7.056000px;}
.wsd4{word-spacing:7.114800px;}
.wsc9{word-spacing:7.173600px;}
.ws7b{word-spacing:7.232400px;}
.ws1d{word-spacing:7.291200px;}
.ws39{word-spacing:7.350000px;}
.ws2f{word-spacing:7.467600px;}
.ws64{word-spacing:7.585200px;}
.ws105{word-spacing:7.644000px;}
.ws52{word-spacing:7.702800px;}
.ws22{word-spacing:7.820400px;}
.wsb0{word-spacing:7.879200px;}
.wse4{word-spacing:7.938000px;}
.ws33{word-spacing:7.996800px;}
.ws6d{word-spacing:8.055600px;}
.ws77{word-spacing:8.232000px;}
.wsdc{word-spacing:8.290800px;}
.wsb2{word-spacing:8.349600px;}
.ws62{word-spacing:8.408400px;}
.wsf4{word-spacing:8.467200px;}
.wsf5{word-spacing:8.526000px;}
.ws44{word-spacing:8.584800px;}
.ws98{word-spacing:8.643600px;}
.wsad{word-spacing:8.702400px;}
.wse7{word-spacing:8.761200px;}
.ws4c{word-spacing:8.820000px;}
.wsf3{word-spacing:8.878800px;}
.ws67{word-spacing:9.055200px;}
.wsa8{word-spacing:9.114000px;}
.wsd2{word-spacing:9.172800px;}
.ws31{word-spacing:9.231600px;}
.ws12{word-spacing:9.290400px;}
.ws5e{word-spacing:9.349200px;}
.ws46{word-spacing:9.408000px;}
.wse1{word-spacing:9.466800px;}
.ws1c{word-spacing:9.584400px;}
.ws106{word-spacing:9.819600px;}
.ws7d{word-spacing:9.878400px;}
.wsde{word-spacing:9.937200px;}
.wsbe{word-spacing:9.996000px;}
.wsfe{word-spacing:10.172400px;}
.ws23{word-spacing:10.290000px;}
.wscf{word-spacing:10.348800px;}
.wsed{word-spacing:10.466400px;}
.ws90{word-spacing:10.525200px;}
.ws26{word-spacing:10.584000px;}
.ws3b{word-spacing:10.701600px;}
.ws2d{word-spacing:10.819200px;}
.ws69{word-spacing:10.878000px;}
.wsef{word-spacing:10.936800px;}
.ws10{word-spacing:10.995600px;}
.ws8a{word-spacing:11.054400px;}
.wsa4{word-spacing:11.113200px;}
.ws87{word-spacing:11.172000px;}
.wse9{word-spacing:11.407200px;}
.wsd6{word-spacing:11.524800px;}
.wsf8{word-spacing:11.642400px;}
.ws6c{word-spacing:11.701200px;}
.ws4e{word-spacing:11.760000px;}
.ws27{word-spacing:11.818800px;}
.wsc8{word-spacing:11.877600px;}
.ws1f{word-spacing:11.995200px;}
.ws13{word-spacing:12.112800px;}
.ws41{word-spacing:12.230400px;}
.ws8b{word-spacing:12.289200px;}
.ws78{word-spacing:12.348000px;}
.wsa7{word-spacing:12.406800px;}
.ws73{word-spacing:12.524400px;}
.wsfb{word-spacing:12.583200px;}
.wsc0{word-spacing:12.642000px;}
.wscd{word-spacing:12.759600px;}
.ws5d{word-spacing:12.818400px;}
.wscb{word-spacing:12.936000px;}
.wsd0{word-spacing:12.994800px;}
.ws17{word-spacing:13.053600px;}
.ws10a{word-spacing:13.288800px;}
.ws57{word-spacing:13.347600px;}
.wsd5{word-spacing:13.465200px;}
.wsab{word-spacing:13.524000px;}
.wsea{word-spacing:13.818000px;}
.wscc{word-spacing:13.994400px;}
.ws101{word-spacing:14.053200px;}
.ws3e{word-spacing:14.112000px;}
.wsa3{word-spacing:14.170800px;}
.ws8d{word-spacing:14.229600px;}
.ws56{word-spacing:14.347200px;}
.wse2{word-spacing:14.406000px;}
.ws1b{word-spacing:14.464800px;}
.ws25{word-spacing:14.523600px;}
.wsaf{word-spacing:14.700000px;}
.ws49{word-spacing:14.876400px;}
.ws89{word-spacing:15.170400px;}
.ws7a{word-spacing:15.405600px;}
.ws34{word-spacing:15.640800px;}
.ws9f{word-spacing:15.758400px;}
.ws14{word-spacing:16.228800px;}
.ws6b{word-spacing:16.346400px;}
.wsbd{word-spacing:16.405200px;}
.ws9c{word-spacing:16.522800px;}
.ws6a{word-spacing:16.640400px;}
.ws5c{word-spacing:16.699200px;}
.ws47{word-spacing:16.758000px;}
.wsc7{word-spacing:16.934400px;}
.ws1a{word-spacing:17.052000px;}
.wsdb{word-spacing:17.169600px;}
.ws7e{word-spacing:17.287200px;}
.ws48{word-spacing:17.346000px;}
.wse0{word-spacing:17.522400px;}
.wsc4{word-spacing:18.051600px;}
.ws5f{word-spacing:18.228000px;}
.wsae{word-spacing:18.345600px;}
.ws8c{word-spacing:18.757200px;}
.wse3{word-spacing:18.874800px;}
.ws82{word-spacing:18.992400px;}
.wsd8{word-spacing:19.110000px;}
.wsf6{word-spacing:19.227600px;}
.ws18{word-spacing:19.580400px;}
.wsc1{word-spacing:19.874400px;}
.wsb1{word-spacing:19.933200px;}
.ws20{word-spacing:20.227200px;}
.wsce{word-spacing:20.932800px;}
.ws38{word-spacing:21.168000px;}
.wsd3{word-spacing:21.520800px;}
.wsd9{word-spacing:21.873600px;}
.wsdf{word-spacing:21.991200px;}
.ws66{word-spacing:22.167600px;}
.wsa0{word-spacing:22.755600px;}
.wsaa{word-spacing:23.343600px;}
.wsb5{word-spacing:24.354000px;}
.ws100{word-spacing:24.872400px;}
.ws11{word-spacing:25.872000px;}
.wsf2{word-spacing:27.753600px;}
.wsda{word-spacing:27.812400px;}
.ws65{word-spacing:28.282800px;}
.ws2b{word-spacing:30.576000px;}
.ws43{word-spacing:31.516800px;}
.wsc5{word-spacing:36.162000px;}
.wsb9{word-spacing:39.936000px;}
.ws4d{word-spacing:53.037600px;}
.wsbb{word-spacing:63.360000px;}
.wsba{word-spacing:86.784000px;}
.ws96{word-spacing:101.615991px;}
.ws97{word-spacing:125.039991px;}
.ws94{word-spacing:144.864000px;}
.wsb7{word-spacing:156.624000px;}
.ws86{word-spacing:163.920000px;}
.ws93{word-spacing:168.767992px;}
.ws91{word-spacing:200.420399px;}
.ws85{word-spacing:226.848000px;}
.wsb8{word-spacing:356.544000px;}
.ws92{word-spacing:624.325772px;}
.ws55{word-spacing:882.143991px;}
.ws54{word-spacing:915.268791px;}
._11{margin-left:-29.098800px;}
._10{margin-left:-26.156425px;}
._12{margin-left:-18.051600px;}
._13{margin-left:-14.455200px;}
._5{margin-left:-11.682000px;}
._49{margin-left:-9.850501px;}
._8{margin-left:-8.035200px;}
._9{margin-left:-5.880000px;}
._d{margin-left:-4.250400px;}
._2{margin-left:-2.601600px;}
._0{margin-left:-1.300800px;}
._1{width:1.291200px;}
._3{width:2.443200px;}
._45{width:4.511995px;}
._f{width:6.369600px;}
._b{width:7.554720px;}
._e{width:8.940000px;}
._14{width:10.995600px;}
._c{width:12.517440px;}
._15{width:13.592400px;}
._7{width:14.639993px;}
._a{width:15.900000px;}
._6{width:17.140786px;}
._36{width:18.846720px;}
._4f{width:22.790400px;}
._3f{width:37.488000px;}
._4{width:38.693362px;}
._44{width:42.000000px;}
._4e{width:44.750400px;}
._38{width:50.404800px;}
._4d{width:53.203800px;}
._37{width:73.008000px;}
._43{width:74.736000px;}
._2f{width:88.336216px;}
._41{width:97.296000px;}
._30{width:146.638184px;}
._4b{width:166.090496px;}
._4a{width:167.845496px;}
._35{width:170.832000px;}
._48{width:171.985496px;}
._16{width:178.548584px;}
._2c{width:179.554217px;}
._4c{width:185.890496px;}
._2d{width:187.152000px;}
._3a{width:190.416000px;}
._1a{width:198.314400px;}
._2a{width:209.821767px;}
._28{width:211.078817px;}
._20{width:217.728000px;}
._2b{width:231.168000px;}
._24{width:234.458400px;}
._25{width:249.504000px;}
._1e{width:252.048000px;}
._29{width:254.592000px;}
._21{width:256.415992px;}
._2e{width:261.408000px;}
._42{width:262.416000px;}
._26{width:264.768000px;}
._39{width:270.912000px;}
._19{width:275.472000px;}
._1d{width:276.938400px;}
._27{width:278.016000px;}
._3c{width:284.496000px;}
._40{width:285.840000px;}
._46{width:292.656000px;}
._3d{width:294.336000px;}
._22{width:296.906400px;}
._23{width:311.616000px;}
._1b{width:315.407989px;}
._3b{width:317.760000px;}
._47{width:329.664000px;}
._1c{width:330.671989px;}
._3e{width:374.112000px;}
._32{width:375.984000px;}
._34{width:390.580800px;}
._31{width:408.528000px;}
._33{width:424.996800px;}
._17{width:691.468772px;}
._1f{width:780.427879px;}
._18{width:860.381481px;}
.fc3{color:transparent;}
.fc2{color:rgb(78,78,77);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs13{font-size:14.074549px;}
.fse{font-size:29.400000px;}
.fsa{font-size:31.500000px;}
.fsf{font-size:33.600000px;}
.fs10{font-size:36.000000px;}
.fs12{font-size:37.532410px;}
.fs11{font-size:39.900000px;}
.fs7{font-size:42.000000px;}
.fs9{font-size:45.000000px;}
.fs4{font-size:46.199999px;}
.fs0{font-size:48.000000px;}
.fsd{font-size:54.000000px;}
.fsc{font-size:55.199999px;}
.fsb{font-size:58.800000px;}
.fs6{font-size:60.000000px;}
.fs5{font-size:61.800000px;}
.fs3{font-size:66.000000px;}
.fs8{font-size:74.580000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y26{bottom:0.304779px;}
.y24{bottom:81.133650px;}
.y23{bottom:93.135150px;}
.y28e{bottom:99.461998px;}
.y97{bottom:100.983152px;}
.y23c{bottom:102.158253px;}
.y22{bottom:105.136650px;}
.y13d{bottom:107.127445px;}
.y20c{bottom:107.752353px;}
.y1d8{bottom:108.131105px;}
.yee{bottom:108.595495px;}
.y276{bottom:109.662003px;}
.y197{bottom:113.278519px;}
.y2d1{bottom:114.342773px;}
.y23b{bottom:115.658253px;}
.yfa{bottom:115.772700px;}
.y107{bottom:115.816795px;}
.y28c{bottom:115.974000px;}
.y21{bottom:117.138150px;}
.y96{bottom:118.975952px;}
.yed{bottom:122.095495px;}
.y275{bottom:123.162003px;}
.y13c{bottom:125.127445px;}
.y20b{bottom:125.745153px;}
.y1d7{bottom:126.123905px;}
.y2d0{bottom:127.842773px;}
.y20{bottom:129.139650px;}
.y23a{bottom:129.158253px;}
.y176{bottom:131.156257px;}
.y196{bottom:131.271319px;}
.y28a{bottom:133.764149px;}
.yf9{bottom:133.772700px;}
.y122{bottom:133.852795px;}
.y106{bottom:133.867195px;}
.yec{bottom:135.595495px;}
.y274{bottom:136.662003px;}
.y95{bottom:136.968752px;}
.y28b{bottom:139.914000px;}
.y66{bottom:141.087753px;}
.y1f{bottom:141.141150px;}
.y2cf{bottom:141.342773px;}
.y13b{bottom:143.141845px;}
.y20a{bottom:143.737953px;}
.y1d6{bottom:144.145494px;}
.yeb{bottom:149.095495px;}
.y175{bottom:149.149057px;}
.y195{bottom:149.264119px;}
.y273{bottom:150.162003px;}
.yf8{bottom:151.772700px;}
.y287{bottom:151.773148px;}
.y121{bottom:151.845595px;}
.y105{bottom:151.859995px;}
.y1e{bottom:153.142650px;}
.y2ce{bottom:154.842773px;}
.y94{bottom:154.961552px;}
.y239{bottom:156.158253px;}
.y65{bottom:159.087753px;}
.y13a{bottom:161.134645px;}
.y209{bottom:161.752353px;}
.y1d5{bottom:162.138294px;}
.y272{bottom:163.662003px;}
.y1d{bottom:165.144150px;}
.y174{bottom:167.141857px;}
.y194{bottom:167.256919px;}
.y289{bottom:167.479649px;}
.y288{bottom:168.058205px;}
.y2cd{bottom:168.342773px;}
.y285{bottom:168.927749px;}
.y238{bottom:169.658253px;}
.y120{bottom:169.838395px;}
.y104{bottom:169.852795px;}
.y93{bottom:172.968752px;}
.yea{bottom:175.987495px;}
.y64{bottom:177.087753px;}
.y271{bottom:177.162003px;}
.y139{bottom:179.127445px;}
.y208{bottom:179.745153px;}
.y1d4{bottom:180.131094px;}
.y2cc{bottom:181.842773px;}
.y28f{bottom:182.881943px;}
.y237{bottom:183.158253px;}
.y284{bottom:184.824749px;}
.y173{bottom:185.134657px;}
.y193{bottom:185.249719px;}
.y286{bottom:185.888248px;}
.y282{bottom:187.776139px;}
.yf7{bottom:187.779890px;}
.y11f{bottom:187.831195px;}
.y103{bottom:187.845595px;}
.y270{bottom:190.662003px;}
.y92{bottom:190.961552px;}
.y63{bottom:195.087753px;}
.y2cb{bottom:195.342773px;}
.y236{bottom:196.658253px;}
.y138{bottom:197.141857px;}
.y207{bottom:197.737953px;}
.y1d3{bottom:198.123894px;}
.ye9{bottom:200.300102px;}
.y281{bottom:202.539139px;}
.y172{bottom:203.127457px;}
.y192{bottom:203.242519px;}
.y283{bottom:204.131400px;}
.y26f{bottom:204.162003px;}
.y27f{bottom:205.759204px;}
.yf6{bottom:205.772690px;}
.y11e{bottom:205.823995px;}
.y102{bottom:205.838395px;}
.y2ca{bottom:208.842773px;}
.y91{bottom:208.961540px;}
.y235{bottom:210.158253px;}
.y62{bottom:213.087753px;}
.y137{bottom:215.134657px;}
.y206{bottom:215.824330px;}
.y1d2{bottom:216.138294px;}
.y26e{bottom:217.662003px;}
.y27e{bottom:220.060204px;}
.y171{bottom:221.149057px;}
.y191{bottom:221.235319px;}
.y280{bottom:221.440041px;}
.y2c9{bottom:222.342773px;}
.y234{bottom:223.658253px;}
.y27c{bottom:223.765945px;}
.yf5{bottom:223.772690px;}
.y11d{bottom:223.816795px;}
.y101{bottom:223.831195px;}
.y90{bottom:226.961540px;}
.y32{bottom:229.902603px;}
.y26d{bottom:231.162003px;}
.y136{bottom:233.127457px;}
.y205{bottom:233.817130px;}
.y1d1{bottom:234.131094px;}
.y2c8{bottom:235.842773px;}
.y27b{bottom:237.636445px;}
.y27d{bottom:238.801346px;}
.y170{bottom:239.141857px;}
.y190{bottom:239.228119px;}
.y278{bottom:241.768497px;}
.yf4{bottom:241.772690px;}
.y27a{bottom:241.773445px;}
.y100{bottom:241.823995px;}
.y11c{bottom:241.838395px;}
.y26c{bottom:244.662003px;}
.y31{bottom:247.902603px;}
.y2c7{bottom:249.342773px;}
.ye8{bottom:250.620895px;}
.yc6{bottom:250.642495px;}
.y233{bottom:250.658253px;}
.y135{bottom:251.163296px;}
.y204{bottom:251.809930px;}
.y1d0{bottom:252.123894px;}
.y277{bottom:255.859497px;}
.y279{bottom:256.813042px;}
.y30{bottom:256.902603px;}
.y16f{bottom:257.134657px;}
.y18f{bottom:257.220919px;}
.y26b{bottom:258.162003px;}
.yff{bottom:259.816795px;}
.y11b{bottom:259.831195px;}
.y2c6{bottom:262.842773px;}
.y232{bottom:264.158253px;}
.y61{bottom:267.837753px;}
.ye7{bottom:268.620895px;}
.yc5{bottom:268.635295px;}
.y134{bottom:269.156096px;}
.y203{bottom:269.802730px;}
.y1cf{bottom:270.159894px;}
.y8f{bottom:270.869561px;}
.y26a{bottom:271.662003px;}
.y2f{bottom:274.902603px;}
.y16e{bottom:275.127457px;}
.y18e{bottom:275.213719px;}
.y2c5{bottom:276.342773px;}
.y231{bottom:277.658253px;}
.yf3{bottom:277.772690px;}
.yfe{bottom:277.816795px;}
.y11a{bottom:277.823995px;}
.y28d{bottom:282.343941px;}
.y2e{bottom:283.902603px;}
.y269{bottom:285.162003px;}
.y60{bottom:285.895216px;}
.ye6{bottom:286.625696px;}
.yc4{bottom:286.628095px;}
.y133{bottom:287.148896px;}
.y202{bottom:287.795530px;}
.y1ce{bottom:288.152694px;}
.y8e{bottom:288.862361px;}
.y2c4{bottom:289.842773px;}
.y230{bottom:291.158253px;}
.y16d{bottom:293.127296px;}
.y18d{bottom:293.206519px;}
.yf2{bottom:295.794450px;}
.yfd{bottom:295.816795px;}
.y268{bottom:298.662003px;}
.y2d{bottom:301.902603px;}
.y2c3{bottom:303.342773px;}
.y5f{bottom:303.888016px;}
.yc3{bottom:304.620895px;}
.y22f{bottom:304.658253px;}
.y132{bottom:305.141696px;}
.y201{bottom:305.788330px;}
.y1cd{bottom:306.145494px;}
.y8d{bottom:306.855161px;}
.y2c{bottom:310.902603px;}
.y16c{bottom:311.141696px;}
.y18c{bottom:311.199319px;}
.y267{bottom:312.162003px;}
.yf1{bottom:313.787250px;}
.y119{bottom:313.831195px;}
.y2c2{bottom:316.842773px;}
.y22e{bottom:318.158253px;}
.y5e{bottom:321.880816px;}
.yc2{bottom:322.656895px;}
.y131{bottom:323.134496px;}
.y200{bottom:323.781130px;}
.y1cc{bottom:324.138294px;}
.y2b{bottom:324.402603px;}
.y8c{bottom:324.847961px;}
.y266{bottom:325.662003px;}
.y16b{bottom:329.134496px;}
.y18b{bottom:329.192119px;}
.y2c1{bottom:330.342773px;}
.yf0{bottom:331.780050px;}
.yfc{bottom:331.818593px;}
.y118{bottom:331.823995px;}
.y265{bottom:339.162003px;}
.y5d{bottom:339.873616px;}
.ye5{bottom:340.628095px;}
.yc1{bottom:340.649695px;}
.y130{bottom:341.127296px;}
.y1ff{bottom:341.773930px;}
.y1cb{bottom:342.131094px;}
.y2a{bottom:342.402603px;}
.y8b{bottom:342.862361px;}
.y2c0{bottom:343.842773px;}
.y22d{bottom:345.158253px;}
.y16a{bottom:347.127296px;}
.y18a{bottom:347.184919px;}
.yef{bottom:349.772850px;}
.yfb{bottom:349.811393px;}
.y117{bottom:349.816795px;}
.y29{bottom:351.402603px;}
.y264{bottom:352.662003px;}
.y2bf{bottom:357.342773px;}
.y5c{bottom:357.866416px;}
.ye4{bottom:358.620895px;}
.yc0{bottom:358.642495px;}
.y22c{bottom:358.658253px;}
.y12f{bottom:359.156119px;}
.y1fe{bottom:359.766730px;}
.y1ca{bottom:360.123894px;}
.y8a{bottom:360.855161px;}
.y28{bottom:364.902603px;}
.y189{bottom:365.177719px;}
.y169{bottom:365.184919px;}
.y263{bottom:366.162003px;}
.y2be{bottom:370.842773px;}
.y22b{bottom:372.158253px;}
.y5b{bottom:375.859216px;}
.ybf{bottom:376.635295px;}
.y12e{bottom:377.148919px;}
.y1fd{bottom:377.759530px;}
.y1c9{bottom:378.210317px;}
.y27{bottom:378.402603px;}
.y89{bottom:378.847961px;}
.y262{bottom:379.662003px;}
.y33{bottom:382.902603px;}
.y188{bottom:383.170519px;}
.y168{bottom:383.177719px;}
.y2bd{bottom:384.342773px;}
.y22a{bottom:385.658253px;}
.y261{bottom:393.162003px;}
.y5a{bottom:393.852016px;}
.ybe{bottom:394.628095px;}
.y12d{bottom:395.141719px;}
.y1fc{bottom:395.752330px;}
.y1c8{bottom:396.203117px;}
.y88{bottom:396.898361px;}
.y2bc{bottom:397.842773px;}
.y14e{bottom:398.779520px;}
.y229{bottom:399.158253px;}
.y187{bottom:401.163319px;}
.y167{bottom:401.170519px;}
.y260{bottom:406.662003px;}
.y116{bottom:409.788757px;}
.y2bb{bottom:411.342773px;}
.y59{bottom:411.844816px;}
.ybd{bottom:412.620895px;}
.y228{bottom:412.658253px;}
.y12c{bottom:413.134519px;}
.y1fb{bottom:413.745130px;}
.y1c7{bottom:414.195917px;}
.y87{bottom:414.891161px;}
.y14d{bottom:415.726500px;}
.y186{bottom:419.156119px;}
.y166{bottom:419.163319px;}
.y25f{bottom:420.162003px;}
.y2ba{bottom:424.842773px;}
.y227{bottom:426.158253px;}
.y1b{bottom:427.715057px;}
.y58{bottom:429.837616px;}
.ybc{bottom:430.620895px;}
.y12b{bottom:431.127319px;}
.y1fa{bottom:431.737930px;}
.y1c6{bottom:432.188717px;}
.y86{bottom:432.883961px;}
.y25e{bottom:433.662003px;}
.y154{bottom:433.879490px;}
.y185{bottom:437.148919px;}
.y165{bottom:437.156119px;}
.y2b9{bottom:438.342773px;}
.y1a{bottom:445.715057px;}
.y25d{bottom:447.162003px;}
.y57{bottom:447.852016px;}
.y12a{bottom:449.183395px;}
.y1f9{bottom:449.752330px;}
.y1c5{bottom:450.181517px;}
.y85{bottom:450.876761px;}
.y2b8{bottom:451.842773px;}
.y153{bottom:452.107490px;}
.y184{bottom:455.141719px;}
.y164{bottom:455.148919px;}
.y25c{bottom:460.662003px;}
.y226{bottom:465.162003px;}
.y2b7{bottom:465.342773px;}
.y56{bottom:465.844816px;}
.ybb{bottom:466.635295px;}
.ye3{bottom:466.664095px;}
.y129{bottom:467.176195px;}
.y1f8{bottom:467.745130px;}
.y1c4{bottom:468.174317px;}
.y19{bottom:468.215057px;}
.y84{bottom:468.869561px;}
.y152{bottom:470.251490px;}
.y183{bottom:473.134519px;}
.y163{bottom:473.141719px;}
.y25b{bottom:474.162003px;}
.y225{bottom:478.662003px;}
.y2b6{bottom:478.842773px;}
.y55{bottom:483.837616px;}
.yba{bottom:484.628095px;}
.ye2{bottom:484.656895px;}
.y128{bottom:485.168995px;}
.y1f7{bottom:485.737930px;}
.y1c3{bottom:486.167117px;}
.y18{bottom:486.215057px;}
.y83{bottom:486.862361px;}
.y25a{bottom:487.662003px;}
.y151{bottom:488.395490px;}
.y182{bottom:491.127319px;}
.y162{bottom:491.134519px;}
.y224{bottom:492.162003px;}
.y2b5{bottom:492.342773px;}
.y259{bottom:501.162003px;}
.y54{bottom:501.952908px;}
.yb9{bottom:502.620895px;}
.ye1{bottom:502.649695px;}
.y127{bottom:503.161795px;}
.y1f6{bottom:503.737930px;}
.y1c2{bottom:504.159917px;}
.y17{bottom:504.215057px;}
.y82{bottom:504.855161px;}
.y223{bottom:505.662003px;}
.y2b4{bottom:505.842773px;}
.y150{bottom:506.539490px;}
.y161{bottom:509.127319px;}
.y258{bottom:514.662003px;}
.y2b3{bottom:519.342773px;}
.y53{bottom:519.945708px;}
.yb8{bottom:520.635295px;}
.ye0{bottom:520.642495px;}
.y126{bottom:521.154595px;}
.y1c1{bottom:522.152717px;}
.y81{bottom:522.847961px;}
.y16{bottom:526.715057px;}
.y160{bottom:527.127319px;}
.y181{bottom:527.148919px;}
.y257{bottom:528.162003px;}
.y2b2{bottom:532.842773px;}
.y14f{bottom:533.427017px;}
.y222{bottom:537.162003px;}
.y52{bottom:537.938508px;}
.yb7{bottom:538.628095px;}
.ydf{bottom:538.635295px;}
.y125{bottom:539.147395px;}
.y1f5{bottom:539.737930px;}
.y1c0{bottom:540.145517px;}
.y80{bottom:540.855161px;}
.y256{bottom:541.662003px;}
.y15{bottom:544.715057px;}
.y180{bottom:545.141719px;}
.y15f{bottom:545.156119px;}
.y2b1{bottom:546.342773px;}
.y221{bottom:550.662003px;}
.y255{bottom:555.162003px;}
.y51{bottom:555.931308px;}
.yb6{bottom:556.620895px;}
.yde{bottom:556.628095px;}
.y124{bottom:557.140195px;}
.y14c{bottom:557.742761px;}
.y1f4{bottom:557.752330px;}
.y1bf{bottom:558.138317px;}
.y7f{bottom:558.847961px;}
.y2b0{bottom:559.842773px;}
.y14{bottom:562.715057px;}
.y17f{bottom:563.134519px;}
.y15e{bottom:563.148919px;}
.y220{bottom:568.662003px;}
.y2af{bottom:573.342773px;}
.y50{bottom:573.924108px;}
.y14b{bottom:574.239761px;}
.ydd{bottom:574.620895px;}
.yb5{bottom:574.628095px;}
.y123{bottom:575.132995px;}
.y1f3{bottom:575.745130px;}
.y1be{bottom:576.131117px;}
.y7e{bottom:576.869561px;}
.y13{bottom:580.715057px;}
.y17e{bottom:581.127319px;}
.y15d{bottom:581.141719px;}
.y254{bottom:582.162003px;}
.y2ae{bottom:586.842773px;}
.y4f{bottom:591.916908px;}
.yb4{bottom:592.620895px;}
.y1f2{bottom:593.737930px;}
.y1bd{bottom:594.123917px;}
.y7d{bottom:594.862361px;}
.y253{bottom:595.662003px;}
.y12{bottom:598.715057px;}
.y15c{bottom:599.134519px;}
.y17d{bottom:599.141719px;}
.y2ad{bottom:600.342773px;}
.y21f{bottom:604.662003px;}
.y252{bottom:609.162003px;}
.y4e{bottom:609.909708px;}
.yb3{bottom:610.620895px;}
.y1f1{bottom:611.737930px;}
.y1bc{bottom:612.145517px;}
.y7c{bottom:612.855161px;}
.y2ac{bottom:613.842773px;}
.y15b{bottom:617.127319px;}
.y17c{bottom:617.134519px;}
.y21e{bottom:618.162003px;}
.y11{bottom:621.215057px;}
.y251{bottom:622.662003px;}
.y13f{bottom:624.785110px;}
.y2ab{bottom:627.342773px;}
.y4d{bottom:627.902508px;}
.ydc{bottom:628.642495px;}
.yb2{bottom:628.656895px;}
.y1f0{bottom:629.752330px;}
.y1bb{bottom:630.138317px;}
.y7b{bottom:630.847961px;}
.y21d{bottom:631.662003px;}
.y15a{bottom:635.127319px;}
.y250{bottom:636.162003px;}
.y13e{bottom:637.587021px;}
.y10{bottom:639.215057px;}
.y2aa{bottom:640.842773px;}
.y21c{bottom:645.162003px;}
.y4c{bottom:645.895308px;}
.ydb{bottom:646.635295px;}
.yb1{bottom:646.649695px;}
.y1ef{bottom:647.745130px;}
.y1ba{bottom:648.131117px;}
.y7a{bottom:648.847961px;}
.y24f{bottom:649.662003px;}
.y17b{bottom:653.127319px;}
.y159{bottom:653.148919px;}
.y2a9{bottom:654.342773px;}
.yf{bottom:657.215057px;}
.y21b{bottom:658.662003px;}
.y14a{bottom:659.653482px;}
.y24e{bottom:663.162003px;}
.y4b{bottom:663.888108px;}
.yda{bottom:664.628095px;}
.yb0{bottom:664.642495px;}
.y1ee{bottom:665.737930px;}
.y1b9{bottom:666.123917px;}
.y79{bottom:666.855161px;}
.y2a8{bottom:667.842773px;}
.y17a{bottom:671.134519px;}
.y158{bottom:671.141719px;}
.y21a{bottom:672.162003px;}
.ye{bottom:675.215057px;}
.y149{bottom:677.881482px;}
.y2a7{bottom:681.342773px;}
.y4a{bottom:681.880908px;}
.yd9{bottom:682.620895px;}
.yaf{bottom:682.635295px;}
.y1ed{bottom:683.781176px;}
.y1b8{bottom:684.138317px;}
.y78{bottom:684.847961px;}
.y219{bottom:685.662003px;}
.y179{bottom:689.127319px;}
.y157{bottom:689.134519px;}
.yd{bottom:693.215057px;}
.y2a6{bottom:694.842773px;}
.y148{bottom:696.025482px;}
.y218{bottom:699.162003px;}
.y49{bottom:699.873708px;}
.yae{bottom:700.628095px;}
.yd8{bottom:700.656941px;}
.y1ec{bottom:701.773976px;}
.y1b7{bottom:702.131117px;}
.y77{bottom:702.847961px;}
.y156{bottom:707.127319px;}
.y178{bottom:707.161057px;}
.y2a5{bottom:708.342773px;}
.y147{bottom:714.169482px;}
.yc{bottom:715.715057px;}
.y48{bottom:717.866508px;}
.yad{bottom:718.620895px;}
.yd7{bottom:718.649741px;}
.y1eb{bottom:719.766776px;}
.y1b6{bottom:720.123917px;}
.y2a4{bottom:721.842773px;}
.y155{bottom:725.127319px;}
.y177{bottom:725.153857px;}
.y146{bottom:732.313482px;}
.yb{bottom:733.715057px;}
.y2a3{bottom:735.342773px;}
.y47{bottom:735.859308px;}
.yac{bottom:736.628095px;}
.yd6{bottom:736.642541px;}
.y1ea{bottom:737.759576px;}
.y1b5{bottom:738.152671px;}
.y24d{bottom:739.842773px;}
.y217{bottom:744.169203px;}
.y76{bottom:746.748714px;}
.y2a2{bottom:748.842773px;}
.y145{bottom:750.457482px;}
.ya{bottom:751.715057px;}
.y46{bottom:753.852108px;}
.yab{bottom:754.620895px;}
.yd5{bottom:754.635341px;}
.y1e9{bottom:755.752376px;}
.y1b4{bottom:756.145471px;}
.y216{bottom:762.162003px;}
.y2a1{bottom:762.342773px;}
.y75{bottom:764.741514px;}
.y144{bottom:768.613482px;}
.y9{bottom:769.715057px;}
.y45{bottom:771.844908px;}
.yaa{bottom:772.620941px;}
.yd4{bottom:772.628141px;}
.y1e8{bottom:773.745176px;}
.y1b3{bottom:774.138271px;}
.y2a0{bottom:775.842773px;}
.y215{bottom:780.176357px;}
.y24c{bottom:780.342773px;}
.y74{bottom:782.734314px;}
.y143{bottom:786.757482px;}
.y10a{bottom:788.285065px;}
.y29f{bottom:789.342773px;}
.y44{bottom:789.837708px;}
.yd3{bottom:790.620941px;}
.ya9{bottom:790.628141px;}
.y1e7{bottom:791.737976px;}
.y1b2{bottom:792.131071px;}
.y8{bottom:792.215057px;}
.y1a3{bottom:792.247518px;}
.y24b{bottom:793.842773px;}
.y214{bottom:798.169157px;}
.y73{bottom:800.777514px;}
.y109{bottom:801.086975px;}
.y29e{bottom:802.842773px;}
.y142{bottom:804.901482px;}
.y43{bottom:807.844908px;}
.ya8{bottom:808.620941px;}
.yd2{bottom:808.628141px;}
.y1e6{bottom:809.759576px;}
.y1b1{bottom:810.123871px;}
.y1a2{bottom:810.475518px;}
.y213{bottom:816.161957px;}
.y29d{bottom:816.342773px;}
.y72{bottom:818.770314px;}
.y24a{bottom:820.842773px;}
.y115{bottom:822.973482px;}
.y141{bottom:823.057482px;}
.y42{bottom:825.837708px;}
.yd1{bottom:826.620941px;}
.ya7{bottom:826.628141px;}
.y1e5{bottom:827.752376px;}
.y1b0{bottom:828.138271px;}
.y1a1{bottom:828.631518px;}
.y29c{bottom:829.842773px;}
.y212{bottom:834.176357px;}
.y249{bottom:834.342773px;}
.y71{bottom:836.763114px;}
.y114{bottom:841.201482px;}
.y29b{bottom:843.342773px;}
.y41{bottom:843.866508px;}
.ya6{bottom:844.620941px;}
.y1e4{bottom:845.745176px;}
.y1af{bottom:846.131071px;}
.y1a0{bottom:846.775518px;}
.y211{bottom:852.169157px;}
.y70{bottom:854.755914px;}
.y29a{bottom:856.842773px;}
.y113{bottom:859.357482px;}
.y248{bottom:861.342773px;}
.y40{bottom:861.859308px;}
.yd0{bottom:862.620941px;}
.ya5{bottom:862.656941px;}
.y1e3{bottom:863.737976px;}
.y1ae{bottom:864.123871px;}
.y7{bottom:864.552612px;}
.y19f{bottom:864.919518px;}
.y210{bottom:870.161957px;}
.y299{bottom:870.342773px;}
.y6f{bottom:872.748714px;}
.y247{bottom:874.842773px;}
.y112{bottom:877.501482px;}
.y3f{bottom:879.852108px;}
.ya4{bottom:880.649741px;}
.y1e2{bottom:881.737976px;}
.y1ad{bottom:882.131071px;}
.y19e{bottom:883.063518px;}
.y298{bottom:883.842773px;}
.y20f{bottom:888.161957px;}
.y246{bottom:888.342773px;}
.y6e{bottom:890.741514px;}
.y111{bottom:895.645482px;}
.y297{bottom:897.342773px;}
.y3e{bottom:897.844908px;}
.ya3{bottom:898.642541px;}
.ycf{bottom:898.706671px;}
.y1e1{bottom:899.752376px;}
.y1ac{bottom:900.123871px;}
.y6{bottom:900.577528px;}
.y19d{bottom:901.207518px;}
.y245{bottom:901.842773px;}
.y6d{bottom:908.734314px;}
.y296{bottom:910.842773px;}
.y110{bottom:913.801482px;}
.y244{bottom:915.342773px;}
.y3d{bottom:915.837708px;}
.ya2{bottom:916.635341px;}
.yce{bottom:916.699471px;}
.y1e0{bottom:917.745176px;}
.y1ab{bottom:918.167071px;}
.y19c{bottom:919.363518px;}
.y295{bottom:924.342773px;}
.y6c{bottom:926.741514px;}
.y243{bottom:928.842773px;}
.y10f{bottom:931.945482px;}
.y3c{bottom:933.859308px;}
.ya1{bottom:934.628141px;}
.ycd{bottom:934.692271px;}
.y1df{bottom:935.737976px;}
.y20e{bottom:935.773976px;}
.y1aa{bottom:936.159871px;}
.y19b{bottom:937.507518px;}
.y294{bottom:937.842773px;}
.y5{bottom:939.565528px;}
.y242{bottom:942.342773px;}
.y6b{bottom:944.734314px;}
.y10e{bottom:950.101482px;}
.y293{bottom:951.342773px;}
.y3b{bottom:951.852108px;}
.ya0{bottom:952.620941px;}
.ycc{bottom:952.685071px;}
.y1de{bottom:953.766776px;}
.y1a9{bottom:954.152671px;}
.y19a{bottom:955.651518px;}
.y6a{bottom:962.734314px;}
.y292{bottom:964.842773px;}
.y10d{bottom:968.245482px;}
.y241{bottom:969.342773px;}
.y3a{bottom:969.844908px;}
.y9f{bottom:970.628141px;}
.ycb{bottom:970.677871px;}
.y1dd{bottom:971.759576px;}
.y1a8{bottom:972.145471px;}
.y199{bottom:973.795518px;}
.y291{bottom:978.342773px;}
.y4{bottom:978.553528px;}
.y39{bottom:987.837708px;}
.y9e{bottom:988.620941px;}
.yca{bottom:988.670671px;}
.y1dc{bottom:989.752376px;}
.y1a7{bottom:990.138271px;}
.y290{bottom:991.842773px;}
.y10c{bottom:995.137482px;}
.y198{bottom:1000.687518px;}
.y240{bottom:1005.342773px;}
.y140{bottom:1005.487518px;}
.y38{bottom:1005.844908px;}
.y69{bottom:1006.620941px;}
.y9d{bottom:1006.635341px;}
.yc9{bottom:1006.663471px;}
.y1db{bottom:1007.745176px;}
.y1a6{bottom:1008.131071px;}
.y2d4{bottom:1016.011780px;}
.y23f{bottom:1018.842773px;}
.y10b{bottom:1018.987518px;}
.y37{bottom:1023.837708px;}
.y68{bottom:1024.620941px;}
.y9c{bottom:1024.628141px;}
.yc8{bottom:1024.656271px;}
.y1da{bottom:1025.737976px;}
.y1a5{bottom:1026.123871px;}
.y2d3{bottom:1029.511780px;}
.y23e{bottom:1032.342773px;}
.y3{bottom:1033.362579px;}
.y1c{bottom:1035.750183px;}
.y36{bottom:1041.837708px;}
.y9b{bottom:1042.620941px;}
.y67{bottom:1042.624032px;}
.yc7{bottom:1042.649071px;}
.y2d2{bottom:1043.011780px;}
.y108{bottom:1043.300079px;}
.y20d{bottom:1043.737976px;}
.y1d9{bottom:1043.741996px;}
.y1a4{bottom:1044.123871px;}
.y23d{bottom:1045.842773px;}
.y2{bottom:1112.297079px;}
.y25{bottom:1122.113983px;}
.y98{bottom:1126.524628px;}
.y34{bottom:1126.524719px;}
.y9a{bottom:1126.756989px;}
.y1{bottom:1126.925079px;}
.y99{bottom:1127.300079px;}
.y35{bottom:1127.304719px;}
.h29{height:10.640359px;}
.hc{height:13.870500px;}
.h23{height:27.540000px;}
.hf{height:27.814500px;}
.h18{height:27.988800px;}
.h27{height:28.374502px;}
.h21{height:29.988000px;}
.h25{height:30.324000px;}
.h26{height:30.523500px;}
.h22{height:32.130000px;}
.h24{height:35.532000px;}
.hb{height:37.086000px;}
.he{height:39.735000px;}
.h1d{height:39.984000px;}
.h17{height:40.026000px;}
.ha{height:41.538000px;}
.h15{height:42.384000px;}
.h20{height:42.840000px;}
.h1f{height:43.785000px;}
.h3{height:45.696000px;}
.h10{height:45.744000px;}
.h14{height:46.704000px;}
.h2{height:47.232000px;}
.h1a{height:47.472000px;}
.h1c{height:47.682000px;}
.h19{height:51.892873px;}
.h1e{height:51.893423px;}
.h9{height:52.980000px;}
.h13{height:53.406000px;}
.h12{height:53.709599px;}
.h11{height:55.860000px;}
.h8{height:58.380000px;}
.h7{height:61.120200px;}
.h6{height:67.194379px;}
.hd{height:71.000160px;}
.h4{height:77.142000px;}
.h16{height:96.384000px;}
.h1b{height:105.892873px;}
.h5{height:137.088000px;}
.h28{height:204.143990px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w2{width:230.152496px;}
.w3{width:344.762993px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x7{left:-1.234177px;}
.x0{left:0.000000px;}
.x1a{left:12.796051px;}
.x1{left:84.933002px;}
.x2{left:92.734348px;}
.x3{left:94.683150px;}
.xa{left:97.049251px;}
.x1f{left:107.539352px;}
.x1c{left:139.550400px;}
.x1e{left:140.704651px;}
.xd{left:152.073750px;}
.xe{left:172.260452px;}
.xf{left:219.261154px;}
.x5{left:270.817497px;}
.xc{left:366.043350px;}
.x8{left:457.086594px;}
.x19{left:463.109985px;}
.xb{left:469.091398px;}
.x18{left:475.906036px;}
.x17{left:476.938660px;}
.x11{left:479.586594px;}
.x12{left:483.529633px;}
.x16{left:487.660338px;}
.x13{left:490.386133px;}
.x14{left:493.103989px;}
.x6{left:577.723480px;}
.x1b{left:602.660385px;}
.x1d{left:603.814636px;}
.x10{left:615.081154px;}
.x15{left:660.952332px;}
.x4{left:694.929886px;}
.x9{left:753.380081px;}
@media print{
.v3{vertical-align:-16.000000pt;}
.v5{vertical-align:-14.933268pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.322667pt;}
.v7{vertical-align:3.024000pt;}
.v6{vertical-align:17.066732pt;}
.v2{vertical-align:23.466471pt;}
.v4{vertical-align:48.000000pt;}
.ls5{letter-spacing:-0.933333pt;}
.ls4{letter-spacing:-0.480000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000001pt;}
.ls1{letter-spacing:0.066293pt;}
.ls14{letter-spacing:0.133449pt;}
.ls15{letter-spacing:0.200173pt;}
.ls11{letter-spacing:0.313600pt;}
.lsb{letter-spacing:0.590613pt;}
.lsa{letter-spacing:0.689874pt;}
.lsc{letter-spacing:0.716034pt;}
.ls7{letter-spacing:0.731722pt;}
.ls12{letter-spacing:0.731724pt;}
.ls6{letter-spacing:0.731733pt;}
.ls8{letter-spacing:0.736960pt;}
.lse{letter-spacing:0.742187pt;}
.ls9{letter-spacing:0.747400pt;}
.lsf{letter-spacing:0.747413pt;}
.lsd{letter-spacing:0.757867pt;}
.ls16{letter-spacing:1.000864pt;}
.ls10{letter-spacing:1.045333pt;}
.ls13{letter-spacing:1.668107pt;}
.ls0{letter-spacing:4.853333pt;}
.ws1{word-spacing:-18.858667pt;}
.wsa{word-spacing:-13.328000pt;}
.ws83{word-spacing:-12.596267pt;}
.ws53{word-spacing:-12.282667pt;}
.ws3{word-spacing:-11.096533pt;}
.ws4{word-spacing:-11.040000pt;}
.ws10f{word-spacing:-10.942783pt;}
.ws5{word-spacing:-10.560000pt;}
.ws10e{word-spacing:-10.275540pt;}
.ws109{word-spacing:-10.156800pt;}
.ws10d{word-spacing:-9.474848pt;}
.ws10c{word-spacing:-9.408124pt;}
.ws0{word-spacing:-9.045333pt;}
.ws2{word-spacing:-8.993600pt;}
.wsb3{word-spacing:-8.832000pt;}
.ws7{word-spacing:-8.760000pt;}
.ws108{word-spacing:-8.280000pt;}
.ws95{word-spacing:-7.914667pt;}
.ws6{word-spacing:-7.242667pt;}
.ws8{word-spacing:-6.132000pt;}
.ws84{word-spacing:-5.540267pt;}
.wsb4{word-spacing:-4.010667pt;}
.wsb6{word-spacing:-1.792000pt;}
.ws111{word-spacing:-1.680000pt;}
.ws110{word-spacing:-1.668107pt;}
.ws10b{word-spacing:-1.600000pt;}
.wse{word-spacing:-0.731733pt;}
.wsd{word-spacing:-0.627200pt;}
.wsc2{word-spacing:-0.574933pt;}
.ws102{word-spacing:-0.522667pt;}
.ws4b{word-spacing:-0.470400pt;}
.ws1e{word-spacing:-0.418133pt;}
.ws5b{word-spacing:-0.365867pt;}
.ws2c{word-spacing:-0.313600pt;}
.ws6f{word-spacing:-0.261333pt;}
.ws51{word-spacing:-0.209067pt;}
.wsc3{word-spacing:-0.156800pt;}
.ws99{word-spacing:-0.104533pt;}
.ws112{word-spacing:-0.080000pt;}
.ws9{word-spacing:0.000000pt;}
.ws5a{word-spacing:0.052267pt;}
.wsa2{word-spacing:0.156800pt;}
.ws74{word-spacing:0.261333pt;}
.ws7c{word-spacing:0.313600pt;}
.wsf7{word-spacing:0.418133pt;}
.ws4a{word-spacing:0.522667pt;}
.ws15{word-spacing:0.574933pt;}
.ws24{word-spacing:0.627200pt;}
.ws3c{word-spacing:0.731733pt;}
.ws71{word-spacing:0.784000pt;}
.ws76{word-spacing:0.836267pt;}
.ws59{word-spacing:0.888533pt;}
.wsf{word-spacing:0.940800pt;}
.wsfc{word-spacing:1.045333pt;}
.ws104{word-spacing:1.097600pt;}
.ws3d{word-spacing:1.149867pt;}
.wsee{word-spacing:1.202133pt;}
.ws2e{word-spacing:1.254400pt;}
.ws32{word-spacing:1.306667pt;}
.ws3a{word-spacing:1.358933pt;}
.wsa5{word-spacing:1.411200pt;}
.ws6e{word-spacing:1.515733pt;}
.wsf9{word-spacing:1.620267pt;}
.ws3f{word-spacing:1.672533pt;}
.ws8e{word-spacing:1.724800pt;}
.wsfa{word-spacing:1.829333pt;}
.ws28{word-spacing:1.881600pt;}
.ws72{word-spacing:1.933867pt;}
.ws29{word-spacing:2.247467pt;}
.ws9a{word-spacing:2.508800pt;}
.wsff{word-spacing:2.613333pt;}
.ws8f{word-spacing:2.665600pt;}
.ws79{word-spacing:2.717867pt;}
.ws9b{word-spacing:2.770133pt;}
.wsac{word-spacing:2.822400pt;}
.ws45{word-spacing:2.874667pt;}
.wsdd{word-spacing:2.926933pt;}
.wsd1{word-spacing:3.188267pt;}
.ws2a{word-spacing:3.292800pt;}
.ws40{word-spacing:3.397333pt;}
.ws107{word-spacing:3.449600pt;}
.ws81{word-spacing:3.606400pt;}
.wsa1{word-spacing:3.658667pt;}
.ws68{word-spacing:3.710933pt;}
.ws42{word-spacing:3.763200pt;}
.wseb{word-spacing:3.815467pt;}
.ws61{word-spacing:3.867733pt;}
.wsb{word-spacing:3.920000pt;}
.ws63{word-spacing:3.972267pt;}
.ws58{word-spacing:4.024533pt;}
.ws30{word-spacing:4.076800pt;}
.ws60{word-spacing:4.129067pt;}
.ws7f{word-spacing:4.285867pt;}
.ws36{word-spacing:4.338133pt;}
.wsf0{word-spacing:4.390400pt;}
.ws35{word-spacing:4.494933pt;}
.wsbf{word-spacing:4.547200pt;}
.ws103{word-spacing:4.599467pt;}
.ws37{word-spacing:4.651733pt;}
.ws88{word-spacing:4.704000pt;}
.wsbc{word-spacing:4.808533pt;}
.ws16{word-spacing:4.860800pt;}
.wse5{word-spacing:4.913067pt;}
.wsca{word-spacing:5.069867pt;}
.ws75{word-spacing:5.122133pt;}
.ws70{word-spacing:5.174400pt;}
.ws50{word-spacing:5.226667pt;}
.ws21{word-spacing:5.278933pt;}
.wsfd{word-spacing:5.331200pt;}
.wse6{word-spacing:5.383467pt;}
.ws80{word-spacing:5.540267pt;}
.wsc6{word-spacing:5.592533pt;}
.wsa9{word-spacing:5.644800pt;}
.ws19{word-spacing:5.749333pt;}
.wse8{word-spacing:5.801600pt;}
.ws4f{word-spacing:5.853867pt;}
.wsd7{word-spacing:5.906133pt;}
.wsc{word-spacing:5.958400pt;}
.ws9e{word-spacing:6.010667pt;}
.wsa6{word-spacing:6.115200pt;}
.wsec{word-spacing:6.167467pt;}
.ws9d{word-spacing:6.219733pt;}
.wsf1{word-spacing:6.272000pt;}
.wsd4{word-spacing:6.324267pt;}
.wsc9{word-spacing:6.376533pt;}
.ws7b{word-spacing:6.428800pt;}
.ws1d{word-spacing:6.481067pt;}
.ws39{word-spacing:6.533333pt;}
.ws2f{word-spacing:6.637867pt;}
.ws64{word-spacing:6.742400pt;}
.ws105{word-spacing:6.794667pt;}
.ws52{word-spacing:6.846933pt;}
.ws22{word-spacing:6.951467pt;}
.wsb0{word-spacing:7.003733pt;}
.wse4{word-spacing:7.056000pt;}
.ws33{word-spacing:7.108267pt;}
.ws6d{word-spacing:7.160533pt;}
.ws77{word-spacing:7.317333pt;}
.wsdc{word-spacing:7.369600pt;}
.wsb2{word-spacing:7.421867pt;}
.ws62{word-spacing:7.474133pt;}
.wsf4{word-spacing:7.526400pt;}
.wsf5{word-spacing:7.578667pt;}
.ws44{word-spacing:7.630933pt;}
.ws98{word-spacing:7.683200pt;}
.wsad{word-spacing:7.735467pt;}
.wse7{word-spacing:7.787733pt;}
.ws4c{word-spacing:7.840000pt;}
.wsf3{word-spacing:7.892267pt;}
.ws67{word-spacing:8.049067pt;}
.wsa8{word-spacing:8.101333pt;}
.wsd2{word-spacing:8.153600pt;}
.ws31{word-spacing:8.205867pt;}
.ws12{word-spacing:8.258133pt;}
.ws5e{word-spacing:8.310400pt;}
.ws46{word-spacing:8.362667pt;}
.wse1{word-spacing:8.414933pt;}
.ws1c{word-spacing:8.519467pt;}
.ws106{word-spacing:8.728533pt;}
.ws7d{word-spacing:8.780800pt;}
.wsde{word-spacing:8.833067pt;}
.wsbe{word-spacing:8.885333pt;}
.wsfe{word-spacing:9.042133pt;}
.ws23{word-spacing:9.146667pt;}
.wscf{word-spacing:9.198933pt;}
.wsed{word-spacing:9.303467pt;}
.ws90{word-spacing:9.355733pt;}
.ws26{word-spacing:9.408000pt;}
.ws3b{word-spacing:9.512533pt;}
.ws2d{word-spacing:9.617067pt;}
.ws69{word-spacing:9.669333pt;}
.wsef{word-spacing:9.721600pt;}
.ws10{word-spacing:9.773867pt;}
.ws8a{word-spacing:9.826133pt;}
.wsa4{word-spacing:9.878400pt;}
.ws87{word-spacing:9.930667pt;}
.wse9{word-spacing:10.139733pt;}
.wsd6{word-spacing:10.244267pt;}
.wsf8{word-spacing:10.348800pt;}
.ws6c{word-spacing:10.401067pt;}
.ws4e{word-spacing:10.453333pt;}
.ws27{word-spacing:10.505600pt;}
.wsc8{word-spacing:10.557867pt;}
.ws1f{word-spacing:10.662400pt;}
.ws13{word-spacing:10.766933pt;}
.ws41{word-spacing:10.871467pt;}
.ws8b{word-spacing:10.923733pt;}
.ws78{word-spacing:10.976000pt;}
.wsa7{word-spacing:11.028267pt;}
.ws73{word-spacing:11.132800pt;}
.wsfb{word-spacing:11.185067pt;}
.wsc0{word-spacing:11.237333pt;}
.wscd{word-spacing:11.341867pt;}
.ws5d{word-spacing:11.394133pt;}
.wscb{word-spacing:11.498667pt;}
.wsd0{word-spacing:11.550933pt;}
.ws17{word-spacing:11.603200pt;}
.ws10a{word-spacing:11.812267pt;}
.ws57{word-spacing:11.864533pt;}
.wsd5{word-spacing:11.969067pt;}
.wsab{word-spacing:12.021333pt;}
.wsea{word-spacing:12.282667pt;}
.wscc{word-spacing:12.439467pt;}
.ws101{word-spacing:12.491733pt;}
.ws3e{word-spacing:12.544000pt;}
.wsa3{word-spacing:12.596267pt;}
.ws8d{word-spacing:12.648533pt;}
.ws56{word-spacing:12.753067pt;}
.wse2{word-spacing:12.805333pt;}
.ws1b{word-spacing:12.857600pt;}
.ws25{word-spacing:12.909867pt;}
.wsaf{word-spacing:13.066667pt;}
.ws49{word-spacing:13.223467pt;}
.ws89{word-spacing:13.484800pt;}
.ws7a{word-spacing:13.693867pt;}
.ws34{word-spacing:13.902933pt;}
.ws9f{word-spacing:14.007467pt;}
.ws14{word-spacing:14.425600pt;}
.ws6b{word-spacing:14.530133pt;}
.wsbd{word-spacing:14.582400pt;}
.ws9c{word-spacing:14.686933pt;}
.ws6a{word-spacing:14.791467pt;}
.ws5c{word-spacing:14.843733pt;}
.ws47{word-spacing:14.896000pt;}
.wsc7{word-spacing:15.052800pt;}
.ws1a{word-spacing:15.157333pt;}
.wsdb{word-spacing:15.261867pt;}
.ws7e{word-spacing:15.366400pt;}
.ws48{word-spacing:15.418667pt;}
.wse0{word-spacing:15.575467pt;}
.wsc4{word-spacing:16.045867pt;}
.ws5f{word-spacing:16.202667pt;}
.wsae{word-spacing:16.307200pt;}
.ws8c{word-spacing:16.673067pt;}
.wse3{word-spacing:16.777600pt;}
.ws82{word-spacing:16.882133pt;}
.wsd8{word-spacing:16.986667pt;}
.wsf6{word-spacing:17.091200pt;}
.ws18{word-spacing:17.404800pt;}
.wsc1{word-spacing:17.666133pt;}
.wsb1{word-spacing:17.718400pt;}
.ws20{word-spacing:17.979733pt;}
.wsce{word-spacing:18.606933pt;}
.ws38{word-spacing:18.816000pt;}
.wsd3{word-spacing:19.129600pt;}
.wsd9{word-spacing:19.443200pt;}
.wsdf{word-spacing:19.547733pt;}
.ws66{word-spacing:19.704533pt;}
.wsa0{word-spacing:20.227200pt;}
.wsaa{word-spacing:20.749867pt;}
.wsb5{word-spacing:21.648000pt;}
.ws100{word-spacing:22.108800pt;}
.ws11{word-spacing:22.997333pt;}
.wsf2{word-spacing:24.669867pt;}
.wsda{word-spacing:24.722133pt;}
.ws65{word-spacing:25.140267pt;}
.ws2b{word-spacing:27.178667pt;}
.ws43{word-spacing:28.014933pt;}
.wsc5{word-spacing:32.144000pt;}
.wsb9{word-spacing:35.498667pt;}
.ws4d{word-spacing:47.144533pt;}
.wsbb{word-spacing:56.320000pt;}
.wsba{word-spacing:77.141333pt;}
.ws96{word-spacing:90.325326pt;}
.ws97{word-spacing:111.146659pt;}
.ws94{word-spacing:128.768000pt;}
.wsb7{word-spacing:139.221333pt;}
.ws86{word-spacing:145.706667pt;}
.ws93{word-spacing:150.015993pt;}
.ws91{word-spacing:178.151466pt;}
.ws85{word-spacing:201.642667pt;}
.wsb8{word-spacing:316.928000pt;}
.ws92{word-spacing:554.956242pt;}
.ws55{word-spacing:784.127992pt;}
.ws54{word-spacing:813.572259pt;}
._11{margin-left:-25.865600pt;}
._10{margin-left:-23.250156pt;}
._12{margin-left:-16.045867pt;}
._13{margin-left:-12.849067pt;}
._5{margin-left:-10.384000pt;}
._49{margin-left:-8.756001pt;}
._8{margin-left:-7.142400pt;}
._9{margin-left:-5.226667pt;}
._d{margin-left:-3.778133pt;}
._2{margin-left:-2.312533pt;}
._0{margin-left:-1.156267pt;}
._1{width:1.147733pt;}
._3{width:2.171733pt;}
._45{width:4.010662pt;}
._f{width:5.661867pt;}
._b{width:6.715307pt;}
._e{width:7.946667pt;}
._14{width:9.773867pt;}
._c{width:11.126614pt;}
._15{width:12.082133pt;}
._7{width:13.013327pt;}
._a{width:14.133333pt;}
._6{width:15.236254pt;}
._36{width:16.752640pt;}
._4f{width:20.258133pt;}
._3f{width:33.322667pt;}
._4{width:34.394100pt;}
._44{width:37.333333pt;}
._4e{width:39.778133pt;}
._38{width:44.804267pt;}
._4d{width:47.292267pt;}
._37{width:64.896000pt;}
._43{width:66.432000pt;}
._2f{width:78.521081pt;}
._41{width:86.485333pt;}
._30{width:130.345052pt;}
._4b{width:147.635996pt;}
._4a{width:149.195996pt;}
._35{width:151.850667pt;}
._48{width:152.875996pt;}
._16{width:158.709852pt;}
._2c{width:159.603749pt;}
._4c{width:165.235996pt;}
._2d{width:166.357333pt;}
._3a{width:169.258667pt;}
._1a{width:176.279467pt;}
._2a{width:186.508237pt;}
._28{width:187.625615pt;}
._20{width:193.536000pt;}
._2b{width:205.482667pt;}
._24{width:208.407467pt;}
._25{width:221.781333pt;}
._1e{width:224.042667pt;}
._29{width:226.304000pt;}
._21{width:227.925326pt;}
._2e{width:232.362667pt;}
._42{width:233.258667pt;}
._26{width:235.349333pt;}
._39{width:240.810667pt;}
._19{width:244.864000pt;}
._1d{width:246.167467pt;}
._27{width:247.125333pt;}
._3c{width:252.885333pt;}
._40{width:254.080000pt;}
._46{width:260.138667pt;}
._3d{width:261.632000pt;}
._22{width:263.916800pt;}
._23{width:276.992000pt;}
._1b{width:280.362657pt;}
._3b{width:282.453333pt;}
._47{width:293.034667pt;}
._1c{width:293.930657pt;}
._3e{width:332.544000pt;}
._32{width:334.208000pt;}
._34{width:347.182933pt;}
._31{width:363.136000pt;}
._33{width:377.774933pt;}
._17{width:614.638909pt;}
._1f{width:693.713670pt;}
._18{width:764.783539pt;}
.fs13{font-size:12.510710pt;}
.fse{font-size:26.133333pt;}
.fsa{font-size:28.000000pt;}
.fsf{font-size:29.866667pt;}
.fs10{font-size:32.000000pt;}
.fs12{font-size:33.362142pt;}
.fs11{font-size:35.466667pt;}
.fs7{font-size:37.333333pt;}
.fs9{font-size:40.000000pt;}
.fs4{font-size:41.066666pt;}
.fs0{font-size:42.666667pt;}
.fsd{font-size:48.000000pt;}
.fsc{font-size:49.066666pt;}
.fsb{font-size:52.266667pt;}
.fs6{font-size:53.333333pt;}
.fs5{font-size:54.933333pt;}
.fs3{font-size:58.666667pt;}
.fs8{font-size:66.293333pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:0.270915pt;}
.y24{bottom:72.118800pt;}
.y23{bottom:82.786800pt;}
.y28e{bottom:88.410665pt;}
.y97{bottom:89.762801pt;}
.y23c{bottom:90.807336pt;}
.y22{bottom:93.454800pt;}
.y13d{bottom:95.224396pt;}
.y20c{bottom:95.779869pt;}
.y1d8{bottom:96.116538pt;}
.yee{bottom:96.529329pt;}
.y276{bottom:97.477336pt;}
.y197{bottom:100.692017pt;}
.y2d1{bottom:101.638021pt;}
.y23b{bottom:102.807336pt;}
.yfa{bottom:102.909067pt;}
.y107{bottom:102.948263pt;}
.y28c{bottom:103.088000pt;}
.y21{bottom:104.122800pt;}
.y96{bottom:105.756401pt;}
.yed{bottom:108.529329pt;}
.y275{bottom:109.477336pt;}
.y13c{bottom:111.224396pt;}
.y20b{bottom:111.773469pt;}
.y1d7{bottom:112.110138pt;}
.y2d0{bottom:113.638021pt;}
.y20{bottom:114.790800pt;}
.y23a{bottom:114.807336pt;}
.y176{bottom:116.583339pt;}
.y196{bottom:116.685617pt;}
.y28a{bottom:118.901465pt;}
.yf9{bottom:118.909067pt;}
.y122{bottom:118.980263pt;}
.y106{bottom:118.993063pt;}
.yec{bottom:120.529329pt;}
.y274{bottom:121.477336pt;}
.y95{bottom:121.750001pt;}
.y28b{bottom:124.368000pt;}
.y66{bottom:125.411336pt;}
.y1f{bottom:125.458800pt;}
.y2cf{bottom:125.638021pt;}
.y13b{bottom:127.237196pt;}
.y20a{bottom:127.767069pt;}
.y1d6{bottom:128.129328pt;}
.yeb{bottom:132.529329pt;}
.y175{bottom:132.576939pt;}
.y195{bottom:132.679217pt;}
.y273{bottom:133.477336pt;}
.yf8{bottom:134.909067pt;}
.y287{bottom:134.909465pt;}
.y121{bottom:134.973863pt;}
.y105{bottom:134.986663pt;}
.y1e{bottom:136.126800pt;}
.y2ce{bottom:137.638021pt;}
.y94{bottom:137.743601pt;}
.y239{bottom:138.807336pt;}
.y65{bottom:141.411336pt;}
.y13a{bottom:143.230796pt;}
.y209{bottom:143.779869pt;}
.y1d5{bottom:144.122928pt;}
.y272{bottom:145.477336pt;}
.y1d{bottom:146.794800pt;}
.y174{bottom:148.570539pt;}
.y194{bottom:148.672817pt;}
.y289{bottom:148.870799pt;}
.y288{bottom:149.385071pt;}
.y2cd{bottom:149.638021pt;}
.y285{bottom:150.157999pt;}
.y238{bottom:150.807336pt;}
.y120{bottom:150.967463pt;}
.y104{bottom:150.980263pt;}
.y93{bottom:153.750001pt;}
.yea{bottom:156.433329pt;}
.y64{bottom:157.411336pt;}
.y271{bottom:157.477336pt;}
.y139{bottom:159.224396pt;}
.y208{bottom:159.773469pt;}
.y1d4{bottom:160.116528pt;}
.y2cc{bottom:161.638021pt;}
.y28f{bottom:162.561727pt;}
.y237{bottom:162.807336pt;}
.y284{bottom:164.288666pt;}
.y173{bottom:164.564139pt;}
.y193{bottom:164.666417pt;}
.y286{bottom:165.233999pt;}
.y282{bottom:166.912123pt;}
.yf7{bottom:166.915458pt;}
.y11f{bottom:166.961063pt;}
.y103{bottom:166.973863pt;}
.y270{bottom:169.477336pt;}
.y92{bottom:169.743601pt;}
.y63{bottom:173.411336pt;}
.y2cb{bottom:173.638021pt;}
.y236{bottom:174.807336pt;}
.y138{bottom:175.237206pt;}
.y207{bottom:175.767069pt;}
.y1d3{bottom:176.110128pt;}
.ye9{bottom:178.044535pt;}
.y281{bottom:180.034790pt;}
.y172{bottom:180.557739pt;}
.y192{bottom:180.660017pt;}
.y283{bottom:181.450133pt;}
.y26f{bottom:181.477336pt;}
.y27f{bottom:182.897070pt;}
.yf6{bottom:182.909058pt;}
.y11e{bottom:182.954663pt;}
.y102{bottom:182.967463pt;}
.y2ca{bottom:185.638021pt;}
.y91{bottom:185.743591pt;}
.y235{bottom:186.807336pt;}
.y62{bottom:189.411336pt;}
.y137{bottom:191.230806pt;}
.y206{bottom:191.843849pt;}
.y1d2{bottom:192.122928pt;}
.y26e{bottom:193.477336pt;}
.y27e{bottom:195.609070pt;}
.y171{bottom:196.576939pt;}
.y191{bottom:196.653617pt;}
.y280{bottom:196.835592pt;}
.y2c9{bottom:197.638021pt;}
.y234{bottom:198.807336pt;}
.y27c{bottom:198.903062pt;}
.yf5{bottom:198.909058pt;}
.y11d{bottom:198.948263pt;}
.y101{bottom:198.961063pt;}
.y90{bottom:201.743591pt;}
.y32{bottom:204.357869pt;}
.y26d{bottom:205.477336pt;}
.y136{bottom:207.224406pt;}
.y205{bottom:207.837449pt;}
.y1d1{bottom:208.116528pt;}
.y2c8{bottom:209.638021pt;}
.y27b{bottom:211.232396pt;}
.y27d{bottom:212.267863pt;}
.y170{bottom:212.570539pt;}
.y190{bottom:212.647217pt;}
.y278{bottom:214.905331pt;}
.yf4{bottom:214.909058pt;}
.y27a{bottom:214.909729pt;}
.y100{bottom:214.954663pt;}
.y11c{bottom:214.967463pt;}
.y26c{bottom:217.477336pt;}
.y31{bottom:220.357869pt;}
.y2c7{bottom:221.638021pt;}
.ye8{bottom:222.774129pt;}
.yc6{bottom:222.793329pt;}
.y233{bottom:222.807336pt;}
.y135{bottom:223.256264pt;}
.y204{bottom:223.831049pt;}
.y1d0{bottom:224.110128pt;}
.y277{bottom:227.430664pt;}
.y279{bottom:228.278259pt;}
.y30{bottom:228.357869pt;}
.y16f{bottom:228.564139pt;}
.y18f{bottom:228.640817pt;}
.y26b{bottom:229.477336pt;}
.yff{bottom:230.948263pt;}
.y11b{bottom:230.961063pt;}
.y2c6{bottom:233.638021pt;}
.y232{bottom:234.807336pt;}
.y61{bottom:238.078003pt;}
.ye7{bottom:238.774129pt;}
.yc5{bottom:238.786929pt;}
.y134{bottom:239.249864pt;}
.y203{bottom:239.824649pt;}
.y1cf{bottom:240.142128pt;}
.y8f{bottom:240.772943pt;}
.y26a{bottom:241.477336pt;}
.y2f{bottom:244.357869pt;}
.y16e{bottom:244.557739pt;}
.y18e{bottom:244.634417pt;}
.y2c5{bottom:245.638021pt;}
.y231{bottom:246.807336pt;}
.yf3{bottom:246.909058pt;}
.yfe{bottom:246.948263pt;}
.y11a{bottom:246.954663pt;}
.y28d{bottom:250.972392pt;}
.y2e{bottom:252.357869pt;}
.y269{bottom:253.477336pt;}
.y60{bottom:254.129081pt;}
.ye6{bottom:254.778396pt;}
.yc4{bottom:254.780529pt;}
.y133{bottom:255.243464pt;}
.y202{bottom:255.818249pt;}
.y1ce{bottom:256.135728pt;}
.y8e{bottom:256.766543pt;}
.y2c4{bottom:257.638021pt;}
.y230{bottom:258.807336pt;}
.y16d{bottom:260.557597pt;}
.y18d{bottom:260.628017pt;}
.yf2{bottom:262.928400pt;}
.yfd{bottom:262.948263pt;}
.y268{bottom:265.477336pt;}
.y2d{bottom:268.357869pt;}
.y2c3{bottom:269.638021pt;}
.y5f{bottom:270.122681pt;}
.yc3{bottom:270.774129pt;}
.y22f{bottom:270.807336pt;}
.y132{bottom:271.237064pt;}
.y201{bottom:271.811849pt;}
.y1cd{bottom:272.129328pt;}
.y8d{bottom:272.760143pt;}
.y2c{bottom:276.357869pt;}
.y16c{bottom:276.570397pt;}
.y18c{bottom:276.621617pt;}
.y267{bottom:277.477336pt;}
.yf1{bottom:278.922000pt;}
.y119{bottom:278.961063pt;}
.y2c2{bottom:281.638021pt;}
.y22e{bottom:282.807336pt;}
.y5e{bottom:286.116281pt;}
.yc2{bottom:286.806129pt;}
.y131{bottom:287.230664pt;}
.y200{bottom:287.805449pt;}
.y1cc{bottom:288.122928pt;}
.y2b{bottom:288.357869pt;}
.y8c{bottom:288.753743pt;}
.y266{bottom:289.477336pt;}
.y16b{bottom:292.563997pt;}
.y18b{bottom:292.615217pt;}
.y2c1{bottom:293.638021pt;}
.yf0{bottom:294.915600pt;}
.yfc{bottom:294.949860pt;}
.y118{bottom:294.954663pt;}
.y265{bottom:301.477336pt;}
.y5d{bottom:302.109881pt;}
.ye5{bottom:302.780529pt;}
.yc1{bottom:302.799729pt;}
.y130{bottom:303.224264pt;}
.y1ff{bottom:303.799049pt;}
.y1cb{bottom:304.116528pt;}
.y2a{bottom:304.357869pt;}
.y8b{bottom:304.766543pt;}
.y2c0{bottom:305.638021pt;}
.y22d{bottom:306.807336pt;}
.y16a{bottom:308.557597pt;}
.y18a{bottom:308.608817pt;}
.yef{bottom:310.909200pt;}
.yfb{bottom:310.943460pt;}
.y117{bottom:310.948263pt;}
.y29{bottom:312.357869pt;}
.y264{bottom:313.477336pt;}
.y2bf{bottom:317.638021pt;}
.y5c{bottom:318.103481pt;}
.ye4{bottom:318.774129pt;}
.yc0{bottom:318.793329pt;}
.y22c{bottom:318.807336pt;}
.y12f{bottom:319.249884pt;}
.y1fe{bottom:319.792649pt;}
.y1ca{bottom:320.110128pt;}
.y8a{bottom:320.760143pt;}
.y28{bottom:324.357869pt;}
.y189{bottom:324.602417pt;}
.y169{bottom:324.608817pt;}
.y263{bottom:325.477336pt;}
.y2be{bottom:329.638021pt;}
.y22b{bottom:330.807336pt;}
.y5b{bottom:334.097081pt;}
.ybf{bottom:334.786929pt;}
.y12e{bottom:335.243484pt;}
.y1fd{bottom:335.786249pt;}
.y1c9{bottom:336.186948pt;}
.y27{bottom:336.357869pt;}
.y89{bottom:336.753743pt;}
.y262{bottom:337.477336pt;}
.y33{bottom:340.357869pt;}
.y188{bottom:340.596017pt;}
.y168{bottom:340.602417pt;}
.y2bd{bottom:341.638021pt;}
.y22a{bottom:342.807336pt;}
.y261{bottom:349.477336pt;}
.y5a{bottom:350.090681pt;}
.ybe{bottom:350.780529pt;}
.y12d{bottom:351.237084pt;}
.y1fc{bottom:351.779849pt;}
.y1c8{bottom:352.180548pt;}
.y88{bottom:352.798543pt;}
.y2bc{bottom:353.638021pt;}
.y14e{bottom:354.470684pt;}
.y229{bottom:354.807336pt;}
.y187{bottom:356.589617pt;}
.y167{bottom:356.596017pt;}
.y260{bottom:361.477336pt;}
.y116{bottom:364.256673pt;}
.y2bb{bottom:365.638021pt;}
.y59{bottom:366.084281pt;}
.ybd{bottom:366.774129pt;}
.y228{bottom:366.807336pt;}
.y12c{bottom:367.230684pt;}
.y1fb{bottom:367.773449pt;}
.y1c7{bottom:368.174148pt;}
.y87{bottom:368.792143pt;}
.y14d{bottom:369.534667pt;}
.y186{bottom:372.583217pt;}
.y166{bottom:372.589617pt;}
.y25f{bottom:373.477336pt;}
.y2ba{bottom:377.638021pt;}
.y227{bottom:378.807336pt;}
.y1b{bottom:380.191162pt;}
.y58{bottom:382.077881pt;}
.ybc{bottom:382.774129pt;}
.y12b{bottom:383.224284pt;}
.y1fa{bottom:383.767049pt;}
.y1c6{bottom:384.167748pt;}
.y86{bottom:384.785743pt;}
.y25e{bottom:385.477336pt;}
.y154{bottom:385.670658pt;}
.y185{bottom:388.576817pt;}
.y165{bottom:388.583217pt;}
.y2b9{bottom:389.638021pt;}
.y1a{bottom:396.191162pt;}
.y25d{bottom:397.477336pt;}
.y57{bottom:398.090681pt;}
.y12a{bottom:399.274129pt;}
.y1f9{bottom:399.779849pt;}
.y1c5{bottom:400.161348pt;}
.y85{bottom:400.779343pt;}
.y2b8{bottom:401.638021pt;}
.y153{bottom:401.873324pt;}
.y184{bottom:404.570417pt;}
.y164{bottom:404.576817pt;}
.y25c{bottom:409.477336pt;}
.y226{bottom:413.477336pt;}
.y2b7{bottom:413.638021pt;}
.y56{bottom:414.084281pt;}
.ybb{bottom:414.786929pt;}
.ye3{bottom:414.812529pt;}
.y129{bottom:415.267729pt;}
.y1f8{bottom:415.773449pt;}
.y1c4{bottom:416.154948pt;}
.y19{bottom:416.191162pt;}
.y84{bottom:416.772943pt;}
.y152{bottom:418.001324pt;}
.y183{bottom:420.564017pt;}
.y163{bottom:420.570417pt;}
.y25b{bottom:421.477336pt;}
.y225{bottom:425.477336pt;}
.y2b6{bottom:425.638021pt;}
.y55{bottom:430.077881pt;}
.yba{bottom:430.780529pt;}
.ye2{bottom:430.806129pt;}
.y128{bottom:431.261329pt;}
.y1f7{bottom:431.767049pt;}
.y1c3{bottom:432.148548pt;}
.y18{bottom:432.191162pt;}
.y83{bottom:432.766543pt;}
.y25a{bottom:433.477336pt;}
.y151{bottom:434.129324pt;}
.y182{bottom:436.557617pt;}
.y162{bottom:436.564017pt;}
.y224{bottom:437.477336pt;}
.y2b5{bottom:437.638021pt;}
.y259{bottom:445.477336pt;}
.y54{bottom:446.180362pt;}
.yb9{bottom:446.774129pt;}
.ye1{bottom:446.799729pt;}
.y127{bottom:447.254929pt;}
.y1f6{bottom:447.767049pt;}
.y1c2{bottom:448.142148pt;}
.y17{bottom:448.191162pt;}
.y82{bottom:448.760143pt;}
.y223{bottom:449.477336pt;}
.y2b4{bottom:449.638021pt;}
.y150{bottom:450.257324pt;}
.y161{bottom:452.557617pt;}
.y258{bottom:457.477336pt;}
.y2b3{bottom:461.638021pt;}
.y53{bottom:462.173962pt;}
.yb8{bottom:462.786929pt;}
.ye0{bottom:462.793329pt;}
.y126{bottom:463.248529pt;}
.y1c1{bottom:464.135748pt;}
.y81{bottom:464.753743pt;}
.y16{bottom:468.191162pt;}
.y160{bottom:468.557617pt;}
.y181{bottom:468.576817pt;}
.y257{bottom:469.477336pt;}
.y2b2{bottom:473.638021pt;}
.y14f{bottom:474.157349pt;}
.y222{bottom:477.477336pt;}
.y52{bottom:478.167562pt;}
.yb7{bottom:478.780529pt;}
.ydf{bottom:478.786929pt;}
.y125{bottom:479.242129pt;}
.y1f5{bottom:479.767049pt;}
.y1c0{bottom:480.129348pt;}
.y80{bottom:480.760143pt;}
.y256{bottom:481.477336pt;}
.y15{bottom:484.191162pt;}
.y180{bottom:484.570417pt;}
.y15f{bottom:484.583217pt;}
.y2b1{bottom:485.638021pt;}
.y221{bottom:489.477336pt;}
.y255{bottom:493.477336pt;}
.y51{bottom:494.161162pt;}
.yb6{bottom:494.774129pt;}
.yde{bottom:494.780529pt;}
.y124{bottom:495.235729pt;}
.y14c{bottom:495.771343pt;}
.y1f4{bottom:495.779849pt;}
.y1bf{bottom:496.122948pt;}
.y7f{bottom:496.753743pt;}
.y2b0{bottom:497.638021pt;}
.y14{bottom:500.191162pt;}
.y17f{bottom:500.564017pt;}
.y15e{bottom:500.576817pt;}
.y220{bottom:505.477336pt;}
.y2af{bottom:509.638021pt;}
.y50{bottom:510.154762pt;}
.y14b{bottom:510.435343pt;}
.ydd{bottom:510.774129pt;}
.yb5{bottom:510.780529pt;}
.y123{bottom:511.229329pt;}
.y1f3{bottom:511.773449pt;}
.y1be{bottom:512.116548pt;}
.y7e{bottom:512.772943pt;}
.y13{bottom:516.191162pt;}
.y17e{bottom:516.557617pt;}
.y15d{bottom:516.570417pt;}
.y254{bottom:517.477336pt;}
.y2ae{bottom:521.638021pt;}
.y4f{bottom:526.148362pt;}
.yb4{bottom:526.774129pt;}
.y1f2{bottom:527.767049pt;}
.y1bd{bottom:528.110148pt;}
.y7d{bottom:528.766543pt;}
.y253{bottom:529.477336pt;}
.y12{bottom:532.191162pt;}
.y15c{bottom:532.564017pt;}
.y17d{bottom:532.570417pt;}
.y2ad{bottom:533.638021pt;}
.y21f{bottom:537.477336pt;}
.y252{bottom:541.477336pt;}
.y4e{bottom:542.141962pt;}
.yb3{bottom:542.774129pt;}
.y1f1{bottom:543.767049pt;}
.y1bc{bottom:544.129348pt;}
.y7c{bottom:544.760143pt;}
.y2ac{bottom:545.638021pt;}
.y15b{bottom:548.557617pt;}
.y17c{bottom:548.564017pt;}
.y21e{bottom:549.477336pt;}
.y11{bottom:552.191162pt;}
.y251{bottom:553.477336pt;}
.y13f{bottom:555.364543pt;}
.y2ab{bottom:557.638021pt;}
.y4d{bottom:558.135562pt;}
.ydc{bottom:558.793329pt;}
.yb2{bottom:558.806129pt;}
.y1f0{bottom:559.779849pt;}
.y1bb{bottom:560.122948pt;}
.y7b{bottom:560.753743pt;}
.y21d{bottom:561.477336pt;}
.y15a{bottom:564.557617pt;}
.y250{bottom:565.477336pt;}
.y13e{bottom:566.744019pt;}
.y10{bottom:568.191162pt;}
.y2aa{bottom:569.638021pt;}
.y21c{bottom:573.477336pt;}
.y4c{bottom:574.129162pt;}
.ydb{bottom:574.786929pt;}
.yb1{bottom:574.799729pt;}
.y1ef{bottom:575.773449pt;}
.y1ba{bottom:576.116548pt;}
.y7a{bottom:576.753743pt;}
.y24f{bottom:577.477336pt;}
.y17b{bottom:580.557617pt;}
.y159{bottom:580.576817pt;}
.y2a9{bottom:581.638021pt;}
.yf{bottom:584.191162pt;}
.y21b{bottom:585.477336pt;}
.y14a{bottom:586.358650pt;}
.y24e{bottom:589.477336pt;}
.y4b{bottom:590.122762pt;}
.yda{bottom:590.780529pt;}
.yb0{bottom:590.793329pt;}
.y1ee{bottom:591.767049pt;}
.y1b9{bottom:592.110148pt;}
.y79{bottom:592.760143pt;}
.y2a8{bottom:593.638021pt;}
.y17a{bottom:596.564017pt;}
.y158{bottom:596.570417pt;}
.y21a{bottom:597.477336pt;}
.ye{bottom:600.191162pt;}
.y149{bottom:602.561317pt;}
.y2a7{bottom:605.638021pt;}
.y4a{bottom:606.116362pt;}
.yd9{bottom:606.774129pt;}
.yaf{bottom:606.786929pt;}
.y1ed{bottom:607.805490pt;}
.y1b8{bottom:608.122948pt;}
.y78{bottom:608.753743pt;}
.y219{bottom:609.477336pt;}
.y179{bottom:612.557617pt;}
.y157{bottom:612.564017pt;}
.yd{bottom:616.191162pt;}
.y2a6{bottom:617.638021pt;}
.y148{bottom:618.689317pt;}
.y218{bottom:621.477336pt;}
.y49{bottom:622.109962pt;}
.yae{bottom:622.780529pt;}
.yd8{bottom:622.806170pt;}
.y1ec{bottom:623.799090pt;}
.y1b7{bottom:624.116548pt;}
.y77{bottom:624.753743pt;}
.y156{bottom:628.557617pt;}
.y178{bottom:628.587606pt;}
.y2a5{bottom:629.638021pt;}
.y147{bottom:634.817317pt;}
.yc{bottom:636.191162pt;}
.y48{bottom:638.103562pt;}
.yad{bottom:638.774129pt;}
.yd7{bottom:638.799770pt;}
.y1eb{bottom:639.792690pt;}
.y1b6{bottom:640.110148pt;}
.y2a4{bottom:641.638021pt;}
.y155{bottom:644.557617pt;}
.y177{bottom:644.581206pt;}
.y146{bottom:650.945317pt;}
.yb{bottom:652.191162pt;}
.y2a3{bottom:653.638021pt;}
.y47{bottom:654.097162pt;}
.yac{bottom:654.780529pt;}
.yd6{bottom:654.793370pt;}
.y1ea{bottom:655.786290pt;}
.y1b5{bottom:656.135707pt;}
.y24d{bottom:657.638021pt;}
.y217{bottom:661.483736pt;}
.y76{bottom:663.776635pt;}
.y2a2{bottom:665.638021pt;}
.y145{bottom:667.073317pt;}
.ya{bottom:668.191162pt;}
.y46{bottom:670.090762pt;}
.yab{bottom:670.774129pt;}
.yd5{bottom:670.786970pt;}
.y1e9{bottom:671.779890pt;}
.y1b4{bottom:672.129307pt;}
.y216{bottom:677.477336pt;}
.y2a1{bottom:677.638021pt;}
.y75{bottom:679.770235pt;}
.y144{bottom:683.211984pt;}
.y9{bottom:684.191162pt;}
.y45{bottom:686.084362pt;}
.yaa{bottom:686.774170pt;}
.yd4{bottom:686.780570pt;}
.y1e8{bottom:687.773490pt;}
.y1b3{bottom:688.122907pt;}
.y2a0{bottom:689.638021pt;}
.y215{bottom:693.490095pt;}
.y24c{bottom:693.638021pt;}
.y74{bottom:695.763835pt;}
.y143{bottom:699.339984pt;}
.y10a{bottom:700.697835pt;}
.y29f{bottom:701.638021pt;}
.y44{bottom:702.077962pt;}
.yd3{bottom:702.774170pt;}
.ya9{bottom:702.780570pt;}
.y1e7{bottom:703.767090pt;}
.y1b2{bottom:704.116507pt;}
.y8{bottom:704.191162pt;}
.y1a3{bottom:704.220016pt;}
.y24b{bottom:705.638021pt;}
.y214{bottom:709.483695pt;}
.y73{bottom:711.802235pt;}
.y109{bottom:712.077311pt;}
.y29e{bottom:713.638021pt;}
.y142{bottom:715.467984pt;}
.y43{bottom:718.084362pt;}
.ya8{bottom:718.774170pt;}
.yd2{bottom:718.780570pt;}
.y1e6{bottom:719.786290pt;}
.y1b1{bottom:720.110107pt;}
.y1a2{bottom:720.422683pt;}
.y213{bottom:725.477295pt;}
.y29d{bottom:725.638021pt;}
.y72{bottom:727.795835pt;}
.y24a{bottom:729.638021pt;}
.y115{bottom:731.531984pt;}
.y141{bottom:731.606650pt;}
.y42{bottom:734.077962pt;}
.yd1{bottom:734.774170pt;}
.ya7{bottom:734.780570pt;}
.y1e5{bottom:735.779890pt;}
.y1b0{bottom:736.122907pt;}
.y1a1{bottom:736.561350pt;}
.y29c{bottom:737.638021pt;}
.y212{bottom:741.490095pt;}
.y249{bottom:741.638021pt;}
.y71{bottom:743.789435pt;}
.y114{bottom:747.734650pt;}
.y29b{bottom:749.638021pt;}
.y41{bottom:750.103562pt;}
.ya6{bottom:750.774170pt;}
.y1e4{bottom:751.773490pt;}
.y1af{bottom:752.116507pt;}
.y1a0{bottom:752.689350pt;}
.y211{bottom:757.483695pt;}
.y70{bottom:759.783035pt;}
.y29a{bottom:761.638021pt;}
.y113{bottom:763.873317pt;}
.y248{bottom:765.638021pt;}
.y40{bottom:766.097162pt;}
.yd0{bottom:766.774170pt;}
.ya5{bottom:766.806170pt;}
.y1e3{bottom:767.767090pt;}
.y1ae{bottom:768.110107pt;}
.y7{bottom:768.491211pt;}
.y19f{bottom:768.817350pt;}
.y210{bottom:773.477295pt;}
.y299{bottom:773.638021pt;}
.y6f{bottom:775.776635pt;}
.y247{bottom:777.638021pt;}
.y112{bottom:780.001317pt;}
.y3f{bottom:782.090762pt;}
.ya4{bottom:782.799770pt;}
.y1e2{bottom:783.767090pt;}
.y1ad{bottom:784.116507pt;}
.y19e{bottom:784.945350pt;}
.y298{bottom:785.638021pt;}
.y20f{bottom:789.477295pt;}
.y246{bottom:789.638021pt;}
.y6e{bottom:791.770235pt;}
.y111{bottom:796.129317pt;}
.y297{bottom:797.638021pt;}
.y3e{bottom:798.084362pt;}
.ya3{bottom:798.793370pt;}
.ycf{bottom:798.850374pt;}
.y1e1{bottom:799.779890pt;}
.y1ac{bottom:800.110107pt;}
.y6{bottom:800.513358pt;}
.y19d{bottom:801.073350pt;}
.y245{bottom:801.638021pt;}
.y6d{bottom:807.763835pt;}
.y296{bottom:809.638021pt;}
.y110{bottom:812.267984pt;}
.y244{bottom:813.638021pt;}
.y3d{bottom:814.077962pt;}
.ya2{bottom:814.786970pt;}
.yce{bottom:814.843974pt;}
.y1e0{bottom:815.773490pt;}
.y1ab{bottom:816.148507pt;}
.y19c{bottom:817.212016pt;}
.y295{bottom:821.638021pt;}
.y6c{bottom:823.770235pt;}
.y243{bottom:825.638021pt;}
.y10f{bottom:828.395984pt;}
.y3c{bottom:830.097162pt;}
.ya1{bottom:830.780570pt;}
.ycd{bottom:830.837574pt;}
.y1df{bottom:831.767090pt;}
.y20e{bottom:831.799090pt;}
.y1aa{bottom:832.142107pt;}
.y19b{bottom:833.340016pt;}
.y294{bottom:833.638021pt;}
.y5{bottom:835.169358pt;}
.y242{bottom:837.638021pt;}
.y6b{bottom:839.763835pt;}
.y10e{bottom:844.534650pt;}
.y293{bottom:845.638021pt;}
.y3b{bottom:846.090762pt;}
.ya0{bottom:846.774170pt;}
.ycc{bottom:846.831174pt;}
.y1de{bottom:847.792690pt;}
.y1a9{bottom:848.135707pt;}
.y19a{bottom:849.468016pt;}
.y6a{bottom:855.763835pt;}
.y292{bottom:857.638021pt;}
.y10d{bottom:860.662650pt;}
.y241{bottom:861.638021pt;}
.y3a{bottom:862.084362pt;}
.y9f{bottom:862.780570pt;}
.ycb{bottom:862.824774pt;}
.y1dd{bottom:863.786290pt;}
.y1a8{bottom:864.129307pt;}
.y199{bottom:865.596016pt;}
.y291{bottom:869.638021pt;}
.y4{bottom:869.825358pt;}
.y39{bottom:878.077962pt;}
.y9e{bottom:878.774170pt;}
.yca{bottom:878.818374pt;}
.y1dc{bottom:879.779890pt;}
.y1a7{bottom:880.122907pt;}
.y290{bottom:881.638021pt;}
.y10c{bottom:884.566650pt;}
.y198{bottom:889.500016pt;}
.y240{bottom:893.638021pt;}
.y140{bottom:893.766683pt;}
.y38{bottom:894.084362pt;}
.y69{bottom:894.774170pt;}
.y9d{bottom:894.786970pt;}
.yc9{bottom:894.811974pt;}
.y1db{bottom:895.773490pt;}
.y1a6{bottom:896.116507pt;}
.y2d4{bottom:903.121582pt;}
.y23f{bottom:905.638021pt;}
.y10b{bottom:905.766683pt;}
.y37{bottom:910.077962pt;}
.y68{bottom:910.774170pt;}
.y9c{bottom:910.780570pt;}
.yc8{bottom:910.805574pt;}
.y1da{bottom:911.767090pt;}
.y1a5{bottom:912.110107pt;}
.y2d3{bottom:915.121582pt;}
.y23e{bottom:917.638021pt;}
.y3{bottom:918.544515pt;}
.y1c{bottom:920.666829pt;}
.y36{bottom:926.077962pt;}
.y9b{bottom:926.774170pt;}
.y67{bottom:926.776918pt;}
.yc7{bottom:926.799174pt;}
.y2d2{bottom:927.121582pt;}
.y108{bottom:927.377848pt;}
.y20d{bottom:927.767090pt;}
.y1d9{bottom:927.770663pt;}
.y1a4{bottom:928.110107pt;}
.y23d{bottom:929.638021pt;}
.y2{bottom:988.708515pt;}
.y25{bottom:997.434652pt;}
.y98{bottom:1001.355225pt;}
.y34{bottom:1001.355306pt;}
.y9a{bottom:1001.561768pt;}
.y1{bottom:1001.711182pt;}
.y99{bottom:1002.044515pt;}
.y35{bottom:1002.048639pt;}
.h29{height:9.458097pt;}
.hc{height:12.329333pt;}
.h23{height:24.480000pt;}
.hf{height:24.724000pt;}
.h18{height:24.878933pt;}
.h27{height:25.221780pt;}
.h21{height:26.656000pt;}
.h25{height:26.954667pt;}
.h26{height:27.132000pt;}
.h22{height:28.560000pt;}
.h24{height:31.584000pt;}
.hb{height:32.965333pt;}
.he{height:35.320000pt;}
.h1d{height:35.541333pt;}
.h17{height:35.578667pt;}
.ha{height:36.922667pt;}
.h15{height:37.674667pt;}
.h20{height:38.080000pt;}
.h1f{height:38.920000pt;}
.h3{height:40.618667pt;}
.h10{height:40.661333pt;}
.h14{height:41.514667pt;}
.h2{height:41.984000pt;}
.h1a{height:42.197333pt;}
.h1c{height:42.384000pt;}
.h19{height:46.126998pt;}
.h1e{height:46.127487pt;}
.h9{height:47.093333pt;}
.h13{height:47.472000pt;}
.h12{height:47.741866pt;}
.h11{height:49.653333pt;}
.h8{height:51.893333pt;}
.h7{height:54.329067pt;}
.h6{height:59.728337pt;}
.hd{height:63.111253pt;}
.h4{height:68.570667pt;}
.h16{height:85.674667pt;}
.h1b{height:94.126998pt;}
.h5{height:121.856000pt;}
.h28{height:181.461324pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w2{width:204.579997pt;}
.w3{width:306.455994pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x7{left:-1.097046pt;}
.x0{left:0.000000pt;}
.x1a{left:11.374268pt;}
.x1{left:75.496002pt;}
.x2{left:82.430532pt;}
.x3{left:84.162800pt;}
.xa{left:86.266001pt;}
.x1f{left:95.590535pt;}
.x1c{left:124.044800pt;}
.x1e{left:125.070801pt;}
.xd{left:135.176666pt;}
.xe{left:153.120402pt;}
.xf{left:194.898804pt;}
.x5{left:240.726664pt;}
.xc{left:325.371867pt;}
.x8{left:406.299194pt;}
.x19{left:411.653320pt;}
.xb{left:416.970131pt;}
.x18{left:423.027588pt;}
.x17{left:423.945475pt;}
.x11{left:426.299194pt;}
.x12{left:429.804118pt;}
.x16{left:433.475856pt;}
.x13{left:435.898785pt;}
.x14{left:438.314657pt;}
.x6{left:513.531982pt;}
.x1b{left:535.698120pt;}
.x1d{left:536.724121pt;}
.x10{left:546.738804pt;}
.x15{left:587.513184pt;}
.x4{left:617.715454pt;}
.x9{left:669.671183pt;}
}




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