
    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_99b9eb7e4143ca7602f95961.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.165000;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_35ca9b023d2d4244ad721684.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.167000;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_81132e6da41aa64e87332203.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.954000;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_91d74b71d56928c60c2390f9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.166000;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_92beec1ccd9183fa25f23bdc.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.200900;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_c2e314cfff1825bf844e7969.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.160000;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_cb8a21438fb9c96b6cffa202.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.196000;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_ee30b71be95d4da50f3e803e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.698000;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_ee30b71be95d4da50f3e803e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.698000;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_2d6051351d7f6a49da8a3758.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.184000;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_9373cbc91d7560e14d91fe8b.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.160048;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_9cc04965dca9e4e4fc7a6a6a.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.160000;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_4db53a2f9ef93fcbdccbe3e0.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.176000;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_9ee11021c147a5d93f27414f.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.155000;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_cd01da05ff1739210022aae7.woff2')format("woff");}.fff{font-family:fff;line-height:1.026000;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.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:16.998000px;}
.v7{vertical-align:18.603600px;}
.v2{vertical-align:19.980000px;}
.v1{vertical-align:31.920000px;}
.v4{vertical-align:32.977800px;}
.v6{vertical-align:65.955600px;}
.ls4c{letter-spacing:-4.266000px;}
.ls5a{letter-spacing:-4.073400px;}
.ls3b{letter-spacing:-3.682800px;}
.ls63{letter-spacing:-3.060000px;}
.ls2a{letter-spacing:-3.000000px;}
.ls36{letter-spacing:-2.460000px;}
.ls61{letter-spacing:-2.040000px;}
.ls1d{letter-spacing:-1.728000px;}
.ls11{letter-spacing:-1.428000px;}
.ls35{letter-spacing:-1.200000px;}
.ls34{letter-spacing:-0.960000px;}
.ls5f{letter-spacing:-0.900000px;}
.ls33{letter-spacing:-0.840000px;}
.ls42{letter-spacing:-0.780000px;}
.ls43{letter-spacing:-0.720000px;}
.ls32{letter-spacing:-0.660000px;}
.ls27{letter-spacing:-0.600000px;}
.ls59{letter-spacing:-0.558000px;}
.ls5e{letter-spacing:-0.540000px;}
.ls38{letter-spacing:-0.510000px;}
.ls2b{letter-spacing:-0.480000px;}
.ls62{letter-spacing:-0.459000px;}
.ls44{letter-spacing:-0.454740px;}
.ls57{letter-spacing:-0.446400px;}
.ls48{letter-spacing:-0.414000px;}
.ls4d{letter-spacing:-0.360000px;}
.ls46{letter-spacing:-0.349800px;}
.ls22{letter-spacing:-0.300000px;}
.ls3f{letter-spacing:-0.297330px;}
.ls1e{letter-spacing:-0.240000px;}
.ls58{letter-spacing:-0.223200px;}
.ls3e{letter-spacing:-0.204000px;}
.ls2c{letter-spacing:-0.180000px;}
.ls23{letter-spacing:-0.120000px;}
.ls47{letter-spacing:-0.111600px;}
.ls21{letter-spacing:-0.060000px;}
.ls28{letter-spacing:-0.055800px;}
.lsc{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.022200px;}
.ls51{letter-spacing:0.030000px;}
.ls0{letter-spacing:0.051000px;}
.ls31{letter-spacing:0.055800px;}
.ls29{letter-spacing:0.060000px;}
.ls3a{letter-spacing:0.069960px;}
.ls9{letter-spacing:0.111600px;}
.ls1a{letter-spacing:0.120000px;}
.ls4{letter-spacing:0.128100px;}
.ls54{letter-spacing:0.145080px;}
.ls55{letter-spacing:0.172980px;}
.ls39{letter-spacing:0.174900px;}
.ls18{letter-spacing:0.180000px;}
.ls56{letter-spacing:0.184140px;}
.ls15{letter-spacing:0.199800px;}
.ls5c{letter-spacing:0.210000px;}
.ls40{letter-spacing:0.223200px;}
.ls3{letter-spacing:0.240000px;}
.ls1c{letter-spacing:0.251100px;}
.ls24{letter-spacing:0.270000px;}
.ls26{letter-spacing:0.279000px;}
.ls14{letter-spacing:0.300000px;}
.ls41{letter-spacing:0.334800px;}
.ls1{letter-spacing:0.357000px;}
.ls7{letter-spacing:0.360000px;}
.ls4b{letter-spacing:0.362700px;}
.ls2d{letter-spacing:0.390000px;}
.ls37{letter-spacing:0.390600px;}
.ls20{letter-spacing:0.420000px;}
.ls1b{letter-spacing:0.450000px;}
.ls19{letter-spacing:0.480000px;}
.ls8{letter-spacing:0.540000px;}
.ls64{letter-spacing:0.561000px;}
.ls6{letter-spacing:0.570000px;}
.ls5b{letter-spacing:0.600000px;}
.ls50{letter-spacing:0.630000px;}
.ls5{letter-spacing:0.660000px;}
.ls16{letter-spacing:0.720000px;}
.lsa{letter-spacing:0.732600px;}
.ls25{letter-spacing:0.780000px;}
.ls45{letter-spacing:0.840000px;}
.ls10{letter-spacing:0.969000px;}
.lsb{letter-spacing:1.080000px;}
.ls12{letter-spacing:1.200000px;}
.ls1f{letter-spacing:1.320000px;}
.lsf{letter-spacing:1.326000px;}
.ls5d{letter-spacing:1.386000px;}
.ls17{letter-spacing:1.500000px;}
.lsd{letter-spacing:1.530000px;}
.ls3d{letter-spacing:1.836000px;}
.lse{letter-spacing:1.989000px;}
.ls2{letter-spacing:2.295000px;}
.ls2f{letter-spacing:2.862000px;}
.ls60{letter-spacing:3.315000px;}
.ls4f{letter-spacing:3.420000px;}
.ls2e{letter-spacing:4.176000px;}
.ls30{letter-spacing:72.420000px;}
.ls4a{letter-spacing:105.294600px;}
.ls4e{letter-spacing:107.760000px;}
.ls52{letter-spacing:108.754200px;}
.ls53{letter-spacing:109.981800px;}
.ls3c{letter-spacing:125.231940px;}
.ls49{letter-spacing:321.854400px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-19.776000px;}
.wsfc{word-spacing:-14.586000px;}
.ws26{word-spacing:-13.680000px;}
.ws4{word-spacing:-13.566000px;}
.ws45{word-spacing:-12.600000px;}
.ws1{word-spacing:-12.495000px;}
.ws8b{word-spacing:-12.387600px;}
.wsdb{word-spacing:-12.276000px;}
.ws3{word-spacing:-12.240000px;}
.ws72{word-spacing:-12.000000px;}
.wsa9{word-spacing:-11.997000px;}
.ws6{word-spacing:-11.850000px;}
.ws108{word-spacing:-11.832000px;}
.wsea{word-spacing:-11.820000px;}
.wsf2{word-spacing:-11.700000px;}
.wscb{word-spacing:-11.640000px;}
.ws28{word-spacing:-11.580000px;}
.ws85{word-spacing:-11.550600px;}
.wse9{word-spacing:-11.550000px;}
.ws6d{word-spacing:-11.520000px;}
.wsdc{word-spacing:-11.439000px;}
.ws5d{word-spacing:-11.400000px;}
.ws5c{word-spacing:-11.280000px;}
.ws73{word-spacing:-11.215800px;}
.ws46{word-spacing:-11.160000px;}
.ws5f{word-spacing:-11.100000px;}
.ws44{word-spacing:-11.070000px;}
.ws29{word-spacing:-11.040000px;}
.wscc{word-spacing:-10.980000px;}
.wsff{word-spacing:-10.965000px;}
.wsbe{word-spacing:-10.920000px;}
.ws5e{word-spacing:-10.800000px;}
.ws5{word-spacing:-10.710000px;}
.ws70{word-spacing:-10.680000px;}
.ws100{word-spacing:-10.506000px;}
.ws9e{word-spacing:-10.455000px;}
.ws6e{word-spacing:-10.440000px;}
.ws6f{word-spacing:-10.320000px;}
.ws71{word-spacing:-10.140000px;}
.ws2{word-spacing:-9.588000px;}
.wsfe{word-spacing:-9.537000px;}
.wsfd{word-spacing:-8.925000px;}
.ws7{word-spacing:-8.901000px;}
.wsb8{word-spacing:-8.532000px;}
.wsaa{word-spacing:-8.487000px;}
.ws101{word-spacing:-7.905000px;}
.ws89{word-spacing:-7.520700px;}
.ws8a{word-spacing:-7.415760px;}
.ws27{word-spacing:-7.345800px;}
.wsa8{word-spacing:-6.996000px;}
.wsa7{word-spacing:-6.891060px;}
.wsa2{word-spacing:-3.120000px;}
.wsc2{word-spacing:-2.678400px;}
.ws104{word-spacing:-2.280000px;}
.ws3f{word-spacing:-2.220000px;}
.ws52{word-spacing:-2.160000px;}
.wsfa{word-spacing:-2.100000px;}
.ws64{word-spacing:-2.040000px;}
.ws6b{word-spacing:-1.980000px;}
.ws2d{word-spacing:-1.920000px;}
.ws40{word-spacing:-1.860000px;}
.ws94{word-spacing:-1.841400px;}
.wsd0{word-spacing:-1.800000px;}
.ws58{word-spacing:-1.785600px;}
.wsaf{word-spacing:-1.740000px;}
.wsf9{word-spacing:-1.680000px;}
.ws13{word-spacing:-1.632000px;}
.ws7b{word-spacing:-1.620000px;}
.wse3{word-spacing:-1.581000px;}
.wsf4{word-spacing:-1.560000px;}
.wsc{word-spacing:-1.530000px;}
.wsde{word-spacing:-1.500000px;}
.ws5a{word-spacing:-1.395000px;}
.ws35{word-spacing:-1.380000px;}
.wsb6{word-spacing:-1.339200px;}
.wsd{word-spacing:-1.326000px;}
.ws4e{word-spacing:-1.320000px;}
.ws5b{word-spacing:-1.283400px;}
.ws14{word-spacing:-1.275000px;}
.wsdf{word-spacing:-1.260000px;}
.ws18{word-spacing:-1.200000px;}
.ws15{word-spacing:-1.173000px;}
.ws42{word-spacing:-1.171800px;}
.ws2c{word-spacing:-1.140000px;}
.wsa{word-spacing:-1.080000px;}
.wsa6{word-spacing:-1.060200px;}
.wse4{word-spacing:-0.948600px;}
.wsb0{word-spacing:-0.840000px;}
.wse2{word-spacing:-0.781200px;}
.ws103{word-spacing:-0.780000px;}
.ws8{word-spacing:-0.754800px;}
.wsfb{word-spacing:-0.720000px;}
.ws106{word-spacing:-0.714000px;}
.wsb2{word-spacing:-0.669600px;}
.ws4f{word-spacing:-0.660000px;}
.wsb3{word-spacing:-0.613800px;}
.ws19{word-spacing:-0.600000px;}
.ws91{word-spacing:-0.540000px;}
.wse5{word-spacing:-0.502200px;}
.wsa1{word-spacing:-0.480000px;}
.ws78{word-spacing:-0.420000px;}
.ws97{word-spacing:-0.390600px;}
.ws41{word-spacing:-0.360000px;}
.ws39{word-spacing:-0.300000px;}
.ws6c{word-spacing:-0.279000px;}
.ws1d{word-spacing:-0.240000px;}
.ws23{word-spacing:-0.223200px;}
.wse{word-spacing:-0.204000px;}
.wsf7{word-spacing:-0.180000px;}
.ws2b{word-spacing:-0.120000px;}
.ws3c{word-spacing:-0.060000px;}
.ws74{word-spacing:-0.055800px;}
.ws107{word-spacing:-0.051000px;}
.ws9{word-spacing:-0.044400px;}
.wsb{word-spacing:0.000000px;}
.ws59{word-spacing:0.055800px;}
.wse0{word-spacing:0.060000px;}
.wse1{word-spacing:0.120000px;}
.wscf{word-spacing:0.180000px;}
.ws9c{word-spacing:0.204000px;}
.wsf1{word-spacing:0.240000px;}
.ws9f{word-spacing:0.297330px;}
.ws3e{word-spacing:0.300000px;}
.ws92{word-spacing:0.334800px;}
.wsc4{word-spacing:0.360000px;}
.ws6a{word-spacing:0.420000px;}
.ws34{word-spacing:0.480000px;}
.ws95{word-spacing:0.502200px;}
.ws8e{word-spacing:0.510000px;}
.wsc5{word-spacing:0.540000px;}
.ws22{word-spacing:0.558000px;}
.ws37{word-spacing:0.600000px;}
.wsc3{word-spacing:0.660000px;}
.ws12{word-spacing:0.663000px;}
.ws11{word-spacing:0.714000px;}
.wsc6{word-spacing:0.720000px;}
.ws90{word-spacing:0.780000px;}
.ws1a{word-spacing:0.840000px;}
.wsae{word-spacing:0.960000px;}
.ws21{word-spacing:1.020000px;}
.ws56{word-spacing:1.060200px;}
.ws7a{word-spacing:1.080000px;}
.wsad{word-spacing:1.140000px;}
.ws93{word-spacing:1.171800px;}
.ws8f{word-spacing:1.200000px;}
.ws3b{word-spacing:1.320000px;}
.ws17{word-spacing:1.377000px;}
.ws69{word-spacing:1.380000px;}
.ws16{word-spacing:1.428000px;}
.ws4c{word-spacing:1.440000px;}
.wsb1{word-spacing:1.500000px;}
.wsa0{word-spacing:1.560000px;}
.ws57{word-spacing:1.618200px;}
.ws62{word-spacing:1.620000px;}
.wsf{word-spacing:1.632000px;}
.ws25{word-spacing:1.674000px;}
.ws7f{word-spacing:1.680000px;}
.ws63{word-spacing:1.740000px;}
.ws24{word-spacing:1.785600px;}
.ws1b{word-spacing:1.800000px;}
.wsb4{word-spacing:1.841400px;}
.ws1c{word-spacing:1.860000px;}
.ws43{word-spacing:1.897200px;}
.ws4d{word-spacing:1.920000px;}
.ws50{word-spacing:1.980000px;}
.ws79{word-spacing:2.040000px;}
.wse6{word-spacing:2.064600px;}
.ws81{word-spacing:2.100000px;}
.wsc7{word-spacing:2.160000px;}
.ws53{word-spacing:2.220000px;}
.ws4b{word-spacing:2.280000px;}
.ws9d{word-spacing:2.295000px;}
.ws2f{word-spacing:2.340000px;}
.ws9a{word-spacing:2.346000px;}
.ws55{word-spacing:2.399400px;}
.ws80{word-spacing:2.400000px;}
.ws9b{word-spacing:2.448000px;}
.wsb5{word-spacing:2.455200px;}
.ws8d{word-spacing:2.460000px;}
.ws38{word-spacing:2.520000px;}
.wse7{word-spacing:2.566800px;}
.wsa5{word-spacing:2.580000px;}
.ws30{word-spacing:2.640000px;}
.ws3a{word-spacing:2.700000px;}
.wsf8{word-spacing:2.760000px;}
.wsc8{word-spacing:2.845800px;}
.ws2e{word-spacing:2.880000px;}
.wsc9{word-spacing:2.901600px;}
.ws1f{word-spacing:2.940000px;}
.ws10{word-spacing:2.958000px;}
.ws33{word-spacing:3.000000px;}
.ws99{word-spacing:3.060000px;}
.ws96{word-spacing:3.069000px;}
.ws83{word-spacing:3.180000px;}
.wsca{word-spacing:3.180600px;}
.ws105{word-spacing:3.240000px;}
.wsf6{word-spacing:3.300000px;}
.ws3d{word-spacing:3.540000px;}
.wsd6{word-spacing:3.600000px;}
.ws36{word-spacing:3.660000px;}
.ws98{word-spacing:3.682800px;}
.ws76{word-spacing:3.840000px;}
.ws77{word-spacing:3.900000px;}
.wsf5{word-spacing:3.960000px;}
.ws51{word-spacing:4.020000px;}
.wse8{word-spacing:4.073400px;}
.ws20{word-spacing:4.200000px;}
.ws61{word-spacing:4.320000px;}
.wsef{word-spacing:4.560000px;}
.wsf0{word-spacing:4.680000px;}
.ws1e{word-spacing:5.100000px;}
.ws66{word-spacing:5.160000px;}
.wsd4{word-spacing:5.400000px;}
.ws31{word-spacing:5.760000px;}
.ws65{word-spacing:5.820000px;}
.wsd5{word-spacing:5.880000px;}
.ws54{word-spacing:6.480000px;}
.wsee{word-spacing:9.780000px;}
.wsec{word-spacing:11.520000px;}
.wsd2{word-spacing:12.060000px;}
.ws32{word-spacing:12.540000px;}
.wsd3{word-spacing:14.280000px;}
.wsed{word-spacing:15.480000px;}
.wsd1{word-spacing:19.800000px;}
.wsb7{word-spacing:39.618000px;}
.wsd9{word-spacing:66.067200px;}
.wsd8{word-spacing:67.294800px;}
.ws4a{word-spacing:72.420000px;}
.ws49{word-spacing:73.020000px;}
.ws7e{word-spacing:73.620000px;}
.ws48{word-spacing:85.800000px;}
.wsbf{word-spacing:93.297600px;}
.wsce{word-spacing:106.440000px;}
.ws7d{word-spacing:115.680000px;}
.wsa3{word-spacing:120.060000px;}
.wsa4{word-spacing:145.440000px;}
.ws7c{word-spacing:212.880000px;}
.ws68{word-spacing:216.300000px;}
.wsac{word-spacing:239.280000px;}
.ws67{word-spacing:245.280000px;}
.wsb9{word-spacing:254.838600px;}
.wsbc{word-spacing:277.437600px;}
.wsbd{word-spacing:279.167400px;}
.wsd7{word-spacing:283.439362px;}
.ws82{word-spacing:287.160000px;}
.wsba{word-spacing:294.512400px;}
.wsc0{word-spacing:417.328200px;}
.wsda{word-spacing:508.561200px;}
.wsbb{word-spacing:577.474200px;}
.ws87{word-spacing:581.547600px;}
.ws88{word-spacing:611.010000px;}
.ws84{word-spacing:715.411800px;}
.ws47{word-spacing:800.874000px;}
.ws75{word-spacing:800.982000px;}
.wsc1{word-spacing:807.084000px;}
.wsf3{word-spacing:807.408000px;}
.wsdd{word-spacing:807.624000px;}
.ws109{word-spacing:807.948000px;}
.ws86{word-spacing:839.460780px;}
.wsab{word-spacing:1662.282000px;}
.ws2a{word-spacing:1662.768000px;}
.ws60{word-spacing:1662.930000px;}
.ws8c{word-spacing:1664.334000px;}
.wseb{word-spacing:1671.462000px;}
.ws102{word-spacing:1671.624000px;}
.wscd{word-spacing:1673.568000px;}
._5b{margin-left:-808.593300px;}
._43{margin-left:-807.582000px;}
._42{margin-left:-806.481600px;}
._d{margin-left:-801.132300px;}
._56{margin-left:-106.680000px;}
._11{margin-left:-72.921600px;}
._41{margin-left:-40.321200px;}
._57{margin-left:-20.040000px;}
._75{margin-left:-15.720000px;}
._5a{margin-left:-14.520000px;}
._5c{margin-left:-12.616200px;}
._40{margin-left:-10.211400px;}
._58{margin-left:-8.100000px;}
._3{margin-left:-6.037200px;}
._4{margin-left:-4.649400px;}
._2{margin-left:-2.683800px;}
._1{margin-left:-1.058400px;}
._0{width:1.090800px;}
._5{width:2.218500px;}
._6{width:3.618000px;}
._7{width:5.300700px;}
._a{width:6.630600px;}
._3e{width:10.235700px;}
._b{width:12.564000px;}
._23{width:20.569200px;}
._24{width:24.463800px;}
._25{width:27.998400px;}
._1b{width:29.209200px;}
._74{width:30.912073px;}
._2e{width:31.972200px;}
._21{width:34.303800px;}
._1c{width:35.947800px;}
._73{width:37.105800px;}
._1f{width:38.569200px;}
._2f{width:40.565400px;}
._1d{width:42.590700px;}
._10{width:44.494200px;}
._15{width:45.643800px;}
._16{width:48.713400px;}
._9{width:49.884600px;}
._14{width:50.998800px;}
._c{width:52.228800px;}
._8{width:56.859600px;}
._5f{width:58.617000px;}
._27{width:66.038400px;}
._12{width:68.640000px;}
._e{width:69.749400px;}
._1e{width:72.660000px;}
._39{width:75.868260px;}
._37{width:84.202200px;}
._20{width:92.127600px;}
._34{width:93.744000px;}
._36{width:99.603000px;}
._38{width:105.573600px;}
._59{width:106.680000px;}
._17{width:120.769200px;}
._4b{width:124.374600px;}
._19{width:133.260000px;}
._22{width:136.543800px;}
._3a{width:138.105000px;}
._3c{width:139.109400px;}
._70{width:145.526400px;}
._35{width:148.762800px;}
._3d{width:151.664400px;}
._31{width:153.617400px;}
._4d{width:158.803200px;}
._1a{width:164.640000px;}
._3b{width:166.228200px;}
._5e{width:169.593600px;}
._30{width:174.654000px;}
._44{width:176.160600px;}
._32{width:185.032800px;}
._47{width:191.286000px;}
._4f{width:208.130400px;}
._28{width:212.384400px;}
._3f{width:218.499900px;}
._45{width:221.095800px;}
._13{width:232.680000px;}
._18{width:235.140000px;}
._f{width:236.280000px;}
._33{width:241.959600px;}
._60{width:254.001600px;}
._4e{width:261.144000px;}
._48{width:266.835600px;}
._49{width:273.531600px;}
._26{width:285.180000px;}
._52{width:289.267200px;}
._4a{width:295.572600px;}
._63{width:299.199600px;}
._46{width:305.449200px;}
._6e{width:316.832400px;}
._61{width:319.176000px;}
._53{width:349.869600px;}
._50{width:368.056800px;}
._51{width:374.747400px;}
._4c{width:389.149200px;}
._5d{width:398.473200px;}
._62{width:411.580800px;}
._71{width:416.273400px;}
._6b{width:440.596800px;}
._66{width:460.015200px;}
._64{width:466.711200px;}
._6d{width:471.621600px;}
._6f{width:473.742000px;}
._68{width:477.648000px;}
._6a{width:490.203000px;}
._69{width:519.665400px;}
._6c{width:522.734400px;}
._65{width:530.992800px;}
._54{width:542.766600px;}
._2a{width:561.340620px;}
._29{width:573.008400px;}
._67{width:594.498600px;}
._72{width:604.648800px;}
._55{width:795.094200px;}
._2b{width:902.565000px;}
._2c{width:934.257600px;}
._2d{width:1023.539400px;}
.fc1{color:rgb(135,135,135);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:22.200000px;}
.fsa{font-size:29.733000px;}
.fsb{font-size:32.531400px;}
.fs6{font-size:34.980000px;}
.fs7{font-size:41.400000px;}
.fs4{font-size:51.000000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:55.800000px;}
.fs2{font-size:55.968000px;}
.fs5{font-size:60.000000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.yda{bottom:76.155300px;}
.yf0{bottom:76.159050px;}
.y97{bottom:76.535550px;}
.yb7{bottom:78.236400px;}
.y12d{bottom:87.931050px;}
.y78{bottom:90.567000px;}
.y81{bottom:90.567150px;}
.y23{bottom:90.571350px;}
.y57{bottom:90.571500px;}
.y4c{bottom:90.575700px;}
.yc1{bottom:91.318050px;}
.yd9{bottom:93.406050px;}
.yef{bottom:93.409800px;}
.y96{bottom:93.935550px;}
.yb6{bottom:95.636550px;}
.y12c{bottom:105.181800px;}
.y22{bottom:107.967000px;}
.y56{bottom:107.967150px;}
.y80{bottom:107.967300px;}
.y4b{bottom:107.971350px;}
.yc0{bottom:109.768050px;}
.yd8{bottom:110.656800px;}
.yee{bottom:110.660550px;}
.y95{bottom:111.335550px;}
.yb5{bottom:113.045400px;}
.y12b{bottom:122.432550px;}
.y4a{bottom:125.367000px;}
.y77{bottom:125.367150px;}
.y55{bottom:125.367300px;}
.y21{bottom:125.371500px;}
.y94{bottom:125.380350px;}
.yd7{bottom:127.907550px;}
.yed{bottom:127.911300px;}
.ybf{bottom:128.218050px;}
.yb4{bottom:130.441050px;}
.y12a{bottom:139.683300px;}
.y20{bottom:142.767150px;}
.y54{bottom:142.767300px;}
.y64{bottom:142.771500px;}
.y7f{bottom:142.776000px;}
.yd6{bottom:145.158300px;}
.yec{bottom:145.162050px;}
.y5a{bottom:146.668050px;}
.ybe{bottom:146.668200px;}
.yb3{bottom:147.836700px;}
.y63{bottom:160.167150px;}
.y53{bottom:160.167300px;}
.y7e{bottom:160.171650px;}
.yd5{bottom:162.409050px;}
.yeb{bottom:162.412800px;}
.y59{bottom:165.118050px;}
.ybd{bottom:165.118200px;}
.yb2{bottom:165.236700px;}
.y7d{bottom:177.567300px;}
.y52{bottom:177.571500px;}
.yd4{bottom:179.659800px;}
.yea{bottom:179.663550px;}
.yb1{bottom:182.636850px;}
.y58{bottom:183.568050px;}
.y1f{bottom:183.568200px;}
.y129{bottom:186.934800px;}
.y51{bottom:194.967150px;}
.y7c{bottom:194.971800px;}
.yd3{bottom:196.910550px;}
.ye9{bottom:196.914300px;}
.yb0{bottom:200.036850px;}
.y49{bottom:202.018050px;}
.y1e{bottom:202.018200px;}
.y128{bottom:204.185550px;}
.y50{bottom:212.367450px;}
.y62{bottom:212.371650px;}
.yd2{bottom:214.161300px;}
.ye8{bottom:214.165050px;}
.yaf{bottom:217.436850px;}
.y48{bottom:220.468050px;}
.y1d{bottom:220.468200px;}
.y127{bottom:221.436300px;}
.y61{bottom:229.767300px;}
.y7b{bottom:229.767600px;}
.yd1{bottom:231.412050px;}
.ye7{bottom:231.415800px;}
.yae{bottom:234.836850px;}
.y126{bottom:238.687050px;}
.y47{bottom:238.918050px;}
.y1c{bottom:238.918200px;}
.y7a{bottom:247.167600px;}
.yd0{bottom:248.662800px;}
.ye6{bottom:248.666550px;}
.y125{bottom:255.937800px;}
.y46{bottom:257.368050px;}
.y1b{bottom:257.368200px;}
.ycf{bottom:265.913550px;}
.ye5{bottom:265.917300px;}
.yad{bottom:271.193850px;}
.y124{bottom:273.188550px;}
.y45{bottom:275.818050px;}
.y1a{bottom:275.818200px;}
.yce{bottom:283.164300px;}
.ye4{bottom:283.168050px;}
.yac{bottom:288.597600px;}
.y123{bottom:290.439300px;}
.y93{bottom:291.297450px;}
.y44{bottom:294.268050px;}
.y19{bottom:294.268200px;}
.ycd{bottom:300.415050px;}
.ye3{bottom:300.417300px;}
.y92{bottom:308.701200px;}
.y43{bottom:312.718050px;}
.y18{bottom:312.718200px;}
.yab{bottom:313.948200px;}
.ycc{bottom:317.665800px;}
.ye2{bottom:317.668050px;}
.y122{bottom:324.188550px;}
.y42{bottom:331.168050px;}
.y17{bottom:331.168200px;}
.yaa{bottom:332.920200px;}
.y91{bottom:334.082400px;}
.ye1{bottom:334.903800px;}
.ycb{bottom:334.916550px;}
.y41{bottom:349.618050px;}
.y79{bottom:349.618200px;}
.ya9{bottom:351.892200px;}
.ye0{bottom:352.154550px;}
.yca{bottom:352.167300px;}
.y90{bottom:353.054400px;}
.y40{bottom:368.068050px;}
.y16{bottom:368.068200px;}
.ydf{bottom:369.405300px;}
.yc9{bottom:369.418050px;}
.ya8{bottom:370.864200px;}
.y8f{bottom:372.026400px;}
.y121{bottom:373.684050px;}
.y3f{bottom:386.518050px;}
.ybc{bottom:386.518200px;}
.yde{bottom:386.656050px;}
.yc8{bottom:386.667300px;}
.ya7{bottom:389.836200px;}
.y120{bottom:390.934800px;}
.y8e{bottom:390.998400px;}
.ydd{bottom:403.906800px;}
.yc7{bottom:403.918050px;}
.y3e{bottom:404.968050px;}
.ybb{bottom:404.968200px;}
.y11f{bottom:408.185550px;}
.ya6{bottom:408.808200px;}
.y8d{bottom:409.970400px;}
.ydc{bottom:421.157550px;}
.yc6{bottom:421.168050px;}
.y3d{bottom:423.418050px;}
.yba{bottom:423.418200px;}
.y11e{bottom:425.436300px;}
.ya5{bottom:427.780200px;}
.y8c{bottom:428.942400px;}
.y15{bottom:428.953800px;}
.ya4{bottom:430.249350px;}
.ydb{bottom:438.408300px;}
.yc5{bottom:438.418050px;}
.y3c{bottom:441.868050px;}
.yb9{bottom:441.868200px;}
.y11d{bottom:442.687050px;}
.y14{bottom:446.204550px;}
.ya3{bottom:446.752200px;}
.y8b{bottom:447.914400px;}
.y8a{bottom:447.928350px;}
.y89{bottom:456.175500px;}
.y11c{bottom:459.937800px;}
.y3b{bottom:460.318050px;}
.yb8{bottom:460.318200px;}
.ya2{bottom:465.724200px;}
.yc4{bottom:470.668050px;}
.y11b{bottom:477.188550px;}
.y3a{bottom:478.768050px;}
.y13{bottom:480.706050px;}
.y88{bottom:483.391950px;}
.ya1{bottom:484.696200px;}
.y11a{bottom:494.439300px;}
.y39{bottom:497.218050px;}
.y12{bottom:497.956800px;}
.y87{bottom:499.894800px;}
.ya0{bottom:503.668200px;}
.y11{bottom:515.207550px;}
.y38{bottom:515.668050px;}
.y9f{bottom:522.640200px;}
.y119{bottom:528.188550px;}
.y37{bottom:534.118050px;}
.y9e{bottom:541.612200px;}
.y76{bottom:547.956300px;}
.y10{bottom:549.709050px;}
.y36{bottom:552.568050px;}
.y9d{bottom:560.584200px;}
.y9c{bottom:563.047800px;}
.y75{bottom:565.360050px;}
.y60{bottom:566.776500px;}
.yf{bottom:566.959800px;}
.y35{bottom:571.018050px;}
.y118{bottom:577.684050px;}
.y104{bottom:577.696800px;}
.y9b{bottom:579.550650px;}
.y34{bottom:589.468050px;}
.yc3{bottom:589.468200px;}
.y73{bottom:590.788500px;}
.y5f{bottom:592.182750px;}
.y117{bottom:594.934800px;}
.y103{bottom:594.947550px;}
.y9a{bottom:598.522650px;}
.ye{bottom:601.461300px;}
.y72{bottom:607.288500px;}
.y74{bottom:607.291350px;}
.y33{bottom:607.918050px;}
.y5e{bottom:611.154750px;}
.y116{bottom:612.185550px;}
.y102{bottom:612.198300px;}
.yd{bottom:618.712050px;}
.y71{bottom:623.782950px;}
.y32{bottom:626.368050px;}
.y115{bottom:629.436300px;}
.y101{bottom:629.449050px;}
.y5d{bottom:630.126750px;}
.yc{bottom:635.962800px;}
.y70{bottom:642.754950px;}
.y31{bottom:644.818050px;}
.y99{bottom:644.818200px;}
.y114{bottom:646.687050px;}
.y100{bottom:646.699800px;}
.y5c{bottom:649.098750px;}
.yb{bottom:653.213550px;}
.y6f{bottom:659.260500px;}
.y30{bottom:663.268050px;}
.y98{bottom:663.268200px;}
.y113{bottom:663.937800px;}
.yff{bottom:663.950550px;}
.y5b{bottom:668.070750px;}
.ya{bottom:670.464300px;}
.y6e{bottom:678.218550px;}
.y112{bottom:681.188550px;}
.yfe{bottom:681.201300px;}
.y2f{bottom:681.718050px;}
.yc2{bottom:681.718200px;}
.y9{bottom:687.715050px;}
.y6d{bottom:694.721400px;}
.y111{bottom:698.439300px;}
.yfd{bottom:698.452050px;}
.y4f{bottom:700.168050px;}
.y8{bottom:704.965800px;}
.y6c{bottom:711.215850px;}
.y110{bottom:715.690050px;}
.yfc{bottom:715.702800px;}
.y2e{bottom:718.618050px;}
.y7{bottom:722.216550px;}
.y6b{bottom:730.187850px;}
.y10f{bottom:732.940800px;}
.yfb{bottom:732.953550px;}
.y4e{bottom:737.068050px;}
.y6{bottom:739.467300px;}
.y6a{bottom:746.693400px;}
.y86{bottom:749.667000px;}
.y10e{bottom:750.191550px;}
.yfa{bottom:750.204300px;}
.y4d{bottom:755.518050px;}
.y5{bottom:756.718050px;}
.y69{bottom:765.651450px;}
.y10d{bottom:767.442300px;}
.yf9{bottom:767.455050px;}
.y2d{bottom:773.968050px;}
.y85{bottom:775.078800px;}
.y68{bottom:782.154300px;}
.y10c{bottom:784.693050px;}
.yf8{bottom:784.705800px;}
.y2c{bottom:792.418050px;}
.y84{bottom:794.050800px;}
.y67{bottom:798.645900px;}
.y10b{bottom:801.943800px;}
.yf7{bottom:801.956550px;}
.y2b{bottom:810.868050px;}
.y83{bottom:813.022800px;}
.y66{bottom:817.617900px;}
.y10a{bottom:819.194550px;}
.yf6{bottom:819.207300px;}
.y4{bottom:828.203550px;}
.y2a{bottom:829.318050px;}
.y82{bottom:831.994800px;}
.y65{bottom:834.120750px;}
.y109{bottom:836.445300px;}
.yf5{bottom:836.458050px;}
.y29{bottom:847.768050px;}
.y108{bottom:853.696050px;}
.yf4{bottom:853.708800px;}
.y25{bottom:857.391000px;}
.y24{bottom:864.889050px;}
.y28{bottom:866.218050px;}
.y3{bottom:870.815700px;}
.y107{bottom:870.946800px;}
.yf3{bottom:870.959550px;}
.y27{bottom:884.668050px;}
.y106{bottom:888.197550px;}
.yf2{bottom:888.210300px;}
.y2{bottom:896.303700px;}
.y26{bottom:903.118050px;}
.y105{bottom:905.448300px;}
.yf1{bottom:905.461050px;}
.y1{bottom:955.942350px;}
.ha{height:15.295800px;}
.h17{height:45.543000px;}
.h14{height:45.696000px;}
.h6{height:45.900000px;}
.he{height:46.308000px;}
.h18{height:46.614000px;}
.h5{height:48.195000px;}
.h13{height:49.829400px;}
.h9{height:49.996800px;}
.h12{height:50.019000px;}
.hd{height:50.666400px;}
.h10{height:50.700000px;}
.h2{height:50.868000px;}
.h8{height:54.000000px;}
.hf{height:54.000600px;}
.hb{height:54.840000px;}
.hc{height:56.520000px;}
.h7{height:56.700000px;}
.h4{height:67.824000px;}
.h11{height:82.974600px;}
.h3{height:90.720000px;}
.h15{height:115.952400px;}
.h16{height:116.008200px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:697.323000px;}
.w1{width:697.500000px;}
.x0{left:0.000000px;}
.x4{left:25.310100px;}
.x3{left:28.379250px;}
.x1{left:72.283500px;}
.x5{left:80.787450px;}
.x1f{left:85.033500px;}
.x2{left:93.546750px;}
.x6{left:102.039900px;}
.x1b{left:185.385900px;}
.x9{left:200.098950px;}
.x15{left:206.715750px;}
.x12{left:211.685700px;}
.x13{left:219.358350px;}
.xa{left:221.930700px;}
.x11{left:223.027050px;}
.x14{left:229.606200px;}
.x16{left:235.508550px;}
.x19{left:256.818900px;}
.xc{left:313.400850px;}
.xb{left:327.057900px;}
.x20{left:353.421000px;}
.x1e{left:361.924950px;}
.x21{left:366.171000px;}
.x1d{left:374.674950px;}
.x1c{left:403.011750px;}
.x17{left:407.637600px;}
.xd{left:409.865100px;}
.xe{left:432.826800px;}
.x18{left:446.404650px;}
.x1a{left:463.460250px;}
.x10{left:524.492250px;}
.xf{left:537.019350px;}
.x8{left:650.349450px;}
.x7{left:653.418600px;}
@media print{
.v3{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:15.109333pt;}
.v7{vertical-align:16.536533pt;}
.v2{vertical-align:17.760000pt;}
.v1{vertical-align:28.373333pt;}
.v4{vertical-align:29.313600pt;}
.v6{vertical-align:58.627200pt;}
.ls4c{letter-spacing:-3.792000pt;}
.ls5a{letter-spacing:-3.620800pt;}
.ls3b{letter-spacing:-3.273600pt;}
.ls63{letter-spacing:-2.720000pt;}
.ls2a{letter-spacing:-2.666667pt;}
.ls36{letter-spacing:-2.186667pt;}
.ls61{letter-spacing:-1.813333pt;}
.ls1d{letter-spacing:-1.536000pt;}
.ls11{letter-spacing:-1.269333pt;}
.ls35{letter-spacing:-1.066667pt;}
.ls34{letter-spacing:-0.853333pt;}
.ls5f{letter-spacing:-0.800000pt;}
.ls33{letter-spacing:-0.746667pt;}
.ls42{letter-spacing:-0.693333pt;}
.ls43{letter-spacing:-0.640000pt;}
.ls32{letter-spacing:-0.586667pt;}
.ls27{letter-spacing:-0.533333pt;}
.ls59{letter-spacing:-0.496000pt;}
.ls5e{letter-spacing:-0.480000pt;}
.ls38{letter-spacing:-0.453333pt;}
.ls2b{letter-spacing:-0.426667pt;}
.ls62{letter-spacing:-0.408000pt;}
.ls44{letter-spacing:-0.404213pt;}
.ls57{letter-spacing:-0.396800pt;}
.ls48{letter-spacing:-0.368000pt;}
.ls4d{letter-spacing:-0.320000pt;}
.ls46{letter-spacing:-0.310933pt;}
.ls22{letter-spacing:-0.266667pt;}
.ls3f{letter-spacing:-0.264293pt;}
.ls1e{letter-spacing:-0.213333pt;}
.ls58{letter-spacing:-0.198400pt;}
.ls3e{letter-spacing:-0.181333pt;}
.ls2c{letter-spacing:-0.160000pt;}
.ls23{letter-spacing:-0.106667pt;}
.ls47{letter-spacing:-0.099200pt;}
.ls21{letter-spacing:-0.053333pt;}
.ls28{letter-spacing:-0.049600pt;}
.lsc{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.019733pt;}
.ls51{letter-spacing:0.026667pt;}
.ls0{letter-spacing:0.045333pt;}
.ls31{letter-spacing:0.049600pt;}
.ls29{letter-spacing:0.053333pt;}
.ls3a{letter-spacing:0.062187pt;}
.ls9{letter-spacing:0.099200pt;}
.ls1a{letter-spacing:0.106667pt;}
.ls4{letter-spacing:0.113867pt;}
.ls54{letter-spacing:0.128960pt;}
.ls55{letter-spacing:0.153760pt;}
.ls39{letter-spacing:0.155467pt;}
.ls18{letter-spacing:0.160000pt;}
.ls56{letter-spacing:0.163680pt;}
.ls15{letter-spacing:0.177600pt;}
.ls5c{letter-spacing:0.186667pt;}
.ls40{letter-spacing:0.198400pt;}
.ls3{letter-spacing:0.213333pt;}
.ls1c{letter-spacing:0.223200pt;}
.ls24{letter-spacing:0.240000pt;}
.ls26{letter-spacing:0.248000pt;}
.ls14{letter-spacing:0.266667pt;}
.ls41{letter-spacing:0.297600pt;}
.ls1{letter-spacing:0.317333pt;}
.ls7{letter-spacing:0.320000pt;}
.ls4b{letter-spacing:0.322400pt;}
.ls2d{letter-spacing:0.346667pt;}
.ls37{letter-spacing:0.347200pt;}
.ls20{letter-spacing:0.373333pt;}
.ls1b{letter-spacing:0.400000pt;}
.ls19{letter-spacing:0.426667pt;}
.ls8{letter-spacing:0.480000pt;}
.ls64{letter-spacing:0.498667pt;}
.ls6{letter-spacing:0.506667pt;}
.ls5b{letter-spacing:0.533333pt;}
.ls50{letter-spacing:0.560000pt;}
.ls5{letter-spacing:0.586667pt;}
.ls16{letter-spacing:0.640000pt;}
.lsa{letter-spacing:0.651200pt;}
.ls25{letter-spacing:0.693333pt;}
.ls45{letter-spacing:0.746667pt;}
.ls10{letter-spacing:0.861333pt;}
.lsb{letter-spacing:0.960000pt;}
.ls12{letter-spacing:1.066667pt;}
.ls1f{letter-spacing:1.173333pt;}
.lsf{letter-spacing:1.178667pt;}
.ls5d{letter-spacing:1.232000pt;}
.ls17{letter-spacing:1.333333pt;}
.lsd{letter-spacing:1.360000pt;}
.ls3d{letter-spacing:1.632000pt;}
.lse{letter-spacing:1.768000pt;}
.ls2{letter-spacing:2.040000pt;}
.ls2f{letter-spacing:2.544000pt;}
.ls60{letter-spacing:2.946667pt;}
.ls4f{letter-spacing:3.040000pt;}
.ls2e{letter-spacing:3.712000pt;}
.ls30{letter-spacing:64.373333pt;}
.ls4a{letter-spacing:93.595200pt;}
.ls4e{letter-spacing:95.786667pt;}
.ls52{letter-spacing:96.670400pt;}
.ls53{letter-spacing:97.761600pt;}
.ls3c{letter-spacing:111.317280pt;}
.ls49{letter-spacing:286.092800pt;}
.ws0{word-spacing:-17.578667pt;}
.wsfc{word-spacing:-12.965333pt;}
.ws26{word-spacing:-12.160000pt;}
.ws4{word-spacing:-12.058667pt;}
.ws45{word-spacing:-11.200000pt;}
.ws1{word-spacing:-11.106667pt;}
.ws8b{word-spacing:-11.011200pt;}
.wsdb{word-spacing:-10.912000pt;}
.ws3{word-spacing:-10.880000pt;}
.ws72{word-spacing:-10.666667pt;}
.wsa9{word-spacing:-10.664000pt;}
.ws6{word-spacing:-10.533333pt;}
.ws108{word-spacing:-10.517333pt;}
.wsea{word-spacing:-10.506667pt;}
.wsf2{word-spacing:-10.400000pt;}
.wscb{word-spacing:-10.346667pt;}
.ws28{word-spacing:-10.293333pt;}
.ws85{word-spacing:-10.267200pt;}
.wse9{word-spacing:-10.266667pt;}
.ws6d{word-spacing:-10.240000pt;}
.wsdc{word-spacing:-10.168000pt;}
.ws5d{word-spacing:-10.133333pt;}
.ws5c{word-spacing:-10.026667pt;}
.ws73{word-spacing:-9.969600pt;}
.ws46{word-spacing:-9.920000pt;}
.ws5f{word-spacing:-9.866667pt;}
.ws44{word-spacing:-9.840000pt;}
.ws29{word-spacing:-9.813333pt;}
.wscc{word-spacing:-9.760000pt;}
.wsff{word-spacing:-9.746667pt;}
.wsbe{word-spacing:-9.706667pt;}
.ws5e{word-spacing:-9.600000pt;}
.ws5{word-spacing:-9.520000pt;}
.ws70{word-spacing:-9.493333pt;}
.ws100{word-spacing:-9.338667pt;}
.ws9e{word-spacing:-9.293333pt;}
.ws6e{word-spacing:-9.280000pt;}
.ws6f{word-spacing:-9.173333pt;}
.ws71{word-spacing:-9.013333pt;}
.ws2{word-spacing:-8.522667pt;}
.wsfe{word-spacing:-8.477333pt;}
.wsfd{word-spacing:-7.933333pt;}
.ws7{word-spacing:-7.912000pt;}
.wsb8{word-spacing:-7.584000pt;}
.wsaa{word-spacing:-7.544000pt;}
.ws101{word-spacing:-7.026667pt;}
.ws89{word-spacing:-6.685067pt;}
.ws8a{word-spacing:-6.591787pt;}
.ws27{word-spacing:-6.529600pt;}
.wsa8{word-spacing:-6.218667pt;}
.wsa7{word-spacing:-6.125387pt;}
.wsa2{word-spacing:-2.773333pt;}
.wsc2{word-spacing:-2.380800pt;}
.ws104{word-spacing:-2.026667pt;}
.ws3f{word-spacing:-1.973333pt;}
.ws52{word-spacing:-1.920000pt;}
.wsfa{word-spacing:-1.866667pt;}
.ws64{word-spacing:-1.813333pt;}
.ws6b{word-spacing:-1.760000pt;}
.ws2d{word-spacing:-1.706667pt;}
.ws40{word-spacing:-1.653333pt;}
.ws94{word-spacing:-1.636800pt;}
.wsd0{word-spacing:-1.600000pt;}
.ws58{word-spacing:-1.587200pt;}
.wsaf{word-spacing:-1.546667pt;}
.wsf9{word-spacing:-1.493333pt;}
.ws13{word-spacing:-1.450667pt;}
.ws7b{word-spacing:-1.440000pt;}
.wse3{word-spacing:-1.405333pt;}
.wsf4{word-spacing:-1.386667pt;}
.wsc{word-spacing:-1.360000pt;}
.wsde{word-spacing:-1.333333pt;}
.ws5a{word-spacing:-1.240000pt;}
.ws35{word-spacing:-1.226667pt;}
.wsb6{word-spacing:-1.190400pt;}
.wsd{word-spacing:-1.178667pt;}
.ws4e{word-spacing:-1.173333pt;}
.ws5b{word-spacing:-1.140800pt;}
.ws14{word-spacing:-1.133333pt;}
.wsdf{word-spacing:-1.120000pt;}
.ws18{word-spacing:-1.066667pt;}
.ws15{word-spacing:-1.042667pt;}
.ws42{word-spacing:-1.041600pt;}
.ws2c{word-spacing:-1.013333pt;}
.wsa{word-spacing:-0.960000pt;}
.wsa6{word-spacing:-0.942400pt;}
.wse4{word-spacing:-0.843200pt;}
.wsb0{word-spacing:-0.746667pt;}
.wse2{word-spacing:-0.694400pt;}
.ws103{word-spacing:-0.693333pt;}
.ws8{word-spacing:-0.670933pt;}
.wsfb{word-spacing:-0.640000pt;}
.ws106{word-spacing:-0.634667pt;}
.wsb2{word-spacing:-0.595200pt;}
.ws4f{word-spacing:-0.586667pt;}
.wsb3{word-spacing:-0.545600pt;}
.ws19{word-spacing:-0.533333pt;}
.ws91{word-spacing:-0.480000pt;}
.wse5{word-spacing:-0.446400pt;}
.wsa1{word-spacing:-0.426667pt;}
.ws78{word-spacing:-0.373333pt;}
.ws97{word-spacing:-0.347200pt;}
.ws41{word-spacing:-0.320000pt;}
.ws39{word-spacing:-0.266667pt;}
.ws6c{word-spacing:-0.248000pt;}
.ws1d{word-spacing:-0.213333pt;}
.ws23{word-spacing:-0.198400pt;}
.wse{word-spacing:-0.181333pt;}
.wsf7{word-spacing:-0.160000pt;}
.ws2b{word-spacing:-0.106667pt;}
.ws3c{word-spacing:-0.053333pt;}
.ws74{word-spacing:-0.049600pt;}
.ws107{word-spacing:-0.045333pt;}
.ws9{word-spacing:-0.039467pt;}
.wsb{word-spacing:0.000000pt;}
.ws59{word-spacing:0.049600pt;}
.wse0{word-spacing:0.053333pt;}
.wse1{word-spacing:0.106667pt;}
.wscf{word-spacing:0.160000pt;}
.ws9c{word-spacing:0.181333pt;}
.wsf1{word-spacing:0.213333pt;}
.ws9f{word-spacing:0.264293pt;}
.ws3e{word-spacing:0.266667pt;}
.ws92{word-spacing:0.297600pt;}
.wsc4{word-spacing:0.320000pt;}
.ws6a{word-spacing:0.373333pt;}
.ws34{word-spacing:0.426667pt;}
.ws95{word-spacing:0.446400pt;}
.ws8e{word-spacing:0.453333pt;}
.wsc5{word-spacing:0.480000pt;}
.ws22{word-spacing:0.496000pt;}
.ws37{word-spacing:0.533333pt;}
.wsc3{word-spacing:0.586667pt;}
.ws12{word-spacing:0.589333pt;}
.ws11{word-spacing:0.634667pt;}
.wsc6{word-spacing:0.640000pt;}
.ws90{word-spacing:0.693333pt;}
.ws1a{word-spacing:0.746667pt;}
.wsae{word-spacing:0.853333pt;}
.ws21{word-spacing:0.906667pt;}
.ws56{word-spacing:0.942400pt;}
.ws7a{word-spacing:0.960000pt;}
.wsad{word-spacing:1.013333pt;}
.ws93{word-spacing:1.041600pt;}
.ws8f{word-spacing:1.066667pt;}
.ws3b{word-spacing:1.173333pt;}
.ws17{word-spacing:1.224000pt;}
.ws69{word-spacing:1.226667pt;}
.ws16{word-spacing:1.269333pt;}
.ws4c{word-spacing:1.280000pt;}
.wsb1{word-spacing:1.333333pt;}
.wsa0{word-spacing:1.386667pt;}
.ws57{word-spacing:1.438400pt;}
.ws62{word-spacing:1.440000pt;}
.wsf{word-spacing:1.450667pt;}
.ws25{word-spacing:1.488000pt;}
.ws7f{word-spacing:1.493333pt;}
.ws63{word-spacing:1.546667pt;}
.ws24{word-spacing:1.587200pt;}
.ws1b{word-spacing:1.600000pt;}
.wsb4{word-spacing:1.636800pt;}
.ws1c{word-spacing:1.653333pt;}
.ws43{word-spacing:1.686400pt;}
.ws4d{word-spacing:1.706667pt;}
.ws50{word-spacing:1.760000pt;}
.ws79{word-spacing:1.813333pt;}
.wse6{word-spacing:1.835200pt;}
.ws81{word-spacing:1.866667pt;}
.wsc7{word-spacing:1.920000pt;}
.ws53{word-spacing:1.973333pt;}
.ws4b{word-spacing:2.026667pt;}
.ws9d{word-spacing:2.040000pt;}
.ws2f{word-spacing:2.080000pt;}
.ws9a{word-spacing:2.085333pt;}
.ws55{word-spacing:2.132800pt;}
.ws80{word-spacing:2.133333pt;}
.ws9b{word-spacing:2.176000pt;}
.wsb5{word-spacing:2.182400pt;}
.ws8d{word-spacing:2.186667pt;}
.ws38{word-spacing:2.240000pt;}
.wse7{word-spacing:2.281600pt;}
.wsa5{word-spacing:2.293333pt;}
.ws30{word-spacing:2.346667pt;}
.ws3a{word-spacing:2.400000pt;}
.wsf8{word-spacing:2.453333pt;}
.wsc8{word-spacing:2.529600pt;}
.ws2e{word-spacing:2.560000pt;}
.wsc9{word-spacing:2.579200pt;}
.ws1f{word-spacing:2.613333pt;}
.ws10{word-spacing:2.629333pt;}
.ws33{word-spacing:2.666667pt;}
.ws99{word-spacing:2.720000pt;}
.ws96{word-spacing:2.728000pt;}
.ws83{word-spacing:2.826667pt;}
.wsca{word-spacing:2.827200pt;}
.ws105{word-spacing:2.880000pt;}
.wsf6{word-spacing:2.933333pt;}
.ws3d{word-spacing:3.146667pt;}
.wsd6{word-spacing:3.200000pt;}
.ws36{word-spacing:3.253333pt;}
.ws98{word-spacing:3.273600pt;}
.ws76{word-spacing:3.413333pt;}
.ws77{word-spacing:3.466667pt;}
.wsf5{word-spacing:3.520000pt;}
.ws51{word-spacing:3.573333pt;}
.wse8{word-spacing:3.620800pt;}
.ws20{word-spacing:3.733333pt;}
.ws61{word-spacing:3.840000pt;}
.wsef{word-spacing:4.053333pt;}
.wsf0{word-spacing:4.160000pt;}
.ws1e{word-spacing:4.533333pt;}
.ws66{word-spacing:4.586667pt;}
.wsd4{word-spacing:4.800000pt;}
.ws31{word-spacing:5.120000pt;}
.ws65{word-spacing:5.173333pt;}
.wsd5{word-spacing:5.226667pt;}
.ws54{word-spacing:5.760000pt;}
.wsee{word-spacing:8.693333pt;}
.wsec{word-spacing:10.240000pt;}
.wsd2{word-spacing:10.720000pt;}
.ws32{word-spacing:11.146667pt;}
.wsd3{word-spacing:12.693333pt;}
.wsed{word-spacing:13.760000pt;}
.wsd1{word-spacing:17.600000pt;}
.wsb7{word-spacing:35.216000pt;}
.wsd9{word-spacing:58.726400pt;}
.wsd8{word-spacing:59.817600pt;}
.ws4a{word-spacing:64.373333pt;}
.ws49{word-spacing:64.906667pt;}
.ws7e{word-spacing:65.440000pt;}
.ws48{word-spacing:76.266667pt;}
.wsbf{word-spacing:82.931200pt;}
.wsce{word-spacing:94.613333pt;}
.ws7d{word-spacing:102.826667pt;}
.wsa3{word-spacing:106.720000pt;}
.wsa4{word-spacing:129.280000pt;}
.ws7c{word-spacing:189.226667pt;}
.ws68{word-spacing:192.266667pt;}
.wsac{word-spacing:212.693333pt;}
.ws67{word-spacing:218.026667pt;}
.wsb9{word-spacing:226.523200pt;}
.wsbc{word-spacing:246.611200pt;}
.wsbd{word-spacing:248.148800pt;}
.wsd7{word-spacing:251.946099pt;}
.ws82{word-spacing:255.253333pt;}
.wsba{word-spacing:261.788800pt;}
.wsc0{word-spacing:370.958400pt;}
.wsda{word-spacing:452.054400pt;}
.wsbb{word-spacing:513.310400pt;}
.ws87{word-spacing:516.931200pt;}
.ws88{word-spacing:543.120000pt;}
.ws84{word-spacing:635.921600pt;}
.ws47{word-spacing:711.888000pt;}
.ws75{word-spacing:711.984000pt;}
.wsc1{word-spacing:717.408000pt;}
.wsf3{word-spacing:717.696000pt;}
.wsdd{word-spacing:717.888000pt;}
.ws109{word-spacing:718.176000pt;}
.ws86{word-spacing:746.187360pt;}
.wsab{word-spacing:1477.584000pt;}
.ws2a{word-spacing:1478.016000pt;}
.ws60{word-spacing:1478.160000pt;}
.ws8c{word-spacing:1479.408000pt;}
.wseb{word-spacing:1485.744000pt;}
.ws102{word-spacing:1485.888000pt;}
.wscd{word-spacing:1487.616000pt;}
._5b{margin-left:-718.749600pt;}
._43{margin-left:-717.850667pt;}
._42{margin-left:-716.872533pt;}
._d{margin-left:-712.117600pt;}
._56{margin-left:-94.826667pt;}
._11{margin-left:-64.819200pt;}
._41{margin-left:-35.841067pt;}
._57{margin-left:-17.813333pt;}
._75{margin-left:-13.973333pt;}
._5a{margin-left:-12.906667pt;}
._5c{margin-left:-11.214400pt;}
._40{margin-left:-9.076800pt;}
._58{margin-left:-7.200000pt;}
._3{margin-left:-5.366400pt;}
._4{margin-left:-4.132800pt;}
._2{margin-left:-2.385600pt;}
._1{margin-left:-0.940800pt;}
._0{width:0.969600pt;}
._5{width:1.972000pt;}
._6{width:3.216000pt;}
._7{width:4.711733pt;}
._a{width:5.893867pt;}
._3e{width:9.098400pt;}
._b{width:11.168000pt;}
._23{width:18.283733pt;}
._24{width:21.745600pt;}
._25{width:24.887467pt;}
._1b{width:25.963733pt;}
._74{width:27.477398pt;}
._2e{width:28.419733pt;}
._21{width:30.492267pt;}
._1c{width:31.953600pt;}
._73{width:32.982933pt;}
._1f{width:34.283733pt;}
._2f{width:36.058133pt;}
._1d{width:37.858400pt;}
._10{width:39.550400pt;}
._15{width:40.572267pt;}
._16{width:43.300800pt;}
._9{width:44.341867pt;}
._14{width:45.332267pt;}
._c{width:46.425600pt;}
._8{width:50.541867pt;}
._5f{width:52.104000pt;}
._27{width:58.700800pt;}
._12{width:61.013333pt;}
._e{width:61.999467pt;}
._1e{width:64.586667pt;}
._39{width:67.438453pt;}
._37{width:74.846400pt;}
._20{width:81.891200pt;}
._34{width:83.328000pt;}
._36{width:88.536000pt;}
._38{width:93.843200pt;}
._59{width:94.826667pt;}
._17{width:107.350400pt;}
._4b{width:110.555200pt;}
._19{width:118.453333pt;}
._22{width:121.372267pt;}
._3a{width:122.760000pt;}
._3c{width:123.652800pt;}
._70{width:129.356800pt;}
._35{width:132.233600pt;}
._3d{width:134.812800pt;}
._31{width:136.548800pt;}
._4d{width:141.158400pt;}
._1a{width:146.346667pt;}
._3b{width:147.758400pt;}
._5e{width:150.749867pt;}
._30{width:155.248000pt;}
._44{width:156.587200pt;}
._32{width:164.473600pt;}
._47{width:170.032000pt;}
._4f{width:185.004800pt;}
._28{width:188.786133pt;}
._3f{width:194.222133pt;}
._45{width:196.529600pt;}
._13{width:206.826667pt;}
._18{width:209.013333pt;}
._f{width:210.026667pt;}
._33{width:215.075200pt;}
._60{width:225.779200pt;}
._4e{width:232.128000pt;}
._48{width:237.187200pt;}
._49{width:243.139200pt;}
._26{width:253.493333pt;}
._52{width:257.126400pt;}
._4a{width:262.731200pt;}
._63{width:265.955200pt;}
._46{width:271.510400pt;}
._6e{width:281.628800pt;}
._61{width:283.712000pt;}
._53{width:310.995200pt;}
._50{width:327.161600pt;}
._51{width:333.108800pt;}
._4c{width:345.910400pt;}
._5d{width:354.198400pt;}
._62{width:365.849600pt;}
._71{width:370.020800pt;}
._6b{width:391.641600pt;}
._66{width:408.902400pt;}
._64{width:414.854400pt;}
._6d{width:419.219200pt;}
._6f{width:421.104000pt;}
._68{width:424.576000pt;}
._6a{width:435.736000pt;}
._69{width:461.924800pt;}
._6c{width:464.652800pt;}
._65{width:471.993600pt;}
._54{width:482.459200pt;}
._2a{width:498.969440pt;}
._29{width:509.340800pt;}
._67{width:528.443200pt;}
._72{width:537.465600pt;}
._55{width:706.750400pt;}
._2b{width:802.280000pt;}
._2c{width:830.451200pt;}
._2d{width:909.812800pt;}
.fs9{font-size:19.733333pt;}
.fsa{font-size:26.429333pt;}
.fsb{font-size:28.916800pt;}
.fs6{font-size:31.093333pt;}
.fs7{font-size:36.800000pt;}
.fs4{font-size:45.333333pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:49.600000pt;}
.fs2{font-size:49.749333pt;}
.fs5{font-size:53.333333pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.yda{bottom:67.693600pt;}
.yf0{bottom:67.696933pt;}
.y97{bottom:68.031600pt;}
.yb7{bottom:69.543467pt;}
.y12d{bottom:78.160933pt;}
.y78{bottom:80.504000pt;}
.y81{bottom:80.504133pt;}
.y23{bottom:80.507867pt;}
.y57{bottom:80.508000pt;}
.y4c{bottom:80.511733pt;}
.yc1{bottom:81.171600pt;}
.yd9{bottom:83.027600pt;}
.yef{bottom:83.030933pt;}
.y96{bottom:83.498267pt;}
.yb6{bottom:85.010267pt;}
.y12c{bottom:93.494933pt;}
.y22{bottom:95.970667pt;}
.y56{bottom:95.970800pt;}
.y80{bottom:95.970933pt;}
.y4b{bottom:95.974533pt;}
.yc0{bottom:97.571600pt;}
.yd8{bottom:98.361600pt;}
.yee{bottom:98.364933pt;}
.y95{bottom:98.964933pt;}
.yb5{bottom:100.484800pt;}
.y12b{bottom:108.828933pt;}
.y4a{bottom:111.437333pt;}
.y77{bottom:111.437467pt;}
.y55{bottom:111.437600pt;}
.y21{bottom:111.441333pt;}
.y94{bottom:111.449200pt;}
.yd7{bottom:113.695600pt;}
.yed{bottom:113.698933pt;}
.ybf{bottom:113.971600pt;}
.yb4{bottom:115.947600pt;}
.y12a{bottom:124.162933pt;}
.y20{bottom:126.904133pt;}
.y54{bottom:126.904267pt;}
.y64{bottom:126.908000pt;}
.y7f{bottom:126.912000pt;}
.yd6{bottom:129.029600pt;}
.yec{bottom:129.032933pt;}
.y5a{bottom:130.371600pt;}
.ybe{bottom:130.371733pt;}
.yb3{bottom:131.410400pt;}
.y63{bottom:142.370800pt;}
.y53{bottom:142.370933pt;}
.y7e{bottom:142.374800pt;}
.yd5{bottom:144.363600pt;}
.yeb{bottom:144.366933pt;}
.y59{bottom:146.771600pt;}
.ybd{bottom:146.771733pt;}
.yb2{bottom:146.877067pt;}
.y7d{bottom:157.837600pt;}
.y52{bottom:157.841333pt;}
.yd4{bottom:159.697600pt;}
.yea{bottom:159.700933pt;}
.yb1{bottom:162.343867pt;}
.y58{bottom:163.171600pt;}
.y1f{bottom:163.171733pt;}
.y129{bottom:166.164267pt;}
.y51{bottom:173.304133pt;}
.y7c{bottom:173.308267pt;}
.yd3{bottom:175.031600pt;}
.ye9{bottom:175.034933pt;}
.yb0{bottom:177.810533pt;}
.y49{bottom:179.571600pt;}
.y1e{bottom:179.571733pt;}
.y128{bottom:181.498267pt;}
.y50{bottom:188.771067pt;}
.y62{bottom:188.774800pt;}
.yd2{bottom:190.365600pt;}
.ye8{bottom:190.368933pt;}
.yaf{bottom:193.277200pt;}
.y48{bottom:195.971600pt;}
.y1d{bottom:195.971733pt;}
.y127{bottom:196.832267pt;}
.y61{bottom:204.237600pt;}
.y7b{bottom:204.237867pt;}
.yd1{bottom:205.699600pt;}
.ye7{bottom:205.702933pt;}
.yae{bottom:208.743867pt;}
.y126{bottom:212.166267pt;}
.y47{bottom:212.371600pt;}
.y1c{bottom:212.371733pt;}
.y7a{bottom:219.704533pt;}
.yd0{bottom:221.033600pt;}
.ye6{bottom:221.036933pt;}
.y125{bottom:227.500267pt;}
.y46{bottom:228.771600pt;}
.y1b{bottom:228.771733pt;}
.ycf{bottom:236.367600pt;}
.ye5{bottom:236.370933pt;}
.yad{bottom:241.061200pt;}
.y124{bottom:242.834267pt;}
.y45{bottom:245.171600pt;}
.y1a{bottom:245.171733pt;}
.yce{bottom:251.701600pt;}
.ye4{bottom:251.704933pt;}
.yac{bottom:256.531200pt;}
.y123{bottom:258.168267pt;}
.y93{bottom:258.931067pt;}
.y44{bottom:261.571600pt;}
.y19{bottom:261.571733pt;}
.ycd{bottom:267.035600pt;}
.ye3{bottom:267.037600pt;}
.y92{bottom:274.401067pt;}
.y43{bottom:277.971600pt;}
.y18{bottom:277.971733pt;}
.yab{bottom:279.065067pt;}
.ycc{bottom:282.369600pt;}
.ye2{bottom:282.371600pt;}
.y122{bottom:288.167600pt;}
.y42{bottom:294.371600pt;}
.y17{bottom:294.371733pt;}
.yaa{bottom:295.929067pt;}
.y91{bottom:296.962133pt;}
.ye1{bottom:297.692267pt;}
.ycb{bottom:297.703600pt;}
.y41{bottom:310.771600pt;}
.y79{bottom:310.771733pt;}
.ya9{bottom:312.793067pt;}
.ye0{bottom:313.026267pt;}
.yca{bottom:313.037600pt;}
.y90{bottom:313.826133pt;}
.y40{bottom:327.171600pt;}
.y16{bottom:327.171733pt;}
.ydf{bottom:328.360267pt;}
.yc9{bottom:328.371600pt;}
.ya8{bottom:329.657067pt;}
.y8f{bottom:330.690133pt;}
.y121{bottom:332.163600pt;}
.y3f{bottom:343.571600pt;}
.ybc{bottom:343.571733pt;}
.yde{bottom:343.694267pt;}
.yc8{bottom:343.704267pt;}
.ya7{bottom:346.521067pt;}
.y120{bottom:347.497600pt;}
.y8e{bottom:347.554133pt;}
.ydd{bottom:359.028267pt;}
.yc7{bottom:359.038267pt;}
.y3e{bottom:359.971600pt;}
.ybb{bottom:359.971733pt;}
.y11f{bottom:362.831600pt;}
.ya6{bottom:363.385067pt;}
.y8d{bottom:364.418133pt;}
.ydc{bottom:374.362267pt;}
.yc6{bottom:374.371600pt;}
.y3d{bottom:376.371600pt;}
.yba{bottom:376.371733pt;}
.y11e{bottom:378.165600pt;}
.ya5{bottom:380.249067pt;}
.y8c{bottom:381.282133pt;}
.y15{bottom:381.292267pt;}
.ya4{bottom:382.443867pt;}
.ydb{bottom:389.696267pt;}
.yc5{bottom:389.704933pt;}
.y3c{bottom:392.771600pt;}
.yb9{bottom:392.771733pt;}
.y11d{bottom:393.499600pt;}
.y14{bottom:396.626267pt;}
.ya3{bottom:397.113067pt;}
.y8b{bottom:398.146133pt;}
.y8a{bottom:398.158533pt;}
.y89{bottom:405.489333pt;}
.y11c{bottom:408.833600pt;}
.y3b{bottom:409.171600pt;}
.yb8{bottom:409.171733pt;}
.ya2{bottom:413.977067pt;}
.yc4{bottom:418.371600pt;}
.y11b{bottom:424.167600pt;}
.y3a{bottom:425.571600pt;}
.y13{bottom:427.294267pt;}
.y88{bottom:429.681733pt;}
.ya1{bottom:430.841067pt;}
.y11a{bottom:439.501600pt;}
.y39{bottom:441.971600pt;}
.y12{bottom:442.628267pt;}
.y87{bottom:444.350933pt;}
.ya0{bottom:447.705067pt;}
.y11{bottom:457.962267pt;}
.y38{bottom:458.371600pt;}
.y9f{bottom:464.569067pt;}
.y119{bottom:469.500933pt;}
.y37{bottom:474.771600pt;}
.y9e{bottom:481.433067pt;}
.y76{bottom:487.072267pt;}
.y10{bottom:488.630267pt;}
.y36{bottom:491.171600pt;}
.y9d{bottom:498.297067pt;}
.y9c{bottom:500.486933pt;}
.y75{bottom:502.542267pt;}
.y60{bottom:503.801333pt;}
.yf{bottom:503.964267pt;}
.y35{bottom:507.571600pt;}
.y118{bottom:513.496933pt;}
.y104{bottom:513.508267pt;}
.y9b{bottom:515.156133pt;}
.y34{bottom:523.971600pt;}
.yc3{bottom:523.971733pt;}
.y73{bottom:525.145333pt;}
.y5f{bottom:526.384667pt;}
.y117{bottom:528.830933pt;}
.y103{bottom:528.842267pt;}
.y9a{bottom:532.020133pt;}
.ye{bottom:534.632267pt;}
.y72{bottom:539.812000pt;}
.y74{bottom:539.814533pt;}
.y33{bottom:540.371600pt;}
.y5e{bottom:543.248667pt;}
.y116{bottom:544.164933pt;}
.y102{bottom:544.176267pt;}
.yd{bottom:549.966267pt;}
.y71{bottom:554.473733pt;}
.y32{bottom:556.771600pt;}
.y115{bottom:559.498933pt;}
.y101{bottom:559.510267pt;}
.y5d{bottom:560.112667pt;}
.yc{bottom:565.300267pt;}
.y70{bottom:571.337733pt;}
.y31{bottom:573.171600pt;}
.y99{bottom:573.171733pt;}
.y114{bottom:574.832933pt;}
.y100{bottom:574.844267pt;}
.y5c{bottom:576.976667pt;}
.yb{bottom:580.634267pt;}
.y6f{bottom:586.009333pt;}
.y30{bottom:589.571600pt;}
.y98{bottom:589.571733pt;}
.y113{bottom:590.166933pt;}
.yff{bottom:590.178267pt;}
.y5b{bottom:593.840667pt;}
.ya{bottom:595.968267pt;}
.y6e{bottom:602.860933pt;}
.y112{bottom:605.500933pt;}
.yfe{bottom:605.512267pt;}
.y2f{bottom:605.971600pt;}
.yc2{bottom:605.971733pt;}
.y9{bottom:611.302267pt;}
.y6d{bottom:617.530133pt;}
.y111{bottom:620.834933pt;}
.yfd{bottom:620.846267pt;}
.y4f{bottom:622.371600pt;}
.y8{bottom:626.636267pt;}
.y6c{bottom:632.191867pt;}
.y110{bottom:636.168933pt;}
.yfc{bottom:636.180267pt;}
.y2e{bottom:638.771600pt;}
.y7{bottom:641.970267pt;}
.y6b{bottom:649.055867pt;}
.y10f{bottom:651.502933pt;}
.yfb{bottom:651.514267pt;}
.y4e{bottom:655.171600pt;}
.y6{bottom:657.304267pt;}
.y6a{bottom:663.727467pt;}
.y86{bottom:666.370667pt;}
.y10e{bottom:666.836933pt;}
.yfa{bottom:666.848267pt;}
.y4d{bottom:671.571600pt;}
.y5{bottom:672.638267pt;}
.y69{bottom:680.579067pt;}
.y10d{bottom:682.170933pt;}
.yf9{bottom:682.182267pt;}
.y2d{bottom:687.971600pt;}
.y85{bottom:688.958933pt;}
.y68{bottom:695.248267pt;}
.y10c{bottom:697.504933pt;}
.yf8{bottom:697.516267pt;}
.y2c{bottom:704.371600pt;}
.y84{bottom:705.822933pt;}
.y67{bottom:709.907467pt;}
.y10b{bottom:712.838933pt;}
.yf7{bottom:712.850267pt;}
.y2b{bottom:720.771600pt;}
.y83{bottom:722.686933pt;}
.y66{bottom:726.771467pt;}
.y10a{bottom:728.172933pt;}
.yf6{bottom:728.184267pt;}
.y4{bottom:736.180933pt;}
.y2a{bottom:737.171600pt;}
.y82{bottom:739.550933pt;}
.y65{bottom:741.440667pt;}
.y109{bottom:743.506933pt;}
.yf5{bottom:743.518267pt;}
.y29{bottom:753.571600pt;}
.y108{bottom:758.840933pt;}
.yf4{bottom:758.852267pt;}
.y25{bottom:762.125333pt;}
.y24{bottom:768.790267pt;}
.y28{bottom:769.971600pt;}
.y3{bottom:774.058400pt;}
.y107{bottom:774.174933pt;}
.yf3{bottom:774.186267pt;}
.y27{bottom:786.371600pt;}
.y106{bottom:789.508933pt;}
.yf2{bottom:789.520267pt;}
.y2{bottom:796.714400pt;}
.y26{bottom:802.771600pt;}
.y105{bottom:804.842933pt;}
.yf1{bottom:804.854267pt;}
.y1{bottom:849.726533pt;}
.ha{height:13.596267pt;}
.h17{height:40.482667pt;}
.h14{height:40.618667pt;}
.h6{height:40.800000pt;}
.he{height:41.162667pt;}
.h18{height:41.434667pt;}
.h5{height:42.840000pt;}
.h13{height:44.292800pt;}
.h9{height:44.441600pt;}
.h12{height:44.461333pt;}
.hd{height:45.036800pt;}
.h10{height:45.066667pt;}
.h2{height:45.216000pt;}
.h8{height:48.000000pt;}
.hf{height:48.000533pt;}
.hb{height:48.746667pt;}
.hc{height:50.240000pt;}
.h7{height:50.400000pt;}
.h4{height:60.288000pt;}
.h11{height:73.755200pt;}
.h3{height:80.640000pt;}
.h15{height:103.068800pt;}
.h16{height:103.118400pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:619.842667pt;}
.w1{width:620.000000pt;}
.x0{left:0.000000pt;}
.x4{left:22.497867pt;}
.x3{left:25.226000pt;}
.x1{left:64.252000pt;}
.x5{left:71.811067pt;}
.x1f{left:75.585333pt;}
.x2{left:83.152667pt;}
.x6{left:90.702133pt;}
.x1b{left:164.787467pt;}
.x9{left:177.865733pt;}
.x15{left:183.747333pt;}
.x12{left:188.165067pt;}
.x13{left:194.985200pt;}
.xa{left:197.271733pt;}
.x11{left:198.246267pt;}
.x14{left:204.094400pt;}
.x16{left:209.340933pt;}
.x19{left:228.283467pt;}
.xc{left:278.578533pt;}
.xb{left:290.718133pt;}
.x20{left:314.152000pt;}
.x1e{left:321.711067pt;}
.x21{left:325.485333pt;}
.x1d{left:333.044400pt;}
.x1c{left:358.232667pt;}
.x17{left:362.344533pt;}
.xd{left:364.324533pt;}
.xe{left:384.734933pt;}
.x18{left:396.804133pt;}
.x1a{left:411.964667pt;}
.x10{left:466.215333pt;}
.xf{left:477.350533pt;}
.x8{left:578.088400pt;}
.x7{left:580.816533pt;}
}




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