
    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_4f124837da4e2bed9e4a4c3c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.945312;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_e9444fa8f7b5637be86cea42.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.901855;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_e5275ceee269d73845e27f58.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.905762;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_bf92cf57ae6c1eb49e09387c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.894531;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_d2766a548f51923d5aca2ba0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.894531;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_6f9e175444bcd94f90d1fe1b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.945312;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_4b321dda561147e6483606fa.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.901855;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_4ba098afcbbb725dec472bf9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.901855;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_7bea89ec1fd85a84f9d232bf.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.945312;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_0d4b3c3a635eed66bb829a16.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.945312;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.000000px;}
.ls1f{letter-spacing:-0.720000px;}
.ls20{letter-spacing:-0.360000px;}
.ls19{letter-spacing:0.000000px;}
.ls64{letter-spacing:0.042000px;}
.ls2f{letter-spacing:0.060000px;}
.ls46{letter-spacing:0.084000px;}
.ls41{letter-spacing:0.120000px;}
.ls48{letter-spacing:0.126000px;}
.ls65{letter-spacing:0.168000px;}
.ls27{letter-spacing:0.180000px;}
.ls4d{letter-spacing:0.210000px;}
.ls25{letter-spacing:0.240000px;}
.ls59{letter-spacing:0.252000px;}
.ls16{letter-spacing:0.270000px;}
.ls58{letter-spacing:0.294000px;}
.ls13{letter-spacing:0.300000px;}
.ls4a{letter-spacing:0.336000px;}
.ls14{letter-spacing:0.360000px;}
.ls21{letter-spacing:0.378000px;}
.lse{letter-spacing:0.420000px;}
.ls17{letter-spacing:0.432000px;}
.ls4c{letter-spacing:0.462000px;}
.ls2c{letter-spacing:0.480000px;}
.ls56{letter-spacing:0.504000px;}
.ls30{letter-spacing:0.510000px;}
.lsd{letter-spacing:0.540000px;}
.ls50{letter-spacing:0.546000px;}
.ls52{letter-spacing:0.588000px;}
.ls1e{letter-spacing:0.600000px;}
.ls62{letter-spacing:0.630000px;}
.ls4{letter-spacing:0.660000px;}
.ls57{letter-spacing:0.714000px;}
.lsb{letter-spacing:0.720000px;}
.ls9{letter-spacing:0.780000px;}
.ls60{letter-spacing:0.798000px;}
.ls2d{letter-spacing:0.840000px;}
.ls53{letter-spacing:0.882000px;}
.lsc{letter-spacing:0.900000px;}
.ls5f{letter-spacing:0.924000px;}
.ls43{letter-spacing:0.960000px;}
.ls4e{letter-spacing:0.966000px;}
.ls18{letter-spacing:0.972000px;}
.ls45{letter-spacing:1.008000px;}
.ls10{letter-spacing:1.020000px;}
.ls61{letter-spacing:1.050000px;}
.ls37{letter-spacing:1.080000px;}
.ls51{letter-spacing:1.134000px;}
.ls6{letter-spacing:1.140000px;}
.ls4b{letter-spacing:1.176000px;}
.ls1b{letter-spacing:1.200000px;}
.ls54{letter-spacing:1.218000px;}
.ls26{letter-spacing:1.260000px;}
.ls66{letter-spacing:1.302000px;}
.ls0{letter-spacing:1.320000px;}
.ls49{letter-spacing:1.344000px;}
.ls2e{letter-spacing:1.380000px;}
.ls67{letter-spacing:1.386000px;}
.ls5d{letter-spacing:1.428000px;}
.ls1d{letter-spacing:1.440000px;}
.ls1{letter-spacing:1.500000px;}
.ls63{letter-spacing:1.512000px;}
.ls28{letter-spacing:1.560000px;}
.ls55{letter-spacing:1.596000px;}
.ls24{letter-spacing:1.620000px;}
.ls5b{letter-spacing:1.638000px;}
.ls40{letter-spacing:1.680000px;}
.ls39{letter-spacing:1.710000px;}
.ls7{letter-spacing:1.740000px;}
.ls4f{letter-spacing:1.764000px;}
.ls3a{letter-spacing:1.800000px;}
.lsa{letter-spacing:1.860000px;}
.ls2b{letter-spacing:1.920000px;}
.ls47{letter-spacing:1.932000px;}
.ls5e{letter-spacing:1.974000px;}
.ls23{letter-spacing:1.980000px;}
.ls11{letter-spacing:2.040000px;}
.ls42{letter-spacing:2.100000px;}
.lsf{letter-spacing:2.160000px;}
.ls35{letter-spacing:2.220000px;}
.ls5c{letter-spacing:2.226000px;}
.ls36{letter-spacing:2.280000px;}
.ls5{letter-spacing:2.340000px;}
.ls3{letter-spacing:2.400000px;}
.ls2{letter-spacing:2.460000px;}
.ls29{letter-spacing:2.520000px;}
.ls3b{letter-spacing:2.580000px;}
.ls12{letter-spacing:2.640000px;}
.ls1a{letter-spacing:2.700000px;}
.ls1c{letter-spacing:2.760000px;}
.ls8{letter-spacing:2.820000px;}
.ls44{letter-spacing:2.880000px;}
.ls3e{letter-spacing:3.000000px;}
.ls5a{letter-spacing:3.024000px;}
.ls22{letter-spacing:3.060000px;}
.ls31{letter-spacing:3.120000px;}
.ls3c{letter-spacing:3.240000px;}
.ls2a{letter-spacing:3.300000px;}
.ls32{letter-spacing:3.480000px;}
.ls33{letter-spacing:3.600000px;}
.ls3f{letter-spacing:3.660000px;}
.ls3d{letter-spacing:4.200000px;}
.ls38{letter-spacing:4.320000px;}
.ls15{letter-spacing:4.374000px;}
.ls34{letter-spacing:6.300000px;}
.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;}
}
.ws40{word-spacing:-23.688000px;}
.ws49{word-spacing:-16.170000px;}
.ws41{word-spacing:-14.532000px;}
.ws1{word-spacing:-14.472000px;}
.ws44{word-spacing:-10.206000px;}
.ws0{word-spacing:-9.000000px;}
.ws52{word-spacing:-1.974000px;}
.ws1a{word-spacing:-0.378000px;}
.ws9f{word-spacing:-0.042000px;}
.ws2{word-spacing:0.000000px;}
.ws16{word-spacing:0.120000px;}
.wsb2{word-spacing:0.168000px;}
.ws7d{word-spacing:0.180000px;}
.wsba{word-spacing:0.252000px;}
.ws51{word-spacing:0.294000px;}
.wsbf{word-spacing:0.336000px;}
.ws17{word-spacing:0.360000px;}
.wsa3{word-spacing:0.378000px;}
.ws97{word-spacing:0.480000px;}
.ws15{word-spacing:0.540000px;}
.wsa1{word-spacing:0.588000px;}
.ws1c{word-spacing:0.594000px;}
.ws85{word-spacing:0.600000px;}
.wsa8{word-spacing:0.630000px;}
.ws57{word-spacing:0.720000px;}
.ws2b{word-spacing:0.780000px;}
.ws21{word-spacing:0.810000px;}
.ws90{word-spacing:0.840000px;}
.ws7b{word-spacing:0.900000px;}
.ws24{word-spacing:1.020000px;}
.wsae{word-spacing:1.050000px;}
.ws69{word-spacing:1.080000px;}
.ws59{word-spacing:1.140000px;}
.wsb9{word-spacing:1.176000px;}
.ws8{word-spacing:1.200000px;}
.wse{word-spacing:1.260000px;}
.wsd{word-spacing:1.320000px;}
.wsa4{word-spacing:1.344000px;}
.wsbe{word-spacing:1.470000px;}
.ws27{word-spacing:1.620000px;}
.wsb0{word-spacing:1.680000px;}
.ws3b{word-spacing:1.800000px;}
.wsbb{word-spacing:1.890000px;}
.ws93{word-spacing:1.920000px;}
.wsad{word-spacing:1.932000px;}
.wsc1{word-spacing:2.016000px;}
.ws2f{word-spacing:2.100000px;}
.wsc2{word-spacing:2.142000px;}
.ws8b{word-spacing:2.160000px;}
.ws10{word-spacing:2.220000px;}
.wsc6{word-spacing:2.226000px;}
.wsc8{word-spacing:2.268000px;}
.ws26{word-spacing:2.340000px;}
.ws88{word-spacing:2.400000px;}
.wsa6{word-spacing:2.436000px;}
.ws7c{word-spacing:2.460000px;}
.wsc0{word-spacing:2.520000px;}
.ws9e{word-spacing:2.604000px;}
.ws8a{word-spacing:2.640000px;}
.ws28{word-spacing:2.700000px;}
.ws53{word-spacing:2.760000px;}
.ws35{word-spacing:2.814000px;}
.ws9c{word-spacing:2.820000px;}
.wsc7{word-spacing:2.856000px;}
.ws39{word-spacing:2.880000px;}
.ws7{word-spacing:2.940000px;}
.ws71{word-spacing:3.000000px;}
.ws32{word-spacing:3.060000px;}
.wsa7{word-spacing:3.066000px;}
.ws33{word-spacing:3.120000px;}
.wsc{word-spacing:3.240000px;}
.ws55{word-spacing:3.300000px;}
.wsbd{word-spacing:3.360000px;}
.wsa0{word-spacing:3.402000px;}
.ws54{word-spacing:3.420000px;}
.ws72{word-spacing:3.480000px;}
.wsbc{word-spacing:3.486000px;}
.wsc9{word-spacing:3.570000px;}
.wsab{word-spacing:3.612000px;}
.wscc{word-spacing:3.654000px;}
.ws87{word-spacing:3.660000px;}
.ws7f{word-spacing:3.720000px;}
.ws34{word-spacing:3.780000px;}
.ws6c{word-spacing:3.900000px;}
.ws74{word-spacing:3.960000px;}
.wsa9{word-spacing:3.990000px;}
.ws8d{word-spacing:4.020000px;}
.ws1f{word-spacing:4.050000px;}
.ws9b{word-spacing:4.080000px;}
.wsb8{word-spacing:4.116000px;}
.ws81{word-spacing:4.140000px;}
.wsaa{word-spacing:4.158000px;}
.ws94{word-spacing:4.200000px;}
.wsca{word-spacing:4.242000px;}
.ws18{word-spacing:4.320000px;}
.wsa5{word-spacing:4.368000px;}
.ws5d{word-spacing:4.440000px;}
.wscb{word-spacing:4.452000px;}
.ws76{word-spacing:4.500000px;}
.ws23{word-spacing:4.560000px;}
.ws64{word-spacing:4.680000px;}
.wsf{word-spacing:4.740000px;}
.wsb5{word-spacing:4.830000px;}
.ws5c{word-spacing:4.920000px;}
.wsb6{word-spacing:4.956000px;}
.ws20{word-spacing:5.076000px;}
.ws58{word-spacing:5.100000px;}
.wsaf{word-spacing:5.124000px;}
.ws6f{word-spacing:5.160000px;}
.wsc4{word-spacing:5.166000px;}
.ws1e{word-spacing:5.184000px;}
.ws83{word-spacing:5.220000px;}
.ws9d{word-spacing:5.250000px;}
.ws14{word-spacing:5.280000px;}
.ws38{word-spacing:5.340000px;}
.wsb3{word-spacing:5.418000px;}
.ws13{word-spacing:5.460000px;}
.wsc5{word-spacing:5.502000px;}
.ws56{word-spacing:5.520000px;}
.wsc3{word-spacing:5.586000px;}
.ws98{word-spacing:5.640000px;}
.wsac{word-spacing:5.670000px;}
.ws30{word-spacing:5.700000px;}
.ws12{word-spacing:5.760000px;}
.ws1d{word-spacing:5.778000px;}
.ws2c{word-spacing:5.880000px;}
.ws6a{word-spacing:5.940000px;}
.ws25{word-spacing:6.000000px;}
.ws7a{word-spacing:6.240000px;}
.ws86{word-spacing:6.300000px;}
.wsa2{word-spacing:6.384000px;}
.ws37{word-spacing:6.420000px;}
.wsb7{word-spacing:6.510000px;}
.ws5a{word-spacing:6.540000px;}
.ws5b{word-spacing:6.600000px;}
.ws2e{word-spacing:6.660000px;}
.ws7e{word-spacing:6.720000px;}
.ws19{word-spacing:6.750000px;}
.wsa{word-spacing:6.780000px;}
.ws8f{word-spacing:6.840000px;}
.ws2a{word-spacing:6.960000px;}
.ws92{word-spacing:7.020000px;}
.ws6b{word-spacing:7.080000px;}
.ws1b{word-spacing:7.128000px;}
.ws3a{word-spacing:7.140000px;}
.ws2d{word-spacing:7.200000px;}
.ws82{word-spacing:7.260000px;}
.ws84{word-spacing:7.320000px;}
.ws8e{word-spacing:7.380000px;}
.ws8c{word-spacing:7.440000px;}
.wsb4{word-spacing:7.476000px;}
.ws3{word-spacing:7.500000px;}
.ws79{word-spacing:7.560000px;}
.ws68{word-spacing:7.620000px;}
.ws78{word-spacing:7.740000px;}
.ws6{word-spacing:7.860000px;}
.ws6e{word-spacing:7.980000px;}
.ws5{word-spacing:8.220000px;}
.ws96{word-spacing:8.340000px;}
.ws73{word-spacing:8.400000px;}
.ws29{word-spacing:8.460000px;}
.ws80{word-spacing:8.520000px;}
.ws31{word-spacing:8.700000px;}
.ws70{word-spacing:8.760000px;}
.ws11{word-spacing:8.820000px;}
.ws4{word-spacing:8.880000px;}
.ws60{word-spacing:8.940000px;}
.ws5e{word-spacing:9.000000px;}
.ws9{word-spacing:9.060000px;}
.ws9a{word-spacing:9.120000px;}
.ws61{word-spacing:9.180000px;}
.ws95{word-spacing:9.240000px;}
.wsb{word-spacing:9.420000px;}
.ws99{word-spacing:9.480000px;}
.ws91{word-spacing:9.540000px;}
.ws75{word-spacing:10.020000px;}
.wsb1{word-spacing:10.164000px;}
.ws22{word-spacing:10.260000px;}
.ws5f{word-spacing:10.500000px;}
.ws66{word-spacing:10.680000px;}
.ws89{word-spacing:10.920000px;}
.ws36{word-spacing:10.980000px;}
.ws62{word-spacing:11.700000px;}
.ws63{word-spacing:12.000000px;}
.ws77{word-spacing:12.180000px;}
.ws67{word-spacing:13.860000px;}
.ws6d{word-spacing:14.340000px;}
.ws45{word-spacing:17.976000px;}
.ws50{word-spacing:19.488000px;}
.ws65{word-spacing:21.000000px;}
.ws46{word-spacing:40.320000px;}
.ws47{word-spacing:48.552000px;}
.ws4e{word-spacing:49.518000px;}
.ws4f{word-spacing:55.482000px;}
.ws48{word-spacing:55.818000px;}
.ws4d{word-spacing:79.506000px;}
.ws42{word-spacing:97.818000px;}
.ws4a{word-spacing:109.158000px;}
.ws43{word-spacing:118.818000px;}
.ws3f{word-spacing:127.806000px;}
.ws3e{word-spacing:133.812000px;}
.ws3d{word-spacing:139.818000px;}
.ws4c{word-spacing:151.494000px;}
.ws4b{word-spacing:163.506000px;}
.ws3c{word-spacing:205.800000px;}
._62{margin-left:-151.536000px;}
._60{margin-left:-150.095400px;}
._67{margin-left:-145.320000px;}
._64{margin-left:-140.238000px;}
._5d{margin-left:-138.498000px;}
._6c{margin-left:-134.442000px;}
._59{margin-left:-131.964000px;}
._63{margin-left:-119.280000px;}
._5a{margin-left:-108.780000px;}
._69{margin-left:-107.052000px;}
._5e{margin-left:-96.012000px;}
._6a{margin-left:-93.576000px;}
._5f{margin-left:-84.864000px;}
._5c{margin-left:-77.994000px;}
._58{margin-left:-71.184000px;}
._89{margin-left:-60.018000px;}
._8f{margin-left:-55.482000px;}
._94{margin-left:-53.724600px;}
._96{margin-left:-47.768400px;}
._91{margin-left:-42.084000px;}
._88{margin-left:-36.502200px;}
._5b{margin-left:-29.988000px;}
._3{margin-left:-26.538000px;}
._93{margin-left:-23.982000px;}
._9d{margin-left:-19.483800px;}
._90{margin-left:-17.962200px;}
._a4{margin-left:-16.308000px;}
._65{margin-left:-14.910000px;}
._a3{margin-left:-13.398000px;}
._8e{margin-left:-11.181600px;}
._8c{margin-left:-9.028800px;}
._a0{margin-left:-7.842600px;}
._a5{margin-left:-6.636000px;}
._4{margin-left:-5.520000px;}
._a2{margin-left:-4.230000px;}
._1{margin-left:-3.084000px;}
._0{margin-left:-1.218000px;}
._2{width:1.134000px;}
._23{width:2.562000px;}
._6{width:5.202000px;}
._1a{width:6.678000px;}
._83{width:7.783800px;}
._38{width:8.940000px;}
._56{width:10.038000px;}
._66{width:11.208000px;}
._19{width:12.810000px;}
._46{width:14.082000px;}
._d{width:16.068000px;}
._5{width:17.724000px;}
._18{width:19.278000px;}
._4c{width:20.416200px;}
._a{width:21.588000px;}
._c{width:22.932000px;}
._61{width:24.066000px;}
._b{width:25.470000px;}
._6d{width:26.650200px;}
._9c{width:27.729600px;}
._7a{width:29.400000px;}
._6e{width:30.438600px;}
._81{width:32.398800px;}
._42{width:33.684000px;}
._7{width:34.692000px;}
._36{width:36.072000px;}
._80{width:37.740000px;}
._1e{width:39.018000px;}
._8b{width:40.834200px;}
._57{width:41.874000px;}
._15{width:43.512000px;}
._75{width:45.276000px;}
._2d{width:46.932000px;}
._4d{width:48.342000px;}
._84{width:49.505400px;}
._35{width:51.198000px;}
._20{width:52.878000px;}
._92{width:54.016200px;}
._47{width:55.020000px;}
._39{width:56.196000px;}
._8d{width:57.204000px;}
._98{width:59.740800px;}
._13{width:61.194000px;}
._52{width:63.205800px;}
._7c{width:64.540200px;}
._25{width:65.982000px;}
._1b{width:67.872000px;}
._6b{width:69.114000px;}
._31{width:71.358000px;}
._22{width:72.528000px;}
._40{width:74.046000px;}
._32{width:76.860000px;}
._3a{width:77.994000px;}
._4b{width:79.164000px;}
._85{width:80.432400px;}
._14{width:81.900000px;}
._24{width:84.000000px;}
._2b{width:85.512000px;}
._9f{width:86.892600px;}
._3b{width:87.954000px;}
._4f{width:90.119400px;}
._77{width:91.140000px;}
._9b{width:92.373600px;}
._28{width:93.426000px;}
._2e{width:95.340000px;}
._68{width:96.816000px;}
._6f{width:98.645400px;}
._76{width:101.682000px;}
._82{width:103.756200px;}
._73{width:106.302000px;}
._7d{width:107.511600px;}
._71{width:109.594800px;}
._3e{width:112.182000px;}
._79{width:113.442000px;}
._9{width:114.660000px;}
._2a{width:116.130000px;}
._12{width:118.146000px;}
._53{width:119.603400px;}
._27{width:121.506000px;}
._4e{width:122.940000px;}
._9a{width:125.903400px;}
._72{width:127.260000px;}
._70{width:128.991000px;}
._17{width:130.578000px;}
._50{width:131.922000px;}
._54{width:134.362200px;}
._9e{width:136.248000px;}
._37{width:137.550000px;}
._7e{width:138.568200px;}
._74{width:140.634000px;}
._97{width:144.013800px;}
._4a{width:145.152000px;}
._43{width:146.460000px;}
._78{width:148.428000px;}
._21{width:149.898000px;}
._16{width:151.542000px;}
._41{width:152.754000px;}
._51{width:153.852000px;}
._3f{width:157.290000px;}
._8a{width:158.736000px;}
._10{width:163.506000px;}
._99{width:165.530400px;}
._a1{width:167.688000px;}
._3d{width:168.714000px;}
._33{width:169.848000px;}
._7f{width:172.938000px;}
._48{width:175.290000px;}
._55{width:176.310000px;}
._86{width:177.565800px;}
._2c{width:180.180000px;}
._7b{width:182.914200px;}
._95{width:186.018000px;}
._30{width:187.488000px;}
._45{width:188.754000px;}
._3c{width:194.334000px;}
._8{width:195.762000px;}
._26{width:197.988000px;}
._44{width:199.668000px;}
._1f{width:205.464000px;}
._87{width:206.487600px;}
._29{width:217.224000px;}
._49{width:218.442000px;}
._f{width:223.482000px;}
._11{width:229.278000px;}
._2f{width:241.542000px;}
._34{width:247.506000px;}
._e{width:313.530000px;}
._1d{width:337.512000px;}
._1c{width:361.704000px;}
.fc1{color:rgb(45,45,45);}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:36.000000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:30.097500px;}
.y91{bottom:31.366050px;}
.y37{bottom:37.262250px;}
.y36{bottom:49.862250px;}
.ya0{bottom:64.740150px;}
.y9f{bottom:64.750650px;}
.y9c{bottom:64.761150px;}
.y9b{bottom:64.771650px;}
.y9d{bottom:64.782150px;}
.y9e{bottom:64.792650px;}
.y98{bottom:65.592600px;}
.y97{bottom:65.603100px;}
.y9a{bottom:65.610900px;}
.y96{bottom:65.613600px;}
.y94{bottom:65.615100px;}
.y99{bottom:65.618250px;}
.y95{bottom:65.625600px;}
.yed{bottom:66.862500px;}
.y8a{bottom:72.487500px;}
.y6c{bottom:77.887500px;}
.yec{bottom:79.462500px;}
.y89{bottom:90.487500px;}
.yeb{bottom:92.062500px;}
.y1e{bottom:95.311500px;}
.y6b{bottom:95.887500px;}
.yea{bottom:104.662500px;}
.y88{bottom:108.487500px;}
.y1d{bottom:113.311500px;}
.y6a{bottom:113.887500px;}
.ye9{bottom:117.262500px;}
.y87{bottom:126.487500px;}
.ye8{bottom:129.862500px;}
.y1c{bottom:131.311500px;}
.y69{bottom:131.887500px;}
.ye7{bottom:142.462500px;}
.y86{bottom:144.487500px;}
.y1b{bottom:149.311500px;}
.y68{bottom:149.887500px;}
.y12f{bottom:153.262500px;}
.ye6{bottom:155.062500px;}
.y85{bottom:162.487500px;}
.y12e{bottom:165.862500px;}
.y1a{bottom:167.311500px;}
.ye5{bottom:167.662500px;}
.y67{bottom:167.887500px;}
.y12d{bottom:178.462500px;}
.ye4{bottom:180.262500px;}
.y84{bottom:180.487500px;}
.y19{bottom:185.311500px;}
.y66{bottom:185.887500px;}
.y130{bottom:191.062350px;}
.y12c{bottom:191.062500px;}
.ye3{bottom:192.862500px;}
.y83{bottom:198.487500px;}
.y18{bottom:203.311500px;}
.y12b{bottom:203.662500px;}
.y65{bottom:203.887500px;}
.ye2{bottom:205.462500px;}
.y12a{bottom:216.262500px;}
.y82{bottom:216.487500px;}
.ye1{bottom:218.062500px;}
.y17{bottom:221.311500px;}
.y64{bottom:221.887500px;}
.y129{bottom:228.862500px;}
.ye0{bottom:230.662500px;}
.y81{bottom:234.487500px;}
.y16{bottom:239.311500px;}
.y63{bottom:239.887500px;}
.y128{bottom:241.462500px;}
.ydf{bottom:243.262500px;}
.y80{bottom:252.487500px;}
.y127{bottom:254.062500px;}
.yde{bottom:255.862500px;}
.y15{bottom:257.311500px;}
.y62{bottom:257.887500px;}
.y126{bottom:266.662500px;}
.ydd{bottom:268.462500px;}
.y7f{bottom:270.487500px;}
.y14{bottom:275.311500px;}
.y61{bottom:275.887500px;}
.y125{bottom:279.262500px;}
.ydc{bottom:281.062500px;}
.y7e{bottom:288.487500px;}
.y124{bottom:291.862500px;}
.y13{bottom:293.311500px;}
.ydb{bottom:293.662500px;}
.y60{bottom:293.887500px;}
.y123{bottom:304.462500px;}
.yda{bottom:306.262500px;}
.y7d{bottom:306.487500px;}
.y12{bottom:311.311500px;}
.y5f{bottom:311.887500px;}
.y122{bottom:317.062500px;}
.yd9{bottom:318.862500px;}
.y7c{bottom:324.487500px;}
.y11{bottom:329.311500px;}
.y121{bottom:329.662500px;}
.y5e{bottom:329.887500px;}
.yd8{bottom:331.462500px;}
.y120{bottom:342.262500px;}
.y7b{bottom:342.487500px;}
.yd7{bottom:344.062500px;}
.y10{bottom:347.311500px;}
.y5d{bottom:347.887500px;}
.y11f{bottom:354.862500px;}
.yd6{bottom:356.662500px;}
.y7a{bottom:360.487500px;}
.yf{bottom:365.311500px;}
.y5c{bottom:365.887500px;}
.y11e{bottom:367.462500px;}
.yd5{bottom:369.262500px;}
.y79{bottom:378.487500px;}
.y11d{bottom:380.062500px;}
.yd4{bottom:381.862500px;}
.ye{bottom:383.311500px;}
.y5b{bottom:383.887500px;}
.y11c{bottom:392.662500px;}
.yd3{bottom:394.462500px;}
.y78{bottom:396.487500px;}
.yd{bottom:401.311500px;}
.y5a{bottom:401.887500px;}
.y11b{bottom:405.262500px;}
.yd2{bottom:407.062500px;}
.y77{bottom:414.487500px;}
.y11a{bottom:417.862500px;}
.yc{bottom:419.311500px;}
.yd1{bottom:419.662500px;}
.y59{bottom:419.887500px;}
.y119{bottom:430.462500px;}
.yd0{bottom:432.262500px;}
.y76{bottom:432.487500px;}
.yb{bottom:437.311500px;}
.y58{bottom:437.887500px;}
.y93{bottom:442.280850px;}
.y118{bottom:443.062500px;}
.ycf{bottom:444.862500px;}
.y75{bottom:450.487500px;}
.ya{bottom:455.311500px;}
.y117{bottom:455.662500px;}
.y57{bottom:455.887500px;}
.yce{bottom:457.462500px;}
.y116{bottom:468.262500px;}
.y74{bottom:468.487500px;}
.ycd{bottom:470.062500px;}
.y9{bottom:473.311500px;}
.y56{bottom:473.887500px;}
.y115{bottom:480.862500px;}
.ycc{bottom:482.662500px;}
.y73{bottom:486.487500px;}
.y8{bottom:491.311500px;}
.y55{bottom:491.887500px;}
.y114{bottom:493.462500px;}
.ycb{bottom:495.262500px;}
.y72{bottom:504.487500px;}
.y113{bottom:506.062500px;}
.yca{bottom:507.862500px;}
.y7{bottom:509.311500px;}
.y54{bottom:509.887500px;}
.y112{bottom:518.662500px;}
.yc9{bottom:520.462500px;}
.y71{bottom:522.487500px;}
.y6{bottom:527.311500px;}
.y53{bottom:527.887500px;}
.y111{bottom:531.262500px;}
.y92{bottom:532.310850px;}
.yc8{bottom:533.062500px;}
.y70{bottom:540.487500px;}
.y110{bottom:543.862500px;}
.y5{bottom:545.311500px;}
.yc7{bottom:545.662500px;}
.y52{bottom:545.887500px;}
.y10f{bottom:556.462500px;}
.yc6{bottom:558.262500px;}
.y4{bottom:563.311500px;}
.y51{bottom:563.887500px;}
.y10e{bottom:569.062500px;}
.yc5{bottom:570.862500px;}
.y6f{bottom:576.487500px;}
.y3{bottom:581.311500px;}
.y10d{bottom:581.662500px;}
.y50{bottom:581.887500px;}
.yc4{bottom:583.462500px;}
.y10c{bottom:594.262500px;}
.yc3{bottom:596.062500px;}
.y4f{bottom:599.887500px;}
.y10b{bottom:606.862500px;}
.yc2{bottom:608.662500px;}
.y6e{bottom:612.487500px;}
.y2{bottom:617.311500px;}
.y4e{bottom:617.887500px;}
.y10a{bottom:619.462500px;}
.yc1{bottom:621.262500px;}
.y6d{bottom:625.087500px;}
.y109{bottom:632.062500px;}
.yc0{bottom:633.862500px;}
.y4d{bottom:635.887500px;}
.y108{bottom:644.662500px;}
.ybf{bottom:646.462500px;}
.y33{bottom:652.082250px;}
.y4c{bottom:653.887500px;}
.y107{bottom:657.262500px;}
.ybe{bottom:659.062500px;}
.y106{bottom:669.862500px;}
.ybd{bottom:671.662500px;}
.y4b{bottom:671.887500px;}
.y105{bottom:682.462500px;}
.ybc{bottom:684.262500px;}
.y32{bottom:684.482250px;}
.y4a{bottom:689.887500px;}
.y104{bottom:695.062500px;}
.ybb{bottom:696.862500px;}
.y31{bottom:700.682250px;}
.y103{bottom:707.662500px;}
.y49{bottom:707.887500px;}
.yba{bottom:709.462500px;}
.y30{bottom:716.882250px;}
.y102{bottom:720.262500px;}
.yb9{bottom:722.062500px;}
.y48{bottom:725.887500px;}
.y101{bottom:732.862500px;}
.y2f{bottom:733.082250px;}
.yb8{bottom:734.662500px;}
.y47{bottom:743.887500px;}
.y100{bottom:745.462500px;}
.yb7{bottom:747.262500px;}
.y2e{bottom:749.282250px;}
.yff{bottom:758.062500px;}
.yb6{bottom:759.862500px;}
.y46{bottom:761.887500px;}
.y2d{bottom:765.482250px;}
.yfe{bottom:770.662500px;}
.yb5{bottom:772.462500px;}
.y45{bottom:779.887500px;}
.y2c{bottom:781.682250px;}
.yfd{bottom:783.262500px;}
.yb4{bottom:785.062500px;}
.yfc{bottom:795.862500px;}
.yb3{bottom:797.662500px;}
.y2b{bottom:797.882250px;}
.y44{bottom:797.887500px;}
.yfb{bottom:808.462500px;}
.yb2{bottom:810.262500px;}
.y2a{bottom:814.082250px;}
.y43{bottom:815.887500px;}
.yfa{bottom:821.062500px;}
.yb1{bottom:822.862500px;}
.y29{bottom:830.282250px;}
.yf9{bottom:833.662500px;}
.y42{bottom:833.887500px;}
.yb0{bottom:835.462500px;}
.yf8{bottom:846.262500px;}
.y28{bottom:846.482250px;}
.yaf{bottom:848.062500px;}
.y41{bottom:851.887500px;}
.yf7{bottom:858.862500px;}
.yae{bottom:860.662500px;}
.y27{bottom:862.682250px;}
.y40{bottom:869.887500px;}
.yf6{bottom:871.462500px;}
.yad{bottom:873.262500px;}
.y26{bottom:878.879250px;}
.yf5{bottom:884.062500px;}
.yac{bottom:885.862500px;}
.y3f{bottom:887.887500px;}
.y25{bottom:892.382250px;}
.yf4{bottom:896.662500px;}
.yab{bottom:898.462500px;}
.y24{bottom:904.982250px;}
.y3e{bottom:905.887500px;}
.yf3{bottom:909.262500px;}
.yaa{bottom:911.062500px;}
.y23{bottom:917.582250px;}
.yf2{bottom:921.862500px;}
.ya9{bottom:923.662500px;}
.y3d{bottom:923.887500px;}
.y22{bottom:930.182250px;}
.yf1{bottom:934.462500px;}
.y3c{bottom:941.887500px;}
.yf0{bottom:947.062500px;}
.ya8{bottom:954.262500px;}
.yef{bottom:959.662500px;}
.y21{bottom:959.790750px;}
.y3b{bottom:959.887500px;}
.yee{bottom:972.262500px;}
.y3a{bottom:977.887500px;}
.ya7{bottom:984.862500px;}
.y39{bottom:995.887500px;}
.ya6{bottom:997.462500px;}
.y20{bottom:998.399250px;}
.ya5{bottom:1010.062500px;}
.ya1{bottom:1013.887500px;}
.ya4{bottom:1022.662500px;}
.y1f{bottom:1023.599250px;}
.y38{bottom:1031.887500px;}
.ya3{bottom:1035.262500px;}
.ya2{bottom:1066.946250px;}
.y8b{bottom:1068.174000px;}
.y8e{bottom:1068.214800px;}
.y35{bottom:1099.101000px;}
.y8d{bottom:1099.703250px;}
.y90{bottom:1100.369550px;}
.y34{bottom:1111.701000px;}
.y8c{bottom:1112.303250px;}
.y8f{bottom:1112.969550px;}
.h9{height:28.813477px;}
.he{height:29.162109px;}
.h7{height:30.515625px;}
.h11{height:30.516225px;}
.h10{height:30.521625px;}
.hf{height:30.527625px;}
.h8{height:39.234375px;}
.hb{height:41.162109px;}
.h3{height:41.660156px;}
.h4{height:41.923828px;}
.h2{height:43.593750px;}
.h6{height:52.312500px;}
.h5{height:58.324219px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.ha{height:1188.000000px;}
.hd{height:1190.250000px;}
.hc{height:1190.537550px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.w3{width:905.655000px;}
.w4{width:906.000000px;}
.w2{width:918.000000px;}
.x0{left:0.000000px;}
.x4{left:55.080150px;}
.xc{left:56.613450px;}
.x1b{left:59.107500px;}
.x12{left:65.281950px;}
.xb{left:69.454950px;}
.x3{left:72.090150px;}
.x11{left:82.291950px;}
.xd{left:84.039450px;}
.x1c{left:87.707400px;}
.x91{left:89.283000px;}
.x54{left:96.250050px;}
.x55{left:108.545550px;}
.x1d{left:118.007400px;}
.x56{left:120.854550px;}
.x1e{left:130.302900px;}
.x57{left:133.154550px;}
.xf{left:139.689600px;}
.x1f{left:142.598400px;}
.x58{left:145.450050px;}
.x10{left:147.451950px;}
.x20{left:154.904400px;}
.x59{left:157.745550px;}
.x8{left:163.080750px;}
.x5a{left:170.054550px;}
.x21{left:179.508900px;}
.x5b{left:182.350050px;}
.x18{left:190.054650px;}
.xa{left:191.819400px;}
.x5c{left:194.645550px;}
.x22{left:204.099900px;}
.x2{left:206.595150px;}
.x23{left:216.395400px;}
.x5d{left:219.250050px;}
.x24{left:228.690900px;}
.x5e{left:231.554550px;}
.x25{left:240.986400px;}
.x5f{left:243.850050px;}
.x26{left:253.281900px;}
.x60{left:256.145550px;}
.x27{left:265.607400px;}
.x61{left:268.441050px;}
.x28{left:277.902900px;}
.x62{left:280.736550px;}
.x29{left:290.202900px;}
.x63{left:293.032050px;}
.x2a{left:302.498400px;}
.x64{left:305.327550px;}
.x2b{left:314.793900px;}
.x65{left:317.623050px;}
.x9{left:322.932750px;}
.x2c{left:327.089400px;}
.x66{left:329.918550px;}
.x2d{left:339.405900px;}
.x67{left:342.214050px;}
.x2e{left:351.702900px;}
.x68{left:354.509550px;}
.x2f{left:364.002900px;}
.x69{left:366.805050px;}
.x30{left:376.307400px;}
.x6a{left:379.154550px;}
.x31{left:388.602900px;}
.x1a{left:391.369950px;}
.x8e{left:397.542450px;}
.x32{left:400.907550px;}
.x6b{left:403.745550px;}
.x33{left:413.203050px;}
.x6c{left:416.054550px;}
.x34{left:425.503050px;}
.x6d{left:428.350050px;}
.x1{left:432.377850px;}
.x35{left:437.798550px;}
.x6e{left:440.645550px;}
.x19{left:443.007750px;}
.xe{left:445.375950px;}
.x36{left:450.094050px;}
.x6f{left:452.941050px;}
.x7{left:457.800150px;}
.x37{left:462.389550px;}
.x70{left:465.236550px;}
.x13{left:468.451950px;}
.x6{left:474.810150px;}
.x71{left:477.554550px;}
.x92{left:483.747000px;}
.x17{left:485.462550px;}
.x38{left:487.003050px;}
.x72{left:489.850050px;}
.x90{left:492.003000px;}
.x39{left:499.298550px;}
.x73{left:502.145550px;}
.x3a{left:511.594050px;}
.x74{left:514.441050px;}
.x3b{left:523.889550px;}
.x75{left:526.754550px;}
.x3c{left:536.185050px;}
.x76{left:539.050050px;}
.x3d{left:548.507550px;}
.x77{left:551.345550px;}
.x15{left:559.186950px;}
.x3e{left:560.807550px;}
.x78{left:563.641050px;}
.x3f{left:573.103050px;}
.x16{left:576.662550px;}
.x40{left:585.398550px;}
.x79{left:588.254550px;}
.x8f{left:595.560000px;}
.x41{left:597.694050px;}
.x7a{left:600.550050px;}
.x42{left:610.010550px;}
.x7b{left:612.845550px;}
.x5{left:622.245150px;}
.x7c{left:625.141050px;}
.x14{left:634.171950px;}
.x7d{left:637.454550px;}
.x43{left:646.907550px;}
.x7e{left:649.750050px;}
.x44{left:659.203050px;}
.x7f{left:662.045550px;}
.x45{left:671.509050px;}
.x80{left:674.354550px;}
.x46{left:683.803050px;}
.x81{left:686.650050px;}
.x47{left:696.107550px;}
.x82{left:698.954550px;}
.x48{left:708.403050px;}
.x83{left:711.254550px;}
.x49{left:720.703050px;}
.x84{left:723.550050px;}
.x4a{left:732.998550px;}
.x85{left:735.845550px;}
.x4b{left:745.294050px;}
.x86{left:748.154550px;}
.x4c{left:757.589550px;}
.x87{left:760.450050px;}
.x4d{left:769.907550px;}
.x88{left:772.745550px;}
.x4e{left:782.203050px;}
.x89{left:785.041050px;}
.x4f{left:794.507550px;}
.x8a{left:797.336550px;}
.x50{left:806.803050px;}
.x51{left:819.103050px;}
.x8b{left:821.954550px;}
.x52{left:831.407550px;}
.x8c{left:834.250050px;}
.x53{left:843.703050px;}
.x8d{left:846.545550px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.333333pt;}
.ls1f{letter-spacing:-0.640000pt;}
.ls20{letter-spacing:-0.320000pt;}
.ls19{letter-spacing:0.000000pt;}
.ls64{letter-spacing:0.037333pt;}
.ls2f{letter-spacing:0.053333pt;}
.ls46{letter-spacing:0.074667pt;}
.ls41{letter-spacing:0.106667pt;}
.ls48{letter-spacing:0.112000pt;}
.ls65{letter-spacing:0.149333pt;}
.ls27{letter-spacing:0.160000pt;}
.ls4d{letter-spacing:0.186667pt;}
.ls25{letter-spacing:0.213333pt;}
.ls59{letter-spacing:0.224000pt;}
.ls16{letter-spacing:0.240000pt;}
.ls58{letter-spacing:0.261333pt;}
.ls13{letter-spacing:0.266667pt;}
.ls4a{letter-spacing:0.298667pt;}
.ls14{letter-spacing:0.320000pt;}
.ls21{letter-spacing:0.336000pt;}
.lse{letter-spacing:0.373333pt;}
.ls17{letter-spacing:0.384000pt;}
.ls4c{letter-spacing:0.410667pt;}
.ls2c{letter-spacing:0.426667pt;}
.ls56{letter-spacing:0.448000pt;}
.ls30{letter-spacing:0.453333pt;}
.lsd{letter-spacing:0.480000pt;}
.ls50{letter-spacing:0.485333pt;}
.ls52{letter-spacing:0.522667pt;}
.ls1e{letter-spacing:0.533333pt;}
.ls62{letter-spacing:0.560000pt;}
.ls4{letter-spacing:0.586667pt;}
.ls57{letter-spacing:0.634667pt;}
.lsb{letter-spacing:0.640000pt;}
.ls9{letter-spacing:0.693333pt;}
.ls60{letter-spacing:0.709333pt;}
.ls2d{letter-spacing:0.746667pt;}
.ls53{letter-spacing:0.784000pt;}
.lsc{letter-spacing:0.800000pt;}
.ls5f{letter-spacing:0.821333pt;}
.ls43{letter-spacing:0.853333pt;}
.ls4e{letter-spacing:0.858667pt;}
.ls18{letter-spacing:0.864000pt;}
.ls45{letter-spacing:0.896000pt;}
.ls10{letter-spacing:0.906667pt;}
.ls61{letter-spacing:0.933333pt;}
.ls37{letter-spacing:0.960000pt;}
.ls51{letter-spacing:1.008000pt;}
.ls6{letter-spacing:1.013333pt;}
.ls4b{letter-spacing:1.045333pt;}
.ls1b{letter-spacing:1.066667pt;}
.ls54{letter-spacing:1.082667pt;}
.ls26{letter-spacing:1.120000pt;}
.ls66{letter-spacing:1.157333pt;}
.ls0{letter-spacing:1.173333pt;}
.ls49{letter-spacing:1.194667pt;}
.ls2e{letter-spacing:1.226667pt;}
.ls67{letter-spacing:1.232000pt;}
.ls5d{letter-spacing:1.269333pt;}
.ls1d{letter-spacing:1.280000pt;}
.ls1{letter-spacing:1.333333pt;}
.ls63{letter-spacing:1.344000pt;}
.ls28{letter-spacing:1.386667pt;}
.ls55{letter-spacing:1.418667pt;}
.ls24{letter-spacing:1.440000pt;}
.ls5b{letter-spacing:1.456000pt;}
.ls40{letter-spacing:1.493333pt;}
.ls39{letter-spacing:1.520000pt;}
.ls7{letter-spacing:1.546667pt;}
.ls4f{letter-spacing:1.568000pt;}
.ls3a{letter-spacing:1.600000pt;}
.lsa{letter-spacing:1.653333pt;}
.ls2b{letter-spacing:1.706667pt;}
.ls47{letter-spacing:1.717333pt;}
.ls5e{letter-spacing:1.754667pt;}
.ls23{letter-spacing:1.760000pt;}
.ls11{letter-spacing:1.813333pt;}
.ls42{letter-spacing:1.866667pt;}
.lsf{letter-spacing:1.920000pt;}
.ls35{letter-spacing:1.973333pt;}
.ls5c{letter-spacing:1.978667pt;}
.ls36{letter-spacing:2.026667pt;}
.ls5{letter-spacing:2.080000pt;}
.ls3{letter-spacing:2.133333pt;}
.ls2{letter-spacing:2.186667pt;}
.ls29{letter-spacing:2.240000pt;}
.ls3b{letter-spacing:2.293333pt;}
.ls12{letter-spacing:2.346667pt;}
.ls1a{letter-spacing:2.400000pt;}
.ls1c{letter-spacing:2.453333pt;}
.ls8{letter-spacing:2.506667pt;}
.ls44{letter-spacing:2.560000pt;}
.ls3e{letter-spacing:2.666667pt;}
.ls5a{letter-spacing:2.688000pt;}
.ls22{letter-spacing:2.720000pt;}
.ls31{letter-spacing:2.773333pt;}
.ls3c{letter-spacing:2.880000pt;}
.ls2a{letter-spacing:2.933333pt;}
.ls32{letter-spacing:3.093333pt;}
.ls33{letter-spacing:3.200000pt;}
.ls3f{letter-spacing:3.253333pt;}
.ls3d{letter-spacing:3.733333pt;}
.ls38{letter-spacing:3.840000pt;}
.ls15{letter-spacing:3.888000pt;}
.ls34{letter-spacing:5.600000pt;}
.ws40{word-spacing:-21.056000pt;}
.ws49{word-spacing:-14.373333pt;}
.ws41{word-spacing:-12.917333pt;}
.ws1{word-spacing:-12.864000pt;}
.ws44{word-spacing:-9.072000pt;}
.ws0{word-spacing:-8.000000pt;}
.ws52{word-spacing:-1.754667pt;}
.ws1a{word-spacing:-0.336000pt;}
.ws9f{word-spacing:-0.037333pt;}
.ws2{word-spacing:0.000000pt;}
.ws16{word-spacing:0.106667pt;}
.wsb2{word-spacing:0.149333pt;}
.ws7d{word-spacing:0.160000pt;}
.wsba{word-spacing:0.224000pt;}
.ws51{word-spacing:0.261333pt;}
.wsbf{word-spacing:0.298667pt;}
.ws17{word-spacing:0.320000pt;}
.wsa3{word-spacing:0.336000pt;}
.ws97{word-spacing:0.426667pt;}
.ws15{word-spacing:0.480000pt;}
.wsa1{word-spacing:0.522667pt;}
.ws1c{word-spacing:0.528000pt;}
.ws85{word-spacing:0.533333pt;}
.wsa8{word-spacing:0.560000pt;}
.ws57{word-spacing:0.640000pt;}
.ws2b{word-spacing:0.693333pt;}
.ws21{word-spacing:0.720000pt;}
.ws90{word-spacing:0.746667pt;}
.ws7b{word-spacing:0.800000pt;}
.ws24{word-spacing:0.906667pt;}
.wsae{word-spacing:0.933333pt;}
.ws69{word-spacing:0.960000pt;}
.ws59{word-spacing:1.013333pt;}
.wsb9{word-spacing:1.045333pt;}
.ws8{word-spacing:1.066667pt;}
.wse{word-spacing:1.120000pt;}
.wsd{word-spacing:1.173333pt;}
.wsa4{word-spacing:1.194667pt;}
.wsbe{word-spacing:1.306667pt;}
.ws27{word-spacing:1.440000pt;}
.wsb0{word-spacing:1.493333pt;}
.ws3b{word-spacing:1.600000pt;}
.wsbb{word-spacing:1.680000pt;}
.ws93{word-spacing:1.706667pt;}
.wsad{word-spacing:1.717333pt;}
.wsc1{word-spacing:1.792000pt;}
.ws2f{word-spacing:1.866667pt;}
.wsc2{word-spacing:1.904000pt;}
.ws8b{word-spacing:1.920000pt;}
.ws10{word-spacing:1.973333pt;}
.wsc6{word-spacing:1.978667pt;}
.wsc8{word-spacing:2.016000pt;}
.ws26{word-spacing:2.080000pt;}
.ws88{word-spacing:2.133333pt;}
.wsa6{word-spacing:2.165333pt;}
.ws7c{word-spacing:2.186667pt;}
.wsc0{word-spacing:2.240000pt;}
.ws9e{word-spacing:2.314667pt;}
.ws8a{word-spacing:2.346667pt;}
.ws28{word-spacing:2.400000pt;}
.ws53{word-spacing:2.453333pt;}
.ws35{word-spacing:2.501333pt;}
.ws9c{word-spacing:2.506667pt;}
.wsc7{word-spacing:2.538667pt;}
.ws39{word-spacing:2.560000pt;}
.ws7{word-spacing:2.613333pt;}
.ws71{word-spacing:2.666667pt;}
.ws32{word-spacing:2.720000pt;}
.wsa7{word-spacing:2.725333pt;}
.ws33{word-spacing:2.773333pt;}
.wsc{word-spacing:2.880000pt;}
.ws55{word-spacing:2.933333pt;}
.wsbd{word-spacing:2.986667pt;}
.wsa0{word-spacing:3.024000pt;}
.ws54{word-spacing:3.040000pt;}
.ws72{word-spacing:3.093333pt;}
.wsbc{word-spacing:3.098667pt;}
.wsc9{word-spacing:3.173333pt;}
.wsab{word-spacing:3.210667pt;}
.wscc{word-spacing:3.248000pt;}
.ws87{word-spacing:3.253333pt;}
.ws7f{word-spacing:3.306667pt;}
.ws34{word-spacing:3.360000pt;}
.ws6c{word-spacing:3.466667pt;}
.ws74{word-spacing:3.520000pt;}
.wsa9{word-spacing:3.546667pt;}
.ws8d{word-spacing:3.573333pt;}
.ws1f{word-spacing:3.600000pt;}
.ws9b{word-spacing:3.626667pt;}
.wsb8{word-spacing:3.658667pt;}
.ws81{word-spacing:3.680000pt;}
.wsaa{word-spacing:3.696000pt;}
.ws94{word-spacing:3.733333pt;}
.wsca{word-spacing:3.770667pt;}
.ws18{word-spacing:3.840000pt;}
.wsa5{word-spacing:3.882667pt;}
.ws5d{word-spacing:3.946667pt;}
.wscb{word-spacing:3.957333pt;}
.ws76{word-spacing:4.000000pt;}
.ws23{word-spacing:4.053333pt;}
.ws64{word-spacing:4.160000pt;}
.wsf{word-spacing:4.213333pt;}
.wsb5{word-spacing:4.293333pt;}
.ws5c{word-spacing:4.373333pt;}
.wsb6{word-spacing:4.405333pt;}
.ws20{word-spacing:4.512000pt;}
.ws58{word-spacing:4.533333pt;}
.wsaf{word-spacing:4.554667pt;}
.ws6f{word-spacing:4.586667pt;}
.wsc4{word-spacing:4.592000pt;}
.ws1e{word-spacing:4.608000pt;}
.ws83{word-spacing:4.640000pt;}
.ws9d{word-spacing:4.666667pt;}
.ws14{word-spacing:4.693333pt;}
.ws38{word-spacing:4.746667pt;}
.wsb3{word-spacing:4.816000pt;}
.ws13{word-spacing:4.853333pt;}
.wsc5{word-spacing:4.890667pt;}
.ws56{word-spacing:4.906667pt;}
.wsc3{word-spacing:4.965333pt;}
.ws98{word-spacing:5.013333pt;}
.wsac{word-spacing:5.040000pt;}
.ws30{word-spacing:5.066667pt;}
.ws12{word-spacing:5.120000pt;}
.ws1d{word-spacing:5.136000pt;}
.ws2c{word-spacing:5.226667pt;}
.ws6a{word-spacing:5.280000pt;}
.ws25{word-spacing:5.333333pt;}
.ws7a{word-spacing:5.546667pt;}
.ws86{word-spacing:5.600000pt;}
.wsa2{word-spacing:5.674667pt;}
.ws37{word-spacing:5.706667pt;}
.wsb7{word-spacing:5.786667pt;}
.ws5a{word-spacing:5.813333pt;}
.ws5b{word-spacing:5.866667pt;}
.ws2e{word-spacing:5.920000pt;}
.ws7e{word-spacing:5.973333pt;}
.ws19{word-spacing:6.000000pt;}
.wsa{word-spacing:6.026667pt;}
.ws8f{word-spacing:6.080000pt;}
.ws2a{word-spacing:6.186667pt;}
.ws92{word-spacing:6.240000pt;}
.ws6b{word-spacing:6.293333pt;}
.ws1b{word-spacing:6.336000pt;}
.ws3a{word-spacing:6.346667pt;}
.ws2d{word-spacing:6.400000pt;}
.ws82{word-spacing:6.453333pt;}
.ws84{word-spacing:6.506667pt;}
.ws8e{word-spacing:6.560000pt;}
.ws8c{word-spacing:6.613333pt;}
.wsb4{word-spacing:6.645333pt;}
.ws3{word-spacing:6.666667pt;}
.ws79{word-spacing:6.720000pt;}
.ws68{word-spacing:6.773333pt;}
.ws78{word-spacing:6.880000pt;}
.ws6{word-spacing:6.986667pt;}
.ws6e{word-spacing:7.093333pt;}
.ws5{word-spacing:7.306667pt;}
.ws96{word-spacing:7.413333pt;}
.ws73{word-spacing:7.466667pt;}
.ws29{word-spacing:7.520000pt;}
.ws80{word-spacing:7.573333pt;}
.ws31{word-spacing:7.733333pt;}
.ws70{word-spacing:7.786667pt;}
.ws11{word-spacing:7.840000pt;}
.ws4{word-spacing:7.893333pt;}
.ws60{word-spacing:7.946667pt;}
.ws5e{word-spacing:8.000000pt;}
.ws9{word-spacing:8.053333pt;}
.ws9a{word-spacing:8.106667pt;}
.ws61{word-spacing:8.160000pt;}
.ws95{word-spacing:8.213333pt;}
.wsb{word-spacing:8.373333pt;}
.ws99{word-spacing:8.426667pt;}
.ws91{word-spacing:8.480000pt;}
.ws75{word-spacing:8.906667pt;}
.wsb1{word-spacing:9.034667pt;}
.ws22{word-spacing:9.120000pt;}
.ws5f{word-spacing:9.333333pt;}
.ws66{word-spacing:9.493333pt;}
.ws89{word-spacing:9.706667pt;}
.ws36{word-spacing:9.760000pt;}
.ws62{word-spacing:10.400000pt;}
.ws63{word-spacing:10.666667pt;}
.ws77{word-spacing:10.826667pt;}
.ws67{word-spacing:12.320000pt;}
.ws6d{word-spacing:12.746667pt;}
.ws45{word-spacing:15.978667pt;}
.ws50{word-spacing:17.322667pt;}
.ws65{word-spacing:18.666667pt;}
.ws46{word-spacing:35.840000pt;}
.ws47{word-spacing:43.157333pt;}
.ws4e{word-spacing:44.016000pt;}
.ws4f{word-spacing:49.317333pt;}
.ws48{word-spacing:49.616000pt;}
.ws4d{word-spacing:70.672000pt;}
.ws42{word-spacing:86.949333pt;}
.ws4a{word-spacing:97.029333pt;}
.ws43{word-spacing:105.616000pt;}
.ws3f{word-spacing:113.605333pt;}
.ws3e{word-spacing:118.944000pt;}
.ws3d{word-spacing:124.282667pt;}
.ws4c{word-spacing:134.661333pt;}
.ws4b{word-spacing:145.338667pt;}
.ws3c{word-spacing:182.933333pt;}
._62{margin-left:-134.698667pt;}
._60{margin-left:-133.418133pt;}
._67{margin-left:-129.173333pt;}
._64{margin-left:-124.656000pt;}
._5d{margin-left:-123.109333pt;}
._6c{margin-left:-119.504000pt;}
._59{margin-left:-117.301333pt;}
._63{margin-left:-106.026667pt;}
._5a{margin-left:-96.693333pt;}
._69{margin-left:-95.157333pt;}
._5e{margin-left:-85.344000pt;}
._6a{margin-left:-83.178667pt;}
._5f{margin-left:-75.434667pt;}
._5c{margin-left:-69.328000pt;}
._58{margin-left:-63.274667pt;}
._89{margin-left:-53.349333pt;}
._8f{margin-left:-49.317333pt;}
._94{margin-left:-47.755200pt;}
._96{margin-left:-42.460800pt;}
._91{margin-left:-37.408000pt;}
._88{margin-left:-32.446400pt;}
._5b{margin-left:-26.656000pt;}
._3{margin-left:-23.589333pt;}
._93{margin-left:-21.317333pt;}
._9d{margin-left:-17.318933pt;}
._90{margin-left:-15.966400pt;}
._a4{margin-left:-14.496000pt;}
._65{margin-left:-13.253333pt;}
._a3{margin-left:-11.909333pt;}
._8e{margin-left:-9.939200pt;}
._8c{margin-left:-8.025600pt;}
._a0{margin-left:-6.971200pt;}
._a5{margin-left:-5.898667pt;}
._4{margin-left:-4.906667pt;}
._a2{margin-left:-3.760000pt;}
._1{margin-left:-2.741333pt;}
._0{margin-left:-1.082667pt;}
._2{width:1.008000pt;}
._23{width:2.277333pt;}
._6{width:4.624000pt;}
._1a{width:5.936000pt;}
._83{width:6.918933pt;}
._38{width:7.946667pt;}
._56{width:8.922667pt;}
._66{width:9.962667pt;}
._19{width:11.386667pt;}
._46{width:12.517333pt;}
._d{width:14.282667pt;}
._5{width:15.754667pt;}
._18{width:17.136000pt;}
._4c{width:18.147733pt;}
._a{width:19.189333pt;}
._c{width:20.384000pt;}
._61{width:21.392000pt;}
._b{width:22.640000pt;}
._6d{width:23.689067pt;}
._9c{width:24.648533pt;}
._7a{width:26.133333pt;}
._6e{width:27.056533pt;}
._81{width:28.798933pt;}
._42{width:29.941333pt;}
._7{width:30.837333pt;}
._36{width:32.064000pt;}
._80{width:33.546667pt;}
._1e{width:34.682667pt;}
._8b{width:36.297067pt;}
._57{width:37.221333pt;}
._15{width:38.677333pt;}
._75{width:40.245333pt;}
._2d{width:41.717333pt;}
._4d{width:42.970667pt;}
._84{width:44.004800pt;}
._35{width:45.509333pt;}
._20{width:47.002667pt;}
._92{width:48.014400pt;}
._47{width:48.906667pt;}
._39{width:49.952000pt;}
._8d{width:50.848000pt;}
._98{width:53.102933pt;}
._13{width:54.394667pt;}
._52{width:56.182933pt;}
._7c{width:57.369067pt;}
._25{width:58.650667pt;}
._1b{width:60.330667pt;}
._6b{width:61.434667pt;}
._31{width:63.429333pt;}
._22{width:64.469333pt;}
._40{width:65.818667pt;}
._32{width:68.320000pt;}
._3a{width:69.328000pt;}
._4b{width:70.368000pt;}
._85{width:71.495467pt;}
._14{width:72.800000pt;}
._24{width:74.666667pt;}
._2b{width:76.010667pt;}
._9f{width:77.237867pt;}
._3b{width:78.181333pt;}
._4f{width:80.106133pt;}
._77{width:81.013333pt;}
._9b{width:82.109867pt;}
._28{width:83.045333pt;}
._2e{width:84.746667pt;}
._68{width:86.058667pt;}
._6f{width:87.684800pt;}
._76{width:90.384000pt;}
._82{width:92.227733pt;}
._73{width:94.490667pt;}
._7d{width:95.565867pt;}
._71{width:97.417600pt;}
._3e{width:99.717333pt;}
._79{width:100.837333pt;}
._9{width:101.920000pt;}
._2a{width:103.226667pt;}
._12{width:105.018667pt;}
._53{width:106.314133pt;}
._27{width:108.005333pt;}
._4e{width:109.280000pt;}
._9a{width:111.914133pt;}
._72{width:113.120000pt;}
._70{width:114.658667pt;}
._17{width:116.069333pt;}
._50{width:117.264000pt;}
._54{width:119.433067pt;}
._9e{width:121.109333pt;}
._37{width:122.266667pt;}
._7e{width:123.171733pt;}
._74{width:125.008000pt;}
._97{width:128.012267pt;}
._4a{width:129.024000pt;}
._43{width:130.186667pt;}
._78{width:131.936000pt;}
._21{width:133.242667pt;}
._16{width:134.704000pt;}
._41{width:135.781333pt;}
._51{width:136.757333pt;}
._3f{width:139.813333pt;}
._8a{width:141.098667pt;}
._10{width:145.338667pt;}
._99{width:147.138133pt;}
._a1{width:149.056000pt;}
._3d{width:149.968000pt;}
._33{width:150.976000pt;}
._7f{width:153.722667pt;}
._48{width:155.813333pt;}
._55{width:156.720000pt;}
._86{width:157.836267pt;}
._2c{width:160.160000pt;}
._7b{width:162.590400pt;}
._95{width:165.349333pt;}
._30{width:166.656000pt;}
._45{width:167.781333pt;}
._3c{width:172.741333pt;}
._8{width:174.010667pt;}
._26{width:175.989333pt;}
._44{width:177.482667pt;}
._1f{width:182.634667pt;}
._87{width:183.544533pt;}
._29{width:193.088000pt;}
._49{width:194.170667pt;}
._f{width:198.650667pt;}
._11{width:203.802667pt;}
._2f{width:214.704000pt;}
._34{width:220.005333pt;}
._e{width:278.693333pt;}
._1d{width:300.010667pt;}
._1c{width:321.514667pt;}
.fs3{font-size:32.000000pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:26.753333pt;}
.y91{bottom:27.880933pt;}
.y37{bottom:33.122000pt;}
.y36{bottom:44.322000pt;}
.ya0{bottom:57.546800pt;}
.y9f{bottom:57.556133pt;}
.y9c{bottom:57.565467pt;}
.y9b{bottom:57.574800pt;}
.y9d{bottom:57.584133pt;}
.y9e{bottom:57.593467pt;}
.y98{bottom:58.304533pt;}
.y97{bottom:58.313867pt;}
.y9a{bottom:58.320800pt;}
.y96{bottom:58.323200pt;}
.y94{bottom:58.324533pt;}
.y99{bottom:58.327333pt;}
.y95{bottom:58.333867pt;}
.yed{bottom:59.433333pt;}
.y8a{bottom:64.433333pt;}
.y6c{bottom:69.233333pt;}
.yec{bottom:70.633333pt;}
.y89{bottom:80.433333pt;}
.yeb{bottom:81.833333pt;}
.y1e{bottom:84.721333pt;}
.y6b{bottom:85.233333pt;}
.yea{bottom:93.033333pt;}
.y88{bottom:96.433333pt;}
.y1d{bottom:100.721333pt;}
.y6a{bottom:101.233333pt;}
.ye9{bottom:104.233333pt;}
.y87{bottom:112.433333pt;}
.ye8{bottom:115.433333pt;}
.y1c{bottom:116.721333pt;}
.y69{bottom:117.233333pt;}
.ye7{bottom:126.633333pt;}
.y86{bottom:128.433333pt;}
.y1b{bottom:132.721333pt;}
.y68{bottom:133.233333pt;}
.y12f{bottom:136.233333pt;}
.ye6{bottom:137.833333pt;}
.y85{bottom:144.433333pt;}
.y12e{bottom:147.433333pt;}
.y1a{bottom:148.721333pt;}
.ye5{bottom:149.033333pt;}
.y67{bottom:149.233333pt;}
.y12d{bottom:158.633333pt;}
.ye4{bottom:160.233333pt;}
.y84{bottom:160.433333pt;}
.y19{bottom:164.721333pt;}
.y66{bottom:165.233333pt;}
.y130{bottom:169.833200pt;}
.y12c{bottom:169.833333pt;}
.ye3{bottom:171.433333pt;}
.y83{bottom:176.433333pt;}
.y18{bottom:180.721333pt;}
.y12b{bottom:181.033333pt;}
.y65{bottom:181.233333pt;}
.ye2{bottom:182.633333pt;}
.y12a{bottom:192.233333pt;}
.y82{bottom:192.433333pt;}
.ye1{bottom:193.833333pt;}
.y17{bottom:196.721333pt;}
.y64{bottom:197.233333pt;}
.y129{bottom:203.433333pt;}
.ye0{bottom:205.033333pt;}
.y81{bottom:208.433333pt;}
.y16{bottom:212.721333pt;}
.y63{bottom:213.233333pt;}
.y128{bottom:214.633333pt;}
.ydf{bottom:216.233333pt;}
.y80{bottom:224.433333pt;}
.y127{bottom:225.833333pt;}
.yde{bottom:227.433333pt;}
.y15{bottom:228.721333pt;}
.y62{bottom:229.233333pt;}
.y126{bottom:237.033333pt;}
.ydd{bottom:238.633333pt;}
.y7f{bottom:240.433333pt;}
.y14{bottom:244.721333pt;}
.y61{bottom:245.233333pt;}
.y125{bottom:248.233333pt;}
.ydc{bottom:249.833333pt;}
.y7e{bottom:256.433333pt;}
.y124{bottom:259.433333pt;}
.y13{bottom:260.721333pt;}
.ydb{bottom:261.033333pt;}
.y60{bottom:261.233333pt;}
.y123{bottom:270.633333pt;}
.yda{bottom:272.233333pt;}
.y7d{bottom:272.433333pt;}
.y12{bottom:276.721333pt;}
.y5f{bottom:277.233333pt;}
.y122{bottom:281.833333pt;}
.yd9{bottom:283.433333pt;}
.y7c{bottom:288.433333pt;}
.y11{bottom:292.721333pt;}
.y121{bottom:293.033333pt;}
.y5e{bottom:293.233333pt;}
.yd8{bottom:294.633333pt;}
.y120{bottom:304.233333pt;}
.y7b{bottom:304.433333pt;}
.yd7{bottom:305.833333pt;}
.y10{bottom:308.721333pt;}
.y5d{bottom:309.233333pt;}
.y11f{bottom:315.433333pt;}
.yd6{bottom:317.033333pt;}
.y7a{bottom:320.433333pt;}
.yf{bottom:324.721333pt;}
.y5c{bottom:325.233333pt;}
.y11e{bottom:326.633333pt;}
.yd5{bottom:328.233333pt;}
.y79{bottom:336.433333pt;}
.y11d{bottom:337.833333pt;}
.yd4{bottom:339.433333pt;}
.ye{bottom:340.721333pt;}
.y5b{bottom:341.233333pt;}
.y11c{bottom:349.033333pt;}
.yd3{bottom:350.633333pt;}
.y78{bottom:352.433333pt;}
.yd{bottom:356.721333pt;}
.y5a{bottom:357.233333pt;}
.y11b{bottom:360.233333pt;}
.yd2{bottom:361.833333pt;}
.y77{bottom:368.433333pt;}
.y11a{bottom:371.433333pt;}
.yc{bottom:372.721333pt;}
.yd1{bottom:373.033333pt;}
.y59{bottom:373.233333pt;}
.y119{bottom:382.633333pt;}
.yd0{bottom:384.233333pt;}
.y76{bottom:384.433333pt;}
.yb{bottom:388.721333pt;}
.y58{bottom:389.233333pt;}
.y93{bottom:393.138533pt;}
.y118{bottom:393.833333pt;}
.ycf{bottom:395.433333pt;}
.y75{bottom:400.433333pt;}
.ya{bottom:404.721333pt;}
.y117{bottom:405.033333pt;}
.y57{bottom:405.233333pt;}
.yce{bottom:406.633333pt;}
.y116{bottom:416.233333pt;}
.y74{bottom:416.433333pt;}
.ycd{bottom:417.833333pt;}
.y9{bottom:420.721333pt;}
.y56{bottom:421.233333pt;}
.y115{bottom:427.433333pt;}
.ycc{bottom:429.033333pt;}
.y73{bottom:432.433333pt;}
.y8{bottom:436.721333pt;}
.y55{bottom:437.233333pt;}
.y114{bottom:438.633333pt;}
.ycb{bottom:440.233333pt;}
.y72{bottom:448.433333pt;}
.y113{bottom:449.833333pt;}
.yca{bottom:451.433333pt;}
.y7{bottom:452.721333pt;}
.y54{bottom:453.233333pt;}
.y112{bottom:461.033333pt;}
.yc9{bottom:462.633333pt;}
.y71{bottom:464.433333pt;}
.y6{bottom:468.721333pt;}
.y53{bottom:469.233333pt;}
.y111{bottom:472.233333pt;}
.y92{bottom:473.165200pt;}
.yc8{bottom:473.833333pt;}
.y70{bottom:480.433333pt;}
.y110{bottom:483.433333pt;}
.y5{bottom:484.721333pt;}
.yc7{bottom:485.033333pt;}
.y52{bottom:485.233333pt;}
.y10f{bottom:494.633333pt;}
.yc6{bottom:496.233333pt;}
.y4{bottom:500.721333pt;}
.y51{bottom:501.233333pt;}
.y10e{bottom:505.833333pt;}
.yc5{bottom:507.433333pt;}
.y6f{bottom:512.433333pt;}
.y3{bottom:516.721333pt;}
.y10d{bottom:517.033333pt;}
.y50{bottom:517.233333pt;}
.yc4{bottom:518.633333pt;}
.y10c{bottom:528.233333pt;}
.yc3{bottom:529.833333pt;}
.y4f{bottom:533.233333pt;}
.y10b{bottom:539.433333pt;}
.yc2{bottom:541.033333pt;}
.y6e{bottom:544.433333pt;}
.y2{bottom:548.721333pt;}
.y4e{bottom:549.233333pt;}
.y10a{bottom:550.633333pt;}
.yc1{bottom:552.233333pt;}
.y6d{bottom:555.633333pt;}
.y109{bottom:561.833333pt;}
.yc0{bottom:563.433333pt;}
.y4d{bottom:565.233333pt;}
.y108{bottom:573.033333pt;}
.ybf{bottom:574.633333pt;}
.y33{bottom:579.628667pt;}
.y4c{bottom:581.233333pt;}
.y107{bottom:584.233333pt;}
.ybe{bottom:585.833333pt;}
.y106{bottom:595.433333pt;}
.ybd{bottom:597.033333pt;}
.y4b{bottom:597.233333pt;}
.y105{bottom:606.633333pt;}
.ybc{bottom:608.233333pt;}
.y32{bottom:608.428667pt;}
.y4a{bottom:613.233333pt;}
.y104{bottom:617.833333pt;}
.ybb{bottom:619.433333pt;}
.y31{bottom:622.828667pt;}
.y103{bottom:629.033333pt;}
.y49{bottom:629.233333pt;}
.yba{bottom:630.633333pt;}
.y30{bottom:637.228667pt;}
.y102{bottom:640.233333pt;}
.yb9{bottom:641.833333pt;}
.y48{bottom:645.233333pt;}
.y101{bottom:651.433333pt;}
.y2f{bottom:651.628667pt;}
.yb8{bottom:653.033333pt;}
.y47{bottom:661.233333pt;}
.y100{bottom:662.633333pt;}
.yb7{bottom:664.233333pt;}
.y2e{bottom:666.028667pt;}
.yff{bottom:673.833333pt;}
.yb6{bottom:675.433333pt;}
.y46{bottom:677.233333pt;}
.y2d{bottom:680.428667pt;}
.yfe{bottom:685.033333pt;}
.yb5{bottom:686.633333pt;}
.y45{bottom:693.233333pt;}
.y2c{bottom:694.828667pt;}
.yfd{bottom:696.233333pt;}
.yb4{bottom:697.833333pt;}
.yfc{bottom:707.433333pt;}
.yb3{bottom:709.033333pt;}
.y2b{bottom:709.228667pt;}
.y44{bottom:709.233333pt;}
.yfb{bottom:718.633333pt;}
.yb2{bottom:720.233333pt;}
.y2a{bottom:723.628667pt;}
.y43{bottom:725.233333pt;}
.yfa{bottom:729.833333pt;}
.yb1{bottom:731.433333pt;}
.y29{bottom:738.028667pt;}
.yf9{bottom:741.033333pt;}
.y42{bottom:741.233333pt;}
.yb0{bottom:742.633333pt;}
.yf8{bottom:752.233333pt;}
.y28{bottom:752.428667pt;}
.yaf{bottom:753.833333pt;}
.y41{bottom:757.233333pt;}
.yf7{bottom:763.433333pt;}
.yae{bottom:765.033333pt;}
.y27{bottom:766.828667pt;}
.y40{bottom:773.233333pt;}
.yf6{bottom:774.633333pt;}
.yad{bottom:776.233333pt;}
.y26{bottom:781.226000pt;}
.yf5{bottom:785.833333pt;}
.yac{bottom:787.433333pt;}
.y3f{bottom:789.233333pt;}
.y25{bottom:793.228667pt;}
.yf4{bottom:797.033333pt;}
.yab{bottom:798.633333pt;}
.y24{bottom:804.428667pt;}
.y3e{bottom:805.233333pt;}
.yf3{bottom:808.233333pt;}
.yaa{bottom:809.833333pt;}
.y23{bottom:815.628667pt;}
.yf2{bottom:819.433333pt;}
.ya9{bottom:821.033333pt;}
.y3d{bottom:821.233333pt;}
.y22{bottom:826.828667pt;}
.yf1{bottom:830.633333pt;}
.y3c{bottom:837.233333pt;}
.yf0{bottom:841.833333pt;}
.ya8{bottom:848.233333pt;}
.yef{bottom:853.033333pt;}
.y21{bottom:853.147333pt;}
.y3b{bottom:853.233333pt;}
.yee{bottom:864.233333pt;}
.y3a{bottom:869.233333pt;}
.ya7{bottom:875.433333pt;}
.y39{bottom:885.233333pt;}
.ya6{bottom:886.633333pt;}
.y20{bottom:887.466000pt;}
.ya5{bottom:897.833333pt;}
.ya1{bottom:901.233333pt;}
.ya4{bottom:909.033333pt;}
.y1f{bottom:909.866000pt;}
.y38{bottom:917.233333pt;}
.ya3{bottom:920.233333pt;}
.ya2{bottom:948.396667pt;}
.y8b{bottom:949.488000pt;}
.y8e{bottom:949.524267pt;}
.y35{bottom:976.978667pt;}
.y8d{bottom:977.514000pt;}
.y90{bottom:978.106267pt;}
.y34{bottom:988.178667pt;}
.y8c{bottom:988.714000pt;}
.y8f{bottom:989.306267pt;}
.h9{height:25.611979pt;}
.he{height:25.921875pt;}
.h7{height:27.125000pt;}
.h11{height:27.125533pt;}
.h10{height:27.130333pt;}
.hf{height:27.135667pt;}
.h8{height:34.875000pt;}
.hb{height:36.588542pt;}
.h3{height:37.031250pt;}
.h4{height:37.265625pt;}
.h2{height:38.750000pt;}
.h6{height:46.500000pt;}
.h5{height:51.843750pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.ha{height:1056.000000pt;}
.hd{height:1058.000000pt;}
.hc{height:1058.255600pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.w3{width:805.026667pt;}
.w4{width:805.333333pt;}
.w2{width:816.000000pt;}
.x0{left:0.000000pt;}
.x4{left:48.960133pt;}
.xc{left:50.323067pt;}
.x1b{left:52.540000pt;}
.x12{left:58.028400pt;}
.xb{left:61.737733pt;}
.x3{left:64.080133pt;}
.x11{left:73.148400pt;}
.xd{left:74.701733pt;}
.x1c{left:77.962133pt;}
.x91{left:79.362667pt;}
.x54{left:85.555600pt;}
.x55{left:96.484933pt;}
.x1d{left:104.895467pt;}
.x56{left:107.426267pt;}
.x1e{left:115.824800pt;}
.x57{left:118.359600pt;}
.xf{left:124.168533pt;}
.x1f{left:126.754133pt;}
.x58{left:129.288933pt;}
.x10{left:131.068400pt;}
.x20{left:137.692800pt;}
.x59{left:140.218267pt;}
.x8{left:144.960667pt;}
.x5a{left:151.159600pt;}
.x21{left:159.563467pt;}
.x5b{left:162.088933pt;}
.x18{left:168.937467pt;}
.xa{left:170.506133pt;}
.x5c{left:173.018267pt;}
.x22{left:181.422133pt;}
.x2{left:183.640133pt;}
.x23{left:192.351467pt;}
.x5d{left:194.888933pt;}
.x24{left:203.280800pt;}
.x5e{left:205.826267pt;}
.x25{left:214.210133pt;}
.x5f{left:216.755600pt;}
.x26{left:225.139467pt;}
.x60{left:227.684933pt;}
.x27{left:236.095467pt;}
.x61{left:238.614267pt;}
.x28{left:247.024800pt;}
.x62{left:249.543600pt;}
.x29{left:257.958133pt;}
.x63{left:260.472933pt;}
.x2a{left:268.887467pt;}
.x64{left:271.402267pt;}
.x2b{left:279.816800pt;}
.x65{left:282.331600pt;}
.x9{left:287.051333pt;}
.x2c{left:290.746133pt;}
.x66{left:293.260933pt;}
.x2d{left:301.694133pt;}
.x67{left:304.190267pt;}
.x2e{left:312.624800pt;}
.x68{left:315.119600pt;}
.x2f{left:323.558133pt;}
.x69{left:326.048933pt;}
.x30{left:334.495467pt;}
.x6a{left:337.026267pt;}
.x31{left:345.424800pt;}
.x1a{left:347.884400pt;}
.x8e{left:353.371067pt;}
.x32{left:356.362267pt;}
.x6b{left:358.884933pt;}
.x33{left:367.291600pt;}
.x6c{left:369.826267pt;}
.x34{left:378.224933pt;}
.x6d{left:380.755600pt;}
.x1{left:384.335867pt;}
.x35{left:389.154267pt;}
.x6e{left:391.684933pt;}
.x19{left:393.784667pt;}
.xe{left:395.889733pt;}
.x36{left:400.083600pt;}
.x6f{left:402.614267pt;}
.x7{left:406.933467pt;}
.x37{left:411.012933pt;}
.x70{left:413.543600pt;}
.x13{left:416.401733pt;}
.x6{left:422.053467pt;}
.x71{left:424.492933pt;}
.x92{left:429.997333pt;}
.x17{left:431.522267pt;}
.x38{left:432.891600pt;}
.x72{left:435.422267pt;}
.x90{left:437.336000pt;}
.x39{left:443.820933pt;}
.x73{left:446.351600pt;}
.x3a{left:454.750267pt;}
.x74{left:457.280933pt;}
.x3b{left:465.679600pt;}
.x75{left:468.226267pt;}
.x3c{left:476.608933pt;}
.x76{left:479.155600pt;}
.x3d{left:487.562267pt;}
.x77{left:490.084933pt;}
.x15{left:497.055067pt;}
.x3e{left:498.495600pt;}
.x78{left:501.014267pt;}
.x3f{left:509.424933pt;}
.x16{left:512.588933pt;}
.x40{left:520.354267pt;}
.x79{left:522.892933pt;}
.x8f{left:529.386667pt;}
.x41{left:531.283600pt;}
.x7a{left:533.822267pt;}
.x42{left:542.231600pt;}
.x7b{left:544.751600pt;}
.x5{left:553.106800pt;}
.x7c{left:555.680933pt;}
.x14{left:563.708400pt;}
.x7d{left:566.626267pt;}
.x43{left:575.028933pt;}
.x7e{left:577.555600pt;}
.x44{left:585.958267pt;}
.x7f{left:588.484933pt;}
.x45{left:596.896933pt;}
.x80{left:599.426267pt;}
.x46{left:607.824933pt;}
.x81{left:610.355600pt;}
.x47{left:618.762267pt;}
.x82{left:621.292933pt;}
.x48{left:629.691600pt;}
.x83{left:632.226267pt;}
.x49{left:640.624933pt;}
.x84{left:643.155600pt;}
.x4a{left:651.554267pt;}
.x85{left:654.084933pt;}
.x4b{left:662.483600pt;}
.x86{left:665.026267pt;}
.x4c{left:673.412933pt;}
.x87{left:675.955600pt;}
.x4d{left:684.362267pt;}
.x88{left:686.884933pt;}
.x4e{left:695.291600pt;}
.x89{left:697.814267pt;}
.x4f{left:706.228933pt;}
.x8a{left:708.743600pt;}
.x50{left:717.158267pt;}
.x51{left:728.091600pt;}
.x8b{left:730.626267pt;}
.x52{left:739.028933pt;}
.x8c{left:741.555600pt;}
.x53{left:749.958267pt;}
.x8d{left:752.484933pt;}
}




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