
    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_6d1ea31b2c7a8240f590e7d0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.015625;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_ac9dc1cfaf02cc06cff98aca.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.022461;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_cc11712439de868d84527379.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.953125;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_5bad5b1a9347aaddab202870.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.129883;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_b013d2bea3aef67875885d69.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.032715;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_f03e85e96dd052d38eebd2f5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.026855;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_28aa4ee0fbf266edc29b6638.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.973633;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_2486ba4d6516a4065077af8f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.976118;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_091a5a2cc98660b4abf993b7.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.130859;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_63cb379e9f34434a857833a6.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.710938;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_73c2276db422bc4602f72309.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.953125;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_69681c078c1e388bbb68f7a8.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.976600;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_55af55c84e08ff1f28dfc8fe.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.973633;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_34f61f4f302f19b9b0c1d513.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.964375;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.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,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);}
.m2{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);}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:17.982000px;}
.v2{vertical-align:19.980000px;}
.v1{vertical-align:21.978000px;}
.v3{vertical-align:38.409600px;}
.ls18{letter-spacing:-9.480000px;}
.ls8{letter-spacing:-0.691200px;}
.lsb{letter-spacing:-0.672000px;}
.ls17{letter-spacing:-0.660000px;}
.ls16{letter-spacing:-0.600000px;}
.ls19{letter-spacing:-0.432000px;}
.lse{letter-spacing:-0.420000px;}
.ls6{letter-spacing:-0.408000px;}
.ls7{letter-spacing:-0.306000px;}
.ls9{letter-spacing:-0.300000px;}
.lsa{letter-spacing:-0.120000px;}
.ls5{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.012000px;}
.ls4{letter-spacing:0.025800px;}
.ls1a{letter-spacing:0.540000px;}
.lsc{letter-spacing:0.600000px;}
.ls2{letter-spacing:1.831800px;}
.ls3{letter-spacing:6.705600px;}
.lsd{letter-spacing:13.822200px;}
.ls0{letter-spacing:43.181364px;}
.ls13{letter-spacing:238.871400px;}
.lsf{letter-spacing:241.156200px;}
.ls12{letter-spacing:241.173000px;}
.ls10{letter-spacing:241.173600px;}
.ls11{letter-spacing:243.300600px;}
.ls14{letter-spacing:243.663600px;}
.ls15{letter-spacing:243.664200px;}
.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;}
}
.wsdc{word-spacing:-255.204600px;}
.ws9{word-spacing:-17.928000px;}
.wsb8{word-spacing:-16.434000px;}
.wsb7{word-spacing:-15.300000px;}
.ws6{word-spacing:-14.940000px;}
.ws79{word-spacing:-14.880000px;}
.ws78{word-spacing:-14.760000px;}
.wsa{word-spacing:-14.700000px;}
.wscb{word-spacing:-14.520000px;}
.ws32{word-spacing:-14.400000px;}
.wscc{word-spacing:-14.280000px;}
.wseb{word-spacing:-14.040000px;}
.ws12e{word-spacing:-13.932000px;}
.wsca{word-spacing:-13.446000px;}
.ws8{word-spacing:-13.392000px;}
.ws7{word-spacing:-13.230000px;}
.ws117{word-spacing:-12.960000px;}
.ws116{word-spacing:-12.798000px;}
.wsd{word-spacing:-12.150000px;}
.wsb{word-spacing:-11.772000px;}
.wsa5{word-spacing:-11.760000px;}
.ws4{word-spacing:-10.896000px;}
.ws30{word-spacing:-10.800000px;}
.wse{word-spacing:-10.464000px;}
.ws3{word-spacing:-9.542544px;}
.ws5{word-spacing:-9.417600px;}
.ws5c{word-spacing:-8.675040px;}
.wsff{word-spacing:-7.807536px;}
.wsf6{word-spacing:-3.120000px;}
.wsc5{word-spacing:-2.700000px;}
.ws120{word-spacing:-2.646000px;}
.ws2b{word-spacing:-2.640000px;}
.ws7f{word-spacing:-2.580000px;}
.wse6{word-spacing:-2.520000px;}
.ws122{word-spacing:-2.484000px;}
.ws5b{word-spacing:-2.460000px;}
.wse4{word-spacing:-2.376000px;}
.wsd1{word-spacing:-2.340000px;}
.wse5{word-spacing:-2.322000px;}
.ws7e{word-spacing:-2.280000px;}
.ws6d{word-spacing:-2.220000px;}
.ws46{word-spacing:-2.160000px;}
.ws82{word-spacing:-1.980000px;}
.ws130{word-spacing:-1.944000px;}
.ws44{word-spacing:-1.920000px;}
.ws144{word-spacing:-1.890000px;}
.ws70{word-spacing:-1.860000px;}
.ws139{word-spacing:-1.836000px;}
.wsba{word-spacing:-1.800000px;}
.ws14c{word-spacing:-1.782000px;}
.ws45{word-spacing:-1.740000px;}
.wsd7{word-spacing:-1.620000px;}
.ws110{word-spacing:-1.566000px;}
.wsf7{word-spacing:-1.560000px;}
.ws20{word-spacing:-1.500000px;}
.ws10e{word-spacing:-1.458000px;}
.wsbd{word-spacing:-1.440000px;}
.ws126{word-spacing:-1.404000px;}
.wsbe{word-spacing:-1.380000px;}
.ws12b{word-spacing:-1.188000px;}
.ws61{word-spacing:-1.140000px;}
.ws148{word-spacing:-1.134000px;}
.wsc9{word-spacing:-1.080000px;}
.ws24{word-spacing:-1.020000px;}
.ws6b{word-spacing:-0.960000px;}
.wsbb{word-spacing:-0.900000px;}
.ws102{word-spacing:-0.864000px;}
.ws85{word-spacing:-0.840000px;}
.wsc2{word-spacing:-0.780000px;}
.ws7b{word-spacing:-0.720000px;}
.wsd5{word-spacing:-0.660000px;}
.ws35{word-spacing:-0.600000px;}
.ws10f{word-spacing:-0.594000px;}
.ws59{word-spacing:-0.540000px;}
.ws11d{word-spacing:-0.486000px;}
.wsf8{word-spacing:-0.480000px;}
.ws3f{word-spacing:-0.420000px;}
.wsf9{word-spacing:-0.360000px;}
.wsf2{word-spacing:-0.300000px;}
.ws123{word-spacing:-0.270000px;}
.ws62{word-spacing:-0.240000px;}
.ws10{word-spacing:-0.216000px;}
.ws149{word-spacing:-0.162000px;}
.wsa8{word-spacing:-0.108000px;}
.ws23{word-spacing:-0.060000px;}
.wsc{word-spacing:-0.054000px;}
.ws31{word-spacing:-0.048000px;}
.wsf{word-spacing:0.000000px;}
.ws7a{word-spacing:0.060000px;}
.ws47{word-spacing:0.120000px;}
.ws143{word-spacing:0.162000px;}
.ws28{word-spacing:0.180000px;}
.ws42{word-spacing:0.240000px;}
.ws7d{word-spacing:0.300000px;}
.ws0{word-spacing:0.306000px;}
.ws1c{word-spacing:0.324000px;}
.ws4e{word-spacing:0.360000px;}
.wscd{word-spacing:0.378000px;}
.ws34{word-spacing:0.420000px;}
.ws119{word-spacing:0.432000px;}
.ws6e{word-spacing:0.480000px;}
.ws14f{word-spacing:0.486000px;}
.ws33{word-spacing:0.540000px;}
.ws112{word-spacing:0.594000px;}
.ws72{word-spacing:0.600000px;}
.wsc8{word-spacing:0.660000px;}
.wse2{word-spacing:0.672000px;}
.ws11{word-spacing:0.691200px;}
.ws55{word-spacing:0.720000px;}
.ws118{word-spacing:0.756000px;}
.wsb5{word-spacing:0.780000px;}
.ws4f{word-spacing:0.840000px;}
.ws52{word-spacing:0.900000px;}
.ws11f{word-spacing:0.918000px;}
.ws81{word-spacing:1.020000px;}
.wsb1{word-spacing:1.080000px;}
.ws121{word-spacing:1.134000px;}
.ws29{word-spacing:1.140000px;}
.ws41{word-spacing:1.200000px;}
.ws14{word-spacing:1.242000px;}
.wsaf{word-spacing:1.260000px;}
.ws3a{word-spacing:1.320000px;}
.ws128{word-spacing:1.350000px;}
.ws39{word-spacing:1.380000px;}
.wse3{word-spacing:1.392000px;}
.ws10a{word-spacing:1.404000px;}
.ws6c{word-spacing:1.440000px;}
.ws38{word-spacing:1.500000px;}
.wsbc{word-spacing:1.560000px;}
.ws100{word-spacing:1.566000px;}
.ws26{word-spacing:1.620000px;}
.ws13{word-spacing:1.674000px;}
.ws103{word-spacing:1.728000px;}
.ws50{word-spacing:1.740000px;}
.wsc3{word-spacing:1.800000px;}
.ws16{word-spacing:1.836000px;}
.ws17{word-spacing:1.890000px;}
.ws80{word-spacing:1.920000px;}
.ws1e{word-spacing:1.944000px;}
.ws3b{word-spacing:1.980000px;}
.ws3c{word-spacing:2.040000px;}
.ws140{word-spacing:2.052000px;}
.wsbf{word-spacing:2.100000px;}
.wsfe{word-spacing:2.106000px;}
.ws37{word-spacing:2.160000px;}
.ws36{word-spacing:2.220000px;}
.ws13e{word-spacing:2.268000px;}
.wse9{word-spacing:2.280000px;}
.ws1a{word-spacing:2.322000px;}
.wsef{word-spacing:2.340000px;}
.wsfd{word-spacing:2.376000px;}
.ws142{word-spacing:2.430000px;}
.ws71{word-spacing:2.460000px;}
.ws141{word-spacing:2.484000px;}
.ws11a{word-spacing:2.538000px;}
.ws56{word-spacing:2.580000px;}
.ws76{word-spacing:2.640000px;}
.ws101{word-spacing:2.646000px;}
.ws2a{word-spacing:2.760000px;}
.ws6a{word-spacing:2.820000px;}
.wsfb{word-spacing:2.862000px;}
.ws64{word-spacing:2.880000px;}
.ws13f{word-spacing:2.970000px;}
.wsec{word-spacing:3.000000px;}
.ws10b{word-spacing:3.024000px;}
.wsed{word-spacing:3.060000px;}
.wsf3{word-spacing:3.120000px;}
.ws75{word-spacing:3.180000px;}
.ws40{word-spacing:3.240000px;}
.ws113{word-spacing:3.294000px;}
.wsf0{word-spacing:3.300000px;}
.wsb0{word-spacing:3.360000px;}
.ws84{word-spacing:3.420000px;}
.ws12d{word-spacing:3.456000px;}
.wsee{word-spacing:3.480000px;}
.ws13b{word-spacing:3.510000px;}
.wsb2{word-spacing:3.540000px;}
.ws65{word-spacing:3.600000px;}
.ws66{word-spacing:3.660000px;}
.wsb9{word-spacing:3.720000px;}
.ws1d{word-spacing:3.780000px;}
.ws67{word-spacing:3.840000px;}
.ws49{word-spacing:3.900000px;}
.ws146{word-spacing:3.942000px;}
.wsb6{word-spacing:3.960000px;}
.ws145{word-spacing:3.996000px;}
.ws22{word-spacing:4.140000px;}
.wsfc{word-spacing:4.158000px;}
.ws21{word-spacing:4.200000px;}
.ws111{word-spacing:4.212000px;}
.wsac{word-spacing:4.260000px;}
.ws12{word-spacing:4.374000px;}
.wsd0{word-spacing:4.380000px;}
.ws14a{word-spacing:4.428000px;}
.ws2f{word-spacing:4.440000px;}
.ws2e{word-spacing:4.500000px;}
.wsc1{word-spacing:4.560000px;}
.ws12c{word-spacing:4.590000px;}
.ws5a{word-spacing:4.620000px;}
.ws124{word-spacing:4.644000px;}
.ws5d{word-spacing:4.680000px;}
.ws125{word-spacing:4.698000px;}
.ws74{word-spacing:4.740000px;}
.ws54{word-spacing:4.800000px;}
.ws10c{word-spacing:4.806000px;}
.ws1f{word-spacing:4.860000px;}
.ws69{word-spacing:4.920000px;}
.ws60{word-spacing:4.980000px;}
.ws5f{word-spacing:5.040000px;}
.ws86{word-spacing:5.100000px;}
.ws115{word-spacing:5.130000px;}
.ws83{word-spacing:5.160000px;}
.ws4a{word-spacing:5.220000px;}
.ws12f{word-spacing:5.238000px;}
.ws4b{word-spacing:5.280000px;}
.ws11e{word-spacing:5.292000px;}
.wsc4{word-spacing:5.340000px;}
.wsb3{word-spacing:5.400000px;}
.ws13a{word-spacing:5.454000px;}
.wsc6{word-spacing:5.460000px;}
.ws105{word-spacing:5.508000px;}
.ws1b{word-spacing:5.562000px;}
.ws13d{word-spacing:5.616000px;}
.wsea{word-spacing:5.640000px;}
.ws13c{word-spacing:5.670000px;}
.ws27{word-spacing:5.760000px;}
.ws104{word-spacing:5.886000px;}
.ws63{word-spacing:5.940000px;}
.ws6f{word-spacing:6.000000px;}
.ws114{word-spacing:6.048000px;}
.wsd2{word-spacing:6.060000px;}
.ws58{word-spacing:6.120000px;}
.ws68{word-spacing:6.180000px;}
.ws109{word-spacing:6.210000px;}
.ws131{word-spacing:6.264000px;}
.ws4d{word-spacing:6.300000px;}
.ws4c{word-spacing:6.360000px;}
.ws132{word-spacing:6.426000px;}
.wsd8{word-spacing:6.540000px;}
.ws7c{word-spacing:6.600000px;}
.ws19{word-spacing:6.642000px;}
.ws108{word-spacing:6.696000px;}
.ws18{word-spacing:6.750000px;}
.ws107{word-spacing:6.804000px;}
.ws11c{word-spacing:6.966000px;}
.wsf4{word-spacing:7.020000px;}
.ws14e{word-spacing:7.236000px;}
.ws73{word-spacing:7.320000px;}
.wsd4{word-spacing:7.500000px;}
.ws15{word-spacing:7.506000px;}
.wsd3{word-spacing:7.560000px;}
.ws147{word-spacing:7.614000px;}
.ws43{word-spacing:7.680000px;}
.wsad{word-spacing:7.740000px;}
.ws136{word-spacing:7.776000px;}
.ws77{word-spacing:7.800000px;}
.ws10d{word-spacing:7.830000px;}
.ws57{word-spacing:7.920000px;}
.ws137{word-spacing:7.938000px;}
.ws53{word-spacing:7.980000px;}
.ws51{word-spacing:8.040000px;}
.ws14b{word-spacing:8.100000px;}
.ws2d{word-spacing:8.160000px;}
.ws2c{word-spacing:8.220000px;}
.wsfa{word-spacing:8.280000px;}
.wse8{word-spacing:8.340000px;}
.wsd6{word-spacing:8.400000px;}
.ws5e{word-spacing:8.700000px;}
.ws138{word-spacing:8.748000px;}
.wsc0{word-spacing:8.760000px;}
.wsb4{word-spacing:8.940000px;}
.ws12a{word-spacing:9.288000px;}
.ws25{word-spacing:9.300000px;}
.wsf1{word-spacing:9.480000px;}
.ws11b{word-spacing:9.774000px;}
.wsae{word-spacing:10.440000px;}
.ws106{word-spacing:11.124000px;}
.ws3d{word-spacing:11.160000px;}
.ws3e{word-spacing:11.280000px;}
.wsf5{word-spacing:11.340000px;}
.wsc7{word-spacing:11.700000px;}
.ws48{word-spacing:11.880000px;}
.ws134{word-spacing:12.744000px;}
.ws135{word-spacing:13.230000px;}
.wscf{word-spacing:13.860000px;}
.wsce{word-spacing:13.920000px;}
.ws129{word-spacing:14.850000px;}
.ws14d{word-spacing:15.174000px;}
.ws127{word-spacing:16.308000px;}
.ws133{word-spacing:23.490000px;}
.wse7{word-spacing:27.300000px;}
.ws2{word-spacing:33.650535px;}
.ws1{word-spacing:33.651135px;}
.wsa2{word-spacing:119.565000px;}
.ws89{word-spacing:119.576400px;}
.ws8a{word-spacing:119.601000px;}
.ws8c{word-spacing:119.612400px;}
.ws9c{word-spacing:119.624400px;}
.wsa3{word-spacing:121.135200px;}
.ws95{word-spacing:121.603800px;}
.wsa4{word-spacing:125.835000px;}
.ws9b{word-spacing:133.313400px;}
.ws90{word-spacing:133.324800px;}
.ws91{word-spacing:133.498200px;}
.wsa9{word-spacing:133.582800px;}
.wsa1{word-spacing:134.917200px;}
.ws9f{word-spacing:136.185000px;}
.ws9a{word-spacing:136.831200px;}
.ws99{word-spacing:140.718600px;}
.ws98{word-spacing:141.151200px;}
.ws8f{word-spacing:143.263200px;}
.ws8e{word-spacing:143.274600px;}
.ws9e{word-spacing:145.387200px;}
.ws94{word-spacing:145.411200px;}
.wsa7{word-spacing:146.575200px;}
.ws92{word-spacing:146.769000px;}
.wsa6{word-spacing:147.513000px;}
.ws88{word-spacing:147.631200px;}
.ws96{word-spacing:148.137000px;}
.wsaa{word-spacing:148.735200px;}
.ws97{word-spacing:148.747200px;}
.wsab{word-spacing:148.807800px;}
.ws93{word-spacing:148.819800px;}
.ws8b{word-spacing:150.678600px;}
.wsa0{word-spacing:150.702600px;}
.ws9d{word-spacing:203.856600px;}
.wsd9{word-spacing:210.084600px;}
.ws87{word-spacing:217.188600px;}
.wse0{word-spacing:224.839800px;}
.wsde{word-spacing:224.850000px;}
.wsdb{word-spacing:227.124600px;}
.wse1{word-spacing:229.251600px;}
.wsdd{word-spacing:229.252200px;}
.wsda{word-spacing:231.396600px;}
.ws8d{word-spacing:233.956200px;}
.wsdf{word-spacing:778.696800px;}
._75{margin-left:-243.942000px;}
._7e{margin-left:-12.808800px;}
._7{margin-left:-10.147200px;}
._0{margin-left:-8.904600px;}
._b{margin-left:-7.750800px;}
._8{margin-left:-6.408000px;}
._3{margin-left:-5.126400px;}
._5{margin-left:-3.500400px;}
._1{margin-left:-1.734000px;}
._2{width:1.454400px;}
._a{width:3.111600px;}
._c{width:4.238400px;}
._d{width:5.677200px;}
._e{width:6.897600px;}
._65{width:8.060400px;}
._6{width:9.213600px;}
._9{width:11.132400px;}
._70{width:12.894000px;}
._71{width:19.668000px;}
._72{width:20.748000px;}
._4{width:36.624000px;}
._7f{width:42.280200px;}
._80{width:43.776600px;}
._62{width:148.746000px;}
._14{width:177.378000px;}
._58{width:181.965600px;}
._54{width:188.672400px;}
._2a{width:198.075600px;}
._47{width:199.803600px;}
._27{width:202.504800px;}
._4b{width:203.664600px;}
._1f{width:205.882200px;}
._64{width:207.078600px;}
._6f{width:208.839600px;}
._5f{width:212.655600px;}
._6d{width:214.620000px;}
._69{width:217.029600px;}
._31{width:218.542800px;}
._2f{width:219.686400px;}
._34{width:224.101800px;}
._38{width:226.116600px;}
._1a{width:229.719600px;}
._51{width:233.255400px;}
._67{width:234.809400px;}
._5b{width:235.863000px;}
._7a{width:239.170200px;}
._43{width:241.814400px;}
._78{width:242.962800px;}
._3f{width:243.994200px;}
._3b{width:248.148000px;}
._17{width:250.386000px;}
._11{width:274.442400px;}
._7c{width:333.688800px;}
._61{width:337.278000px;}
._33{width:350.073000px;}
._13{width:353.391600px;}
._53{width:357.801600px;}
._4a{width:368.397000px;}
._2c{width:371.080800px;}
._29{width:376.900200px;}
._4f{width:378.943800px;}
._5e{width:383.116200px;}
._45{width:388.069200px;}
._3e{width:389.399400px;}
._2e{width:391.477200px;}
._26{width:392.614800px;}
._63{width:395.902800px;}
._6e{width:398.010600px;}
._37{width:400.641600px;}
._41{width:401.851800px;}
._1e{width:407.800800px;}
._10{width:415.636200px;}
._1c{width:421.313400px;}
._66{width:424.026600px;}
._3a{width:425.907000px;}
._49{width:426.997800px;}
._4d{width:432.539400px;}
._23{width:435.915600px;}
._6b{width:437.709600px;}
._16{width:439.677600px;}
._19{width:446.038800px;}
._21{width:463.738800px;}
._5a{width:482.192400px;}
._60{width:485.538600px;}
._5d{width:489.963600px;}
._12{width:515.346600px;}
._56{width:516.876600px;}
._5c{width:520.044600px;}
._44{width:529.204800px;}
._46{width:531.090600px;}
._4e{width:533.070600px;}
._42{width:542.974200px;}
._30{width:553.957200px;}
._68{width:557.521200px;}
._2b{width:559.167600px;}
._3c{width:570.876600px;}
._76{width:572.488800px;}
._32{width:589.631400px;}
._15{width:599.880600px;}
._4c{width:607.441200px;}
._40{width:613.246200px;}
._52{width:620.932200px;}
._50{width:622.897200px;}
._f{width:624.772200px;}
._48{width:633.756600px;}
._24{width:642.475800px;}
._25{width:644.328600px;}
._55{width:650.754600px;}
._36{width:656.528400px;}
._3d{width:659.281200px;}
._20{width:660.443400px;}
._6c{width:662.257200px;}
._39{width:663.468600px;}
._22{width:669.834600px;}
._1d{width:671.089200px;}
._35{width:673.489200px;}
._7d{width:683.864400px;}
._6a{width:707.742600px;}
._2d{width:718.756800px;}
._57{width:721.101000px;}
._28{width:743.976600px;}
._18{width:748.411800px;}
._1b{width:760.564800px;}
._59{width:788.047200px;}
._77{width:803.384400px;}
._74{width:812.168400px;}
._79{width:828.056400px;}
._7b{width:873.944400px;}
._73{width:876.703800px;}
.fc2{color:rgb(109,111,79);}
.fc1{color:rgb(70,71,49);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:31.482000px;}
.fs9{font-size:34.980000px;}
.fs3{font-size:38.478000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:43.200000px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:68.124750px;}
.y39{bottom:71.212050px;}
.y3a{bottom:75.036150px;}
.yf5{bottom:113.078700px;}
.y6c{bottom:113.078850px;}
.y2b{bottom:117.212550px;}
.yb{bottom:117.875550px;}
.yd8{bottom:120.500700px;}
.ycb{bottom:129.953850px;}
.ya{bottom:132.275550px;}
.y9b{bottom:134.078550px;}
.yf4{bottom:134.078700px;}
.y6b{bottom:134.078850px;}
.y2a{bottom:138.212550px;}
.yd7{bottom:140.300700px;}
.y9{bottom:146.675550px;}
.yca{bottom:150.859200px;}
.y9a{bottom:155.078550px;}
.yf3{bottom:155.078700px;}
.y6a{bottom:155.078850px;}
.y29{bottom:159.212550px;}
.yd6{bottom:160.100700px;}
.y8{bottom:161.075550px;}
.yc9{bottom:171.764700px;}
.y99{bottom:176.078550px;}
.yf2{bottom:176.078700px;}
.y69{bottom:176.078850px;}
.y28{bottom:180.212550px;}
.y112{bottom:181.529400px;}
.yc8{bottom:192.670200px;}
.y98{bottom:197.078550px;}
.yf1{bottom:197.078700px;}
.y68{bottom:197.078850px;}
.y36{bottom:199.392600px;}
.y27{bottom:201.212550px;}
.yc7{bottom:213.575850px;}
.y35{bottom:217.392600px;}
.y97{bottom:218.078550px;}
.yf0{bottom:218.078700px;}
.y67{bottom:218.078850px;}
.y26{bottom:222.212550px;}
.yc6{bottom:234.481350px;}
.y34{bottom:235.392600px;}
.y96{bottom:239.078550px;}
.yef{bottom:239.078700px;}
.y66{bottom:239.078850px;}
.y25{bottom:243.212550px;}
.y33{bottom:253.392600px;}
.yc5{bottom:255.386850px;}
.y95{bottom:260.078550px;}
.yee{bottom:260.078700px;}
.y65{bottom:260.078850px;}
.y24{bottom:264.212550px;}
.y32{bottom:271.392600px;}
.yc4{bottom:276.292350px;}
.y94{bottom:281.078550px;}
.yed{bottom:281.078700px;}
.y64{bottom:281.078850px;}
.y23{bottom:285.212550px;}
.y31{bottom:289.392600px;}
.y6f{bottom:295.441050px;}
.yc3{bottom:297.197850px;}
.y93{bottom:302.078550px;}
.yec{bottom:302.078700px;}
.y63{bottom:302.078850px;}
.y22{bottom:306.212550px;}
.y30{bottom:307.392600px;}
.y111{bottom:307.529400px;}
.yc2{bottom:318.103350px;}
.y92{bottom:323.078550px;}
.y108{bottom:323.078700px;}
.y62{bottom:323.078850px;}
.y21{bottom:327.212550px;}
.yc1{bottom:339.008850px;}
.y2f{bottom:342.400500px;}
.y91{bottom:344.078550px;}
.yeb{bottom:344.078700px;}
.y61{bottom:344.078850px;}
.y20{bottom:348.212550px;}
.yc0{bottom:359.914350px;}
.y2e{bottom:360.400500px;}
.yea{bottom:365.078700px;}
.y60{bottom:365.078850px;}
.y107{bottom:367.821900px;}
.y1f{bottom:369.212550px;}
.y2d{bottom:378.400500px;}
.y90{bottom:379.440750px;}
.ybf{bottom:380.819850px;}
.ye9{bottom:386.078700px;}
.y5f{bottom:386.078850px;}
.y106{bottom:387.621900px;}
.y1e{bottom:390.212550px;}
.y2c{bottom:396.400500px;}
.ybe{bottom:401.725350px;}
.y11d{bottom:407.078700px;}
.y5e{bottom:407.078850px;}
.y1d{bottom:411.212550px;}
.y110{bottom:412.529400px;}
.ybd{bottom:422.630850px;}
.y8f{bottom:428.078550px;}
.y11c{bottom:428.078700px;}
.y5d{bottom:428.078850px;}
.y1c{bottom:432.212550px;}
.ybc{bottom:443.536350px;}
.y8e{bottom:449.078550px;}
.ye8{bottom:449.078700px;}
.y5c{bottom:449.078850px;}
.ybb{bottom:464.442000px;}
.y1b{bottom:467.204250px;}
.y8d{bottom:470.078550px;}
.ye7{bottom:470.078700px;}
.y5b{bottom:470.078850px;}
.yba{bottom:485.347500px;}
.y8c{bottom:491.078550px;}
.ye6{bottom:491.078700px;}
.y5a{bottom:491.078850px;}
.yb9{bottom:506.253000px;}
.y8b{bottom:512.078550px;}
.ye5{bottom:512.078700px;}
.y59{bottom:512.078850px;}
.y10f{bottom:517.529400px;}
.yb8{bottom:527.158500px;}
.y8a{bottom:533.078550px;}
.ye4{bottom:533.078700px;}
.y58{bottom:533.078850px;}
.y1a{bottom:539.227950px;}
.yb7{bottom:548.064000px;}
.y89{bottom:554.078550px;}
.ye3{bottom:554.078700px;}
.y57{bottom:554.078850px;}
.yb6{bottom:568.969500px;}
.y88{bottom:575.078550px;}
.ye2{bottom:575.078700px;}
.y56{bottom:575.078850px;}
.y19{bottom:580.287750px;}
.y10e{bottom:580.529400px;}
.yb5{bottom:589.875000px;}
.y87{bottom:596.078550px;}
.ye1{bottom:596.078700px;}
.y55{bottom:596.078850px;}
.y18{bottom:600.087750px;}
.yb4{bottom:610.780500px;}
.y86{bottom:617.078550px;}
.ye0{bottom:617.078700px;}
.y54{bottom:617.078850px;}
.y17{bottom:619.887750px;}
.yb3{bottom:631.686000px;}
.y85{bottom:638.078550px;}
.ydf{bottom:638.078700px;}
.y53{bottom:638.078850px;}
.y16{bottom:639.687750px;}
.y10d{bottom:643.529400px;}
.y109{bottom:652.441050px;}
.yb2{bottom:652.591500px;}
.y84{bottom:659.078550px;}
.yde{bottom:659.078700px;}
.y52{bottom:659.078850px;}
.y15{bottom:659.487750px;}
.y6e{bottom:672.513600px;}
.yb1{bottom:673.497000px;}
.y14{bottom:679.287750px;}
.y83{bottom:680.078550px;}
.ydd{bottom:680.078700px;}
.y51{bottom:680.078850px;}
.yd9{bottom:692.314950px;}
.ycd{bottom:693.513600px;}
.yb0{bottom:694.402650px;}
.y13{bottom:699.087750px;}
.y82{bottom:701.078550px;}
.ydc{bottom:701.078700px;}
.y50{bottom:701.078850px;}
.y6d{bottom:704.811150px;}
.y10c{bottom:706.937100px;}
.yaf{bottom:715.308150px;}
.y12{bottom:718.887750px;}
.y81{bottom:722.078550px;}
.y11b{bottom:722.078700px;}
.y4f{bottom:722.078850px;}
.ycc{bottom:725.811150px;}
.yae{bottom:736.213650px;}
.y10b{bottom:736.441050px;}
.y11{bottom:738.687750px;}
.y80{bottom:743.078550px;}
.y11a{bottom:743.078700px;}
.y4e{bottom:743.078850px;}
.ydb{bottom:749.649750px;}
.yad{bottom:757.119150px;}
.y10{bottom:758.487750px;}
.y7f{bottom:764.078550px;}
.y119{bottom:764.078700px;}
.y4d{bottom:764.078850px;}
.yda{bottom:769.449900px;}
.yac{bottom:778.024650px;}
.yf{bottom:778.287750px;}
.y7e{bottom:785.078550px;}
.y118{bottom:785.078700px;}
.y4c{bottom:785.078850px;}
.y105{bottom:789.483600px;}
.ye{bottom:798.087750px;}
.yab{bottom:798.930150px;}
.y104{bottom:804.483600px;}
.y7d{bottom:806.078550px;}
.y117{bottom:806.078700px;}
.y4b{bottom:806.078850px;}
.y103{bottom:819.483600px;}
.yaa{bottom:819.835650px;}
.y116{bottom:827.078700px;}
.y4a{bottom:827.078850px;}
.yd{bottom:829.185300px;}
.y102{bottom:834.483600px;}
.ya9{bottom:840.741150px;}
.y7c{bottom:841.440900px;}
.y10a{bottom:841.441050px;}
.y115{bottom:848.078700px;}
.y49{bottom:848.078850px;}
.y101{bottom:858.540300px;}
.ya8{bottom:861.646650px;}
.y114{bottom:869.078700px;}
.y48{bottom:869.078850px;}
.y100{bottom:879.445800px;}
.ya7{bottom:882.552150px;}
.y7b{bottom:890.078700px;}
.y47{bottom:890.078850px;}
.yff{bottom:900.351300px;}
.ya6{bottom:903.457650px;}
.y7{bottom:908.466750px;}
.y7a{bottom:911.078700px;}
.y46{bottom:911.078850px;}
.yfe{bottom:921.256800px;}
.ya5{bottom:924.363150px;}
.y6{bottom:926.466750px;}
.y79{bottom:932.078700px;}
.y45{bottom:932.078850px;}
.yfd{bottom:942.162300px;}
.y5{bottom:944.466750px;}
.ya4{bottom:945.268650px;}
.y78{bottom:953.078700px;}
.y44{bottom:953.078850px;}
.yfc{bottom:963.067800px;}
.ya3{bottom:966.174150px;}
.y77{bottom:974.078700px;}
.y43{bottom:974.078850px;}
.y4{bottom:979.474800px;}
.yd5{bottom:983.289000px;}
.yfb{bottom:983.973300px;}
.ya2{bottom:987.079800px;}
.y76{bottom:995.078700px;}
.y42{bottom:995.078850px;}
.yd4{bottom:1004.194500px;}
.yfa{bottom:1004.878950px;}
.ya1{bottom:1007.985300px;}
.y75{bottom:1016.078700px;}
.y41{bottom:1016.078850px;}
.y3{bottom:1016.282550px;}
.yd3{bottom:1025.100000px;}
.yf9{bottom:1025.784450px;}
.ya0{bottom:1028.890800px;}
.y74{bottom:1037.078700px;}
.y40{bottom:1037.078850px;}
.yd2{bottom:1046.005500px;}
.yf8{bottom:1046.689950px;}
.y2{bottom:1049.282550px;}
.y9f{bottom:1049.796300px;}
.y73{bottom:1058.078700px;}
.y3f{bottom:1058.078850px;}
.y9e{bottom:1059.398700px;}
.yd1{bottom:1066.911000px;}
.yf7{bottom:1067.595450px;}
.y72{bottom:1079.078700px;}
.y3e{bottom:1079.078850px;}
.yd0{bottom:1087.816650px;}
.yf6{bottom:1088.800950px;}
.y9d{bottom:1099.482900px;}
.y71{bottom:1100.078700px;}
.y3d{bottom:1100.078850px;}
.ycf{bottom:1109.022150px;}
.yc{bottom:1109.815500px;}
.y113{bottom:1111.570800px;}
.yce{bottom:1118.624550px;}
.y9c{bottom:1119.282900px;}
.y70{bottom:1121.078700px;}
.y3c{bottom:1121.078850px;}
.y38{bottom:1155.615300px;}
.y37{bottom:1175.115300px;}
.y3b{bottom:1178.691750px;}
.h6{height:34.446094px;}
.h14{height:36.539995px;}
.h18{height:36.540019px;}
.h2{height:38.039062px;}
.h12{height:38.226562px;}
.hf{height:38.273438px;}
.h5{height:38.531250px;}
.he{height:42.793945px;}
.h7{height:43.004883px;}
.hd{height:43.057617px;}
.h13{height:43.218750px;}
.h19{height:43.265625px;}
.h8{height:45.615234px;}
.h17{height:45.674994px;}
.h9{height:48.621094px;}
.h16{height:48.673828px;}
.h10{height:50.176758px;}
.hb{height:54.023438px;}
.hc{height:54.082031px;}
.ha{height:54.738281px;}
.h4{height:59.425781px;}
.h15{height:76.635562px;}
.h11{height:76.636162px;}
.h3{height:81.231445px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:73.984200px;}
.xa{left:107.068950px;}
.xc{left:108.286950px;}
.xf{left:112.251900px;}
.x5{left:119.576400px;}
.x6{left:121.047600px;}
.x7{left:123.420750px;}
.x10{left:186.142350px;}
.xd{left:196.329450px;}
.x4{left:300.189000px;}
.xb{left:317.196900px;}
.x3{left:396.050700px;}
.x9{left:649.653300px;}
.xe{left:667.479300px;}
.x8{left:670.377900px;}
.x1{left:801.350850px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:15.984000pt;}
.v2{vertical-align:17.760000pt;}
.v1{vertical-align:19.536000pt;}
.v3{vertical-align:34.141867pt;}
.ls18{letter-spacing:-8.426667pt;}
.ls8{letter-spacing:-0.614400pt;}
.lsb{letter-spacing:-0.597333pt;}
.ls17{letter-spacing:-0.586667pt;}
.ls16{letter-spacing:-0.533333pt;}
.ls19{letter-spacing:-0.384000pt;}
.lse{letter-spacing:-0.373333pt;}
.ls6{letter-spacing:-0.362667pt;}
.ls7{letter-spacing:-0.272000pt;}
.ls9{letter-spacing:-0.266667pt;}
.lsa{letter-spacing:-0.106667pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.010667pt;}
.ls4{letter-spacing:0.022933pt;}
.ls1a{letter-spacing:0.480000pt;}
.lsc{letter-spacing:0.533333pt;}
.ls2{letter-spacing:1.628267pt;}
.ls3{letter-spacing:5.960533pt;}
.lsd{letter-spacing:12.286400pt;}
.ls0{letter-spacing:38.383435pt;}
.ls13{letter-spacing:212.330133pt;}
.lsf{letter-spacing:214.361067pt;}
.ls12{letter-spacing:214.376000pt;}
.ls10{letter-spacing:214.376533pt;}
.ls11{letter-spacing:216.267200pt;}
.ls14{letter-spacing:216.589867pt;}
.ls15{letter-spacing:216.590400pt;}
.wsdc{word-spacing:-226.848533pt;}
.ws9{word-spacing:-15.936000pt;}
.wsb8{word-spacing:-14.608000pt;}
.wsb7{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.280000pt;}
.ws79{word-spacing:-13.226667pt;}
.ws78{word-spacing:-13.120000pt;}
.wsa{word-spacing:-13.066667pt;}
.wscb{word-spacing:-12.906667pt;}
.ws32{word-spacing:-12.800000pt;}
.wscc{word-spacing:-12.693333pt;}
.wseb{word-spacing:-12.480000pt;}
.ws12e{word-spacing:-12.384000pt;}
.wsca{word-spacing:-11.952000pt;}
.ws8{word-spacing:-11.904000pt;}
.ws7{word-spacing:-11.760000pt;}
.ws117{word-spacing:-11.520000pt;}
.ws116{word-spacing:-11.376000pt;}
.wsd{word-spacing:-10.800000pt;}
.wsb{word-spacing:-10.464000pt;}
.wsa5{word-spacing:-10.453333pt;}
.ws4{word-spacing:-9.685333pt;}
.ws30{word-spacing:-9.600000pt;}
.wse{word-spacing:-9.301333pt;}
.ws3{word-spacing:-8.482261pt;}
.ws5{word-spacing:-8.371200pt;}
.ws5c{word-spacing:-7.711147pt;}
.wsff{word-spacing:-6.940032pt;}
.wsf6{word-spacing:-2.773333pt;}
.wsc5{word-spacing:-2.400000pt;}
.ws120{word-spacing:-2.352000pt;}
.ws2b{word-spacing:-2.346667pt;}
.ws7f{word-spacing:-2.293333pt;}
.wse6{word-spacing:-2.240000pt;}
.ws122{word-spacing:-2.208000pt;}
.ws5b{word-spacing:-2.186667pt;}
.wse4{word-spacing:-2.112000pt;}
.wsd1{word-spacing:-2.080000pt;}
.wse5{word-spacing:-2.064000pt;}
.ws7e{word-spacing:-2.026667pt;}
.ws6d{word-spacing:-1.973333pt;}
.ws46{word-spacing:-1.920000pt;}
.ws82{word-spacing:-1.760000pt;}
.ws130{word-spacing:-1.728000pt;}
.ws44{word-spacing:-1.706667pt;}
.ws144{word-spacing:-1.680000pt;}
.ws70{word-spacing:-1.653333pt;}
.ws139{word-spacing:-1.632000pt;}
.wsba{word-spacing:-1.600000pt;}
.ws14c{word-spacing:-1.584000pt;}
.ws45{word-spacing:-1.546667pt;}
.wsd7{word-spacing:-1.440000pt;}
.ws110{word-spacing:-1.392000pt;}
.wsf7{word-spacing:-1.386667pt;}
.ws20{word-spacing:-1.333333pt;}
.ws10e{word-spacing:-1.296000pt;}
.wsbd{word-spacing:-1.280000pt;}
.ws126{word-spacing:-1.248000pt;}
.wsbe{word-spacing:-1.226667pt;}
.ws12b{word-spacing:-1.056000pt;}
.ws61{word-spacing:-1.013333pt;}
.ws148{word-spacing:-1.008000pt;}
.wsc9{word-spacing:-0.960000pt;}
.ws24{word-spacing:-0.906667pt;}
.ws6b{word-spacing:-0.853333pt;}
.wsbb{word-spacing:-0.800000pt;}
.ws102{word-spacing:-0.768000pt;}
.ws85{word-spacing:-0.746667pt;}
.wsc2{word-spacing:-0.693333pt;}
.ws7b{word-spacing:-0.640000pt;}
.wsd5{word-spacing:-0.586667pt;}
.ws35{word-spacing:-0.533333pt;}
.ws10f{word-spacing:-0.528000pt;}
.ws59{word-spacing:-0.480000pt;}
.ws11d{word-spacing:-0.432000pt;}
.wsf8{word-spacing:-0.426667pt;}
.ws3f{word-spacing:-0.373333pt;}
.wsf9{word-spacing:-0.320000pt;}
.wsf2{word-spacing:-0.266667pt;}
.ws123{word-spacing:-0.240000pt;}
.ws62{word-spacing:-0.213333pt;}
.ws10{word-spacing:-0.192000pt;}
.ws149{word-spacing:-0.144000pt;}
.wsa8{word-spacing:-0.096000pt;}
.ws23{word-spacing:-0.053333pt;}
.wsc{word-spacing:-0.048000pt;}
.ws31{word-spacing:-0.042667pt;}
.wsf{word-spacing:0.000000pt;}
.ws7a{word-spacing:0.053333pt;}
.ws47{word-spacing:0.106667pt;}
.ws143{word-spacing:0.144000pt;}
.ws28{word-spacing:0.160000pt;}
.ws42{word-spacing:0.213333pt;}
.ws7d{word-spacing:0.266667pt;}
.ws0{word-spacing:0.272000pt;}
.ws1c{word-spacing:0.288000pt;}
.ws4e{word-spacing:0.320000pt;}
.wscd{word-spacing:0.336000pt;}
.ws34{word-spacing:0.373333pt;}
.ws119{word-spacing:0.384000pt;}
.ws6e{word-spacing:0.426667pt;}
.ws14f{word-spacing:0.432000pt;}
.ws33{word-spacing:0.480000pt;}
.ws112{word-spacing:0.528000pt;}
.ws72{word-spacing:0.533333pt;}
.wsc8{word-spacing:0.586667pt;}
.wse2{word-spacing:0.597333pt;}
.ws11{word-spacing:0.614400pt;}
.ws55{word-spacing:0.640000pt;}
.ws118{word-spacing:0.672000pt;}
.wsb5{word-spacing:0.693333pt;}
.ws4f{word-spacing:0.746667pt;}
.ws52{word-spacing:0.800000pt;}
.ws11f{word-spacing:0.816000pt;}
.ws81{word-spacing:0.906667pt;}
.wsb1{word-spacing:0.960000pt;}
.ws121{word-spacing:1.008000pt;}
.ws29{word-spacing:1.013333pt;}
.ws41{word-spacing:1.066667pt;}
.ws14{word-spacing:1.104000pt;}
.wsaf{word-spacing:1.120000pt;}
.ws3a{word-spacing:1.173333pt;}
.ws128{word-spacing:1.200000pt;}
.ws39{word-spacing:1.226667pt;}
.wse3{word-spacing:1.237333pt;}
.ws10a{word-spacing:1.248000pt;}
.ws6c{word-spacing:1.280000pt;}
.ws38{word-spacing:1.333333pt;}
.wsbc{word-spacing:1.386667pt;}
.ws100{word-spacing:1.392000pt;}
.ws26{word-spacing:1.440000pt;}
.ws13{word-spacing:1.488000pt;}
.ws103{word-spacing:1.536000pt;}
.ws50{word-spacing:1.546667pt;}
.wsc3{word-spacing:1.600000pt;}
.ws16{word-spacing:1.632000pt;}
.ws17{word-spacing:1.680000pt;}
.ws80{word-spacing:1.706667pt;}
.ws1e{word-spacing:1.728000pt;}
.ws3b{word-spacing:1.760000pt;}
.ws3c{word-spacing:1.813333pt;}
.ws140{word-spacing:1.824000pt;}
.wsbf{word-spacing:1.866667pt;}
.wsfe{word-spacing:1.872000pt;}
.ws37{word-spacing:1.920000pt;}
.ws36{word-spacing:1.973333pt;}
.ws13e{word-spacing:2.016000pt;}
.wse9{word-spacing:2.026667pt;}
.ws1a{word-spacing:2.064000pt;}
.wsef{word-spacing:2.080000pt;}
.wsfd{word-spacing:2.112000pt;}
.ws142{word-spacing:2.160000pt;}
.ws71{word-spacing:2.186667pt;}
.ws141{word-spacing:2.208000pt;}
.ws11a{word-spacing:2.256000pt;}
.ws56{word-spacing:2.293333pt;}
.ws76{word-spacing:2.346667pt;}
.ws101{word-spacing:2.352000pt;}
.ws2a{word-spacing:2.453333pt;}
.ws6a{word-spacing:2.506667pt;}
.wsfb{word-spacing:2.544000pt;}
.ws64{word-spacing:2.560000pt;}
.ws13f{word-spacing:2.640000pt;}
.wsec{word-spacing:2.666667pt;}
.ws10b{word-spacing:2.688000pt;}
.wsed{word-spacing:2.720000pt;}
.wsf3{word-spacing:2.773333pt;}
.ws75{word-spacing:2.826667pt;}
.ws40{word-spacing:2.880000pt;}
.ws113{word-spacing:2.928000pt;}
.wsf0{word-spacing:2.933333pt;}
.wsb0{word-spacing:2.986667pt;}
.ws84{word-spacing:3.040000pt;}
.ws12d{word-spacing:3.072000pt;}
.wsee{word-spacing:3.093333pt;}
.ws13b{word-spacing:3.120000pt;}
.wsb2{word-spacing:3.146667pt;}
.ws65{word-spacing:3.200000pt;}
.ws66{word-spacing:3.253333pt;}
.wsb9{word-spacing:3.306667pt;}
.ws1d{word-spacing:3.360000pt;}
.ws67{word-spacing:3.413333pt;}
.ws49{word-spacing:3.466667pt;}
.ws146{word-spacing:3.504000pt;}
.wsb6{word-spacing:3.520000pt;}
.ws145{word-spacing:3.552000pt;}
.ws22{word-spacing:3.680000pt;}
.wsfc{word-spacing:3.696000pt;}
.ws21{word-spacing:3.733333pt;}
.ws111{word-spacing:3.744000pt;}
.wsac{word-spacing:3.786667pt;}
.ws12{word-spacing:3.888000pt;}
.wsd0{word-spacing:3.893333pt;}
.ws14a{word-spacing:3.936000pt;}
.ws2f{word-spacing:3.946667pt;}
.ws2e{word-spacing:4.000000pt;}
.wsc1{word-spacing:4.053333pt;}
.ws12c{word-spacing:4.080000pt;}
.ws5a{word-spacing:4.106667pt;}
.ws124{word-spacing:4.128000pt;}
.ws5d{word-spacing:4.160000pt;}
.ws125{word-spacing:4.176000pt;}
.ws74{word-spacing:4.213333pt;}
.ws54{word-spacing:4.266667pt;}
.ws10c{word-spacing:4.272000pt;}
.ws1f{word-spacing:4.320000pt;}
.ws69{word-spacing:4.373333pt;}
.ws60{word-spacing:4.426667pt;}
.ws5f{word-spacing:4.480000pt;}
.ws86{word-spacing:4.533333pt;}
.ws115{word-spacing:4.560000pt;}
.ws83{word-spacing:4.586667pt;}
.ws4a{word-spacing:4.640000pt;}
.ws12f{word-spacing:4.656000pt;}
.ws4b{word-spacing:4.693333pt;}
.ws11e{word-spacing:4.704000pt;}
.wsc4{word-spacing:4.746667pt;}
.wsb3{word-spacing:4.800000pt;}
.ws13a{word-spacing:4.848000pt;}
.wsc6{word-spacing:4.853333pt;}
.ws105{word-spacing:4.896000pt;}
.ws1b{word-spacing:4.944000pt;}
.ws13d{word-spacing:4.992000pt;}
.wsea{word-spacing:5.013333pt;}
.ws13c{word-spacing:5.040000pt;}
.ws27{word-spacing:5.120000pt;}
.ws104{word-spacing:5.232000pt;}
.ws63{word-spacing:5.280000pt;}
.ws6f{word-spacing:5.333333pt;}
.ws114{word-spacing:5.376000pt;}
.wsd2{word-spacing:5.386667pt;}
.ws58{word-spacing:5.440000pt;}
.ws68{word-spacing:5.493333pt;}
.ws109{word-spacing:5.520000pt;}
.ws131{word-spacing:5.568000pt;}
.ws4d{word-spacing:5.600000pt;}
.ws4c{word-spacing:5.653333pt;}
.ws132{word-spacing:5.712000pt;}
.wsd8{word-spacing:5.813333pt;}
.ws7c{word-spacing:5.866667pt;}
.ws19{word-spacing:5.904000pt;}
.ws108{word-spacing:5.952000pt;}
.ws18{word-spacing:6.000000pt;}
.ws107{word-spacing:6.048000pt;}
.ws11c{word-spacing:6.192000pt;}
.wsf4{word-spacing:6.240000pt;}
.ws14e{word-spacing:6.432000pt;}
.ws73{word-spacing:6.506667pt;}
.wsd4{word-spacing:6.666667pt;}
.ws15{word-spacing:6.672000pt;}
.wsd3{word-spacing:6.720000pt;}
.ws147{word-spacing:6.768000pt;}
.ws43{word-spacing:6.826667pt;}
.wsad{word-spacing:6.880000pt;}
.ws136{word-spacing:6.912000pt;}
.ws77{word-spacing:6.933333pt;}
.ws10d{word-spacing:6.960000pt;}
.ws57{word-spacing:7.040000pt;}
.ws137{word-spacing:7.056000pt;}
.ws53{word-spacing:7.093333pt;}
.ws51{word-spacing:7.146667pt;}
.ws14b{word-spacing:7.200000pt;}
.ws2d{word-spacing:7.253333pt;}
.ws2c{word-spacing:7.306667pt;}
.wsfa{word-spacing:7.360000pt;}
.wse8{word-spacing:7.413333pt;}
.wsd6{word-spacing:7.466667pt;}
.ws5e{word-spacing:7.733333pt;}
.ws138{word-spacing:7.776000pt;}
.wsc0{word-spacing:7.786667pt;}
.wsb4{word-spacing:7.946667pt;}
.ws12a{word-spacing:8.256000pt;}
.ws25{word-spacing:8.266667pt;}
.wsf1{word-spacing:8.426667pt;}
.ws11b{word-spacing:8.688000pt;}
.wsae{word-spacing:9.280000pt;}
.ws106{word-spacing:9.888000pt;}
.ws3d{word-spacing:9.920000pt;}
.ws3e{word-spacing:10.026667pt;}
.wsf5{word-spacing:10.080000pt;}
.wsc7{word-spacing:10.400000pt;}
.ws48{word-spacing:10.560000pt;}
.ws134{word-spacing:11.328000pt;}
.ws135{word-spacing:11.760000pt;}
.wscf{word-spacing:12.320000pt;}
.wsce{word-spacing:12.373333pt;}
.ws129{word-spacing:13.200000pt;}
.ws14d{word-spacing:13.488000pt;}
.ws127{word-spacing:14.496000pt;}
.ws133{word-spacing:20.880000pt;}
.wse7{word-spacing:24.266667pt;}
.ws2{word-spacing:29.911587pt;}
.ws1{word-spacing:29.912120pt;}
.wsa2{word-spacing:106.280000pt;}
.ws89{word-spacing:106.290133pt;}
.ws8a{word-spacing:106.312000pt;}
.ws8c{word-spacing:106.322133pt;}
.ws9c{word-spacing:106.332800pt;}
.wsa3{word-spacing:107.675733pt;}
.ws95{word-spacing:108.092267pt;}
.wsa4{word-spacing:111.853333pt;}
.ws9b{word-spacing:118.500800pt;}
.ws90{word-spacing:118.510933pt;}
.ws91{word-spacing:118.665067pt;}
.wsa9{word-spacing:118.740267pt;}
.wsa1{word-spacing:119.926400pt;}
.ws9f{word-spacing:121.053333pt;}
.ws9a{word-spacing:121.627733pt;}
.ws99{word-spacing:125.083200pt;}
.ws98{word-spacing:125.467733pt;}
.ws8f{word-spacing:127.345067pt;}
.ws8e{word-spacing:127.355200pt;}
.ws9e{word-spacing:129.233067pt;}
.ws94{word-spacing:129.254400pt;}
.wsa7{word-spacing:130.289067pt;}
.ws92{word-spacing:130.461333pt;}
.wsa6{word-spacing:131.122667pt;}
.ws88{word-spacing:131.227733pt;}
.ws96{word-spacing:131.677333pt;}
.wsaa{word-spacing:132.209067pt;}
.ws97{word-spacing:132.219733pt;}
.wsab{word-spacing:132.273600pt;}
.ws93{word-spacing:132.284267pt;}
.ws8b{word-spacing:133.936533pt;}
.wsa0{word-spacing:133.957867pt;}
.ws9d{word-spacing:181.205867pt;}
.wsd9{word-spacing:186.741867pt;}
.ws87{word-spacing:193.056533pt;}
.wse0{word-spacing:199.857600pt;}
.wsde{word-spacing:199.866667pt;}
.wsdb{word-spacing:201.888533pt;}
.wse1{word-spacing:203.779200pt;}
.wsdd{word-spacing:203.779733pt;}
.wsda{word-spacing:205.685867pt;}
.ws8d{word-spacing:207.961067pt;}
.wsdf{word-spacing:692.174933pt;}
._75{margin-left:-216.837333pt;}
._7e{margin-left:-11.385600pt;}
._7{margin-left:-9.019733pt;}
._0{margin-left:-7.915200pt;}
._b{margin-left:-6.889600pt;}
._8{margin-left:-5.696000pt;}
._3{margin-left:-4.556800pt;}
._5{margin-left:-3.111467pt;}
._1{margin-left:-1.541333pt;}
._2{width:1.292800pt;}
._a{width:2.765867pt;}
._c{width:3.767467pt;}
._d{width:5.046400pt;}
._e{width:6.131200pt;}
._65{width:7.164800pt;}
._6{width:8.189867pt;}
._9{width:9.895467pt;}
._70{width:11.461333pt;}
._71{width:17.482667pt;}
._72{width:18.442667pt;}
._4{width:32.554667pt;}
._7f{width:37.582400pt;}
._80{width:38.912533pt;}
._62{width:132.218667pt;}
._14{width:157.669333pt;}
._58{width:161.747200pt;}
._54{width:167.708800pt;}
._2a{width:176.067200pt;}
._47{width:177.603200pt;}
._27{width:180.004267pt;}
._4b{width:181.035200pt;}
._1f{width:183.006400pt;}
._64{width:184.069867pt;}
._6f{width:185.635200pt;}
._5f{width:189.027200pt;}
._6d{width:190.773333pt;}
._69{width:192.915200pt;}
._31{width:194.260267pt;}
._2f{width:195.276800pt;}
._34{width:199.201600pt;}
._38{width:200.992533pt;}
._1a{width:204.195200pt;}
._51{width:207.338133pt;}
._67{width:208.719467pt;}
._5b{width:209.656000pt;}
._7a{width:212.595733pt;}
._43{width:214.946133pt;}
._78{width:215.966933pt;}
._3f{width:216.883733pt;}
._3b{width:220.576000pt;}
._17{width:222.565333pt;}
._11{width:243.948800pt;}
._7c{width:296.612267pt;}
._61{width:299.802667pt;}
._33{width:311.176000pt;}
._13{width:314.125867pt;}
._53{width:318.045867pt;}
._4a{width:327.464000pt;}
._2c{width:329.849600pt;}
._29{width:335.022400pt;}
._4f{width:336.838933pt;}
._5e{width:340.547733pt;}
._45{width:344.950400pt;}
._3e{width:346.132800pt;}
._2e{width:347.979733pt;}
._26{width:348.990933pt;}
._63{width:351.913600pt;}
._6e{width:353.787200pt;}
._37{width:356.125867pt;}
._41{width:357.201600pt;}
._1e{width:362.489600pt;}
._10{width:369.454400pt;}
._1c{width:374.500800pt;}
._66{width:376.912533pt;}
._3a{width:378.584000pt;}
._49{width:379.553600pt;}
._4d{width:384.479467pt;}
._23{width:387.480533pt;}
._6b{width:389.075200pt;}
._16{width:390.824533pt;}
._19{width:396.478933pt;}
._21{width:412.212267pt;}
._5a{width:428.615467pt;}
._60{width:431.589867pt;}
._5d{width:435.523200pt;}
._12{width:458.085867pt;}
._56{width:459.445867pt;}
._5c{width:462.261867pt;}
._44{width:470.404267pt;}
._46{width:472.080533pt;}
._4e{width:473.840533pt;}
._42{width:482.643733pt;}
._30{width:492.406400pt;}
._68{width:495.574400pt;}
._2b{width:497.037867pt;}
._3c{width:507.445867pt;}
._76{width:508.878933pt;}
._32{width:524.116800pt;}
._15{width:533.227200pt;}
._4c{width:539.947733pt;}
._40{width:545.107733pt;}
._52{width:551.939733pt;}
._50{width:553.686400pt;}
._f{width:555.353067pt;}
._48{width:563.339200pt;}
._24{width:571.089600pt;}
._25{width:572.736533pt;}
._55{width:578.448533pt;}
._36{width:583.580800pt;}
._3d{width:586.027733pt;}
._20{width:587.060800pt;}
._6c{width:588.673067pt;}
._39{width:589.749867pt;}
._22{width:595.408533pt;}
._1d{width:596.523733pt;}
._35{width:598.657067pt;}
._7d{width:607.879467pt;}
._6a{width:629.104533pt;}
._2d{width:638.894933pt;}
._57{width:640.978667pt;}
._28{width:661.312533pt;}
._18{width:665.254933pt;}
._1b{width:676.057600pt;}
._59{width:700.486400pt;}
._77{width:714.119467pt;}
._74{width:721.927467pt;}
._79{width:736.050133pt;}
._7b{width:776.839467pt;}
._73{width:779.292267pt;}
.fsa{font-size:27.984000pt;}
.fs9{font-size:31.093333pt;}
.fs3{font-size:34.202667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:38.400000pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:60.555333pt;}
.y39{bottom:63.299600pt;}
.y3a{bottom:66.698800pt;}
.yf5{bottom:100.514400pt;}
.y6c{bottom:100.514533pt;}
.y2b{bottom:104.188933pt;}
.yb{bottom:104.778267pt;}
.yd8{bottom:107.111733pt;}
.ycb{bottom:115.514533pt;}
.ya{bottom:117.578267pt;}
.y9b{bottom:119.180933pt;}
.yf4{bottom:119.181067pt;}
.y6b{bottom:119.181200pt;}
.y2a{bottom:122.855600pt;}
.yd7{bottom:124.711733pt;}
.y9{bottom:130.378267pt;}
.yca{bottom:134.097067pt;}
.y9a{bottom:137.847600pt;}
.yf3{bottom:137.847733pt;}
.y6a{bottom:137.847867pt;}
.y29{bottom:141.522267pt;}
.yd6{bottom:142.311733pt;}
.y8{bottom:143.178267pt;}
.yc9{bottom:152.679733pt;}
.y99{bottom:156.514267pt;}
.yf2{bottom:156.514400pt;}
.y69{bottom:156.514533pt;}
.y28{bottom:160.188933pt;}
.y112{bottom:161.359467pt;}
.yc8{bottom:171.262400pt;}
.y98{bottom:175.180933pt;}
.yf1{bottom:175.181067pt;}
.y68{bottom:175.181200pt;}
.y36{bottom:177.237867pt;}
.y27{bottom:178.855600pt;}
.yc7{bottom:189.845200pt;}
.y35{bottom:193.237867pt;}
.y97{bottom:193.847600pt;}
.yf0{bottom:193.847733pt;}
.y67{bottom:193.847867pt;}
.y26{bottom:197.522267pt;}
.yc6{bottom:208.427867pt;}
.y34{bottom:209.237867pt;}
.y96{bottom:212.514267pt;}
.yef{bottom:212.514400pt;}
.y66{bottom:212.514533pt;}
.y25{bottom:216.188933pt;}
.y33{bottom:225.237867pt;}
.yc5{bottom:227.010533pt;}
.y95{bottom:231.180933pt;}
.yee{bottom:231.181067pt;}
.y65{bottom:231.181200pt;}
.y24{bottom:234.855600pt;}
.y32{bottom:241.237867pt;}
.yc4{bottom:245.593200pt;}
.y94{bottom:249.847600pt;}
.yed{bottom:249.847733pt;}
.y64{bottom:249.847867pt;}
.y23{bottom:253.522267pt;}
.y31{bottom:257.237867pt;}
.y6f{bottom:262.614267pt;}
.yc3{bottom:264.175867pt;}
.y93{bottom:268.514267pt;}
.yec{bottom:268.514400pt;}
.y63{bottom:268.514533pt;}
.y22{bottom:272.188933pt;}
.y30{bottom:273.237867pt;}
.y111{bottom:273.359467pt;}
.yc2{bottom:282.758533pt;}
.y92{bottom:287.180933pt;}
.y108{bottom:287.181067pt;}
.y62{bottom:287.181200pt;}
.y21{bottom:290.855600pt;}
.yc1{bottom:301.341200pt;}
.y2f{bottom:304.356000pt;}
.y91{bottom:305.847600pt;}
.yeb{bottom:305.847733pt;}
.y61{bottom:305.847867pt;}
.y20{bottom:309.522267pt;}
.yc0{bottom:319.923867pt;}
.y2e{bottom:320.356000pt;}
.yea{bottom:324.514400pt;}
.y60{bottom:324.514533pt;}
.y107{bottom:326.952800pt;}
.y1f{bottom:328.188933pt;}
.y2d{bottom:336.356000pt;}
.y90{bottom:337.280667pt;}
.ybf{bottom:338.506533pt;}
.ye9{bottom:343.181067pt;}
.y5f{bottom:343.181200pt;}
.y106{bottom:344.552800pt;}
.y1e{bottom:346.855600pt;}
.y2c{bottom:352.356000pt;}
.ybe{bottom:357.089200pt;}
.y11d{bottom:361.847733pt;}
.y5e{bottom:361.847867pt;}
.y1d{bottom:365.522267pt;}
.y110{bottom:366.692800pt;}
.ybd{bottom:375.671867pt;}
.y8f{bottom:380.514267pt;}
.y11c{bottom:380.514400pt;}
.y5d{bottom:380.514533pt;}
.y1c{bottom:384.188933pt;}
.ybc{bottom:394.254533pt;}
.y8e{bottom:399.180933pt;}
.ye8{bottom:399.181067pt;}
.y5c{bottom:399.181200pt;}
.ybb{bottom:412.837333pt;}
.y1b{bottom:415.292667pt;}
.y8d{bottom:417.847600pt;}
.ye7{bottom:417.847733pt;}
.y5b{bottom:417.847867pt;}
.yba{bottom:431.420000pt;}
.y8c{bottom:436.514267pt;}
.ye6{bottom:436.514400pt;}
.y5a{bottom:436.514533pt;}
.yb9{bottom:450.002667pt;}
.y8b{bottom:455.180933pt;}
.ye5{bottom:455.181067pt;}
.y59{bottom:455.181200pt;}
.y10f{bottom:460.026133pt;}
.yb8{bottom:468.585333pt;}
.y8a{bottom:473.847600pt;}
.ye4{bottom:473.847733pt;}
.y58{bottom:473.847867pt;}
.y1a{bottom:479.313733pt;}
.yb7{bottom:487.168000pt;}
.y89{bottom:492.514267pt;}
.ye3{bottom:492.514400pt;}
.y57{bottom:492.514533pt;}
.yb6{bottom:505.750667pt;}
.y88{bottom:511.180933pt;}
.ye2{bottom:511.181067pt;}
.y56{bottom:511.181200pt;}
.y19{bottom:515.811333pt;}
.y10e{bottom:516.026133pt;}
.yb5{bottom:524.333333pt;}
.y87{bottom:529.847600pt;}
.ye1{bottom:529.847733pt;}
.y55{bottom:529.847867pt;}
.y18{bottom:533.411333pt;}
.yb4{bottom:542.916000pt;}
.y86{bottom:548.514267pt;}
.ye0{bottom:548.514400pt;}
.y54{bottom:548.514533pt;}
.y17{bottom:551.011333pt;}
.yb3{bottom:561.498667pt;}
.y85{bottom:567.180933pt;}
.ydf{bottom:567.181067pt;}
.y53{bottom:567.181200pt;}
.y16{bottom:568.611333pt;}
.y10d{bottom:572.026133pt;}
.y109{bottom:579.947600pt;}
.yb2{bottom:580.081333pt;}
.y84{bottom:585.847600pt;}
.yde{bottom:585.847733pt;}
.y52{bottom:585.847867pt;}
.y15{bottom:586.211333pt;}
.y6e{bottom:597.789867pt;}
.yb1{bottom:598.664000pt;}
.y14{bottom:603.811333pt;}
.y83{bottom:604.514267pt;}
.ydd{bottom:604.514400pt;}
.y51{bottom:604.514533pt;}
.yd9{bottom:615.391067pt;}
.ycd{bottom:616.456533pt;}
.yb0{bottom:617.246800pt;}
.y13{bottom:621.411333pt;}
.y82{bottom:623.180933pt;}
.ydc{bottom:623.181067pt;}
.y50{bottom:623.181200pt;}
.y6d{bottom:626.498800pt;}
.y10c{bottom:628.388533pt;}
.yaf{bottom:635.829467pt;}
.y12{bottom:639.011333pt;}
.y81{bottom:641.847600pt;}
.y11b{bottom:641.847733pt;}
.y4f{bottom:641.847867pt;}
.ycc{bottom:645.165467pt;}
.yae{bottom:654.412133pt;}
.y10b{bottom:654.614267pt;}
.y11{bottom:656.611333pt;}
.y80{bottom:660.514267pt;}
.y11a{bottom:660.514400pt;}
.y4e{bottom:660.514533pt;}
.ydb{bottom:666.355333pt;}
.yad{bottom:672.994800pt;}
.y10{bottom:674.211333pt;}
.y7f{bottom:679.180933pt;}
.y119{bottom:679.181067pt;}
.y4d{bottom:679.181200pt;}
.yda{bottom:683.955467pt;}
.yac{bottom:691.577467pt;}
.yf{bottom:691.811333pt;}
.y7e{bottom:697.847600pt;}
.y118{bottom:697.847733pt;}
.y4c{bottom:697.847867pt;}
.y105{bottom:701.763200pt;}
.ye{bottom:709.411333pt;}
.yab{bottom:710.160133pt;}
.y104{bottom:715.096533pt;}
.y7d{bottom:716.514267pt;}
.y117{bottom:716.514400pt;}
.y4b{bottom:716.514533pt;}
.y103{bottom:728.429867pt;}
.yaa{bottom:728.742800pt;}
.y116{bottom:735.181067pt;}
.y4a{bottom:735.181200pt;}
.yd{bottom:737.053600pt;}
.y102{bottom:741.763200pt;}
.ya9{bottom:747.325467pt;}
.y7c{bottom:747.947467pt;}
.y10a{bottom:747.947600pt;}
.y115{bottom:753.847733pt;}
.y49{bottom:753.847867pt;}
.y101{bottom:763.146933pt;}
.ya8{bottom:765.908133pt;}
.y114{bottom:772.514400pt;}
.y48{bottom:772.514533pt;}
.y100{bottom:781.729600pt;}
.ya7{bottom:784.490800pt;}
.y7b{bottom:791.181067pt;}
.y47{bottom:791.181200pt;}
.yff{bottom:800.312267pt;}
.ya6{bottom:803.073467pt;}
.y7{bottom:807.526000pt;}
.y7a{bottom:809.847733pt;}
.y46{bottom:809.847867pt;}
.yfe{bottom:818.894933pt;}
.ya5{bottom:821.656133pt;}
.y6{bottom:823.526000pt;}
.y79{bottom:828.514400pt;}
.y45{bottom:828.514533pt;}
.yfd{bottom:837.477600pt;}
.y5{bottom:839.526000pt;}
.ya4{bottom:840.238800pt;}
.y78{bottom:847.181067pt;}
.y44{bottom:847.181200pt;}
.yfc{bottom:856.060267pt;}
.ya3{bottom:858.821467pt;}
.y77{bottom:865.847733pt;}
.y43{bottom:865.847867pt;}
.y4{bottom:870.644267pt;}
.yd5{bottom:874.034667pt;}
.yfb{bottom:874.642933pt;}
.ya2{bottom:877.404267pt;}
.y76{bottom:884.514400pt;}
.y42{bottom:884.514533pt;}
.yd4{bottom:892.617333pt;}
.yfa{bottom:893.225733pt;}
.ya1{bottom:895.986933pt;}
.y75{bottom:903.181067pt;}
.y41{bottom:903.181200pt;}
.y3{bottom:903.362267pt;}
.yd3{bottom:911.200000pt;}
.yf9{bottom:911.808400pt;}
.ya0{bottom:914.569600pt;}
.y74{bottom:921.847733pt;}
.y40{bottom:921.847867pt;}
.yd2{bottom:929.782667pt;}
.yf8{bottom:930.391067pt;}
.y2{bottom:932.695600pt;}
.y9f{bottom:933.152267pt;}
.y73{bottom:940.514400pt;}
.y3f{bottom:940.514533pt;}
.y9e{bottom:941.687733pt;}
.yd1{bottom:948.365333pt;}
.yf7{bottom:948.973733pt;}
.y72{bottom:959.181067pt;}
.y3e{bottom:959.181200pt;}
.yd0{bottom:966.948133pt;}
.yf6{bottom:967.823067pt;}
.y9d{bottom:977.318133pt;}
.y71{bottom:977.847733pt;}
.y3d{bottom:977.847867pt;}
.ycf{bottom:985.797467pt;}
.yc{bottom:986.502667pt;}
.y113{bottom:988.062933pt;}
.yce{bottom:994.332933pt;}
.y9c{bottom:994.918133pt;}
.y70{bottom:996.514400pt;}
.y3c{bottom:996.514533pt;}
.y38{bottom:1027.213600pt;}
.y37{bottom:1044.546933pt;}
.y3b{bottom:1047.726000pt;}
.h6{height:30.618750pt;}
.h14{height:32.479996pt;}
.h18{height:32.480017pt;}
.h2{height:33.812500pt;}
.h12{height:33.979167pt;}
.hf{height:34.020833pt;}
.h5{height:34.250000pt;}
.he{height:38.039062pt;}
.h7{height:38.226562pt;}
.hd{height:38.273438pt;}
.h13{height:38.416667pt;}
.h19{height:38.458333pt;}
.h8{height:40.546875pt;}
.h17{height:40.599995pt;}
.h9{height:43.218750pt;}
.h16{height:43.265625pt;}
.h10{height:44.601562pt;}
.hb{height:48.020833pt;}
.hc{height:48.072917pt;}
.ha{height:48.656250pt;}
.h4{height:52.822917pt;}
.h15{height:68.120500pt;}
.h11{height:68.121033pt;}
.h3{height:72.205729pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:65.763733pt;}
.xa{left:95.172400pt;}
.xc{left:96.255067pt;}
.xf{left:99.779467pt;}
.x5{left:106.290133pt;}
.x6{left:107.597867pt;}
.x7{left:109.707333pt;}
.x10{left:165.459867pt;}
.xd{left:174.515067pt;}
.x4{left:266.834667pt;}
.xb{left:281.952800pt;}
.x3{left:352.045067pt;}
.x9{left:577.469600pt;}
.xe{left:593.314933pt;}
.x8{left:595.891467pt;}
.x1{left:712.311867pt;}
}




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