
    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_094baa953a75dac8df2d6d03.woff')format("woff");}.ff1{font-family:ff1;line-height:1.082031;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_803527edfeb532919a5ea832.woff')format("woff");}.ff2{font-family:ff2;line-height:0.683594;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_2a94a04f2015a1e528d787a5.woff')format("woff");}.ff3{font-family:ff3;line-height:1.090332;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_d4ed6f239fea0dddc7d421ae.woff')format("woff");}.ff4{font-family:ff4;line-height:0.907227;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_fea31084131d43965f18ce87.woff')format("woff");}.ff5{font-family:ff5;line-height:1.099609;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_ee91ba67b49b838c470b7ac9.woff')format("woff");}.ff6{font-family:ff6;line-height:1.082031;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_1d865dc83ebeaa7a30acb2f6.woff')format("woff");}.ff7{font-family:ff7;line-height:1.090332;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_cd7b262ae82227673935722c.woff')format("woff");}.ff8{font-family:ff8;line-height:1.082031;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_37599f5758e1847b83425b1f.woff')format("woff");}.ff9{font-family:ff9;line-height:1.090332;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_e682c644ef349995727855ce.woff')format("woff");}.ffa{font-family:ffa;line-height:0.902344;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_4dfb621a3c09a2933e8504ff.woff')format("woff");}.ffb{font-family:ffb;line-height:0.899414;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_bfde359f2155bccdeee53857.woff')format("woff");}.ffc{font-family:ffc;line-height:0.678711;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-13.980000px;}
.v4{vertical-align:-11.982000px;}
.v6{vertical-align:-10.822200px;}
.v9{vertical-align:-9.121200px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:11.994000px;}
.v2{vertical-align:14.162400px;}
.v3{vertical-align:17.036400px;}
.v1{vertical-align:30.016200px;}
.v7{vertical-align:36.000000px;}
.ls3d{letter-spacing:-8.064000px;}
.lsb{letter-spacing:-7.371000px;}
.ls11{letter-spacing:-2.484000px;}
.ls15{letter-spacing:-2.160000px;}
.ls33{letter-spacing:-2.040000px;}
.ls32{letter-spacing:-1.740000px;}
.ls25{letter-spacing:-1.620000px;}
.ls3{letter-spacing:-1.296000px;}
.ls13{letter-spacing:-0.855000px;}
.ls19{letter-spacing:-0.810000px;}
.ls1c{letter-spacing:-0.759000px;}
.ls37{letter-spacing:-0.690000px;}
.ls1d{letter-spacing:-0.627000px;}
.ls2{letter-spacing:-0.240000px;}
.ls36{letter-spacing:-0.081000px;}
.ls0{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.000300px;}
.ls3b{letter-spacing:0.252000px;}
.ls1e{letter-spacing:0.270000px;}
.ls1f{letter-spacing:0.313200px;}
.ls24{letter-spacing:0.367758px;}
.ls18{letter-spacing:0.414000px;}
.ls26{letter-spacing:0.702000px;}
.ls12{letter-spacing:0.828000px;}
.ls3c{letter-spacing:1.197000px;}
.ls1b{letter-spacing:1.380000px;}
.ls8{letter-spacing:2.400000px;}
.ls1a{letter-spacing:2.829000px;}
.lsc{letter-spacing:3.519000px;}
.ls5{letter-spacing:3.600000px;}
.ls39{letter-spacing:3.672900px;}
.ls20{letter-spacing:3.726000px;}
.ls9{letter-spacing:4.125000px;}
.ls6{letter-spacing:4.200000px;}
.ls16{letter-spacing:4.278000px;}
.lse{letter-spacing:4.650000px;}
.ls10{letter-spacing:4.809300px;}
.lsf{letter-spacing:4.830000px;}
.ls31{letter-spacing:5.550000px;}
.ls4{letter-spacing:5.760000px;}
.lsa{letter-spacing:5.880000px;}
.ls1{letter-spacing:6.000000px;}
.ls38{letter-spacing:6.300000px;}
.ls7{letter-spacing:7.176000px;}
.ls14{letter-spacing:8.160156px;}
.ls17{letter-spacing:8.160756px;}
.ls3a{letter-spacing:8.316000px;}
.ls3e{letter-spacing:8.820000px;}
.ls21{letter-spacing:137.160000px;}
.ls2a{letter-spacing:218.202000px;}
.ls2b{letter-spacing:231.840000px;}
.ls35{letter-spacing:437.862000px;}
.ls29{letter-spacing:501.126000px;}
.ls2c{letter-spacing:604.080000px;}
.ls27{letter-spacing:641.340000px;}
.ls23{letter-spacing:656.712000px;}
.ls22{letter-spacing:675.132000px;}
.ls2e{letter-spacing:691.680000px;}
.ls30{letter-spacing:768.870000px;}
.ls28{letter-spacing:836.520000px;}
.ls2d{letter-spacing:871.296000px;}
.ls34{letter-spacing:1023.906000px;}
.ls2f{letter-spacing:1202.766000px;}
.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;}
}
.ws5{word-spacing:-77.544000px;}
.ws6{word-spacing:-76.248000px;}
.ws7{word-spacing:-60.312000px;}
.ws83{word-spacing:-59.400000px;}
.ws26{word-spacing:-58.500000px;}
.ws30{word-spacing:-58.158000px;}
.ws94{word-spacing:-58.077000px;}
.wse{word-spacing:-57.975000px;}
.wsa9{word-spacing:-54.054000px;}
.ws9b{word-spacing:-53.550000px;}
.wsa0{word-spacing:-51.534000px;}
.ws1a{word-spacing:-50.787000px;}
.ws1b{word-spacing:-49.542000px;}
.ws2{word-spacing:-49.080000px;}
.ws13{word-spacing:-48.960000px;}
.ws96{word-spacing:-48.852000px;}
.ws8{word-spacing:-48.840000px;}
.ws75{word-spacing:-48.783000px;}
.ws29{word-spacing:-47.058000px;}
.wsa8{word-spacing:-46.431000px;}
.wsa3{word-spacing:-45.486000px;}
.ws1{word-spacing:-45.234000px;}
.ws3{word-spacing:-43.080000px;}
.ws4{word-spacing:-42.840000px;}
.ws81{word-spacing:-39.474000px;}
.wsb7{word-spacing:-39.022200px;}
.wsa{word-spacing:-38.772000px;}
.ws68{word-spacing:-38.226000px;}
.ws31{word-spacing:-38.157000px;}
.ws10{word-spacing:-38.064000px;}
.ws72{word-spacing:-37.962000px;}
.ws78{word-spacing:-37.950000px;}
.ws9c{word-spacing:-37.863000px;}
.ws36{word-spacing:-37.674000px;}
.ws35{word-spacing:-37.667100px;}
.ws1c{word-spacing:-37.549800px;}
.wsb8{word-spacing:-37.447200px;}
.wsa7{word-spacing:-37.170000px;}
.ws79{word-spacing:-37.122000px;}
.ws77{word-spacing:-36.984000px;}
.wsd{word-spacing:-36.864000px;}
.wsbb{word-spacing:-36.395100px;}
.ws93{word-spacing:-36.225000px;}
.ws95{word-spacing:-35.880000px;}
.ws71{word-spacing:-35.514300px;}
.ws1f{word-spacing:-34.776000px;}
.ws37{word-spacing:-34.356000px;}
.ws28{word-spacing:-34.313700px;}
.ws1e{word-spacing:-34.244700px;}
.wsb4{word-spacing:-34.209000px;}
.wsae{word-spacing:-34.083000px;}
.wsa2{word-spacing:-33.988500px;}
.wsa1{word-spacing:-33.957000px;}
.wsab{word-spacing:-33.327000px;}
.ws8f{word-spacing:-33.300000px;}
.ws32{word-spacing:-33.251100px;}
.wsb6{word-spacing:-32.886000px;}
.wsaf{word-spacing:-32.823000px;}
.ws33{word-spacing:-32.637000px;}
.ws2b{word-spacing:-32.002200px;}
.ws17{word-spacing:-31.872000px;}
.ws9d{word-spacing:-31.632300px;}
.ws9{word-spacing:-31.098000px;}
.wsaa{word-spacing:-30.870000px;}
.wsbe{word-spacing:-30.402000px;}
.wsa4{word-spacing:-30.044322px;}
.wsac{word-spacing:-28.917000px;}
.ws20{word-spacing:-28.882986px;}
.ws8e{word-spacing:-28.860000px;}
.ws8d{word-spacing:-28.800000px;}
.ws14{word-spacing:-28.746000px;}
.wsba{word-spacing:-28.413000px;}
.wsbc{word-spacing:-26.775000px;}
.ws91{word-spacing:-24.486000px;}
.ws90{word-spacing:-24.480000px;}
.ws21{word-spacing:-23.218500px;}
.ws70{word-spacing:-21.672900px;}
.wsb5{word-spacing:-21.659400px;}
.ws34{word-spacing:-20.217000px;}
.ws67{word-spacing:-19.803000px;}
.ws2a{word-spacing:-18.906000px;}
.ws69{word-spacing:-18.247800px;}
.ws1d{word-spacing:-17.043000px;}
.ws2f{word-spacing:-16.514700px;}
.ws64{word-spacing:-16.362000px;}
.wsad{word-spacing:-16.304400px;}
.ws6d{word-spacing:-16.200000px;}
.wsb0{word-spacing:-15.561000px;}
.ws76{word-spacing:-15.502500px;}
.wsb9{word-spacing:-15.069600px;}
.ws16{word-spacing:-14.820000px;}
.ws2d{word-spacing:-14.580000px;}
.ws22{word-spacing:-14.443920px;}
.ws2c{word-spacing:-14.443320px;}
.ws23{word-spacing:-13.338000px;}
.ws7e{word-spacing:-13.200000px;}
.ws85{word-spacing:-13.080000px;}
.ws87{word-spacing:-12.780000px;}
.ws7d{word-spacing:-12.660000px;}
.ws6b{word-spacing:-11.303787px;}
.ws63{word-spacing:-11.178000px;}
.ws15{word-spacing:-9.829380px;}
.ws9f{word-spacing:-7.969500px;}
.ws9e{word-spacing:-7.925400px;}
.ws19{word-spacing:-6.306000px;}
.wsb1{word-spacing:-6.300000px;}
.wsb{word-spacing:0.000000px;}
.ws82{word-spacing:0.552000px;}
.wsa6{word-spacing:1.071000px;}
.ws74{word-spacing:1.725000px;}
.ws99{word-spacing:1.863000px;}
.ws73{word-spacing:2.001000px;}
.ws7a{word-spacing:2.808000px;}
.ws62{word-spacing:5.100084px;}
.ws98{word-spacing:5.244000px;}
.ws12{word-spacing:5.268000px;}
.wsa5{word-spacing:5.607000px;}
.ws97{word-spacing:6.003000px;}
.ws24{word-spacing:7.176000px;}
.wsbd{word-spacing:7.623000px;}
.ws25{word-spacing:8.211000px;}
.ws6c{word-spacing:9.366000px;}
.ws7b{word-spacing:10.146000px;}
.wsb2{word-spacing:10.458000px;}
.ws38{word-spacing:12.180000px;}
.ws3e{word-spacing:24.240000px;}
.ws57{word-spacing:27.180000px;}
.ws4d{word-spacing:27.540000px;}
.ws65{word-spacing:27.704160px;}
.ws61{word-spacing:27.720000px;}
.ws45{word-spacing:39.600000px;}
.ws59{word-spacing:42.540000px;}
.wsc{word-spacing:43.445160px;}
.ws11{word-spacing:47.010600px;}
.ws4f{word-spacing:57.900000px;}
.ws3f{word-spacing:60.822000px;}
.ws39{word-spacing:60.828000px;}
.ws52{word-spacing:63.762000px;}
.ws48{word-spacing:64.122000px;}
.ws5c{word-spacing:64.302000px;}
.ws50{word-spacing:77.154000px;}
.ws5e{word-spacing:103.500000px;}
.ws3b{word-spacing:103.740000px;}
.ws47{word-spacing:105.600000px;}
.ws54{word-spacing:108.120000px;}
.ws41{word-spacing:108.180000px;}
.ws88{word-spacing:109.950000px;}
.ws4a{word-spacing:110.880000px;}
.ws4e{word-spacing:132.600000px;}
.ws7f{word-spacing:132.780000px;}
.ws5b{word-spacing:135.240000px;}
.ws51{word-spacing:135.660000px;}
.ws43{word-spacing:140.520000px;}
.ws5a{word-spacing:154.038000px;}
.ws3d{word-spacing:156.840000px;}
.ws46{word-spacing:159.822000px;}
.ws4b{word-spacing:161.454000px;}
.ws4c{word-spacing:168.360000px;}
.ws8b{word-spacing:183.624000px;}
.ws56{word-spacing:185.700000px;}
.ws60{word-spacing:186.060000px;}
.ws5f{word-spacing:191.622000px;}
.ws58{word-spacing:194.484000px;}
.ws18{word-spacing:206.052000px;}
.ws49{word-spacing:210.594000px;}
.ws44{word-spacing:215.268000px;}
.ws3c{word-spacing:231.300000px;}
.ws55{word-spacing:236.550000px;}
.ws42{word-spacing:243.540000px;}
.ws5d{word-spacing:250.962000px;}
.ws53{word-spacing:289.878000px;}
.ws6e{word-spacing:302.304000px;}
.ws3a{word-spacing:303.954000px;}
.ws40{word-spacing:307.656000px;}
.ws8c{word-spacing:330.036000px;}
.ws6f{word-spacing:360.840000px;}
.ws80{word-spacing:387.510000px;}
.ws84{word-spacing:399.960000px;}
.wsb3{word-spacing:400.740000px;}
.ws27{word-spacing:401.100000px;}
.ws9a{word-spacing:401.400000px;}
.ws66{word-spacing:401.520000px;}
.ws92{word-spacing:401.820000px;}
.ws6a{word-spacing:401.880000px;}
.ws2e{word-spacing:403.200000px;}
.wsf{word-spacing:404.100000px;}
.ws86{word-spacing:421.920000px;}
.ws89{word-spacing:493.122000px;}
.ws0{word-spacing:535.320000px;}
.ws8a{word-spacing:728.754000px;}
.ws7c{word-spacing:816.102000px;}
._11{margin-left:-19.389000px;}
._30{margin-left:-13.520400px;}
._a{margin-left:-9.396000px;}
._e{margin-left:-7.603800px;}
._8{margin-left:-5.864400px;}
._9{margin-left:-4.009200px;}
._2{margin-left:-2.400000px;}
._4{margin-left:-1.014000px;}
._3{width:1.002000px;}
._0{width:2.400000px;}
._b{width:3.679200px;}
._c{width:4.752000px;}
._5{width:5.952000px;}
._6{width:7.338000px;}
._7{width:8.490000px;}
._d{width:10.320000px;}
._10{width:11.511000px;}
._2e{width:12.921900px;}
._2d{width:14.520000px;}
._2f{width:17.550600px;}
._33{width:20.926800px;}
._17{width:23.869200px;}
._12{width:25.320000px;}
._34{width:26.648700px;}
._31{width:28.161000px;}
._32{width:29.547000px;}
._13{width:43.445160px;}
._1d{width:69.162000px;}
._27{width:80.694000px;}
._24{width:93.168000px;}
._2a{width:99.054000px;}
._25{width:103.374000px;}
._2c{width:107.754000px;}
._2b{width:114.600000px;}
._1c{width:140.640000px;}
._28{width:171.660000px;}
._20{width:174.780000px;}
._29{width:177.060000px;}
._21{width:179.994000px;}
._1f{width:183.294000px;}
._1e{width:195.894000px;}
._23{width:198.900000px;}
._1b{width:204.294000px;}
._1a{width:205.974000px;}
._26{width:228.294000px;}
._22{width:236.934000px;}
._16{width:430.770000px;}
._18{width:476.874000px;}
._19{width:517.860000px;}
._f{width:955.711200px;}
._15{width:958.831200px;}
._1{width:962.881200px;}
._14{width:964.861200px;}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:31.482000px;}
.fsa{font-size:34.980000px;}
.fsf{font-size:36.729000px;}
.fsd{font-size:40.227000px;}
.fs9{font-size:42.000000px;}
.fs8{font-size:48.000000px;}
.fs7{font-size:54.000000px;}
.fse{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs4{font-size:62.964000px;}
.fs2{font-size:63.000000px;}
.fsc{font-size:69.000000px;}
.fs1{font-size:75.000000px;}
.fsb{font-size:81.000000px;}
.fs5{font-size:84.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y27b{bottom:106.229100px;}
.y43{bottom:106.232100px;}
.y158{bottom:106.281450px;}
.y67{bottom:106.284300px;}
.y17b{bottom:106.284450px;}
.y23f{bottom:106.287600px;}
.yae{bottom:106.290300px;}
.yf8{bottom:106.290450px;}
.y1f{bottom:106.296450px;}
.y21c{bottom:106.298250px;}
.y25c{bottom:106.335900px;}
.yd3{bottom:109.294800px;}
.y1fe{bottom:109.294950px;}
.y157{bottom:123.534450px;}
.y66{bottom:123.537300px;}
.y17a{bottom:123.537450px;}
.yad{bottom:123.543300px;}
.yf7{bottom:123.543450px;}
.y1e{bottom:123.549450px;}
.y1d{bottom:126.544950px;}
.y23e{bottom:126.694350px;}
.y21b{bottom:126.758250px;}
.y27a{bottom:126.893100px;}
.y42{bottom:126.949350px;}
.yd2{bottom:127.795200px;}
.y1de{bottom:128.394750px;}
.y25b{bottom:135.725400px;}
.y1dd{bottom:137.394750px;}
.y156{bottom:140.787450px;}
.y65{bottom:140.790300px;}
.y179{bottom:140.790450px;}
.yac{bottom:140.796300px;}
.yf6{bottom:140.796450px;}
.yd1{bottom:145.048200px;}
.y11b{bottom:145.048500px;}
.y23d{bottom:147.101100px;}
.y41{bottom:147.666600px;}
.y1fd{bottom:153.287250px;}
.y279{bottom:156.062100px;}
.y25a{bottom:156.609900px;}
.y155{bottom:158.040450px;}
.y64{bottom:158.043300px;}
.y178{bottom:158.043450px;}
.yab{bottom:158.049300px;}
.yaa{bottom:161.044800px;}
.yf5{bottom:161.044950px;}
.yd0{bottom:162.301200px;}
.ycf{bottom:165.296700px;}
.y11a{bottom:165.297000px;}
.y23c{bottom:167.507850px;}
.y21a{bottom:167.677350px;}
.y40{bottom:168.383850px;}
.y1dc{bottom:169.119750px;}
.y1c{bottom:170.573550px;}
.y1fc{bottom:174.077250px;}
.y154{bottom:175.293450px;}
.y63{bottom:175.296300px;}
.y177{bottom:175.296450px;}
.y278{bottom:176.726100px;}
.y259{bottom:177.494400px;}
.y1db{bottom:178.119750px;}
.yf4{bottom:179.548500px;}
.ya9{bottom:182.546700px;}
.y119{bottom:183.794700px;}
.y23b{bottom:187.914600px;}
.y219{bottom:188.135850px;}
.y3f{bottom:189.101100px;}
.y1b{bottom:190.268550px;}
.y153{bottom:192.546450px;}
.y62{bottom:195.544800px;}
.y176{bottom:195.544950px;}
.yf3{bottom:199.797000px;}
.y118{bottom:201.047700px;}
.y277{bottom:205.895100px;}
.y258{bottom:206.883900px;}
.y23a{bottom:208.321350px;}
.y218{bottom:208.594350px;}
.yce{bottom:209.324850px;}
.y3e{bottom:209.818350px;}
.y1da{bottom:209.844750px;}
.y1a{bottom:209.963550px;}
.y152{bottom:212.794950px;}
.y87{bottom:214.042200px;}
.y1fb{bottom:215.642250px;}
.yf2{bottom:218.297700px;}
.y117{bottom:218.300700px;}
.ya8{bottom:226.504650px;}
.y276{bottom:226.559100px;}
.y257{bottom:227.768400px;}
.y239{bottom:228.728100px;}
.y217{bottom:229.052850px;}
.y19{bottom:229.658550px;}
.y3d{bottom:230.535600px;}
.ycd{bottom:230.697600px;}
.y86{bottom:231.295200px;}
.y132{bottom:232.155600px;}
.y1d9{bottom:232.569750px;}
.yf1{bottom:235.550700px;}
.y1fa{bottom:236.432250px;}
.y116{bottom:238.549200px;}
.y198{bottom:239.383200px;}
.y175{bottom:239.550300px;}
.y61{bottom:239.557200px;}
.ya7{bottom:246.997650px;}
.y275{bottom:247.223100px;}
.y85{bottom:248.548200px;}
.y238{bottom:249.134850px;}
.y18{bottom:249.353550px;}
.y1d8{bottom:250.569750px;}
.y3c{bottom:251.252850px;}
.ycc{bottom:252.070350px;}
.y131{bottom:252.407100px;}
.yf0{bottom:255.799200px;}
.y151{bottom:256.826100px;}
.y115{bottom:257.049750px;}
.y256{bottom:257.157900px;}
.y1f9{bottom:257.222250px;}
.y174{bottom:260.112300px;}
.y197{bottom:262.256700px;}
.y60{bottom:263.241450px;}
.y1b5{bottom:263.624550px;}
.ya6{bottom:267.490650px;}
.y1d6{bottom:268.569750px;}
.y84{bottom:268.796700px;}
.y17{bottom:269.048550px;}
.y237{bottom:269.541600px;}
.y2af{bottom:269.928900px;}
.y216{bottom:269.954700px;}
.y3b{bottom:271.970100px;}
.y130{bottom:272.658600px;}
.ycb{bottom:273.443100px;}
.y114{bottom:274.302750px;}
.y274{bottom:276.392100px;}
.y150{bottom:277.215600px;}
.y1d3{bottom:277.569750px;}
.y255{bottom:278.042400px;}
.y173{bottom:280.667850px;}
.y196{bottom:285.130200px;}
.y1b4{bottom:286.349550px;}
.y1d5{bottom:286.569750px;}
.y5f{bottom:286.925700px;}
.ya5{bottom:287.983650px;}
.y16{bottom:288.743550px;}
.y236{bottom:289.948350px;}
.y2ae{bottom:290.178900px;}
.y215{bottom:290.414700px;}
.y12f{bottom:292.910100px;}
.y113{bottom:294.551250px;}
.yca{bottom:294.830550px;}
.y273{bottom:297.056100px;}
.y14f{bottom:297.605100px;}
.y1f8{bottom:298.787250px;}
.y254{bottom:298.935750px;}
.yef{bottom:299.823000px;}
.y172{bottom:301.229850px;}
.y1d4{bottom:304.569750px;}
.y195{bottom:308.003700px;}
.y15{bottom:308.438550px;}
.ya4{bottom:308.476650px;}
.y1b3{bottom:309.074550px;}
.y235{bottom:310.355100px;}
.y2ad{bottom:310.428900px;}
.y5e{bottom:310.609950px;}
.y214{bottom:310.874700px;}
.y83{bottom:312.927600px;}
.y12e{bottom:313.161600px;}
.y3a{bottom:313.938750px;}
.yc9{bottom:316.203300px;}
.y14e{bottom:317.994600px;}
.y1f7{bottom:319.577250px;}
.yee{bottom:321.144000px;}
.y1d7{bottom:322.569750px;}
.y272{bottom:326.225100px;}
.y1b1{bottom:327.074550px;}
.y14{bottom:328.133550px;}
.y253{bottom:328.325250px;}
.ya3{bottom:328.969650px;}
.y2ac{bottom:330.678900px;}
.y234{bottom:330.761850px;}
.y194{bottom:330.877200px;}
.y213{bottom:331.334700px;}
.y293{bottom:332.540850px;}
.y12d{bottom:333.413100px;}
.y82{bottom:333.989850px;}
.y5d{bottom:334.294200px;}
.yc8{bottom:337.576050px;}
.y14d{bottom:338.384100px;}
.yed{bottom:342.465000px;}
.y171{bottom:343.050750px;}
.y1b2{bottom:345.074550px;}
.y1d2{bottom:345.294750px;}
.y271{bottom:346.889100px;}
.y13{bottom:347.828550px;}
.y252{bottom:349.218750px;}
.ya2{bottom:349.462650px;}
.y233{bottom:351.168600px;}
.y292{bottom:352.795350px;}
.y12c{bottom:353.664600px;}
.y193{bottom:353.750700px;}
.y81{bottom:355.052100px;}
.y5c{bottom:357.978450px;}
.y14c{bottom:358.773600px;}
.yc7{bottom:358.948800px;}
.y112{bottom:359.483400px;}
.y1f6{bottom:361.088250px;}
.y2ab{bottom:363.678900px;}
.y170{bottom:367.350750px;}
.y12{bottom:367.523550px;}
.y270{bottom:367.553100px;}
.y1b0{bottom:367.799550px;}
.y1d1{bottom:368.019750px;}
.ya1{bottom:369.955650px;}
.y232{bottom:371.575350px;}
.y212{bottom:372.254700px;}
.y12b{bottom:373.916100px;}
.y80{bottom:376.114350px;}
.y192{bottom:376.624200px;}
.y39{bottom:376.659300px;}
.y251{bottom:378.608250px;}
.y14b{bottom:379.163100px;}
.yc6{bottom:380.321550px;}
.y111{bottom:380.373150px;}
.y291{bottom:381.554850px;}
.y5b{bottom:381.662700px;}
.y1f5{bottom:381.874500px;}
.y1ae{bottom:385.799550px;}
.y1cf{bottom:386.019750px;}
.y26f{bottom:388.217100px;}
.ya0{bottom:390.448650px;}
.y231{bottom:391.982100px;}
.y211{bottom:392.714700px;}
.y12a{bottom:394.167600px;}
.y7f{bottom:397.176600px;}
.y38{bottom:398.124300px;}
.y191{bottom:399.497700px;}
.y250{bottom:399.528300px;}
.y14a{bottom:399.552600px;}
.y11{bottom:399.968550px;}
.y110{bottom:401.262900px;}
.yc5{bottom:401.694300px;}
.y290{bottom:401.809350px;}
.y1f4{bottom:402.660750px;}
.y1af{bottom:403.799550px;}
.yec{bottom:403.853550px;}
.y1d0{bottom:404.019750px;}
.y2aa{bottom:405.183900px;}
.y5a{bottom:405.346950px;}
.y9f{bottom:410.941650px;}
.y230{bottom:412.388850px;}
.y210{bottom:413.174700px;}
.y129{bottom:414.419100px;}
.y26e{bottom:417.386100px;}
.y7e{bottom:418.238850px;}
.y37{bottom:419.527800px;}
.y149{bottom:419.942100px;}
.yeb{bottom:421.853550px;}
.y10f{bottom:422.152650px;}
.y190{bottom:422.371200px;}
.yc4{bottom:423.111300px;}
.y1f3{bottom:423.447000px;}
.y2a9{bottom:424.683900px;}
.y1ad{bottom:426.524550px;}
.y1ce{bottom:426.744750px;}
.y24f{bottom:428.917800px;}
.y59{bottom:429.016350px;}
.y16f{bottom:429.814050px;}
.y28f{bottom:430.568850px;}
.y9e{bottom:431.434650px;}
.y22f{bottom:432.795600px;}
.y128{bottom:434.670600px;}
.y1cd{bottom:435.744750px;}
.y26d{bottom:438.050100px;}
.y7d{bottom:439.301100px;}
.y36{bottom:439.492800px;}
.y148{bottom:440.331600px;}
.y10e{bottom:443.042400px;}
.y2a8{bottom:444.183900px;}
.y1f2{bottom:444.233250px;}
.yc3{bottom:444.484050px;}
.y1ab{bottom:444.524550px;}
.yea{bottom:444.578550px;}
.y18f{bottom:445.244700px;}
.y24e{bottom:449.802300px;}
.y16e{bottom:450.376050px;}
.y28e{bottom:450.823350px;}
.y9d{bottom:451.927650px;}
.y58{bottom:452.700600px;}
.y22e{bottom:453.202350px;}
.y20f{bottom:454.094700px;}
.y127{bottom:454.922100px;}
.y10{bottom:457.932450px;}
.y26c{bottom:458.714100px;}
.y35{bottom:459.457800px;}
.y7c{bottom:460.363350px;}
.y147{bottom:460.721100px;}
.y1ac{bottom:462.524550px;}
.y2a7{bottom:463.683900px;}
.y10d{bottom:463.940250px;}
.y1f1{bottom:465.019500px;}
.yc2{bottom:465.856800px;}
.ye9{bottom:467.303550px;}
.y1cc{bottom:467.469750px;}
.y18e{bottom:468.118200px;}
.y16d{bottom:470.938050px;}
.y28d{bottom:471.077850px;}
.y9c{bottom:472.420650px;}
.y22d{bottom:473.609100px;}
.y20e{bottom:474.554700px;}
.y126{bottom:475.173600px;}
.y57{bottom:476.384850px;}
.y24d{bottom:479.191800px;}
.y26b{bottom:479.378100px;}
.y34{bottom:479.422800px;}
.y146{bottom:481.110600px;}
.y7b{bottom:481.425600px;}
.y2a6{bottom:483.183900px;}
.y10c{bottom:484.830000px;}
.yf{bottom:485.127450px;}
.y1aa{bottom:485.249550px;}
.y1f0{bottom:485.805750px;}
.yc1{bottom:487.229550px;}
.ye8{bottom:490.028550px;}
.y1cb{bottom:490.194750px;}
.y18d{bottom:490.991700px;}
.y16c{bottom:491.500050px;}
.y9b{bottom:492.913650px;}
.y22c{bottom:494.015850px;}
.y20d{bottom:495.014700px;}
.y125{bottom:495.425100px;}
.y1ca{bottom:499.194750px;}
.y33{bottom:499.387800px;}
.y28c{bottom:499.837350px;}
.y56{bottom:500.069100px;}
.y24c{bottom:500.076300px;}
.y145{bottom:501.500100px;}
.y7a{bottom:502.487850px;}
.y2a5{bottom:502.683900px;}
.y1a9{bottom:503.249550px;}
.y10b{bottom:505.747950px;}
.y1ef{bottom:506.592000px;}
.y26a{bottom:508.547100px;}
.yc0{bottom:508.602300px;}
.y16b{bottom:512.062050px;}
.y1a6{bottom:512.249550px;}
.ye{bottom:512.322450px;}
.ye7{bottom:512.753550px;}
.y9a{bottom:513.406650px;}
.y18c{bottom:513.865200px;}
.y32{bottom:519.352800px;}
.y28b{bottom:520.091850px;}
.y1a8{bottom:521.249550px;}
.y144{bottom:521.889600px;}
.y2a4{bottom:522.183900px;}
.y79{bottom:523.550100px;}
.y55{bottom:523.753350px;}
.y10a{bottom:526.637700px;}
.y1ee{bottom:527.378250px;}
.y269{bottom:529.211100px;}
.y24b{bottom:529.465800px;}
.ybf{bottom:529.975050px;}
.y1c9{bottom:530.919750px;}
.y16a{bottom:532.624050px;}
.y99{bottom:533.827350px;}
.ye6{bottom:535.478550px;}
.y22b{bottom:535.681800px;}
.y20c{bottom:535.934700px;}
.y18b{bottom:536.738700px;}
.y124{bottom:536.942400px;}
.y1a7{bottom:539.249550px;}
.y31{bottom:539.317800px;}
.y28a{bottom:540.346350px;}
.y2a3{bottom:541.683900px;}
.y143{bottom:542.279100px;}
.y78{bottom:544.612350px;}
.y54{bottom:547.437600px;}
.y109{bottom:547.527450px;}
.y1ed{bottom:548.164500px;}
.y268{bottom:549.875100px;}
.y24a{bottom:550.350300px;}
.ybe{bottom:551.347800px;}
.y169{bottom:553.186050px;}
.y1c8{bottom:553.644750px;}
.y98{bottom:554.320350px;}
.y20b{bottom:556.394700px;}
.ye5{bottom:558.203550px;}
.y30{bottom:559.282800px;}
.y18a{bottom:559.612200px;}
.yd{bottom:560.764800px;}
.y123{bottom:560.938650px;}
.y2a2{bottom:561.183900px;}
.y1a5{bottom:561.974550px;}
.y1c7{bottom:562.644750px;}
.y77{bottom:565.674600px;}
.y108{bottom:568.417200px;}
.y1ec{bottom:568.950750px;}
.y289{bottom:569.105850px;}
.y1a4{bottom:570.974550px;}
.y53{bottom:571.121850px;}
.y249{bottom:571.234800px;}
.ybd{bottom:572.720550px;}
.y168{bottom:573.748050px;}
.y97{bottom:574.813350px;}
.y20a{bottom:576.854700px;}
.y267{bottom:579.044100px;}
.y2f{bottom:579.247800px;}
.y2a1{bottom:580.683900px;}
.ye4{bottom:580.928550px;}
.y189{bottom:582.485700px;}
.y122{bottom:584.934900px;}
.y76{bottom:586.736850px;}
.y107{bottom:589.306950px;}
.y1eb{bottom:589.737000px;}
.yc{bottom:592.462800px;}
.ybc{bottom:594.093300px;}
.y167{bottom:594.310050px;}
.y1c6{bottom:594.369750px;}
.y52{bottom:594.806100px;}
.y96{bottom:595.306350px;}
.y288{bottom:597.865350px;}
.y22a{bottom:598.097700px;}
.y2e{bottom:599.167200px;}
.y2a0{bottom:600.183900px;}
.y248{bottom:600.624300px;}
.y142{bottom:602.695350px;}
.y1a3{bottom:602.699550px;}
.y1c5{bottom:603.369750px;}
.ye2{bottom:603.653550px;}
.y188{bottom:605.359200px;}
.y75{bottom:607.799100px;}
.y106{bottom:610.196700px;}
.y1ea{bottom:610.523250px;}
.y1a2{bottom:611.699550px;}
.y166{bottom:614.872050px;}
.ybb{bottom:615.466050px;}
.y95{bottom:615.799350px;}
.y209{bottom:617.773500px;}
.y287{bottom:618.119850px;}
.y51{bottom:618.490350px;}
.y229{bottom:618.504450px;}
.y2d{bottom:619.132200px;}
.y29f{bottom:619.683900px;}
.y140{bottom:620.695350px;}
.ye3{bottom:621.653550px;}
.ye1{bottom:621.666600px;}
.yb{bottom:624.160800px;}
.y187{bottom:628.232700px;}
.y74{bottom:628.861350px;}
.y105{bottom:631.086450px;}
.y1e9{bottom:631.309500px;}
.y1c4{bottom:635.094750px;}
.y165{bottom:635.434050px;}
.y94{bottom:636.292350px;}
.yba{bottom:636.838800px;}
.y208{bottom:638.232000px;}
.y141{bottom:638.695350px;}
.y228{bottom:638.911200px;}
.y2c{bottom:639.097200px;}
.y29e{bottom:639.189750px;}
.y50{bottom:642.174600px;}
.y1a1{bottom:643.424550px;}
.y1c3{bottom:644.094750px;}
.ye0{bottom:644.391600px;}
.y286{bottom:646.879350px;}
.y121{bottom:647.195100px;}
.y73{bottom:649.923600px;}
.y186{bottom:651.106200px;}
.y104{bottom:652.016400px;}
.y1e8{bottom:652.095750px;}
.y1a0{bottom:652.424550px;}
.ya{bottom:655.858800px;}
.y164{bottom:655.996050px;}
.y93{bottom:656.785350px;}
.yb9{bottom:658.211550px;}
.y29d{bottom:658.689750px;}
.y207{bottom:658.690500px;}
.y2b{bottom:659.062200px;}
.y227{bottom:659.317950px;}
.y13f{bottom:661.420350px;}
.y4f{bottom:665.858850px;}
.ydf{bottom:667.116600px;}
.y285{bottom:667.133850px;}
.y120{bottom:667.446600px;}
.y72{bottom:670.985850px;}
.y266{bottom:671.543850px;}
.y1e7{bottom:672.882000px;}
.y103{bottom:672.906150px;}
.y185{bottom:673.979700px;}
.y1c1{bottom:675.819750px;}
.ydc{bottom:676.116600px;}
.y163{bottom:676.558050px;}
.y92{bottom:677.278350px;}
.y29c{bottom:678.189750px;}
.y2a{bottom:679.027200px;}
.y13d{bottom:679.420350px;}
.yb8{bottom:679.584300px;}
.y226{bottom:679.724700px;}
.y19f{bottom:684.149550px;}
.yde{bottom:685.116600px;}
.y284{bottom:687.388350px;}
.y9{bottom:687.556800px;}
.y11f{bottom:687.698100px;}
.y4e{bottom:689.543100px;}
.y71{bottom:692.048100px;}
.y265{bottom:692.207850px;}
.y1e6{bottom:693.668250px;}
.y102{bottom:693.795900px;}
.y247{bottom:693.803850px;}
.y1c0{bottom:693.819750px;}
.ydb{bottom:694.116600px;}
.y184{bottom:696.853200px;}
.y162{bottom:697.120050px;}
.y13e{bottom:697.420350px;}
.y29b{bottom:697.689750px;}
.y91{bottom:697.771350px;}
.y29{bottom:698.992200px;}
.y206{bottom:699.598800px;}
.y225{bottom:700.131450px;}
.yb7{bottom:700.957050px;}
.y1c2{bottom:702.819750px;}
.ydd{bottom:703.116600px;}
.y11e{bottom:707.949600px;}
.y1be{bottom:711.819750px;}
.y264{bottom:712.871850px;}
.y70{bottom:713.110350px;}
.y4d{bottom:713.227350px;}
.y19e{bottom:714.447900px;}
.y1e5{bottom:714.454500px;}
.y101{bottom:714.685650px;}
.y246{bottom:714.693600px;}
.y283{bottom:716.147850px;}
.y29a{bottom:717.189750px;}
.y161{bottom:717.682050px;}
.y90{bottom:718.264350px;}
.y28{bottom:718.957200px;}
.y8{bottom:719.254800px;}
.y183{bottom:719.726700px;}
.y205{bottom:720.058800px;}
.y13a{bottom:720.145350px;}
.y224{bottom:720.538200px;}
.yb6{bottom:722.329800px;}
.y11d{bottom:728.201100px;}
.y1bf{bottom:729.819750px;}
.y263{bottom:733.535850px;}
.yda{bottom:733.668600px;}
.y6f{bottom:734.172600px;}
.y19d{bottom:734.757900px;}
.y100{bottom:735.575400px;}
.y245{bottom:735.583350px;}
.y282{bottom:736.402350px;}
.y299{bottom:736.689750px;}
.y4c{bottom:736.911600px;}
.y139{bottom:738.145350px;}
.y160{bottom:738.244050px;}
.y8f{bottom:738.757350px;}
.y223{bottom:740.944950px;}
.y182{bottom:742.600200px;}
.yb5{bottom:743.702550px;}
.y13c{bottom:747.145350px;}
.y11c{bottom:748.452600px;}
.y27{bottom:751.672200px;}
.y1bd{bottom:752.544750px;}
.yd9{bottom:754.248600px;}
.y6e{bottom:755.234850px;}
.y138{bottom:756.145350px;}
.y298{bottom:756.189750px;}
.yff{bottom:756.465150px;}
.y244{bottom:756.473100px;}
.y15f{bottom:758.806050px;}
.y8e{bottom:759.250350px;}
.y4b{bottom:760.595850px;}
.y204{bottom:760.978800px;}
.y222{bottom:761.351700px;}
.y1bc{bottom:761.544750px;}
.y262{bottom:762.704850px;}
.yb4{bottom:765.075300px;}
.y13b{bottom:765.145350px;}
.y281{bottom:765.161850px;}
.y181{bottom:765.473700px;}
.y137{bottom:774.145350px;}
.y1e4{bottom:775.269750px;}
.y6d{bottom:776.317650px;}
.y19c{bottom:776.327850px;}
.yfe{bottom:777.354900px;}
.y243{bottom:777.362850px;}
.y15e{bottom:779.329350px;}
.y8d{bottom:779.743350px;}
.y7{bottom:780.713550px;}
.y203{bottom:781.438800px;}
.y221{bottom:781.758450px;}
.y261{bottom:783.368850px;}
.y1e3{bottom:784.269750px;}
.y4a{bottom:784.280100px;}
.y280{bottom:785.416350px;}
.yb3{bottom:786.448050px;}
.y180{bottom:788.347200px;}
.y297{bottom:788.439750px;}
.y136{bottom:792.145350px;}
.y1bb{bottom:793.269750px;}
.yd8{bottom:796.090650px;}
.y6c{bottom:797.379900px;}
.y19b{bottom:797.390100px;}
.yfd{bottom:798.244650px;}
.y242{bottom:798.252600px;}
.y15d{bottom:799.891350px;}
.y8c{bottom:800.236350px;}
.y26{bottom:801.397200px;}
.y202{bottom:801.898800px;}
.y220{bottom:802.165200px;}
.y1ba{bottom:802.269750px;}
.y260{bottom:804.032850px;}
.yb2{bottom:807.820800px;}
.y49{bottom:807.964350px;}
.y6{bottom:810.413550px;}
.y17f{bottom:811.220700px;}
.y27f{bottom:814.175850px;}
.y1e2{bottom:815.994750px;}
.yd7{bottom:817.411650px;}
.y6b{bottom:818.442150px;}
.y19a{bottom:818.452350px;}
.yfc{bottom:819.134400px;}
.y241{bottom:819.142350px;}
.y15c{bottom:820.453350px;}
.y8b{bottom:820.729350px;}
.y135{bottom:821.775600px;}
.y21f{bottom:822.571950px;}
.y25{bottom:822.862200px;}
.y1e1{bottom:824.994750px;}
.y5{bottom:831.608550px;}
.y48{bottom:831.648600px;}
.y25f{bottom:833.201850px;}
.y1b9{bottom:833.994750px;}
.y17e{bottom:834.094200px;}
.y27e{bottom:834.430350px;}
.yd6{bottom:838.732650px;}
.y6a{bottom:839.504400px;}
.y199{bottom:839.514600px;}
.yfb{bottom:840.024150px;}
.y240{bottom:840.032100px;}
.y15b{bottom:841.015350px;}
.y8a{bottom:841.222350px;}
.y134{bottom:841.410600px;}
.y201{bottom:842.818800px;}
.y21e{bottom:842.978700px;}
.y1b8{bottom:842.994750px;}
.y24{bottom:844.302750px;}
.y296{bottom:846.195450px;}
.yb1{bottom:850.445700px;}
.y25e{bottom:853.865850px;}
.y27d{bottom:854.684850px;}
.y47{bottom:855.332850px;}
.y1e0{bottom:856.719750px;}
.y17d{bottom:856.954350px;}
.yd5{bottom:860.059350px;}
.y69{bottom:860.576850px;}
.yfa{bottom:860.921850px;}
.y4{bottom:861.308550px;}
.y15a{bottom:861.577350px;}
.y89{bottom:861.715350px;}
.y200{bottom:863.278800px;}
.y21d{bottom:863.385450px;}
.y23{bottom:864.267750px;}
.y1df{bottom:865.719750px;}
.y295{bottom:873.201450px;}
.y1b7{bottom:874.719750px;}
.yb0{bottom:875.575950px;}
.y46{bottom:879.017100px;}
.y17c{bottom:879.827850px;}
.yd4{bottom:881.380350px;}
.y68{bottom:881.639100px;}
.yf9{bottom:881.811600px;}
.y159{bottom:882.139350px;}
.y88{bottom:882.208350px;}
.y133{bottom:882.311850px;}
.y3{bottom:882.503550px;}
.y25d{bottom:883.034850px;}
.y27c{bottom:883.444350px;}
.y1ff{bottom:883.738800px;}
.y22{bottom:884.232750px;}
.y1b6{bottom:897.444750px;}
.y294{bottom:900.207450px;}
.yaf{bottom:900.706200px;}
.y45{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y21{bottom:904.197750px;}
.y20{bottom:948.189000px;}
.y44{bottom:966.189000px;}
.h6{height:20.982876px;}
.hf{height:33.870539px;}
.h13{height:39.990234px;}
.h15{height:40.283203px;}
.h8{height:40.757812px;}
.h7{height:45.852539px;}
.h1a{height:45.864539px;}
.h11{height:46.643555px;}
.h2{height:50.947266px;}
.ha{height:51.129666px;}
.h14{height:51.826172px;}
.h3{height:53.494629px;}
.h1b{height:54.417480px;}
.h12{height:58.412355px;}
.hc{height:58.589355px;}
.h17{height:58.615155px;}
.h18{height:58.642755px;}
.h16{height:58.744155px;}
.h10{height:58.878555px;}
.hd{height:59.600098px;}
.he{height:59.659498px;}
.h9{height:63.684082px;}
.hb{height:68.778809px;}
.h5{height:71.326172px;}
.h19{height:86.947266px;}
.h4{height:91.705078px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x6{left:82.214250px;}
.x8{left:83.822250px;}
.x1{left:85.039350px;}
.xc{left:93.576150px;}
.x1a{left:98.961150px;}
.x9{left:103.710600px;}
.x7{left:105.029250px;}
.x5{left:106.365600px;}
.x19{left:108.471150px;}
.xd{left:112.716150px;}
.x2b{left:123.755700px;}
.x36{left:126.450750px;}
.x37{left:127.680750px;}
.x25{left:140.299800px;}
.x1b{left:173.798100px;}
.xf{left:181.566150px;}
.xe{left:183.621150px;}
.x26{left:189.109800px;}
.xb{left:191.503500px;}
.x10{left:201.861150px;}
.xa{left:212.663850px;}
.x2d{left:214.308450px;}
.x31{left:217.368450px;}
.x2c{left:218.583450px;}
.x3{left:228.410400px;}
.x24{left:229.772400px;}
.x4{left:231.866400px;}
.x2{left:233.581500px;}
.x12{left:282.231150px;}
.x11{left:290.061150px;}
.x1c{left:294.053100px;}
.x27{left:295.474800px;}
.x1d{left:300.878100px;}
.x1e{left:362.303100px;}
.x13{left:373.716150px;}
.x14{left:377.691150px;}
.x28{left:408.049800px;}
.x15{left:475.956150px;}
.x21{left:482.093100px;}
.x1f{left:485.813100px;}
.x16{left:489.456150px;}
.x29{left:527.104800px;}
.x2e{left:541.143450px;}
.x32{left:542.463450px;}
.x35{left:554.193450px;}
.x30{left:556.803450px;}
.x17{left:558.981150px;}
.x33{left:560.358450px;}
.x2f{left:564.663450px;}
.x34{left:566.883450px;}
.x18{left:571.176150px;}
.x22{left:573.623100px;}
.x2a{left:575.074800px;}
.x20{left:577.343100px;}
.x23{left:581.618100px;}
@media print{
.v5{vertical-align:-12.426667pt;}
.v4{vertical-align:-10.650667pt;}
.v6{vertical-align:-9.619733pt;}
.v9{vertical-align:-8.107733pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:10.661333pt;}
.v2{vertical-align:12.588800pt;}
.v3{vertical-align:15.143467pt;}
.v1{vertical-align:26.681067pt;}
.v7{vertical-align:32.000000pt;}
.ls3d{letter-spacing:-7.168000pt;}
.lsb{letter-spacing:-6.552000pt;}
.ls11{letter-spacing:-2.208000pt;}
.ls15{letter-spacing:-1.920000pt;}
.ls33{letter-spacing:-1.813333pt;}
.ls32{letter-spacing:-1.546667pt;}
.ls25{letter-spacing:-1.440000pt;}
.ls3{letter-spacing:-1.152000pt;}
.ls13{letter-spacing:-0.760000pt;}
.ls19{letter-spacing:-0.720000pt;}
.ls1c{letter-spacing:-0.674667pt;}
.ls37{letter-spacing:-0.613333pt;}
.ls1d{letter-spacing:-0.557333pt;}
.ls2{letter-spacing:-0.213333pt;}
.ls36{letter-spacing:-0.072000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.000267pt;}
.ls3b{letter-spacing:0.224000pt;}
.ls1e{letter-spacing:0.240000pt;}
.ls1f{letter-spacing:0.278400pt;}
.ls24{letter-spacing:0.326896pt;}
.ls18{letter-spacing:0.368000pt;}
.ls26{letter-spacing:0.624000pt;}
.ls12{letter-spacing:0.736000pt;}
.ls3c{letter-spacing:1.064000pt;}
.ls1b{letter-spacing:1.226667pt;}
.ls8{letter-spacing:2.133333pt;}
.ls1a{letter-spacing:2.514667pt;}
.lsc{letter-spacing:3.128000pt;}
.ls5{letter-spacing:3.200000pt;}
.ls39{letter-spacing:3.264800pt;}
.ls20{letter-spacing:3.312000pt;}
.ls9{letter-spacing:3.666667pt;}
.ls6{letter-spacing:3.733333pt;}
.ls16{letter-spacing:3.802667pt;}
.lse{letter-spacing:4.133333pt;}
.ls10{letter-spacing:4.274933pt;}
.lsf{letter-spacing:4.293333pt;}
.ls31{letter-spacing:4.933333pt;}
.ls4{letter-spacing:5.120000pt;}
.lsa{letter-spacing:5.226667pt;}
.ls1{letter-spacing:5.333333pt;}
.ls38{letter-spacing:5.600000pt;}
.ls7{letter-spacing:6.378667pt;}
.ls14{letter-spacing:7.253472pt;}
.ls17{letter-spacing:7.254005pt;}
.ls3a{letter-spacing:7.392000pt;}
.ls3e{letter-spacing:7.840000pt;}
.ls21{letter-spacing:121.920000pt;}
.ls2a{letter-spacing:193.957333pt;}
.ls2b{letter-spacing:206.080000pt;}
.ls35{letter-spacing:389.210667pt;}
.ls29{letter-spacing:445.445333pt;}
.ls2c{letter-spacing:536.960000pt;}
.ls27{letter-spacing:570.080000pt;}
.ls23{letter-spacing:583.744000pt;}
.ls22{letter-spacing:600.117333pt;}
.ls2e{letter-spacing:614.826667pt;}
.ls30{letter-spacing:683.440000pt;}
.ls28{letter-spacing:743.573333pt;}
.ls2d{letter-spacing:774.485333pt;}
.ls34{letter-spacing:910.138667pt;}
.ls2f{letter-spacing:1069.125333pt;}
.ws5{word-spacing:-68.928000pt;}
.ws6{word-spacing:-67.776000pt;}
.ws7{word-spacing:-53.610667pt;}
.ws83{word-spacing:-52.800000pt;}
.ws26{word-spacing:-52.000000pt;}
.ws30{word-spacing:-51.696000pt;}
.ws94{word-spacing:-51.624000pt;}
.wse{word-spacing:-51.533333pt;}
.wsa9{word-spacing:-48.048000pt;}
.ws9b{word-spacing:-47.600000pt;}
.wsa0{word-spacing:-45.808000pt;}
.ws1a{word-spacing:-45.144000pt;}
.ws1b{word-spacing:-44.037333pt;}
.ws2{word-spacing:-43.626667pt;}
.ws13{word-spacing:-43.520000pt;}
.ws96{word-spacing:-43.424000pt;}
.ws8{word-spacing:-43.413333pt;}
.ws75{word-spacing:-43.362667pt;}
.ws29{word-spacing:-41.829333pt;}
.wsa8{word-spacing:-41.272000pt;}
.wsa3{word-spacing:-40.432000pt;}
.ws1{word-spacing:-40.208000pt;}
.ws3{word-spacing:-38.293333pt;}
.ws4{word-spacing:-38.080000pt;}
.ws81{word-spacing:-35.088000pt;}
.wsb7{word-spacing:-34.686400pt;}
.wsa{word-spacing:-34.464000pt;}
.ws68{word-spacing:-33.978667pt;}
.ws31{word-spacing:-33.917333pt;}
.ws10{word-spacing:-33.834667pt;}
.ws72{word-spacing:-33.744000pt;}
.ws78{word-spacing:-33.733333pt;}
.ws9c{word-spacing:-33.656000pt;}
.ws36{word-spacing:-33.488000pt;}
.ws35{word-spacing:-33.481867pt;}
.ws1c{word-spacing:-33.377600pt;}
.wsb8{word-spacing:-33.286400pt;}
.wsa7{word-spacing:-33.040000pt;}
.ws79{word-spacing:-32.997333pt;}
.ws77{word-spacing:-32.874667pt;}
.wsd{word-spacing:-32.768000pt;}
.wsbb{word-spacing:-32.351200pt;}
.ws93{word-spacing:-32.200000pt;}
.ws95{word-spacing:-31.893333pt;}
.ws71{word-spacing:-31.568267pt;}
.ws1f{word-spacing:-30.912000pt;}
.ws37{word-spacing:-30.538667pt;}
.ws28{word-spacing:-30.501067pt;}
.ws1e{word-spacing:-30.439733pt;}
.wsb4{word-spacing:-30.408000pt;}
.wsae{word-spacing:-30.296000pt;}
.wsa2{word-spacing:-30.212000pt;}
.wsa1{word-spacing:-30.184000pt;}
.wsab{word-spacing:-29.624000pt;}
.ws8f{word-spacing:-29.600000pt;}
.ws32{word-spacing:-29.556533pt;}
.wsb6{word-spacing:-29.232000pt;}
.wsaf{word-spacing:-29.176000pt;}
.ws33{word-spacing:-29.010667pt;}
.ws2b{word-spacing:-28.446400pt;}
.ws17{word-spacing:-28.330667pt;}
.ws9d{word-spacing:-28.117600pt;}
.ws9{word-spacing:-27.642667pt;}
.wsaa{word-spacing:-27.440000pt;}
.wsbe{word-spacing:-27.024000pt;}
.wsa4{word-spacing:-26.706064pt;}
.wsac{word-spacing:-25.704000pt;}
.ws20{word-spacing:-25.673765pt;}
.ws8e{word-spacing:-25.653333pt;}
.ws8d{word-spacing:-25.600000pt;}
.ws14{word-spacing:-25.552000pt;}
.wsba{word-spacing:-25.256000pt;}
.wsbc{word-spacing:-23.800000pt;}
.ws91{word-spacing:-21.765333pt;}
.ws90{word-spacing:-21.760000pt;}
.ws21{word-spacing:-20.638667pt;}
.ws70{word-spacing:-19.264800pt;}
.wsb5{word-spacing:-19.252800pt;}
.ws34{word-spacing:-17.970667pt;}
.ws67{word-spacing:-17.602667pt;}
.ws2a{word-spacing:-16.805333pt;}
.ws69{word-spacing:-16.220267pt;}
.ws1d{word-spacing:-15.149333pt;}
.ws2f{word-spacing:-14.679733pt;}
.ws64{word-spacing:-14.544000pt;}
.wsad{word-spacing:-14.492800pt;}
.ws6d{word-spacing:-14.400000pt;}
.wsb0{word-spacing:-13.832000pt;}
.ws76{word-spacing:-13.780000pt;}
.wsb9{word-spacing:-13.395200pt;}
.ws16{word-spacing:-13.173333pt;}
.ws2d{word-spacing:-12.960000pt;}
.ws22{word-spacing:-12.839040pt;}
.ws2c{word-spacing:-12.838507pt;}
.ws23{word-spacing:-11.856000pt;}
.ws7e{word-spacing:-11.733333pt;}
.ws85{word-spacing:-11.626667pt;}
.ws87{word-spacing:-11.360000pt;}
.ws7d{word-spacing:-11.253333pt;}
.ws6b{word-spacing:-10.047811pt;}
.ws63{word-spacing:-9.936000pt;}
.ws15{word-spacing:-8.737227pt;}
.ws9f{word-spacing:-7.084000pt;}
.ws9e{word-spacing:-7.044800pt;}
.ws19{word-spacing:-5.605333pt;}
.wsb1{word-spacing:-5.600000pt;}
.wsb{word-spacing:0.000000pt;}
.ws82{word-spacing:0.490667pt;}
.wsa6{word-spacing:0.952000pt;}
.ws74{word-spacing:1.533333pt;}
.ws99{word-spacing:1.656000pt;}
.ws73{word-spacing:1.778667pt;}
.ws7a{word-spacing:2.496000pt;}
.ws62{word-spacing:4.533408pt;}
.ws98{word-spacing:4.661333pt;}
.ws12{word-spacing:4.682667pt;}
.wsa5{word-spacing:4.984000pt;}
.ws97{word-spacing:5.336000pt;}
.ws24{word-spacing:6.378667pt;}
.wsbd{word-spacing:6.776000pt;}
.ws25{word-spacing:7.298667pt;}
.ws6c{word-spacing:8.325333pt;}
.ws7b{word-spacing:9.018667pt;}
.wsb2{word-spacing:9.296000pt;}
.ws38{word-spacing:10.826667pt;}
.ws3e{word-spacing:21.546667pt;}
.ws57{word-spacing:24.160000pt;}
.ws4d{word-spacing:24.480000pt;}
.ws65{word-spacing:24.625920pt;}
.ws61{word-spacing:24.640000pt;}
.ws45{word-spacing:35.200000pt;}
.ws59{word-spacing:37.813333pt;}
.wsc{word-spacing:38.617920pt;}
.ws11{word-spacing:41.787200pt;}
.ws4f{word-spacing:51.466667pt;}
.ws3f{word-spacing:54.064000pt;}
.ws39{word-spacing:54.069333pt;}
.ws52{word-spacing:56.677333pt;}
.ws48{word-spacing:56.997333pt;}
.ws5c{word-spacing:57.157333pt;}
.ws50{word-spacing:68.581333pt;}
.ws5e{word-spacing:92.000000pt;}
.ws3b{word-spacing:92.213333pt;}
.ws47{word-spacing:93.866667pt;}
.ws54{word-spacing:96.106667pt;}
.ws41{word-spacing:96.160000pt;}
.ws88{word-spacing:97.733333pt;}
.ws4a{word-spacing:98.560000pt;}
.ws4e{word-spacing:117.866667pt;}
.ws7f{word-spacing:118.026667pt;}
.ws5b{word-spacing:120.213333pt;}
.ws51{word-spacing:120.586667pt;}
.ws43{word-spacing:124.906667pt;}
.ws5a{word-spacing:136.922667pt;}
.ws3d{word-spacing:139.413333pt;}
.ws46{word-spacing:142.064000pt;}
.ws4b{word-spacing:143.514667pt;}
.ws4c{word-spacing:149.653333pt;}
.ws8b{word-spacing:163.221333pt;}
.ws56{word-spacing:165.066667pt;}
.ws60{word-spacing:165.386667pt;}
.ws5f{word-spacing:170.330667pt;}
.ws58{word-spacing:172.874667pt;}
.ws18{word-spacing:183.157333pt;}
.ws49{word-spacing:187.194667pt;}
.ws44{word-spacing:191.349333pt;}
.ws3c{word-spacing:205.600000pt;}
.ws55{word-spacing:210.266667pt;}
.ws42{word-spacing:216.480000pt;}
.ws5d{word-spacing:223.077333pt;}
.ws53{word-spacing:257.669333pt;}
.ws6e{word-spacing:268.714667pt;}
.ws3a{word-spacing:270.181333pt;}
.ws40{word-spacing:273.472000pt;}
.ws8c{word-spacing:293.365333pt;}
.ws6f{word-spacing:320.746667pt;}
.ws80{word-spacing:344.453333pt;}
.ws84{word-spacing:355.520000pt;}
.wsb3{word-spacing:356.213333pt;}
.ws27{word-spacing:356.533333pt;}
.ws9a{word-spacing:356.800000pt;}
.ws66{word-spacing:356.906667pt;}
.ws92{word-spacing:357.173333pt;}
.ws6a{word-spacing:357.226667pt;}
.ws2e{word-spacing:358.400000pt;}
.wsf{word-spacing:359.200000pt;}
.ws86{word-spacing:375.040000pt;}
.ws89{word-spacing:438.330667pt;}
.ws0{word-spacing:475.840000pt;}
.ws8a{word-spacing:647.781333pt;}
.ws7c{word-spacing:725.424000pt;}
._11{margin-left:-17.234667pt;}
._30{margin-left:-12.018133pt;}
._a{margin-left:-8.352000pt;}
._e{margin-left:-6.758933pt;}
._8{margin-left:-5.212800pt;}
._9{margin-left:-3.563733pt;}
._2{margin-left:-2.133333pt;}
._4{margin-left:-0.901333pt;}
._3{width:0.890667pt;}
._0{width:2.133333pt;}
._b{width:3.270400pt;}
._c{width:4.224000pt;}
._5{width:5.290667pt;}
._6{width:6.522667pt;}
._7{width:7.546667pt;}
._d{width:9.173333pt;}
._10{width:10.232000pt;}
._2e{width:11.486133pt;}
._2d{width:12.906667pt;}
._2f{width:15.600533pt;}
._33{width:18.601600pt;}
._17{width:21.217067pt;}
._12{width:22.506667pt;}
._34{width:23.687733pt;}
._31{width:25.032000pt;}
._32{width:26.264000pt;}
._13{width:38.617920pt;}
._1d{width:61.477333pt;}
._27{width:71.728000pt;}
._24{width:82.816000pt;}
._2a{width:88.048000pt;}
._25{width:91.888000pt;}
._2c{width:95.781333pt;}
._2b{width:101.866667pt;}
._1c{width:125.013333pt;}
._28{width:152.586667pt;}
._20{width:155.360000pt;}
._29{width:157.386667pt;}
._21{width:159.994667pt;}
._1f{width:162.928000pt;}
._1e{width:174.128000pt;}
._23{width:176.800000pt;}
._1b{width:181.594667pt;}
._1a{width:183.088000pt;}
._26{width:202.928000pt;}
._22{width:210.608000pt;}
._16{width:382.906667pt;}
._18{width:423.888000pt;}
._19{width:460.320000pt;}
._f{width:849.521067pt;}
._15{width:852.294400pt;}
._1{width:855.894400pt;}
._14{width:857.654400pt;}
.fs6{font-size:27.984000pt;}
.fsa{font-size:31.093333pt;}
.fsf{font-size:32.648000pt;}
.fsd{font-size:35.757333pt;}
.fs9{font-size:37.333333pt;}
.fs8{font-size:42.666667pt;}
.fs7{font-size:48.000000pt;}
.fse{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs4{font-size:55.968000pt;}
.fs2{font-size:56.000000pt;}
.fsc{font-size:61.333333pt;}
.fs1{font-size:66.666667pt;}
.fsb{font-size:72.000000pt;}
.fs5{font-size:74.666667pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y27b{bottom:94.425867pt;}
.y43{bottom:94.428533pt;}
.y158{bottom:94.472400pt;}
.y67{bottom:94.474933pt;}
.y17b{bottom:94.475067pt;}
.y23f{bottom:94.477867pt;}
.yae{bottom:94.480267pt;}
.yf8{bottom:94.480400pt;}
.y1f{bottom:94.485733pt;}
.y21c{bottom:94.487333pt;}
.y25c{bottom:94.520800pt;}
.yd3{bottom:97.150933pt;}
.y1fe{bottom:97.151067pt;}
.y157{bottom:109.808400pt;}
.y66{bottom:109.810933pt;}
.y17a{bottom:109.811067pt;}
.yad{bottom:109.816267pt;}
.yf7{bottom:109.816400pt;}
.y1e{bottom:109.821733pt;}
.y1d{bottom:112.484400pt;}
.y23e{bottom:112.617200pt;}
.y21b{bottom:112.674000pt;}
.y27a{bottom:112.793867pt;}
.y42{bottom:112.843867pt;}
.yd2{bottom:113.595733pt;}
.y1de{bottom:114.128667pt;}
.y25b{bottom:120.644800pt;}
.y1dd{bottom:122.128667pt;}
.y156{bottom:125.144400pt;}
.y65{bottom:125.146933pt;}
.y179{bottom:125.147067pt;}
.yac{bottom:125.152267pt;}
.yf6{bottom:125.152400pt;}
.yd1{bottom:128.931733pt;}
.y11b{bottom:128.932000pt;}
.y23d{bottom:130.756533pt;}
.y41{bottom:131.259200pt;}
.y1fd{bottom:136.255333pt;}
.y279{bottom:138.721867pt;}
.y25a{bottom:139.208800pt;}
.y155{bottom:140.480400pt;}
.y64{bottom:140.482933pt;}
.y178{bottom:140.483067pt;}
.yab{bottom:140.488267pt;}
.yaa{bottom:143.150933pt;}
.yf5{bottom:143.151067pt;}
.yd0{bottom:144.267733pt;}
.ycf{bottom:146.930400pt;}
.y11a{bottom:146.930667pt;}
.y23c{bottom:148.895867pt;}
.y21a{bottom:149.046533pt;}
.y40{bottom:149.674533pt;}
.y1dc{bottom:150.328667pt;}
.y1c{bottom:151.620933pt;}
.y1fc{bottom:154.735333pt;}
.y154{bottom:155.816400pt;}
.y63{bottom:155.818933pt;}
.y177{bottom:155.819067pt;}
.y278{bottom:157.089867pt;}
.y259{bottom:157.772800pt;}
.y1db{bottom:158.328667pt;}
.yf4{bottom:159.598667pt;}
.ya9{bottom:162.263733pt;}
.y119{bottom:163.373067pt;}
.y23b{bottom:167.035200pt;}
.y219{bottom:167.231867pt;}
.y3f{bottom:168.089867pt;}
.y1b{bottom:169.127600pt;}
.y153{bottom:171.152400pt;}
.y62{bottom:173.817600pt;}
.y176{bottom:173.817733pt;}
.yf3{bottom:177.597333pt;}
.y118{bottom:178.709067pt;}
.y277{bottom:183.017867pt;}
.y258{bottom:183.896800pt;}
.y23a{bottom:185.174533pt;}
.y218{bottom:185.417200pt;}
.yce{bottom:186.066533pt;}
.y3e{bottom:186.505200pt;}
.y1da{bottom:186.528667pt;}
.y1a{bottom:186.634267pt;}
.y152{bottom:189.151067pt;}
.y87{bottom:190.259733pt;}
.y1fb{bottom:191.682000pt;}
.yf2{bottom:194.042400pt;}
.y117{bottom:194.045067pt;}
.ya8{bottom:201.337467pt;}
.y276{bottom:201.385867pt;}
.y257{bottom:202.460800pt;}
.y239{bottom:203.313867pt;}
.y217{bottom:203.602533pt;}
.y19{bottom:204.140933pt;}
.y3d{bottom:204.920533pt;}
.ycd{bottom:205.064533pt;}
.y86{bottom:205.595733pt;}
.y132{bottom:206.360533pt;}
.y1d9{bottom:206.728667pt;}
.yf1{bottom:209.378400pt;}
.y1fa{bottom:210.162000pt;}
.y116{bottom:212.043733pt;}
.y198{bottom:212.785067pt;}
.y175{bottom:212.933600pt;}
.y61{bottom:212.939733pt;}
.ya7{bottom:219.553467pt;}
.y275{bottom:219.753867pt;}
.y85{bottom:220.931733pt;}
.y238{bottom:221.453200pt;}
.y18{bottom:221.647600pt;}
.y1d8{bottom:222.728667pt;}
.y3c{bottom:223.335867pt;}
.ycc{bottom:224.062533pt;}
.y131{bottom:224.361867pt;}
.yf0{bottom:227.377067pt;}
.y151{bottom:228.289867pt;}
.y115{bottom:228.488667pt;}
.y256{bottom:228.584800pt;}
.y1f9{bottom:228.642000pt;}
.y174{bottom:231.210933pt;}
.y197{bottom:233.117067pt;}
.y60{bottom:233.992400pt;}
.y1b5{bottom:234.332933pt;}
.ya6{bottom:237.769467pt;}
.y1d6{bottom:238.728667pt;}
.y84{bottom:238.930400pt;}
.y17{bottom:239.154267pt;}
.y237{bottom:239.592533pt;}
.y2af{bottom:239.936800pt;}
.y216{bottom:239.959733pt;}
.y3b{bottom:241.751200pt;}
.y130{bottom:242.363200pt;}
.ycb{bottom:243.060533pt;}
.y114{bottom:243.824667pt;}
.y274{bottom:245.681867pt;}
.y150{bottom:246.413867pt;}
.y1d3{bottom:246.728667pt;}
.y255{bottom:247.148800pt;}
.y173{bottom:249.482533pt;}
.y196{bottom:253.449067pt;}
.y1b4{bottom:254.532933pt;}
.y1d5{bottom:254.728667pt;}
.y5f{bottom:255.045067pt;}
.ya5{bottom:255.985467pt;}
.y16{bottom:256.660933pt;}
.y236{bottom:257.731867pt;}
.y2ae{bottom:257.936800pt;}
.y215{bottom:258.146400pt;}
.y12f{bottom:260.364533pt;}
.y113{bottom:261.823333pt;}
.yca{bottom:262.071600pt;}
.y273{bottom:264.049867pt;}
.y14f{bottom:264.537867pt;}
.y1f8{bottom:265.588667pt;}
.y254{bottom:265.720667pt;}
.yef{bottom:266.509333pt;}
.y172{bottom:267.759867pt;}
.y1d4{bottom:270.728667pt;}
.y195{bottom:273.781067pt;}
.y15{bottom:274.167600pt;}
.ya4{bottom:274.201467pt;}
.y1b3{bottom:274.732933pt;}
.y235{bottom:275.871200pt;}
.y2ad{bottom:275.936800pt;}
.y5e{bottom:276.097733pt;}
.y214{bottom:276.333067pt;}
.y83{bottom:278.157867pt;}
.y12e{bottom:278.365867pt;}
.y3a{bottom:279.056667pt;}
.yc9{bottom:281.069600pt;}
.y14e{bottom:282.661867pt;}
.y1f7{bottom:284.068667pt;}
.yee{bottom:285.461333pt;}
.y1d7{bottom:286.728667pt;}
.y272{bottom:289.977867pt;}
.y1b1{bottom:290.732933pt;}
.y14{bottom:291.674267pt;}
.y253{bottom:291.844667pt;}
.ya3{bottom:292.417467pt;}
.y2ac{bottom:293.936800pt;}
.y234{bottom:294.010533pt;}
.y194{bottom:294.113067pt;}
.y213{bottom:294.519733pt;}
.y293{bottom:295.591867pt;}
.y12d{bottom:296.367200pt;}
.y82{bottom:296.879867pt;}
.y5d{bottom:297.150400pt;}
.yc8{bottom:300.067600pt;}
.y14d{bottom:300.785867pt;}
.yed{bottom:304.413333pt;}
.y171{bottom:304.934000pt;}
.y1b2{bottom:306.732933pt;}
.y1d2{bottom:306.928667pt;}
.y271{bottom:308.345867pt;}
.y13{bottom:309.180933pt;}
.y252{bottom:310.416667pt;}
.ya2{bottom:310.633467pt;}
.y233{bottom:312.149867pt;}
.y292{bottom:313.595867pt;}
.y12c{bottom:314.368533pt;}
.y193{bottom:314.445067pt;}
.y81{bottom:315.601867pt;}
.y5c{bottom:318.203067pt;}
.y14c{bottom:318.909867pt;}
.yc7{bottom:319.065600pt;}
.y112{bottom:319.540800pt;}
.y1f6{bottom:320.967333pt;}
.y2ab{bottom:323.270133pt;}
.y170{bottom:326.534000pt;}
.y12{bottom:326.687600pt;}
.y270{bottom:326.713867pt;}
.y1b0{bottom:326.932933pt;}
.y1d1{bottom:327.128667pt;}
.ya1{bottom:328.849467pt;}
.y232{bottom:330.289200pt;}
.y212{bottom:330.893067pt;}
.y12b{bottom:332.369867pt;}
.y80{bottom:334.323867pt;}
.y192{bottom:334.777067pt;}
.y39{bottom:334.808267pt;}
.y251{bottom:336.540667pt;}
.y14b{bottom:337.033867pt;}
.yc6{bottom:338.063600pt;}
.y111{bottom:338.109467pt;}
.y291{bottom:339.159867pt;}
.y5b{bottom:339.255733pt;}
.y1f5{bottom:339.444000pt;}
.y1ae{bottom:342.932933pt;}
.y1cf{bottom:343.128667pt;}
.y26f{bottom:345.081867pt;}
.ya0{bottom:347.065467pt;}
.y231{bottom:348.428533pt;}
.y211{bottom:349.079733pt;}
.y12a{bottom:350.371200pt;}
.y7f{bottom:353.045867pt;}
.y38{bottom:353.888267pt;}
.y191{bottom:355.109067pt;}
.y250{bottom:355.136267pt;}
.y14a{bottom:355.157867pt;}
.y11{bottom:355.527600pt;}
.y110{bottom:356.678133pt;}
.yc5{bottom:357.061600pt;}
.y290{bottom:357.163867pt;}
.y1f4{bottom:357.920667pt;}
.y1af{bottom:358.932933pt;}
.yec{bottom:358.980933pt;}
.y1d0{bottom:359.128667pt;}
.y2aa{bottom:360.163467pt;}
.y5a{bottom:360.308400pt;}
.y9f{bottom:365.281467pt;}
.y230{bottom:366.567867pt;}
.y210{bottom:367.266400pt;}
.y129{bottom:368.372533pt;}
.y26e{bottom:371.009867pt;}
.y7e{bottom:371.767867pt;}
.y37{bottom:372.913600pt;}
.y149{bottom:373.281867pt;}
.yeb{bottom:374.980933pt;}
.y10f{bottom:375.246800pt;}
.y190{bottom:375.441067pt;}
.yc4{bottom:376.098933pt;}
.y1f3{bottom:376.397333pt;}
.y2a9{bottom:377.496800pt;}
.y1ad{bottom:379.132933pt;}
.y1ce{bottom:379.328667pt;}
.y24f{bottom:381.260267pt;}
.y59{bottom:381.347867pt;}
.y16f{bottom:382.056933pt;}
.y28f{bottom:382.727867pt;}
.y9e{bottom:383.497467pt;}
.y22f{bottom:384.707200pt;}
.y128{bottom:386.373867pt;}
.y1cd{bottom:387.328667pt;}
.y26d{bottom:389.377867pt;}
.y7d{bottom:390.489867pt;}
.y36{bottom:390.660267pt;}
.y148{bottom:391.405867pt;}
.y10e{bottom:393.815467pt;}
.y2a8{bottom:394.830133pt;}
.y1f2{bottom:394.874000pt;}
.yc3{bottom:395.096933pt;}
.y1ab{bottom:395.132933pt;}
.yea{bottom:395.180933pt;}
.y18f{bottom:395.773067pt;}
.y24e{bottom:399.824267pt;}
.y16e{bottom:400.334267pt;}
.y28e{bottom:400.731867pt;}
.y9d{bottom:401.713467pt;}
.y58{bottom:402.400533pt;}
.y22e{bottom:402.846533pt;}
.y20f{bottom:403.639733pt;}
.y127{bottom:404.375200pt;}
.y10{bottom:407.051067pt;}
.y26c{bottom:407.745867pt;}
.y35{bottom:408.406933pt;}
.y7c{bottom:409.211867pt;}
.y147{bottom:409.529867pt;}
.y1ac{bottom:411.132933pt;}
.y2a7{bottom:412.163467pt;}
.y10d{bottom:412.391333pt;}
.y1f1{bottom:413.350667pt;}
.yc2{bottom:414.094933pt;}
.ye9{bottom:415.380933pt;}
.y1cc{bottom:415.528667pt;}
.y18e{bottom:416.105067pt;}
.y16d{bottom:418.611600pt;}
.y28d{bottom:418.735867pt;}
.y9c{bottom:419.929467pt;}
.y22d{bottom:420.985867pt;}
.y20e{bottom:421.826400pt;}
.y126{bottom:422.376533pt;}
.y57{bottom:423.453200pt;}
.y24d{bottom:425.948267pt;}
.y26b{bottom:426.113867pt;}
.y34{bottom:426.153600pt;}
.y146{bottom:427.653867pt;}
.y7b{bottom:427.933867pt;}
.y2a6{bottom:429.496800pt;}
.y10c{bottom:430.960000pt;}
.yf{bottom:431.224400pt;}
.y1aa{bottom:431.332933pt;}
.y1f0{bottom:431.827333pt;}
.yc1{bottom:433.092933pt;}
.ye8{bottom:435.580933pt;}
.y1cb{bottom:435.728667pt;}
.y18d{bottom:436.437067pt;}
.y16c{bottom:436.888933pt;}
.y9b{bottom:438.145467pt;}
.y22c{bottom:439.125200pt;}
.y20d{bottom:440.013067pt;}
.y125{bottom:440.377867pt;}
.y1ca{bottom:443.728667pt;}
.y33{bottom:443.900267pt;}
.y28c{bottom:444.299867pt;}
.y56{bottom:444.505867pt;}
.y24c{bottom:444.512267pt;}
.y145{bottom:445.777867pt;}
.y7a{bottom:446.655867pt;}
.y2a5{bottom:446.830133pt;}
.y1a9{bottom:447.332933pt;}
.y10b{bottom:449.553733pt;}
.y1ef{bottom:450.304000pt;}
.y26a{bottom:452.041867pt;}
.yc0{bottom:452.090933pt;}
.y16b{bottom:455.166267pt;}
.y1a6{bottom:455.332933pt;}
.ye{bottom:455.397733pt;}
.ye7{bottom:455.780933pt;}
.y9a{bottom:456.361467pt;}
.y18c{bottom:456.769067pt;}
.y32{bottom:461.646933pt;}
.y28b{bottom:462.303867pt;}
.y1a8{bottom:463.332933pt;}
.y144{bottom:463.901867pt;}
.y2a4{bottom:464.163467pt;}
.y79{bottom:465.377867pt;}
.y55{bottom:465.558533pt;}
.y10a{bottom:468.122400pt;}
.y1ee{bottom:468.780667pt;}
.y269{bottom:470.409867pt;}
.y24b{bottom:470.636267pt;}
.ybf{bottom:471.088933pt;}
.y1c9{bottom:471.928667pt;}
.y16a{bottom:473.443600pt;}
.y99{bottom:474.513200pt;}
.ye6{bottom:475.980933pt;}
.y22b{bottom:476.161600pt;}
.y20c{bottom:476.386400pt;}
.y18b{bottom:477.101067pt;}
.y124{bottom:477.282133pt;}
.y1a7{bottom:479.332933pt;}
.y31{bottom:479.393600pt;}
.y28a{bottom:480.307867pt;}
.y2a3{bottom:481.496800pt;}
.y143{bottom:482.025867pt;}
.y78{bottom:484.099867pt;}
.y54{bottom:486.611200pt;}
.y109{bottom:486.691067pt;}
.y1ed{bottom:487.257333pt;}
.y268{bottom:488.777867pt;}
.y24a{bottom:489.200267pt;}
.ybe{bottom:490.086933pt;}
.y169{bottom:491.720933pt;}
.y1c8{bottom:492.128667pt;}
.y98{bottom:492.729200pt;}
.y20b{bottom:494.573067pt;}
.ye5{bottom:496.180933pt;}
.y30{bottom:497.140267pt;}
.y18a{bottom:497.433067pt;}
.yd{bottom:498.457600pt;}
.y123{bottom:498.612133pt;}
.y2a2{bottom:498.830133pt;}
.y1a5{bottom:499.532933pt;}
.y1c7{bottom:500.128667pt;}
.y77{bottom:502.821867pt;}
.y108{bottom:505.259733pt;}
.y1ec{bottom:505.734000pt;}
.y289{bottom:505.871867pt;}
.y1a4{bottom:507.532933pt;}
.y53{bottom:507.663867pt;}
.y249{bottom:507.764267pt;}
.ybd{bottom:509.084933pt;}
.y168{bottom:509.998267pt;}
.y97{bottom:510.945200pt;}
.y20a{bottom:512.759733pt;}
.y267{bottom:514.705867pt;}
.y2f{bottom:514.886933pt;}
.y2a1{bottom:516.163467pt;}
.ye4{bottom:516.380933pt;}
.y189{bottom:517.765067pt;}
.y122{bottom:519.942133pt;}
.y76{bottom:521.543867pt;}
.y107{bottom:523.828400pt;}
.y1eb{bottom:524.210667pt;}
.yc{bottom:526.633600pt;}
.ybc{bottom:528.082933pt;}
.y167{bottom:528.275600pt;}
.y1c6{bottom:528.328667pt;}
.y52{bottom:528.716533pt;}
.y96{bottom:529.161200pt;}
.y288{bottom:531.435867pt;}
.y22a{bottom:531.642400pt;}
.y2e{bottom:532.593067pt;}
.y2a0{bottom:533.496800pt;}
.y248{bottom:533.888267pt;}
.y142{bottom:535.729200pt;}
.y1a3{bottom:535.732933pt;}
.y1c5{bottom:536.328667pt;}
.ye2{bottom:536.580933pt;}
.y188{bottom:538.097067pt;}
.y75{bottom:540.265867pt;}
.y106{bottom:542.397067pt;}
.y1ea{bottom:542.687333pt;}
.y1a2{bottom:543.732933pt;}
.y166{bottom:546.552933pt;}
.ybb{bottom:547.080933pt;}
.y95{bottom:547.377200pt;}
.y209{bottom:549.132000pt;}
.y287{bottom:549.439867pt;}
.y51{bottom:549.769200pt;}
.y229{bottom:549.781733pt;}
.y2d{bottom:550.339733pt;}
.y29f{bottom:550.830133pt;}
.y140{bottom:551.729200pt;}
.ye3{bottom:552.580933pt;}
.ye1{bottom:552.592533pt;}
.yb{bottom:554.809600pt;}
.y187{bottom:558.429067pt;}
.y74{bottom:558.987867pt;}
.y105{bottom:560.965733pt;}
.y1e9{bottom:561.164000pt;}
.y1c4{bottom:564.528667pt;}
.y165{bottom:564.830267pt;}
.y94{bottom:565.593200pt;}
.yba{bottom:566.078933pt;}
.y208{bottom:567.317333pt;}
.y141{bottom:567.729200pt;}
.y228{bottom:567.921067pt;}
.y2c{bottom:568.086400pt;}
.y29e{bottom:568.168667pt;}
.y50{bottom:570.821867pt;}
.y1a1{bottom:571.932933pt;}
.y1c3{bottom:572.528667pt;}
.ye0{bottom:572.792533pt;}
.y286{bottom:575.003867pt;}
.y121{bottom:575.284533pt;}
.y73{bottom:577.709867pt;}
.y186{bottom:578.761067pt;}
.y104{bottom:579.570133pt;}
.y1e8{bottom:579.640667pt;}
.y1a0{bottom:579.932933pt;}
.ya{bottom:582.985600pt;}
.y164{bottom:583.107600pt;}
.y93{bottom:583.809200pt;}
.yb9{bottom:585.076933pt;}
.y29d{bottom:585.502000pt;}
.y207{bottom:585.502667pt;}
.y2b{bottom:585.833067pt;}
.y227{bottom:586.060400pt;}
.y13f{bottom:587.929200pt;}
.y4f{bottom:591.874533pt;}
.ydf{bottom:592.992533pt;}
.y285{bottom:593.007867pt;}
.y120{bottom:593.285867pt;}
.y72{bottom:596.431867pt;}
.y266{bottom:596.927867pt;}
.y1e7{bottom:598.117333pt;}
.y103{bottom:598.138800pt;}
.y185{bottom:599.093067pt;}
.y1c1{bottom:600.728667pt;}
.ydc{bottom:600.992533pt;}
.y163{bottom:601.384933pt;}
.y92{bottom:602.025200pt;}
.y29c{bottom:602.835333pt;}
.y2a{bottom:603.579733pt;}
.y13d{bottom:603.929200pt;}
.yb8{bottom:604.074933pt;}
.y226{bottom:604.199733pt;}
.y19f{bottom:608.132933pt;}
.yde{bottom:608.992533pt;}
.y284{bottom:611.011867pt;}
.y9{bottom:611.161600pt;}
.y11f{bottom:611.287200pt;}
.y4e{bottom:612.927200pt;}
.y71{bottom:615.153867pt;}
.y265{bottom:615.295867pt;}
.y1e6{bottom:616.594000pt;}
.y102{bottom:616.707467pt;}
.y247{bottom:616.714533pt;}
.y1c0{bottom:616.728667pt;}
.ydb{bottom:616.992533pt;}
.y184{bottom:619.425067pt;}
.y162{bottom:619.662267pt;}
.y13e{bottom:619.929200pt;}
.y29b{bottom:620.168667pt;}
.y91{bottom:620.241200pt;}
.y29{bottom:621.326400pt;}
.y206{bottom:621.865600pt;}
.y225{bottom:622.339067pt;}
.yb7{bottom:623.072933pt;}
.y1c2{bottom:624.728667pt;}
.ydd{bottom:624.992533pt;}
.y11e{bottom:629.288533pt;}
.y1be{bottom:632.728667pt;}
.y264{bottom:633.663867pt;}
.y70{bottom:633.875867pt;}
.y4d{bottom:633.979867pt;}
.y19e{bottom:635.064800pt;}
.y1e5{bottom:635.070667pt;}
.y101{bottom:635.276133pt;}
.y246{bottom:635.283200pt;}
.y283{bottom:636.575867pt;}
.y29a{bottom:637.502000pt;}
.y161{bottom:637.939600pt;}
.y90{bottom:638.457200pt;}
.y28{bottom:639.073067pt;}
.y8{bottom:639.337600pt;}
.y183{bottom:639.757067pt;}
.y205{bottom:640.052267pt;}
.y13a{bottom:640.129200pt;}
.y224{bottom:640.478400pt;}
.yb6{bottom:642.070933pt;}
.y11d{bottom:647.289867pt;}
.y1bf{bottom:648.728667pt;}
.y263{bottom:652.031867pt;}
.yda{bottom:652.149867pt;}
.y6f{bottom:652.597867pt;}
.y19d{bottom:653.118133pt;}
.y100{bottom:653.844800pt;}
.y245{bottom:653.851867pt;}
.y282{bottom:654.579867pt;}
.y299{bottom:654.835333pt;}
.y4c{bottom:655.032533pt;}
.y139{bottom:656.129200pt;}
.y160{bottom:656.216933pt;}
.y8f{bottom:656.673200pt;}
.y223{bottom:658.617733pt;}
.y182{bottom:660.089067pt;}
.yb5{bottom:661.068933pt;}
.y13c{bottom:664.129200pt;}
.y11c{bottom:665.291200pt;}
.y27{bottom:668.153067pt;}
.y1bd{bottom:668.928667pt;}
.yd9{bottom:670.443200pt;}
.y6e{bottom:671.319867pt;}
.y138{bottom:672.129200pt;}
.y298{bottom:672.168667pt;}
.yff{bottom:672.413467pt;}
.y244{bottom:672.420533pt;}
.y15f{bottom:674.494267pt;}
.y8e{bottom:674.889200pt;}
.y4b{bottom:676.085200pt;}
.y204{bottom:676.425600pt;}
.y222{bottom:676.757067pt;}
.y1bc{bottom:676.928667pt;}
.y262{bottom:677.959867pt;}
.yb4{bottom:680.066933pt;}
.y13b{bottom:680.129200pt;}
.y281{bottom:680.143867pt;}
.y181{bottom:680.421067pt;}
.y137{bottom:688.129200pt;}
.y1e4{bottom:689.128667pt;}
.y6d{bottom:690.060133pt;}
.y19c{bottom:690.069200pt;}
.yfe{bottom:690.982133pt;}
.y243{bottom:690.989200pt;}
.y15e{bottom:692.737200pt;}
.y8d{bottom:693.105200pt;}
.y7{bottom:693.967600pt;}
.y203{bottom:694.612267pt;}
.y221{bottom:694.896400pt;}
.y261{bottom:696.327867pt;}
.y1e3{bottom:697.128667pt;}
.y4a{bottom:697.137867pt;}
.y280{bottom:698.147867pt;}
.yb3{bottom:699.064933pt;}
.y180{bottom:700.753067pt;}
.y297{bottom:700.835333pt;}
.y136{bottom:704.129200pt;}
.y1bb{bottom:705.128667pt;}
.yd8{bottom:707.636133pt;}
.y6c{bottom:708.782133pt;}
.y19b{bottom:708.791200pt;}
.yfd{bottom:709.550800pt;}
.y242{bottom:709.557867pt;}
.y15d{bottom:711.014533pt;}
.y8c{bottom:711.321200pt;}
.y26{bottom:712.353067pt;}
.y202{bottom:712.798933pt;}
.y220{bottom:713.035733pt;}
.y1ba{bottom:713.128667pt;}
.y260{bottom:714.695867pt;}
.yb2{bottom:718.062933pt;}
.y49{bottom:718.190533pt;}
.y6{bottom:720.367600pt;}
.y17f{bottom:721.085067pt;}
.y27f{bottom:723.711867pt;}
.y1e2{bottom:725.328667pt;}
.yd7{bottom:726.588133pt;}
.y6b{bottom:727.504133pt;}
.y19a{bottom:727.513200pt;}
.yfc{bottom:728.119467pt;}
.y241{bottom:728.126533pt;}
.y15c{bottom:729.291867pt;}
.y8b{bottom:729.537200pt;}
.y135{bottom:730.467200pt;}
.y21f{bottom:731.175067pt;}
.y25{bottom:731.433067pt;}
.y1e1{bottom:733.328667pt;}
.y5{bottom:739.207600pt;}
.y48{bottom:739.243200pt;}
.y25f{bottom:740.623867pt;}
.y1b9{bottom:741.328667pt;}
.y17e{bottom:741.417067pt;}
.y27e{bottom:741.715867pt;}
.yd6{bottom:745.540133pt;}
.y6a{bottom:746.226133pt;}
.y199{bottom:746.235200pt;}
.yfb{bottom:746.688133pt;}
.y240{bottom:746.695200pt;}
.y15b{bottom:747.569200pt;}
.y8a{bottom:747.753200pt;}
.y134{bottom:747.920533pt;}
.y201{bottom:749.172267pt;}
.y21e{bottom:749.314400pt;}
.y1b8{bottom:749.328667pt;}
.y24{bottom:750.491333pt;}
.y296{bottom:752.173733pt;}
.yb1{bottom:755.951733pt;}
.y25e{bottom:758.991867pt;}
.y27d{bottom:759.719867pt;}
.y47{bottom:760.295867pt;}
.y1e0{bottom:761.528667pt;}
.y17d{bottom:761.737200pt;}
.yd5{bottom:764.497200pt;}
.y69{bottom:764.957200pt;}
.yfa{bottom:765.263867pt;}
.y4{bottom:765.607600pt;}
.y15a{bottom:765.846533pt;}
.y89{bottom:765.969200pt;}
.y200{bottom:767.358933pt;}
.y21d{bottom:767.453733pt;}
.y23{bottom:768.238000pt;}
.y1df{bottom:769.528667pt;}
.y295{bottom:776.179067pt;}
.y1b7{bottom:777.528667pt;}
.yb0{bottom:778.289733pt;}
.y46{bottom:781.348533pt;}
.y17c{bottom:782.069200pt;}
.yd4{bottom:783.449200pt;}
.y68{bottom:783.679200pt;}
.yf9{bottom:783.832533pt;}
.y159{bottom:784.123867pt;}
.y88{bottom:784.185200pt;}
.y133{bottom:784.277200pt;}
.y3{bottom:784.447600pt;}
.y25d{bottom:784.919867pt;}
.y27c{bottom:785.283867pt;}
.y1ff{bottom:785.545600pt;}
.y22{bottom:785.984667pt;}
.y1b6{bottom:797.728667pt;}
.y294{bottom:800.184400pt;}
.yaf{bottom:800.627733pt;}
.y45{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y21{bottom:803.731333pt;}
.y20{bottom:842.834667pt;}
.y44{bottom:858.834667pt;}
.h6{height:18.651445pt;}
.hf{height:30.107146pt;}
.h13{height:35.546875pt;}
.h15{height:35.807292pt;}
.h8{height:36.229167pt;}
.h7{height:40.757812pt;}
.h1a{height:40.768479pt;}
.h11{height:41.460938pt;}
.h2{height:45.286458pt;}
.ha{height:45.448592pt;}
.h14{height:46.067708pt;}
.h3{height:47.550781pt;}
.h1b{height:48.371094pt;}
.h12{height:51.922094pt;}
.hc{height:52.079427pt;}
.h17{height:52.102360pt;}
.h18{height:52.126894pt;}
.h16{height:52.217027pt;}
.h10{height:52.336494pt;}
.hd{height:52.977865pt;}
.he{height:53.030665pt;}
.h9{height:56.608073pt;}
.hb{height:61.136719pt;}
.h5{height:63.401042pt;}
.h19{height:77.286458pt;}
.h4{height:81.515625pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x6{left:73.079333pt;}
.x8{left:74.508667pt;}
.x1{left:75.590533pt;}
.xc{left:83.178800pt;}
.x1a{left:87.965467pt;}
.x9{left:92.187200pt;}
.x7{left:93.359333pt;}
.x5{left:94.547200pt;}
.x19{left:96.418800pt;}
.xd{left:100.192133pt;}
.x2b{left:110.005067pt;}
.x36{left:112.400667pt;}
.x37{left:113.494000pt;}
.x25{left:124.710933pt;}
.x1b{left:154.487200pt;}
.xf{left:161.392133pt;}
.xe{left:163.218800pt;}
.x26{left:168.097600pt;}
.xb{left:170.225333pt;}
.x10{left:179.432133pt;}
.xa{left:189.034533pt;}
.x2d{left:190.496400pt;}
.x31{left:193.216400pt;}
.x2c{left:194.296400pt;}
.x3{left:203.031467pt;}
.x24{left:204.242133pt;}
.x4{left:206.103467pt;}
.x2{left:207.628000pt;}
.x12{left:250.872133pt;}
.x11{left:257.832133pt;}
.x1c{left:261.380533pt;}
.x27{left:262.644267pt;}
.x1d{left:267.447200pt;}
.x1e{left:322.047200pt;}
.x13{left:332.192133pt;}
.x14{left:335.725467pt;}
.x28{left:362.710933pt;}
.x15{left:423.072133pt;}
.x21{left:428.527200pt;}
.x1f{left:431.833867pt;}
.x16{left:435.072133pt;}
.x29{left:468.537600pt;}
.x2e{left:481.016400pt;}
.x32{left:482.189733pt;}
.x35{left:492.616400pt;}
.x30{left:494.936400pt;}
.x17{left:496.872133pt;}
.x33{left:498.096400pt;}
.x2f{left:501.923067pt;}
.x34{left:503.896400pt;}
.x18{left:507.712133pt;}
.x22{left:509.887200pt;}
.x2a{left:511.177600pt;}
.x20{left:513.193867pt;}
.x23{left:516.993867pt;}
}




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