
    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_5b6b15c4ff6dcdab36eddf12.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.187012;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_5617ca2827bc08b28869bb2f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.183105;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_ba81271801f8c2858baca3e3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.991699;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_9b15b771d53002c04211db27.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_870147992c039848a2bf033a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.010254;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_60adcae3ae397176ff4cb882.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.100586;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_629d00b4278227fa0a8f46d8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.984000px;}
.v1{vertical-align:19.980000px;}
.v3{vertical-align:52.800000px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.000600px;}
.ls12{letter-spacing:0.001800px;}
.ls14{letter-spacing:0.002016px;}
.ls6{letter-spacing:0.003000px;}
.lsb{letter-spacing:0.003600px;}
.ls1{letter-spacing:0.004200px;}
.ls4{letter-spacing:0.004800px;}
.ls5{letter-spacing:0.009000px;}
.ls2{letter-spacing:0.009600px;}
.lsc{letter-spacing:0.010200px;}
.ls3{letter-spacing:0.010800px;}
.ls9{letter-spacing:0.011400px;}
.lsa{letter-spacing:0.120000px;}
.ls11{letter-spacing:0.760200px;}
.lse{letter-spacing:1.526400px;}
.lsf{letter-spacing:1.801800px;}
.ls13{letter-spacing:2.673600px;}
.ls10{letter-spacing:2.803200px;}
.ls7{letter-spacing:3.607800px;}
.lsd{letter-spacing:5.544000px;}
.ls15{letter-spacing:8.476200px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-16.500000px;}
.wse{word-spacing:-15.000000px;}
.wsd{word-spacing:-13.500000px;}
.ws1{word-spacing:-12.000000px;}
.wsf{word-spacing:-10.500000px;}
.wsb2{word-spacing:-9.450000px;}
.ws4e{word-spacing:-8.745000px;}
.ws4f{word-spacing:-6.996000px;}
.wsc1{word-spacing:-6.780000px;}
.ws1b{word-spacing:-6.120000px;}
.ws3a{word-spacing:-5.580000px;}
.ws159{word-spacing:-5.460000px;}
.ws58{word-spacing:-4.980000px;}
.ws25{word-spacing:-4.800000px;}
.wsfc{word-spacing:-4.500000px;}
.ws155{word-spacing:-4.380000px;}
.ws141{word-spacing:-4.320000px;}
.ws156{word-spacing:-4.140000px;}
.ws10d{word-spacing:-3.960000px;}
.ws114{word-spacing:-3.900000px;}
.ws93{word-spacing:-3.720000px;}
.ws14{word-spacing:-3.600000px;}
.ws100{word-spacing:-3.540000px;}
.ws14b{word-spacing:-3.480000px;}
.wsaf{word-spacing:-3.420000px;}
.ws111{word-spacing:-3.360000px;}
.ws39{word-spacing:-3.240000px;}
.wsc3{word-spacing:-2.940000px;}
.ws17{word-spacing:-2.880000px;}
.wse6{word-spacing:-2.820000px;}
.wse2{word-spacing:-2.700000px;}
.ws8d{word-spacing:-2.580000px;}
.ws10e{word-spacing:-2.520000px;}
.ws34{word-spacing:-2.460000px;}
.ws21{word-spacing:-2.400000px;}
.ws84{word-spacing:-2.352000px;}
.ws8f{word-spacing:-2.340000px;}
.ws92{word-spacing:-2.280000px;}
.wsf1{word-spacing:-2.220000px;}
.wsb1{word-spacing:-2.160000px;}
.ws13{word-spacing:-2.100000px;}
.ws7f{word-spacing:-2.040000px;}
.ws6a{word-spacing:-1.980000px;}
.wse4{word-spacing:-1.920000px;}
.ws74{word-spacing:-1.860000px;}
.ws1a{word-spacing:-1.800000px;}
.ws1e{word-spacing:-1.740000px;}
.ws16{word-spacing:-1.680000px;}
.ws157{word-spacing:-1.620000px;}
.ws2a{word-spacing:-1.560000px;}
.ws22{word-spacing:-1.500000px;}
.ws5e{word-spacing:-1.440000px;}
.ws23{word-spacing:-1.380000px;}
.ws76{word-spacing:-1.320000px;}
.ws71{word-spacing:-1.260000px;}
.ws1f{word-spacing:-1.200000px;}
.ws27{word-spacing:-1.140000px;}
.ws136{word-spacing:-1.104000px;}
.ws113{word-spacing:-1.080000px;}
.ws41{word-spacing:-1.020000px;}
.ws138{word-spacing:-0.960000px;}
.ws115{word-spacing:-0.900000px;}
.ws140{word-spacing:-0.840000px;}
.ws66{word-spacing:-0.780000px;}
.wscd{word-spacing:-0.768000px;}
.ws3c{word-spacing:-0.720000px;}
.wsd6{word-spacing:-0.660000px;}
.ws70{word-spacing:-0.600000px;}
.ws104{word-spacing:-0.540000px;}
.ws9b{word-spacing:-0.480000px;}
.ws3d{word-spacing:-0.420000px;}
.ws9e{word-spacing:-0.300000px;}
.ws33{word-spacing:-0.240000px;}
.ws65{word-spacing:-0.180000px;}
.ws37{word-spacing:-0.060000px;}
.ws2{word-spacing:0.000000px;}
.ws117{word-spacing:0.060000px;}
.ws2b{word-spacing:0.120000px;}
.ws24{word-spacing:0.180000px;}
.ws6d{word-spacing:0.192000px;}
.ws154{word-spacing:0.240000px;}
.ws4d{word-spacing:0.300000px;}
.ws45{word-spacing:0.360000px;}
.wsd0{word-spacing:0.420000px;}
.ws7c{word-spacing:0.480000px;}
.ws15d{word-spacing:0.540000px;}
.wsc7{word-spacing:0.600000px;}
.ws56{word-spacing:0.720000px;}
.ws60{word-spacing:0.780000px;}
.ws20{word-spacing:0.840000px;}
.ws11e{word-spacing:0.864000px;}
.wsbc{word-spacing:0.960000px;}
.ws2f{word-spacing:1.020000px;}
.ws11a{word-spacing:1.080000px;}
.ws67{word-spacing:1.200000px;}
.ws90{word-spacing:1.260000px;}
.wsdc{word-spacing:1.296000px;}
.wsa3{word-spacing:1.320000px;}
.ws112{word-spacing:1.380000px;}
.ws19{word-spacing:1.440000px;}
.wsc2{word-spacing:1.500000px;}
.wsab{word-spacing:1.560000px;}
.ws75{word-spacing:1.620000px;}
.wsb0{word-spacing:1.680000px;}
.ws5c{word-spacing:1.740000px;}
.ws28{word-spacing:1.800000px;}
.wsad{word-spacing:1.860000px;}
.ws7{word-spacing:1.920000px;}
.wsd4{word-spacing:1.980000px;}
.ws40{word-spacing:2.040000px;}
.ws68{word-spacing:2.100000px;}
.ws8{word-spacing:2.112000px;}
.wsb{word-spacing:2.160000px;}
.ws4b{word-spacing:2.220000px;}
.ws85{word-spacing:2.280000px;}
.ws8c{word-spacing:2.340000px;}
.wse1{word-spacing:2.400000px;}
.wsae{word-spacing:2.460000px;}
.ws109{word-spacing:2.520000px;}
.wsd1{word-spacing:2.580000px;}
.ws63{word-spacing:2.640000px;}
.ws53{word-spacing:2.700000px;}
.ws87{word-spacing:2.760000px;}
.ws80{word-spacing:2.820000px;}
.ws5b{word-spacing:2.880000px;}
.wsd2{word-spacing:2.940000px;}
.wscf{word-spacing:3.000000px;}
.ws69{word-spacing:3.060000px;}
.wsd9{word-spacing:3.072000px;}
.ws1c{word-spacing:3.120000px;}
.ws6b{word-spacing:3.180000px;}
.ws102{word-spacing:3.240000px;}
.wsdb{word-spacing:3.264000px;}
.ws62{word-spacing:3.300000px;}
.wsda{word-spacing:3.312000px;}
.wse7{word-spacing:3.360000px;}
.ws135{word-spacing:3.420000px;}
.wsbd{word-spacing:3.480000px;}
.ws31{word-spacing:3.540000px;}
.ws3b{word-spacing:3.600000px;}
.wse5{word-spacing:3.660000px;}
.ws47{word-spacing:3.720000px;}
.wsaa{word-spacing:3.780000px;}
.wsb9{word-spacing:3.840000px;}
.ws55{word-spacing:3.900000px;}
.ws44{word-spacing:3.960000px;}
.wsd5{word-spacing:4.020000px;}
.ws64{word-spacing:4.080000px;}
.wsfd{word-spacing:4.140000px;}
.wsa0{word-spacing:4.200000px;}
.wscb{word-spacing:4.260000px;}
.ws110{word-spacing:4.320000px;}
.ws29{word-spacing:4.380000px;}
.ws43{word-spacing:4.440000px;}
.wsd8{word-spacing:4.560000px;}
.ws107{word-spacing:4.608000px;}
.ws103{word-spacing:4.620000px;}
.wsf9{word-spacing:4.680000px;}
.ws83{word-spacing:4.740000px;}
.ws35{word-spacing:4.800000px;}
.wsa7{word-spacing:4.860000px;}
.ws4{word-spacing:4.896000px;}
.ws8a{word-spacing:4.920000px;}
.ws50{word-spacing:4.980000px;}
.ws142{word-spacing:5.040000px;}
.ws4a{word-spacing:5.100000px;}
.ws81{word-spacing:5.160000px;}
.wsa8{word-spacing:5.220000px;}
.ws86{word-spacing:5.280000px;}
.ws54{word-spacing:5.340000px;}
.wsc0{word-spacing:5.400000px;}
.ws38{word-spacing:5.460000px;}
.wse0{word-spacing:5.580000px;}
.wsc8{word-spacing:5.640000px;}
.ws2c{word-spacing:5.700000px;}
.ws89{word-spacing:5.760000px;}
.ws9d{word-spacing:5.820000px;}
.wsff{word-spacing:5.880000px;}
.ws14c{word-spacing:5.940000px;}
.wsd3{word-spacing:6.000000px;}
.ws42{word-spacing:6.060000px;}
.ws91{word-spacing:6.120000px;}
.ws4c{word-spacing:6.180000px;}
.ws5{word-spacing:6.240000px;}
.ws2d{word-spacing:6.300000px;}
.ws59{word-spacing:6.360000px;}
.ws11b{word-spacing:6.420000px;}
.ws15b{word-spacing:6.480000px;}
.ws88{word-spacing:6.540000px;}
.ws15a{word-spacing:6.600000px;}
.ws5a{word-spacing:6.660000px;}
.ws3{word-spacing:6.672000px;}
.ws11d{word-spacing:6.720000px;}
.wsa9{word-spacing:6.780000px;}
.ws51{word-spacing:6.840000px;}
.wsc{word-spacing:6.864000px;}
.ws1d{word-spacing:6.900000px;}
.ws105{word-spacing:6.960000px;}
.ws146{word-spacing:7.020000px;}
.ws18{word-spacing:7.080000px;}
.wsbb{word-spacing:7.140000px;}
.wsfa{word-spacing:7.200000px;}
.ws13b{word-spacing:7.260000px;}
.ws95{word-spacing:7.320000px;}
.ws46{word-spacing:7.380000px;}
.ws10c{word-spacing:7.440000px;}
.ws82{word-spacing:7.500000px;}
.ws5d{word-spacing:7.560000px;}
.wsce{word-spacing:7.620000px;}
.ws9{word-spacing:7.680000px;}
.ws77{word-spacing:7.740000px;}
.ws9f{word-spacing:7.800000px;}
.ws30{word-spacing:7.860000px;}
.ws13e{word-spacing:7.920000px;}
.ws72{word-spacing:7.980000px;}
.wsa{word-spacing:8.016000px;}
.wsf8{word-spacing:8.040000px;}
.ws116{word-spacing:8.160000px;}
.ws108{word-spacing:8.220000px;}
.wsc4{word-spacing:8.280000px;}
.wsdf{word-spacing:8.340000px;}
.wscc{word-spacing:8.400000px;}
.ws3e{word-spacing:8.460000px;}
.wsa4{word-spacing:8.520000px;}
.wsbf{word-spacing:8.580000px;}
.wsde{word-spacing:8.640000px;}
.ws6e{word-spacing:8.700000px;}
.ws26{word-spacing:8.820000px;}
.ws10b{word-spacing:8.880000px;}
.ws6{word-spacing:8.976000px;}
.ws137{word-spacing:9.000000px;}
.ws139{word-spacing:9.060000px;}
.wsdd{word-spacing:9.120000px;}
.wsbe{word-spacing:9.300000px;}
.wsa5{word-spacing:9.420000px;}
.wsfb{word-spacing:9.480000px;}
.ws99{word-spacing:9.504000px;}
.ws2e{word-spacing:9.540000px;}
.wsc9{word-spacing:9.660000px;}
.wse3{word-spacing:9.720000px;}
.wsac{word-spacing:9.960000px;}
.ws5f{word-spacing:10.080000px;}
.ws48{word-spacing:10.140000px;}
.wsca{word-spacing:10.320000px;}
.ws32{word-spacing:10.380000px;}
.ws11c{word-spacing:10.440000px;}
.ws14f{word-spacing:10.500000px;}
.ws8e{word-spacing:10.560000px;}
.ws118{word-spacing:10.680000px;}
.ws15{word-spacing:10.860000px;}
.ws153{word-spacing:10.920000px;}
.wsa2{word-spacing:11.160000px;}
.ws49{word-spacing:11.220000px;}
.ws7b{word-spacing:11.280000px;}
.ws15e{word-spacing:11.400000px;}
.ws73{word-spacing:11.520000px;}
.ws9c{word-spacing:11.640000px;}
.ws10{word-spacing:11.820000px;}
.ws52{word-spacing:11.880000px;}
.ws97{word-spacing:11.940000px;}
.ws94{word-spacing:12.000000px;}
.ws106{word-spacing:12.060000px;}
.ws96{word-spacing:12.120000px;}
.ws144{word-spacing:12.180000px;}
.ws7a{word-spacing:12.240000px;}
.ws13d{word-spacing:12.540000px;}
.ws14a{word-spacing:12.780000px;}
.ws143{word-spacing:12.840000px;}
.wsc5{word-spacing:12.900000px;}
.ws10f{word-spacing:12.960000px;}
.ws145{word-spacing:13.020000px;}
.ws10a{word-spacing:13.320000px;}
.ws12{word-spacing:13.440000px;}
.ws7e{word-spacing:13.500000px;}
.wsfe{word-spacing:13.860000px;}
.ws13c{word-spacing:13.920000px;}
.ws150{word-spacing:14.100000px;}
.ws158{word-spacing:14.580000px;}
.wsa1{word-spacing:14.700000px;}
.ws134{word-spacing:15.060000px;}
.ws9a{word-spacing:15.168000px;}
.wsd7{word-spacing:15.240000px;}
.ws36{word-spacing:15.300000px;}
.ws14d{word-spacing:15.360000px;}
.wsa6{word-spacing:15.540000px;}
.wsc6{word-spacing:15.900000px;}
.ws151{word-spacing:16.020000px;}
.ws98{word-spacing:16.140000px;}
.ws152{word-spacing:16.200000px;}
.ws13f{word-spacing:16.560000px;}
.ws8b{word-spacing:16.800000px;}
.ws119{word-spacing:16.860000px;}
.ws78{word-spacing:17.160000px;}
.ws61{word-spacing:17.220000px;}
.ws7d{word-spacing:17.280000px;}
.ws57{word-spacing:17.400000px;}
.ws148{word-spacing:17.640000px;}
.ws101{word-spacing:17.820000px;}
.ws14e{word-spacing:17.940000px;}
.ws6f{word-spacing:18.000000px;}
.ws147{word-spacing:18.060000px;}
.ws6c{word-spacing:18.120000px;}
.ws11{word-spacing:18.540000px;}
.ws13a{word-spacing:18.900000px;}
.ws79{word-spacing:19.020000px;}
.ws149{word-spacing:19.560000px;}
.ws3f{word-spacing:19.860000px;}
.ws15c{word-spacing:22.560000px;}
.wsba{word-spacing:23.820000px;}
.wsb5{word-spacing:44.954400px;}
.ws127{word-spacing:59.983200px;}
.wsb4{word-spacing:77.945400px;}
.wsb3{word-spacing:85.552200px;}
.ws12a{word-spacing:86.100000px;}
.ws132{word-spacing:94.684800px;}
.ws12f{word-spacing:98.529000px;}
.ws125{word-spacing:104.716200px;}
.ws12b{word-spacing:109.427400px;}
.wsb7{word-spacing:110.202000px;}
.ws11f{word-spacing:110.521200px;}
.wsb8{word-spacing:114.274800px;}
.ws12c{word-spacing:116.197200px;}
.ws133{word-spacing:141.070200px;}
.ws129{word-spacing:143.968800px;}
.wse8{word-spacing:147.103800px;}
.ws122{word-spacing:148.275000px;}
.ws126{word-spacing:149.553000px;}
.wsef{word-spacing:154.144200px;}
.ws131{word-spacing:154.438800px;}
.ws130{word-spacing:157.103400px;}
.wsf2{word-spacing:161.102400px;}
.ws121{word-spacing:162.868800px;}
.wsec{word-spacing:168.763200px;}
.wsb6{word-spacing:170.278800px;}
.ws120{word-spacing:179.073000px;}
.ws12e{word-spacing:181.521000px;}
.wsed{word-spacing:183.430800px;}
.ws128{word-spacing:187.567800px;}
.ws12d{word-spacing:197.047200px;}
.ws124{word-spacing:205.570200px;}
.ws123{word-spacing:207.202800px;}
.wse9{word-spacing:207.456600px;}
.wsee{word-spacing:207.922200px;}
.wsf5{word-spacing:209.338800px;}
.wseb{word-spacing:215.447400px;}
.wsf4{word-spacing:218.527200px;}
.wsf6{word-spacing:223.994400px;}
.wsf7{word-spacing:247.108800px;}
.wsf3{word-spacing:273.310200px;}
.wsea{word-spacing:282.859800px;}
.wsf0{word-spacing:286.071000px;}
._b{margin-left:-2119.908600px;}
._46{margin-left:-6.588000px;}
._8{margin-left:-5.280000px;}
._7{margin-left:-4.194000px;}
._4{margin-left:-2.922000px;}
._3{margin-left:-1.842000px;}
._1{width:1.641600px;}
._2{width:2.894400px;}
._a{width:4.593600px;}
._0{width:6.446400px;}
._9{width:7.645200px;}
._23{width:9.118800px;}
._5{width:10.345200px;}
._e{width:11.538000px;}
._45{width:12.864000px;}
._4f{width:13.962000px;}
._50{width:16.051200px;}
._c{width:17.077200px;}
._d{width:18.244800px;}
._17{width:61.146600px;}
._18{width:63.196200px;}
._19{width:64.367400px;}
._2c{width:80.087400px;}
._4a{width:82.186200px;}
._16{width:83.407800px;}
._15{width:86.868600px;}
._2d{width:88.671000px;}
._28{width:91.450200px;}
._2a{width:94.671000px;}
._3a{width:97.494000px;}
._2e{width:98.735400px;}
._f{width:101.922000px;}
._39{width:113.141400px;}
._1b{width:117.024600px;}
._20{width:118.087200px;}
._22{width:122.938200px;}
._1a{width:125.071200px;}
._27{width:128.489400px;}
._1e{width:130.782600px;}
._41{width:134.182800px;}
._30{width:137.666400px;}
._3d{width:140.775600px;}
._40{width:142.473600px;}
._4d{width:145.393200px;}
._21{width:147.687600px;}
._14{width:148.971000px;}
._38{width:151.585200px;}
._42{width:153.865800px;}
._32{width:162.575400px;}
._1c{width:164.316600px;}
._35{width:166.212000px;}
._33{width:168.770400px;}
._2f{width:169.818000px;}
._1d{width:170.954400px;}
._34{width:171.991200px;}
._4e{width:173.587200px;}
._48{width:177.474000px;}
._3b{width:179.128800px;}
._3c{width:180.645000px;}
._12{width:186.222000px;}
._3f{width:199.345800px;}
._13{width:201.018000px;}
._29{width:203.455800px;}
._1f{width:205.678200px;}
._3e{width:208.023600px;}
._26{width:210.525000px;}
._47{width:212.065200px;}
._4b{width:214.753800px;}
._2b{width:216.596400px;}
._4c{width:225.562200px;}
._43{width:227.292000px;}
._36{width:229.432800px;}
._49{width:233.651400px;}
._11{width:242.074200px;}
._10{width:253.317600px;}
._31{width:262.144800px;}
._37{width:287.385600px;}
._24{width:316.032600px;}
._25{width:318.440400px;}
._44{width:332.473800px;}
._6{width:925.851000px;}
.fc3{color:rgb(0,0,204);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(57,53,54);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:27.984000px;}
.fs5{font-size:34.980000px;}
.fs7{font-size:37.800000px;}
.fs4{font-size:42.000000px;}
.fs1{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:53.410800px;}
.y1{bottom:58.216350px;}
.y24{bottom:64.594200px;}
.y2{bottom:67.810800px;}
.y9a{bottom:106.299300px;}
.ycf{bottom:106.299450px;}
.y176{bottom:107.682150px;}
.y122{bottom:108.296850px;}
.y7f{bottom:111.267450px;}
.yc4{bottom:114.395250px;}
.y14a{bottom:117.920250px;}
.y104{bottom:117.972900px;}
.y99{bottom:120.699300px;}
.yce{bottom:120.699450px;}
.y50{bottom:123.503850px;}
.y175{bottom:125.682150px;}
.y121{bottom:126.296850px;}
.y7e{bottom:129.267450px;}
.yc3{bottom:132.395250px;}
.y98{bottom:135.099300px;}
.ycd{bottom:135.099600px;}
.y103{bottom:135.972900px;}
.y4f{bottom:141.503850px;}
.y174{bottom:143.682150px;}
.y120{bottom:144.296850px;}
.y7d{bottom:147.267450px;}
.y148{bottom:148.370250px;}
.y9d{bottom:149.499300px;}
.yd8{bottom:149.499600px;}
.ycc{bottom:149.499750px;}
.yc2{bottom:150.395250px;}
.y102{bottom:153.972900px;}
.y23{bottom:155.471850px;}
.y4e{bottom:159.504000px;}
.y147{bottom:161.570250px;}
.y173{bottom:161.682150px;}
.y9c{bottom:163.899300px;}
.yd7{bottom:163.899600px;}
.ycb{bottom:163.899900px;}
.y7c{bottom:165.267450px;}
.yc1{bottom:168.395250px;}
.y22{bottom:168.671850px;}
.y101{bottom:171.972900px;}
.y149{bottom:174.770250px;}
.y146{bottom:174.793650px;}
.y4d{bottom:177.504000px;}
.y9b{bottom:178.299300px;}
.yd6{bottom:178.299750px;}
.yca{bottom:178.300050px;}
.y172{bottom:179.682150px;}
.y7b{bottom:183.267450px;}
.y11f{bottom:183.896850px;}
.yc0{bottom:186.395250px;}
.y100{bottom:189.972900px;}
.yd5{bottom:192.699750px;}
.yc9{bottom:192.700050px;}
.y21{bottom:195.071850px;}
.y144{bottom:195.494850px;}
.y4c{bottom:195.504000px;}
.y171{bottom:197.682150px;}
.y7a{bottom:201.267450px;}
.ybf{bottom:204.395250px;}
.yd4{bottom:207.099900px;}
.yc8{bottom:207.100200px;}
.y20{bottom:208.271850px;}
.y143{bottom:208.694850px;}
.y4b{bottom:213.504000px;}
.y170{bottom:215.682150px;}
.y79{bottom:219.267450px;}
.y1f{bottom:221.471850px;}
.yd3{bottom:221.499900px;}
.yc7{bottom:221.500350px;}
.y142{bottom:221.894850px;}
.ybe{bottom:222.395250px;}
.y97{bottom:222.867450px;}
.yff{bottom:226.122900px;}
.y4a{bottom:231.504000px;}
.y16f{bottom:233.682150px;}
.y1e{bottom:234.671850px;}
.y145{bottom:235.094850px;}
.y141{bottom:235.118250px;}
.yd2{bottom:235.900050px;}
.yc6{bottom:235.900350px;}
.y78{bottom:237.267450px;}
.ybd{bottom:240.395250px;}
.y96{bottom:240.867450px;}
.y11e{bottom:245.096850px;}
.y1d{bottom:247.871850px;}
.y49{bottom:249.504000px;}
.yd1{bottom:250.300050px;}
.yc5{bottom:250.300500px;}
.y16e{bottom:251.682150px;}
.y77{bottom:255.267450px;}
.y13f{bottom:255.819450px;}
.yfe{bottom:256.572900px;}
.ybc{bottom:258.395250px;}
.y95{bottom:258.867450px;}
.y1c{bottom:261.071850px;}
.yd0{bottom:264.700200px;}
.y48{bottom:267.504000px;}
.y13e{bottom:269.019450px;}
.y16d{bottom:269.682150px;}
.yfd{bottom:269.772900px;}
.y76{bottom:273.267450px;}
.y1b{bottom:274.271850px;}
.y11d{bottom:275.546850px;}
.ybb{bottom:276.395250px;}
.y94{bottom:276.867450px;}
.y13d{bottom:282.219450px;}
.y47{bottom:285.504000px;}
.y16c{bottom:287.682150px;}
.y11c{bottom:288.746850px;}
.yfc{bottom:290.497500px;}
.y75{bottom:291.267450px;}
.yba{bottom:294.395250px;}
.y93{bottom:294.867450px;}
.y13c{bottom:295.419450px;}
.y1a{bottom:300.671850px;}
.y11b{bottom:301.946850px;}
.y46{bottom:303.504000px;}
.yfb{bottom:303.697500px;}
.y16b{bottom:305.682150px;}
.y13b{bottom:308.619450px;}
.y74{bottom:309.267450px;}
.yb9{bottom:312.395250px;}
.y92{bottom:312.867450px;}
.y45{bottom:321.504000px;}
.y140{bottom:321.819450px;}
.y13a{bottom:321.842850px;}
.y11a{bottom:322.671450px;}
.y16a{bottom:323.682150px;}
.yfa{bottom:324.422100px;}
.y73{bottom:327.267450px;}
.yb8{bottom:330.395250px;}
.y91{bottom:330.867450px;}
.y119{bottom:335.894850px;}
.yf9{bottom:337.622100px;}
.y44{bottom:339.504000px;}
.y169{bottom:341.682150px;}
.y138{bottom:342.544050px;}
.y72{bottom:345.267450px;}
.yb7{bottom:348.395250px;}
.y90{bottom:348.867450px;}
.y19{bottom:353.471850px;}
.y137{bottom:355.744050px;}
.y118{bottom:356.596050px;}
.y43{bottom:357.504000px;}
.yf7{bottom:358.346700px;}
.y168{bottom:359.682150px;}
.y71{bottom:363.267450px;}
.y8f{bottom:366.867450px;}
.y136{bottom:368.944050px;}
.y117{bottom:369.819450px;}
.yf6{bottom:371.546700px;}
.y42{bottom:375.504000px;}
.y167{bottom:377.682150px;}
.y18{bottom:379.871850px;}
.y70{bottom:381.267450px;}
.y135{bottom:382.144050px;}
.yb6{bottom:384.395250px;}
.yf8{bottom:384.746700px;}
.yf5{bottom:384.770250px;}
.y8e{bottom:384.867450px;}
.y116{bottom:390.520650px;}
.y17{bottom:393.071850px;}
.y41{bottom:393.504000px;}
.y134{bottom:395.344050px;}
.y166{bottom:395.682150px;}
.y6f{bottom:399.267450px;}
.yb5{bottom:402.395250px;}
.y8d{bottom:402.867450px;}
.y115{bottom:403.744050px;}
.yf4{bottom:405.471450px;}
.y16{bottom:406.271850px;}
.y139{bottom:408.544050px;}
.y133{bottom:408.567450px;}
.y40{bottom:411.504000px;}
.y165{bottom:413.682150px;}
.y6e{bottom:417.267450px;}
.yf3{bottom:418.694850px;}
.y15{bottom:419.471850px;}
.y8c{bottom:420.867450px;}
.y114{bottom:424.445250px;}
.y113{bottom:424.468650px;}
.y132{bottom:429.268650px;}
.y3f{bottom:429.504000px;}
.y164{bottom:431.682150px;}
.y14{bottom:432.671850px;}
.y6d{bottom:435.267450px;}
.y112{bottom:437.668650px;}
.y8b{bottom:438.867450px;}
.yf2{bottom:439.396050px;}
.y131{bottom:442.468650px;}
.y13{bottom:445.871850px;}
.y3e{bottom:447.504000px;}
.y163{bottom:449.682150px;}
.yf1{bottom:452.619450px;}
.y6c{bottom:453.267450px;}
.y8a{bottom:456.867450px;}
.y111{bottom:458.369850px;}
.y12{bottom:459.071850px;}
.y130{bottom:463.193250px;}
.yb4{bottom:463.595250px;}
.y3d{bottom:465.504000px;}
.y162{bottom:467.682150px;}
.y6b{bottom:471.267450px;}
.y110{bottom:471.593250px;}
.yf0{bottom:473.320650px;}
.y89{bottom:474.867450px;}
.y12f{bottom:476.393250px;}
.y3c{bottom:483.504000px;}
.y11{bottom:485.471850px;}
.y161{bottom:485.682150px;}
.yef{bottom:486.520500px;}
.yec{bottom:486.544050px;}
.y6a{bottom:489.267450px;}
.y12e{bottom:489.593250px;}
.y10f{bottom:492.294450px;}
.y88{bottom:492.867450px;}
.yb3{bottom:494.045250px;}
.yee{bottom:499.720650px;}
.yeb{bottom:499.744050px;}
.y3b{bottom:501.504000px;}
.y160{bottom:503.682150px;}
.y10e{bottom:505.517850px;}
.yb2{bottom:507.245250px;}
.y69{bottom:507.267450px;}
.y12c{bottom:510.317850px;}
.y87{bottom:510.867450px;}
.yed{bottom:512.920650px;}
.yea{bottom:512.944050px;}
.y3a{bottom:519.504000px;}
.yb1{bottom:520.445250px;}
.y15f{bottom:521.682150px;}
.y12d{bottom:523.494450px;}
.y12b{bottom:523.517850px;}
.y68{bottom:525.267450px;}
.y10d{bottom:526.219050px;}
.y86{bottom:528.867450px;}
.yb0{bottom:533.645250px;}
.y10{bottom:536.471850px;}
.y12a{bottom:536.694450px;}
.y39{bottom:537.504000px;}
.y10c{bottom:539.442450px;}
.y15e{bottom:539.682150px;}
.y67{bottom:543.267450px;}
.ye8{bottom:546.845250px;}
.y85{bottom:546.867450px;}
.ye7{bottom:546.868650px;}
.yaf{bottom:554.369850px;}
.y38{bottom:555.504000px;}
.y129{bottom:557.442450px;}
.y15d{bottom:557.682150px;}
.ye9{bottom:560.045250px;}
.ye6{bottom:560.068650px;}
.y10b{bottom:560.143650px;}
.y66{bottom:561.267450px;}
.y84{bottom:564.867450px;}
.yae{bottom:567.569850px;}
.y10a{bottom:573.367200px;}
.y37{bottom:573.504000px;}
.y15c{bottom:575.682150px;}
.y128{bottom:578.143650px;}
.y65{bottom:579.267450px;}
.yad{bottom:580.769850px;}
.y83{bottom:582.867450px;}
.y127{bottom:591.343650px;}
.y36{bottom:591.504000px;}
.yf{bottom:591.596850px;}
.y15b{bottom:593.682150px;}
.yac{bottom:593.969850px;}
.ye4{bottom:593.993250px;}
.y109{bottom:594.068250px;}
.y108{bottom:594.091800px;}
.y64{bottom:597.267450px;}
.y82{bottom:600.867450px;}
.ye{bottom:606.446850px;}
.ye5{bottom:607.169850px;}
.ye3{bottom:607.193250px;}
.y107{bottom:607.291650px;}
.y35{bottom:609.504000px;}
.y15a{bottom:611.682150px;}
.y126{bottom:612.068250px;}
.yab{bottom:614.694450px;}
.yaa{bottom:614.718000px;}
.y63{bottom:615.267450px;}
.y81{bottom:618.867450px;}
.yd{bottom:621.296850px;}
.y125{bottom:625.268250px;}
.y34{bottom:627.504000px;}
.ye1{bottom:627.894450px;}
.ya9{bottom:627.917850px;}
.y106{bottom:627.992850px;}
.y159{bottom:629.682150px;}
.y62{bottom:633.267450px;}
.yc{bottom:636.146850px;}
.ye0{bottom:641.094450px;}
.ydf{bottom:641.117850px;}
.y33{bottom:645.504000px;}
.y124{bottom:645.992850px;}
.y158{bottom:647.682150px;}
.ya8{bottom:648.619050px;}
.y61{bottom:651.267450px;}
.ye2{bottom:654.294450px;}
.yde{bottom:654.317850px;}
.y80{bottom:658.467450px;}
.ya7{bottom:661.819050px;}
.y32{bottom:663.504000px;}
.y157{bottom:665.682150px;}
.y60{bottom:669.267450px;}
.y105{bottom:671.067600px;}
.ya6{bottom:675.042450px;}
.y31{bottom:681.504000px;}
.y156{bottom:683.682150px;}
.y5f{bottom:687.267450px;}
.y123{bottom:689.067600px;}
.yb{bottom:694.196850px;}
.ya5{bottom:695.743650px;}
.ydd{bottom:695.767050px;}
.y30{bottom:699.504000px;}
.y155{bottom:701.682150px;}
.y5e{bottom:705.267450px;}
.ya4{bottom:708.943650px;}
.ya{bottom:715.796850px;}
.ydc{bottom:716.468250px;}
.y2f{bottom:717.504000px;}
.y154{bottom:719.682150px;}
.ya3{bottom:722.143650px;}
.y5d{bottom:723.267450px;}
.ydb{bottom:729.691650px;}
.y2e{bottom:735.504000px;}
.y153{bottom:737.682150px;}
.y5c{bottom:741.267450px;}
.ya2{bottom:742.868250px;}
.yda{bottom:750.392850px;}
.y2d{bottom:753.504000px;}
.y9{bottom:753.746850px;}
.y152{bottom:755.682150px;}
.ya1{bottom:756.068250px;}
.y5b{bottom:759.267450px;}
.ya0{bottom:769.268250px;}
.y2c{bottom:771.503850px;}
.y8{bottom:772.721850px;}
.y151{bottom:773.682150px;}
.y5a{bottom:777.267450px;}
.y2b{bottom:789.503850px;}
.y9f{bottom:789.992850px;}
.y150{bottom:791.682150px;}
.yd9{bottom:793.467450px;}
.y59{bottom:795.267450px;}
.y2a{bottom:807.503850px;}
.y14f{bottom:809.682150px;}
.y58{bottom:813.267450px;}
.y29{bottom:825.503850px;}
.y14e{bottom:827.682150px;}
.y57{bottom:831.267450px;}
.y9e{bottom:833.067600px;}
.y28{bottom:843.503850px;}
.y14d{bottom:845.682150px;}
.y56{bottom:849.267450px;}
.y7{bottom:849.296850px;}
.y27{bottom:861.503850px;}
.y14c{bottom:863.682150px;}
.y55{bottom:867.267450px;}
.y6{bottom:867.296850px;}
.y54{bottom:885.267450px;}
.y5{bottom:885.296850px;}
.y26{bottom:901.104000px;}
.y53{bottom:903.267450px;}
.y14b{bottom:903.282150px;}
.y4{bottom:903.296850px;}
.y52{bottom:942.696600px;}
.y25{bottom:943.071600px;}
.y51{bottom:960.696600px;}
.h8{height:34.875000px;}
.h9{height:34.945312px;}
.h11{height:40.804688px;}
.h14{height:43.335488px;}
.h13{height:43.336088px;}
.he{height:43.359375px;}
.h3{height:43.429688px;}
.h10{height:43.452975px;}
.ha{height:43.593750px;}
.hc{height:43.681641px;}
.h5{height:47.953125px;}
.h2{height:48.858398px;}
.h16{height:51.005859px;}
.h4{height:54.199219px;}
.hb{height:54.287109px;}
.h6{height:56.106445px;}
.h7{height:59.715820px;}
.hf{height:96.135487px;}
.h12{height:96.136088px;}
.hd{height:96.229687px;}
.h15{height:96.253575px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x13{left:80.787450px;}
.x19{left:84.072300px;}
.x12{left:86.560800px;}
.x2a{left:88.055700px;}
.x3c{left:93.479550px;}
.x1e{left:96.127050px;}
.x1a{left:97.755900px;}
.x1b{left:100.890750px;}
.x2{left:106.299150px;}
.x35{left:107.392650px;}
.x34{left:108.986400px;}
.x14{left:110.551200px;}
.x37{left:112.651500px;}
.x5a{left:115.106700px;}
.x32{left:118.669050px;}
.x33{left:120.655350px;}
.x5d{left:123.178050px;}
.x55{left:124.806900px;}
.x56{left:127.941600px;}
.x42{left:129.333000px;}
.x47{left:130.525500px;}
.x9{left:132.482100px;}
.x45{left:133.522650px;}
.x17{left:136.063050px;}
.x4c{left:140.254950px;}
.x50{left:147.242250px;}
.x44{left:148.625100px;}
.x51{left:153.019650px;}
.x30{left:154.687950px;}
.x4e{left:157.584150px;}
.x4a{left:159.573300px;}
.x7{left:168.861900px;}
.x52{left:171.362400px;}
.x26{left:173.650350px;}
.x27{left:180.983400px;}
.x23{left:183.816300px;}
.xf{left:191.852850px;}
.x3d{left:192.859200px;}
.x31{left:195.053700px;}
.x6d{left:198.733500px;}
.x5b{left:203.734500px;}
.x6f{left:206.605500px;}
.x59{left:208.720800px;}
.x43{left:210.593100px;}
.x65{left:212.623200px;}
.x60{left:218.722800px;}
.xc{left:241.470450px;}
.x8{left:247.458450px;}
.xd{left:256.994100px;}
.x38{left:259.581150px;}
.xa{left:260.598750px;}
.x3a{left:273.280350px;}
.x3b{left:278.999100px;}
.x11{left:282.166500px;}
.x40{left:283.358400px;}
.x5c{left:291.115050px;}
.xb{left:292.704450px;}
.x39{left:294.321300px;}
.x3{left:303.053100px;}
.xe{left:305.671350px;}
.x1f{left:309.622500px;}
.x1c{left:311.031600px;}
.x41{left:313.739250px;}
.x2b{left:315.156600px;}
.x24{left:318.634200px;}
.x28{left:322.070700px;}
.x20{left:326.948550px;}
.x48{left:330.865950px;}
.x2f{left:336.771900px;}
.x10{left:338.275950px;}
.x62{left:342.117300px;}
.x63{left:343.409250px;}
.x61{left:345.167100px;}
.x4f{left:347.157900px;}
.x66{left:350.279400px;}
.x49{left:351.646200px;}
.x67{left:353.279400px;}
.x2c{left:355.267050px;}
.x4d{left:356.319000px;}
.x4b{left:364.123650px;}
.x53{left:367.592400px;}
.x6e{left:376.259850px;}
.x5f{left:378.008850px;}
.x57{left:380.545950px;}
.x6{left:406.807950px;}
.x36{left:434.748900px;}
.x21{left:446.638350px;}
.x6b{left:463.838700px;}
.x64{left:467.734650px;}
.x6a{left:469.176000px;}
.x68{left:471.634050px;}
.x54{left:473.260800px;}
.x69{left:483.209250px;}
.x3e{left:504.404250px;}
.x16{left:508.734750px;}
.x4{left:510.811950px;}
.x29{left:515.584950px;}
.x3f{left:524.472600px;}
.x25{left:527.415000px;}
.x1d{left:528.677700px;}
.x5{left:530.367600px;}
.x22{left:531.460950px;}
.x2d{left:532.603500px;}
.x2e{left:539.517600px;}
.x58{left:554.437350px;}
.x5e{left:555.846600px;}
.x6c{left:558.884700px;}
.x46{left:562.716600px;}
.x18{left:613.804950px;}
.x1{left:616.023900px;}
.x15{left:638.672250px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:14.208000pt;}
.v1{vertical-align:17.760000pt;}
.v3{vertical-align:46.933333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.000533pt;}
.ls12{letter-spacing:0.001600pt;}
.ls14{letter-spacing:0.001792pt;}
.ls6{letter-spacing:0.002667pt;}
.lsb{letter-spacing:0.003200pt;}
.ls1{letter-spacing:0.003733pt;}
.ls4{letter-spacing:0.004267pt;}
.ls5{letter-spacing:0.008000pt;}
.ls2{letter-spacing:0.008533pt;}
.lsc{letter-spacing:0.009067pt;}
.ls3{letter-spacing:0.009600pt;}
.ls9{letter-spacing:0.010133pt;}
.lsa{letter-spacing:0.106667pt;}
.ls11{letter-spacing:0.675733pt;}
.lse{letter-spacing:1.356800pt;}
.lsf{letter-spacing:1.601600pt;}
.ls13{letter-spacing:2.376533pt;}
.ls10{letter-spacing:2.491733pt;}
.ls7{letter-spacing:3.206933pt;}
.lsd{letter-spacing:4.928000pt;}
.ls15{letter-spacing:7.534400pt;}
.ws0{word-spacing:-14.666667pt;}
.wse{word-spacing:-13.333333pt;}
.wsd{word-spacing:-12.000000pt;}
.ws1{word-spacing:-10.666667pt;}
.wsf{word-spacing:-9.333333pt;}
.wsb2{word-spacing:-8.400000pt;}
.ws4e{word-spacing:-7.773333pt;}
.ws4f{word-spacing:-6.218667pt;}
.wsc1{word-spacing:-6.026667pt;}
.ws1b{word-spacing:-5.440000pt;}
.ws3a{word-spacing:-4.960000pt;}
.ws159{word-spacing:-4.853333pt;}
.ws58{word-spacing:-4.426667pt;}
.ws25{word-spacing:-4.266667pt;}
.wsfc{word-spacing:-4.000000pt;}
.ws155{word-spacing:-3.893333pt;}
.ws141{word-spacing:-3.840000pt;}
.ws156{word-spacing:-3.680000pt;}
.ws10d{word-spacing:-3.520000pt;}
.ws114{word-spacing:-3.466667pt;}
.ws93{word-spacing:-3.306667pt;}
.ws14{word-spacing:-3.200000pt;}
.ws100{word-spacing:-3.146667pt;}
.ws14b{word-spacing:-3.093333pt;}
.wsaf{word-spacing:-3.040000pt;}
.ws111{word-spacing:-2.986667pt;}
.ws39{word-spacing:-2.880000pt;}
.wsc3{word-spacing:-2.613333pt;}
.ws17{word-spacing:-2.560000pt;}
.wse6{word-spacing:-2.506667pt;}
.wse2{word-spacing:-2.400000pt;}
.ws8d{word-spacing:-2.293333pt;}
.ws10e{word-spacing:-2.240000pt;}
.ws34{word-spacing:-2.186667pt;}
.ws21{word-spacing:-2.133333pt;}
.ws84{word-spacing:-2.090667pt;}
.ws8f{word-spacing:-2.080000pt;}
.ws92{word-spacing:-2.026667pt;}
.wsf1{word-spacing:-1.973333pt;}
.wsb1{word-spacing:-1.920000pt;}
.ws13{word-spacing:-1.866667pt;}
.ws7f{word-spacing:-1.813333pt;}
.ws6a{word-spacing:-1.760000pt;}
.wse4{word-spacing:-1.706667pt;}
.ws74{word-spacing:-1.653333pt;}
.ws1a{word-spacing:-1.600000pt;}
.ws1e{word-spacing:-1.546667pt;}
.ws16{word-spacing:-1.493333pt;}
.ws157{word-spacing:-1.440000pt;}
.ws2a{word-spacing:-1.386667pt;}
.ws22{word-spacing:-1.333333pt;}
.ws5e{word-spacing:-1.280000pt;}
.ws23{word-spacing:-1.226667pt;}
.ws76{word-spacing:-1.173333pt;}
.ws71{word-spacing:-1.120000pt;}
.ws1f{word-spacing:-1.066667pt;}
.ws27{word-spacing:-1.013333pt;}
.ws136{word-spacing:-0.981333pt;}
.ws113{word-spacing:-0.960000pt;}
.ws41{word-spacing:-0.906667pt;}
.ws138{word-spacing:-0.853333pt;}
.ws115{word-spacing:-0.800000pt;}
.ws140{word-spacing:-0.746667pt;}
.ws66{word-spacing:-0.693333pt;}
.wscd{word-spacing:-0.682667pt;}
.ws3c{word-spacing:-0.640000pt;}
.wsd6{word-spacing:-0.586667pt;}
.ws70{word-spacing:-0.533333pt;}
.ws104{word-spacing:-0.480000pt;}
.ws9b{word-spacing:-0.426667pt;}
.ws3d{word-spacing:-0.373333pt;}
.ws9e{word-spacing:-0.266667pt;}
.ws33{word-spacing:-0.213333pt;}
.ws65{word-spacing:-0.160000pt;}
.ws37{word-spacing:-0.053333pt;}
.ws2{word-spacing:0.000000pt;}
.ws117{word-spacing:0.053333pt;}
.ws2b{word-spacing:0.106667pt;}
.ws24{word-spacing:0.160000pt;}
.ws6d{word-spacing:0.170667pt;}
.ws154{word-spacing:0.213333pt;}
.ws4d{word-spacing:0.266667pt;}
.ws45{word-spacing:0.320000pt;}
.wsd0{word-spacing:0.373333pt;}
.ws7c{word-spacing:0.426667pt;}
.ws15d{word-spacing:0.480000pt;}
.wsc7{word-spacing:0.533333pt;}
.ws56{word-spacing:0.640000pt;}
.ws60{word-spacing:0.693333pt;}
.ws20{word-spacing:0.746667pt;}
.ws11e{word-spacing:0.768000pt;}
.wsbc{word-spacing:0.853333pt;}
.ws2f{word-spacing:0.906667pt;}
.ws11a{word-spacing:0.960000pt;}
.ws67{word-spacing:1.066667pt;}
.ws90{word-spacing:1.120000pt;}
.wsdc{word-spacing:1.152000pt;}
.wsa3{word-spacing:1.173333pt;}
.ws112{word-spacing:1.226667pt;}
.ws19{word-spacing:1.280000pt;}
.wsc2{word-spacing:1.333333pt;}
.wsab{word-spacing:1.386667pt;}
.ws75{word-spacing:1.440000pt;}
.wsb0{word-spacing:1.493333pt;}
.ws5c{word-spacing:1.546667pt;}
.ws28{word-spacing:1.600000pt;}
.wsad{word-spacing:1.653333pt;}
.ws7{word-spacing:1.706667pt;}
.wsd4{word-spacing:1.760000pt;}
.ws40{word-spacing:1.813333pt;}
.ws68{word-spacing:1.866667pt;}
.ws8{word-spacing:1.877333pt;}
.wsb{word-spacing:1.920000pt;}
.ws4b{word-spacing:1.973333pt;}
.ws85{word-spacing:2.026667pt;}
.ws8c{word-spacing:2.080000pt;}
.wse1{word-spacing:2.133333pt;}
.wsae{word-spacing:2.186667pt;}
.ws109{word-spacing:2.240000pt;}
.wsd1{word-spacing:2.293333pt;}
.ws63{word-spacing:2.346667pt;}
.ws53{word-spacing:2.400000pt;}
.ws87{word-spacing:2.453333pt;}
.ws80{word-spacing:2.506667pt;}
.ws5b{word-spacing:2.560000pt;}
.wsd2{word-spacing:2.613333pt;}
.wscf{word-spacing:2.666667pt;}
.ws69{word-spacing:2.720000pt;}
.wsd9{word-spacing:2.730667pt;}
.ws1c{word-spacing:2.773333pt;}
.ws6b{word-spacing:2.826667pt;}
.ws102{word-spacing:2.880000pt;}
.wsdb{word-spacing:2.901333pt;}
.ws62{word-spacing:2.933333pt;}
.wsda{word-spacing:2.944000pt;}
.wse7{word-spacing:2.986667pt;}
.ws135{word-spacing:3.040000pt;}
.wsbd{word-spacing:3.093333pt;}
.ws31{word-spacing:3.146667pt;}
.ws3b{word-spacing:3.200000pt;}
.wse5{word-spacing:3.253333pt;}
.ws47{word-spacing:3.306667pt;}
.wsaa{word-spacing:3.360000pt;}
.wsb9{word-spacing:3.413333pt;}
.ws55{word-spacing:3.466667pt;}
.ws44{word-spacing:3.520000pt;}
.wsd5{word-spacing:3.573333pt;}
.ws64{word-spacing:3.626667pt;}
.wsfd{word-spacing:3.680000pt;}
.wsa0{word-spacing:3.733333pt;}
.wscb{word-spacing:3.786667pt;}
.ws110{word-spacing:3.840000pt;}
.ws29{word-spacing:3.893333pt;}
.ws43{word-spacing:3.946667pt;}
.wsd8{word-spacing:4.053333pt;}
.ws107{word-spacing:4.096000pt;}
.ws103{word-spacing:4.106667pt;}
.wsf9{word-spacing:4.160000pt;}
.ws83{word-spacing:4.213333pt;}
.ws35{word-spacing:4.266667pt;}
.wsa7{word-spacing:4.320000pt;}
.ws4{word-spacing:4.352000pt;}
.ws8a{word-spacing:4.373333pt;}
.ws50{word-spacing:4.426667pt;}
.ws142{word-spacing:4.480000pt;}
.ws4a{word-spacing:4.533333pt;}
.ws81{word-spacing:4.586667pt;}
.wsa8{word-spacing:4.640000pt;}
.ws86{word-spacing:4.693333pt;}
.ws54{word-spacing:4.746667pt;}
.wsc0{word-spacing:4.800000pt;}
.ws38{word-spacing:4.853333pt;}
.wse0{word-spacing:4.960000pt;}
.wsc8{word-spacing:5.013333pt;}
.ws2c{word-spacing:5.066667pt;}
.ws89{word-spacing:5.120000pt;}
.ws9d{word-spacing:5.173333pt;}
.wsff{word-spacing:5.226667pt;}
.ws14c{word-spacing:5.280000pt;}
.wsd3{word-spacing:5.333333pt;}
.ws42{word-spacing:5.386667pt;}
.ws91{word-spacing:5.440000pt;}
.ws4c{word-spacing:5.493333pt;}
.ws5{word-spacing:5.546667pt;}
.ws2d{word-spacing:5.600000pt;}
.ws59{word-spacing:5.653333pt;}
.ws11b{word-spacing:5.706667pt;}
.ws15b{word-spacing:5.760000pt;}
.ws88{word-spacing:5.813333pt;}
.ws15a{word-spacing:5.866667pt;}
.ws5a{word-spacing:5.920000pt;}
.ws3{word-spacing:5.930667pt;}
.ws11d{word-spacing:5.973333pt;}
.wsa9{word-spacing:6.026667pt;}
.ws51{word-spacing:6.080000pt;}
.wsc{word-spacing:6.101333pt;}
.ws1d{word-spacing:6.133333pt;}
.ws105{word-spacing:6.186667pt;}
.ws146{word-spacing:6.240000pt;}
.ws18{word-spacing:6.293333pt;}
.wsbb{word-spacing:6.346667pt;}
.wsfa{word-spacing:6.400000pt;}
.ws13b{word-spacing:6.453333pt;}
.ws95{word-spacing:6.506667pt;}
.ws46{word-spacing:6.560000pt;}
.ws10c{word-spacing:6.613333pt;}
.ws82{word-spacing:6.666667pt;}
.ws5d{word-spacing:6.720000pt;}
.wsce{word-spacing:6.773333pt;}
.ws9{word-spacing:6.826667pt;}
.ws77{word-spacing:6.880000pt;}
.ws9f{word-spacing:6.933333pt;}
.ws30{word-spacing:6.986667pt;}
.ws13e{word-spacing:7.040000pt;}
.ws72{word-spacing:7.093333pt;}
.wsa{word-spacing:7.125333pt;}
.wsf8{word-spacing:7.146667pt;}
.ws116{word-spacing:7.253333pt;}
.ws108{word-spacing:7.306667pt;}
.wsc4{word-spacing:7.360000pt;}
.wsdf{word-spacing:7.413333pt;}
.wscc{word-spacing:7.466667pt;}
.ws3e{word-spacing:7.520000pt;}
.wsa4{word-spacing:7.573333pt;}
.wsbf{word-spacing:7.626667pt;}
.wsde{word-spacing:7.680000pt;}
.ws6e{word-spacing:7.733333pt;}
.ws26{word-spacing:7.840000pt;}
.ws10b{word-spacing:7.893333pt;}
.ws6{word-spacing:7.978667pt;}
.ws137{word-spacing:8.000000pt;}
.ws139{word-spacing:8.053333pt;}
.wsdd{word-spacing:8.106667pt;}
.wsbe{word-spacing:8.266667pt;}
.wsa5{word-spacing:8.373333pt;}
.wsfb{word-spacing:8.426667pt;}
.ws99{word-spacing:8.448000pt;}
.ws2e{word-spacing:8.480000pt;}
.wsc9{word-spacing:8.586667pt;}
.wse3{word-spacing:8.640000pt;}
.wsac{word-spacing:8.853333pt;}
.ws5f{word-spacing:8.960000pt;}
.ws48{word-spacing:9.013333pt;}
.wsca{word-spacing:9.173333pt;}
.ws32{word-spacing:9.226667pt;}
.ws11c{word-spacing:9.280000pt;}
.ws14f{word-spacing:9.333333pt;}
.ws8e{word-spacing:9.386667pt;}
.ws118{word-spacing:9.493333pt;}
.ws15{word-spacing:9.653333pt;}
.ws153{word-spacing:9.706667pt;}
.wsa2{word-spacing:9.920000pt;}
.ws49{word-spacing:9.973333pt;}
.ws7b{word-spacing:10.026667pt;}
.ws15e{word-spacing:10.133333pt;}
.ws73{word-spacing:10.240000pt;}
.ws9c{word-spacing:10.346667pt;}
.ws10{word-spacing:10.506667pt;}
.ws52{word-spacing:10.560000pt;}
.ws97{word-spacing:10.613333pt;}
.ws94{word-spacing:10.666667pt;}
.ws106{word-spacing:10.720000pt;}
.ws96{word-spacing:10.773333pt;}
.ws144{word-spacing:10.826667pt;}
.ws7a{word-spacing:10.880000pt;}
.ws13d{word-spacing:11.146667pt;}
.ws14a{word-spacing:11.360000pt;}
.ws143{word-spacing:11.413333pt;}
.wsc5{word-spacing:11.466667pt;}
.ws10f{word-spacing:11.520000pt;}
.ws145{word-spacing:11.573333pt;}
.ws10a{word-spacing:11.840000pt;}
.ws12{word-spacing:11.946667pt;}
.ws7e{word-spacing:12.000000pt;}
.wsfe{word-spacing:12.320000pt;}
.ws13c{word-spacing:12.373333pt;}
.ws150{word-spacing:12.533333pt;}
.ws158{word-spacing:12.960000pt;}
.wsa1{word-spacing:13.066667pt;}
.ws134{word-spacing:13.386667pt;}
.ws9a{word-spacing:13.482667pt;}
.wsd7{word-spacing:13.546667pt;}
.ws36{word-spacing:13.600000pt;}
.ws14d{word-spacing:13.653333pt;}
.wsa6{word-spacing:13.813333pt;}
.wsc6{word-spacing:14.133333pt;}
.ws151{word-spacing:14.240000pt;}
.ws98{word-spacing:14.346667pt;}
.ws152{word-spacing:14.400000pt;}
.ws13f{word-spacing:14.720000pt;}
.ws8b{word-spacing:14.933333pt;}
.ws119{word-spacing:14.986667pt;}
.ws78{word-spacing:15.253333pt;}
.ws61{word-spacing:15.306667pt;}
.ws7d{word-spacing:15.360000pt;}
.ws57{word-spacing:15.466667pt;}
.ws148{word-spacing:15.680000pt;}
.ws101{word-spacing:15.840000pt;}
.ws14e{word-spacing:15.946667pt;}
.ws6f{word-spacing:16.000000pt;}
.ws147{word-spacing:16.053333pt;}
.ws6c{word-spacing:16.106667pt;}
.ws11{word-spacing:16.480000pt;}
.ws13a{word-spacing:16.800000pt;}
.ws79{word-spacing:16.906667pt;}
.ws149{word-spacing:17.386667pt;}
.ws3f{word-spacing:17.653333pt;}
.ws15c{word-spacing:20.053333pt;}
.wsba{word-spacing:21.173333pt;}
.wsb5{word-spacing:39.959467pt;}
.ws127{word-spacing:53.318400pt;}
.wsb4{word-spacing:69.284800pt;}
.wsb3{word-spacing:76.046400pt;}
.ws12a{word-spacing:76.533333pt;}
.ws132{word-spacing:84.164267pt;}
.ws12f{word-spacing:87.581333pt;}
.ws125{word-spacing:93.081067pt;}
.ws12b{word-spacing:97.268800pt;}
.wsb7{word-spacing:97.957333pt;}
.ws11f{word-spacing:98.241067pt;}
.wsb8{word-spacing:101.577600pt;}
.ws12c{word-spacing:103.286400pt;}
.ws133{word-spacing:125.395733pt;}
.ws129{word-spacing:127.972267pt;}
.wse8{word-spacing:130.758933pt;}
.ws122{word-spacing:131.800000pt;}
.ws126{word-spacing:132.936000pt;}
.wsef{word-spacing:137.017067pt;}
.ws131{word-spacing:137.278933pt;}
.ws130{word-spacing:139.647467pt;}
.wsf2{word-spacing:143.202133pt;}
.ws121{word-spacing:144.772267pt;}
.wsec{word-spacing:150.011733pt;}
.wsb6{word-spacing:151.358933pt;}
.ws120{word-spacing:159.176000pt;}
.ws12e{word-spacing:161.352000pt;}
.wsed{word-spacing:163.049600pt;}
.ws128{word-spacing:166.726933pt;}
.ws12d{word-spacing:175.153067pt;}
.ws124{word-spacing:182.729067pt;}
.ws123{word-spacing:184.180267pt;}
.wse9{word-spacing:184.405867pt;}
.wsee{word-spacing:184.819733pt;}
.wsf5{word-spacing:186.078933pt;}
.wseb{word-spacing:191.508800pt;}
.wsf4{word-spacing:194.246400pt;}
.wsf6{word-spacing:199.106133pt;}
.wsf7{word-spacing:219.652267pt;}
.wsf3{word-spacing:242.942400pt;}
.wsea{word-spacing:251.430933pt;}
.wsf0{word-spacing:254.285333pt;}
._b{margin-left:-1884.363200pt;}
._46{margin-left:-5.856000pt;}
._8{margin-left:-4.693333pt;}
._7{margin-left:-3.728000pt;}
._4{margin-left:-2.597333pt;}
._3{margin-left:-1.637333pt;}
._1{width:1.459200pt;}
._2{width:2.572800pt;}
._a{width:4.083200pt;}
._0{width:5.730133pt;}
._9{width:6.795733pt;}
._23{width:8.105600pt;}
._5{width:9.195733pt;}
._e{width:10.256000pt;}
._45{width:11.434667pt;}
._4f{width:12.410667pt;}
._50{width:14.267733pt;}
._c{width:15.179733pt;}
._d{width:16.217600pt;}
._17{width:54.352533pt;}
._18{width:56.174400pt;}
._19{width:57.215467pt;}
._2c{width:71.188800pt;}
._4a{width:73.054400pt;}
._16{width:74.140267pt;}
._15{width:77.216533pt;}
._2d{width:78.818667pt;}
._28{width:81.289067pt;}
._2a{width:84.152000pt;}
._3a{width:86.661333pt;}
._2e{width:87.764800pt;}
._f{width:90.597333pt;}
._39{width:100.570133pt;}
._1b{width:104.021867pt;}
._20{width:104.966400pt;}
._22{width:109.278400pt;}
._1a{width:111.174400pt;}
._27{width:114.212800pt;}
._1e{width:116.251200pt;}
._41{width:119.273600pt;}
._30{width:122.370133pt;}
._3d{width:125.133867pt;}
._40{width:126.643200pt;}
._4d{width:129.238400pt;}
._21{width:131.277867pt;}
._14{width:132.418667pt;}
._38{width:134.742400pt;}
._42{width:136.769600pt;}
._32{width:144.511467pt;}
._1c{width:146.059200pt;}
._35{width:147.744000pt;}
._33{width:150.018133pt;}
._2f{width:150.949333pt;}
._1d{width:151.959467pt;}
._34{width:152.881067pt;}
._4e{width:154.299733pt;}
._48{width:157.754667pt;}
._3b{width:159.225600pt;}
._3c{width:160.573333pt;}
._12{width:165.530667pt;}
._3f{width:177.196267pt;}
._13{width:178.682667pt;}
._29{width:180.849600pt;}
._1f{width:182.825067pt;}
._3e{width:184.909867pt;}
._26{width:187.133333pt;}
._47{width:188.502400pt;}
._4b{width:190.892267pt;}
._2b{width:192.530133pt;}
._4c{width:200.499733pt;}
._43{width:202.037333pt;}
._36{width:203.940267pt;}
._49{width:207.690133pt;}
._11{width:215.177067pt;}
._10{width:225.171200pt;}
._31{width:233.017600pt;}
._37{width:255.453867pt;}
._24{width:280.917867pt;}
._25{width:283.058133pt;}
._44{width:295.532267pt;}
._6{width:822.978667pt;}
.fs6{font-size:24.874667pt;}
.fs5{font-size:31.093333pt;}
.fs7{font-size:33.600000pt;}
.fs4{font-size:37.333333pt;}
.fs1{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:47.476267pt;}
.y1{bottom:51.747867pt;}
.y24{bottom:57.417067pt;}
.y2{bottom:60.276267pt;}
.y9a{bottom:94.488267pt;}
.ycf{bottom:94.488400pt;}
.y176{bottom:95.717467pt;}
.y122{bottom:96.263867pt;}
.y7f{bottom:98.904400pt;}
.yc4{bottom:101.684667pt;}
.y14a{bottom:104.818000pt;}
.y104{bottom:104.864800pt;}
.y99{bottom:107.288267pt;}
.yce{bottom:107.288400pt;}
.y50{bottom:109.781200pt;}
.y175{bottom:111.717467pt;}
.y121{bottom:112.263867pt;}
.y7e{bottom:114.904400pt;}
.yc3{bottom:117.684667pt;}
.y98{bottom:120.088267pt;}
.ycd{bottom:120.088533pt;}
.y103{bottom:120.864800pt;}
.y4f{bottom:125.781200pt;}
.y174{bottom:127.717467pt;}
.y120{bottom:128.263867pt;}
.y7d{bottom:130.904400pt;}
.y148{bottom:131.884667pt;}
.y9d{bottom:132.888267pt;}
.yd8{bottom:132.888533pt;}
.ycc{bottom:132.888667pt;}
.yc2{bottom:133.684667pt;}
.y102{bottom:136.864800pt;}
.y23{bottom:138.197200pt;}
.y4e{bottom:141.781333pt;}
.y147{bottom:143.618000pt;}
.y173{bottom:143.717467pt;}
.y9c{bottom:145.688267pt;}
.yd7{bottom:145.688533pt;}
.ycb{bottom:145.688800pt;}
.y7c{bottom:146.904400pt;}
.yc1{bottom:149.684667pt;}
.y22{bottom:149.930533pt;}
.y101{bottom:152.864800pt;}
.y149{bottom:155.351333pt;}
.y146{bottom:155.372133pt;}
.y4d{bottom:157.781333pt;}
.y9b{bottom:158.488267pt;}
.yd6{bottom:158.488667pt;}
.yca{bottom:158.488933pt;}
.y172{bottom:159.717467pt;}
.y7b{bottom:162.904400pt;}
.y11f{bottom:163.463867pt;}
.yc0{bottom:165.684667pt;}
.y100{bottom:168.864800pt;}
.yd5{bottom:171.288667pt;}
.yc9{bottom:171.288933pt;}
.y21{bottom:173.397200pt;}
.y144{bottom:173.773200pt;}
.y4c{bottom:173.781333pt;}
.y171{bottom:175.717467pt;}
.y7a{bottom:178.904400pt;}
.ybf{bottom:181.684667pt;}
.yd4{bottom:184.088800pt;}
.yc8{bottom:184.089067pt;}
.y20{bottom:185.130533pt;}
.y143{bottom:185.506533pt;}
.y4b{bottom:189.781333pt;}
.y170{bottom:191.717467pt;}
.y79{bottom:194.904400pt;}
.y1f{bottom:196.863867pt;}
.yd3{bottom:196.888800pt;}
.yc7{bottom:196.889200pt;}
.y142{bottom:197.239867pt;}
.ybe{bottom:197.684667pt;}
.y97{bottom:198.104400pt;}
.yff{bottom:200.998133pt;}
.y4a{bottom:205.781333pt;}
.y16f{bottom:207.717467pt;}
.y1e{bottom:208.597200pt;}
.y145{bottom:208.973200pt;}
.y141{bottom:208.994000pt;}
.yd2{bottom:209.688933pt;}
.yc6{bottom:209.689200pt;}
.y78{bottom:210.904400pt;}
.ybd{bottom:213.684667pt;}
.y96{bottom:214.104400pt;}
.y11e{bottom:217.863867pt;}
.y1d{bottom:220.330533pt;}
.y49{bottom:221.781333pt;}
.yd1{bottom:222.488933pt;}
.yc5{bottom:222.489333pt;}
.y16e{bottom:223.717467pt;}
.y77{bottom:226.904400pt;}
.y13f{bottom:227.395067pt;}
.yfe{bottom:228.064800pt;}
.ybc{bottom:229.684667pt;}
.y95{bottom:230.104400pt;}
.y1c{bottom:232.063867pt;}
.yd0{bottom:235.289067pt;}
.y48{bottom:237.781333pt;}
.y13e{bottom:239.128400pt;}
.y16d{bottom:239.717467pt;}
.yfd{bottom:239.798133pt;}
.y76{bottom:242.904400pt;}
.y1b{bottom:243.797200pt;}
.y11d{bottom:244.930533pt;}
.ybb{bottom:245.684667pt;}
.y94{bottom:246.104400pt;}
.y13d{bottom:250.861733pt;}
.y47{bottom:253.781333pt;}
.y16c{bottom:255.717467pt;}
.y11c{bottom:256.663867pt;}
.yfc{bottom:258.220000pt;}
.y75{bottom:258.904400pt;}
.yba{bottom:261.684667pt;}
.y93{bottom:262.104400pt;}
.y13c{bottom:262.595067pt;}
.y1a{bottom:267.263867pt;}
.y11b{bottom:268.397200pt;}
.y46{bottom:269.781333pt;}
.yfb{bottom:269.953333pt;}
.y16b{bottom:271.717467pt;}
.y13b{bottom:274.328400pt;}
.y74{bottom:274.904400pt;}
.yb9{bottom:277.684667pt;}
.y92{bottom:278.104400pt;}
.y45{bottom:285.781333pt;}
.y140{bottom:286.061733pt;}
.y13a{bottom:286.082533pt;}
.y11a{bottom:286.819067pt;}
.y16a{bottom:287.717467pt;}
.yfa{bottom:288.375200pt;}
.y73{bottom:290.904400pt;}
.yb8{bottom:293.684667pt;}
.y91{bottom:294.104400pt;}
.y119{bottom:298.573200pt;}
.yf9{bottom:300.108533pt;}
.y44{bottom:301.781333pt;}
.y169{bottom:303.717467pt;}
.y138{bottom:304.483600pt;}
.y72{bottom:306.904400pt;}
.yb7{bottom:309.684667pt;}
.y90{bottom:310.104400pt;}
.y19{bottom:314.197200pt;}
.y137{bottom:316.216933pt;}
.y118{bottom:316.974267pt;}
.y43{bottom:317.781333pt;}
.yf7{bottom:318.530400pt;}
.y168{bottom:319.717467pt;}
.y71{bottom:322.904400pt;}
.y8f{bottom:326.104400pt;}
.y136{bottom:327.950267pt;}
.y117{bottom:328.728400pt;}
.yf6{bottom:330.263733pt;}
.y42{bottom:333.781333pt;}
.y167{bottom:335.717467pt;}
.y18{bottom:337.663867pt;}
.y70{bottom:338.904400pt;}
.y135{bottom:339.683600pt;}
.yb6{bottom:341.684667pt;}
.yf8{bottom:341.997067pt;}
.yf5{bottom:342.018000pt;}
.y8e{bottom:342.104400pt;}
.y116{bottom:347.129467pt;}
.y17{bottom:349.397200pt;}
.y41{bottom:349.781333pt;}
.y134{bottom:351.416933pt;}
.y166{bottom:351.717467pt;}
.y6f{bottom:354.904400pt;}
.yb5{bottom:357.684667pt;}
.y8d{bottom:358.104400pt;}
.y115{bottom:358.883600pt;}
.yf4{bottom:360.419067pt;}
.y16{bottom:361.130533pt;}
.y139{bottom:363.150267pt;}
.y133{bottom:363.171067pt;}
.y40{bottom:365.781333pt;}
.y165{bottom:367.717467pt;}
.y6e{bottom:370.904400pt;}
.yf3{bottom:372.173200pt;}
.y15{bottom:372.863867pt;}
.y8c{bottom:374.104400pt;}
.y114{bottom:377.284667pt;}
.y113{bottom:377.305467pt;}
.y132{bottom:381.572133pt;}
.y3f{bottom:381.781333pt;}
.y164{bottom:383.717467pt;}
.y14{bottom:384.597200pt;}
.y6d{bottom:386.904400pt;}
.y112{bottom:389.038800pt;}
.y8b{bottom:390.104400pt;}
.yf2{bottom:390.574267pt;}
.y131{bottom:393.305467pt;}
.y13{bottom:396.330533pt;}
.y3e{bottom:397.781333pt;}
.y163{bottom:399.717467pt;}
.yf1{bottom:402.328400pt;}
.y6c{bottom:402.904400pt;}
.y8a{bottom:406.104400pt;}
.y111{bottom:407.439867pt;}
.y12{bottom:408.063867pt;}
.y130{bottom:411.727333pt;}
.yb4{bottom:412.084667pt;}
.y3d{bottom:413.781333pt;}
.y162{bottom:415.717467pt;}
.y6b{bottom:418.904400pt;}
.y110{bottom:419.194000pt;}
.yf0{bottom:420.729467pt;}
.y89{bottom:422.104400pt;}
.y12f{bottom:423.460667pt;}
.y3c{bottom:429.781333pt;}
.y11{bottom:431.530533pt;}
.y161{bottom:431.717467pt;}
.yef{bottom:432.462667pt;}
.yec{bottom:432.483600pt;}
.y6a{bottom:434.904400pt;}
.y12e{bottom:435.194000pt;}
.y10f{bottom:437.595067pt;}
.y88{bottom:438.104400pt;}
.yb3{bottom:439.151333pt;}
.yee{bottom:444.196133pt;}
.yeb{bottom:444.216933pt;}
.y3b{bottom:445.781333pt;}
.y160{bottom:447.717467pt;}
.y10e{bottom:449.349200pt;}
.yb2{bottom:450.884667pt;}
.y69{bottom:450.904400pt;}
.y12c{bottom:453.615867pt;}
.y87{bottom:454.104400pt;}
.yed{bottom:455.929467pt;}
.yea{bottom:455.950267pt;}
.y3a{bottom:461.781333pt;}
.yb1{bottom:462.618000pt;}
.y15f{bottom:463.717467pt;}
.y12d{bottom:465.328400pt;}
.y12b{bottom:465.349200pt;}
.y68{bottom:466.904400pt;}
.y10d{bottom:467.750267pt;}
.y86{bottom:470.104400pt;}
.yb0{bottom:474.351333pt;}
.y10{bottom:476.863867pt;}
.y12a{bottom:477.061733pt;}
.y39{bottom:477.781333pt;}
.y10c{bottom:479.504400pt;}
.y15e{bottom:479.717467pt;}
.y67{bottom:482.904400pt;}
.ye8{bottom:486.084667pt;}
.y85{bottom:486.104400pt;}
.ye7{bottom:486.105467pt;}
.yaf{bottom:492.773200pt;}
.y38{bottom:493.781333pt;}
.y129{bottom:495.504400pt;}
.y15d{bottom:495.717467pt;}
.ye9{bottom:497.818000pt;}
.ye6{bottom:497.838800pt;}
.y10b{bottom:497.905467pt;}
.y66{bottom:498.904400pt;}
.y84{bottom:502.104400pt;}
.yae{bottom:504.506533pt;}
.y10a{bottom:509.659733pt;}
.y37{bottom:509.781333pt;}
.y15c{bottom:511.717467pt;}
.y128{bottom:513.905467pt;}
.y65{bottom:514.904400pt;}
.yad{bottom:516.239867pt;}
.y83{bottom:518.104400pt;}
.y127{bottom:525.638800pt;}
.y36{bottom:525.781333pt;}
.yf{bottom:525.863867pt;}
.y15b{bottom:527.717467pt;}
.yac{bottom:527.973200pt;}
.ye4{bottom:527.994000pt;}
.y109{bottom:528.060667pt;}
.y108{bottom:528.081600pt;}
.y64{bottom:530.904400pt;}
.y82{bottom:534.104400pt;}
.ye{bottom:539.063867pt;}
.ye5{bottom:539.706533pt;}
.ye3{bottom:539.727333pt;}
.y107{bottom:539.814800pt;}
.y35{bottom:541.781333pt;}
.y15a{bottom:543.717467pt;}
.y126{bottom:544.060667pt;}
.yab{bottom:546.395067pt;}
.yaa{bottom:546.416000pt;}
.y63{bottom:546.904400pt;}
.y81{bottom:550.104400pt;}
.yd{bottom:552.263867pt;}
.y125{bottom:555.794000pt;}
.y34{bottom:557.781333pt;}
.ye1{bottom:558.128400pt;}
.ya9{bottom:558.149200pt;}
.y106{bottom:558.215867pt;}
.y159{bottom:559.717467pt;}
.y62{bottom:562.904400pt;}
.yc{bottom:565.463867pt;}
.ye0{bottom:569.861733pt;}
.ydf{bottom:569.882533pt;}
.y33{bottom:573.781333pt;}
.y124{bottom:574.215867pt;}
.y158{bottom:575.717467pt;}
.ya8{bottom:576.550267pt;}
.y61{bottom:578.904400pt;}
.ye2{bottom:581.595067pt;}
.yde{bottom:581.615867pt;}
.y80{bottom:585.304400pt;}
.ya7{bottom:588.283600pt;}
.y32{bottom:589.781333pt;}
.y157{bottom:591.717467pt;}
.y60{bottom:594.904400pt;}
.y105{bottom:596.504533pt;}
.ya6{bottom:600.037733pt;}
.y31{bottom:605.781333pt;}
.y156{bottom:607.717467pt;}
.y5f{bottom:610.904400pt;}
.y123{bottom:612.504533pt;}
.yb{bottom:617.063867pt;}
.ya5{bottom:618.438800pt;}
.ydd{bottom:618.459600pt;}
.y30{bottom:621.781333pt;}
.y155{bottom:623.717467pt;}
.y5e{bottom:626.904400pt;}
.ya4{bottom:630.172133pt;}
.ya{bottom:636.263867pt;}
.ydc{bottom:636.860667pt;}
.y2f{bottom:637.781333pt;}
.y154{bottom:639.717467pt;}
.ya3{bottom:641.905467pt;}
.y5d{bottom:642.904400pt;}
.ydb{bottom:648.614800pt;}
.y2e{bottom:653.781333pt;}
.y153{bottom:655.717467pt;}
.y5c{bottom:658.904400pt;}
.ya2{bottom:660.327333pt;}
.yda{bottom:667.015867pt;}
.y2d{bottom:669.781333pt;}
.y9{bottom:669.997200pt;}
.y152{bottom:671.717467pt;}
.ya1{bottom:672.060667pt;}
.y5b{bottom:674.904400pt;}
.ya0{bottom:683.794000pt;}
.y2c{bottom:685.781200pt;}
.y8{bottom:686.863867pt;}
.y151{bottom:687.717467pt;}
.y5a{bottom:690.904400pt;}
.y2b{bottom:701.781200pt;}
.y9f{bottom:702.215867pt;}
.y150{bottom:703.717467pt;}
.yd9{bottom:705.304400pt;}
.y59{bottom:706.904400pt;}
.y2a{bottom:717.781200pt;}
.y14f{bottom:719.717467pt;}
.y58{bottom:722.904400pt;}
.y29{bottom:733.781200pt;}
.y14e{bottom:735.717467pt;}
.y57{bottom:738.904400pt;}
.y9e{bottom:740.504533pt;}
.y28{bottom:749.781200pt;}
.y14d{bottom:751.717467pt;}
.y56{bottom:754.904400pt;}
.y7{bottom:754.930533pt;}
.y27{bottom:765.781200pt;}
.y14c{bottom:767.717467pt;}
.y55{bottom:770.904400pt;}
.y6{bottom:770.930533pt;}
.y54{bottom:786.904400pt;}
.y5{bottom:786.930533pt;}
.y26{bottom:800.981333pt;}
.y53{bottom:802.904400pt;}
.y14b{bottom:802.917467pt;}
.y4{bottom:802.930533pt;}
.y52{bottom:837.952533pt;}
.y25{bottom:838.285867pt;}
.y51{bottom:853.952533pt;}
.h8{height:31.000000pt;}
.h9{height:31.062500pt;}
.h11{height:36.270833pt;}
.h14{height:38.520433pt;}
.h13{height:38.520967pt;}
.he{height:38.541667pt;}
.h3{height:38.604167pt;}
.h10{height:38.624867pt;}
.ha{height:38.750000pt;}
.hc{height:38.828125pt;}
.h5{height:42.625000pt;}
.h2{height:43.429688pt;}
.h16{height:45.338542pt;}
.h4{height:48.177083pt;}
.hb{height:48.255208pt;}
.h6{height:49.872396pt;}
.h7{height:53.080729pt;}
.hf{height:85.453767pt;}
.h12{height:85.454300pt;}
.hd{height:85.537500pt;}
.h15{height:85.558733pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x13{left:71.811067pt;}
.x19{left:74.730933pt;}
.x12{left:76.942933pt;}
.x2a{left:78.271733pt;}
.x3c{left:83.092933pt;}
.x1e{left:85.446267pt;}
.x1a{left:86.894133pt;}
.x1b{left:89.680667pt;}
.x2{left:94.488133pt;}
.x35{left:95.460133pt;}
.x34{left:96.876800pt;}
.x14{left:98.267733pt;}
.x37{left:100.134667pt;}
.x5a{left:102.317067pt;}
.x32{left:105.483600pt;}
.x33{left:107.249200pt;}
.x5d{left:109.491600pt;}
.x55{left:110.939467pt;}
.x56{left:113.725867pt;}
.x42{left:114.962667pt;}
.x47{left:116.022667pt;}
.x9{left:117.761867pt;}
.x45{left:118.686800pt;}
.x17{left:120.944933pt;}
.x4c{left:124.671067pt;}
.x50{left:130.882000pt;}
.x44{left:132.111200pt;}
.x51{left:136.017467pt;}
.x30{left:137.500400pt;}
.x4e{left:140.074800pt;}
.x4a{left:141.842933pt;}
.x7{left:150.099467pt;}
.x52{left:152.322133pt;}
.x26{left:154.355867pt;}
.x27{left:160.874133pt;}
.x23{left:163.392267pt;}
.xf{left:170.535867pt;}
.x3d{left:171.430400pt;}
.x31{left:173.381067pt;}
.x6d{left:176.652000pt;}
.x5b{left:181.097333pt;}
.x6f{left:183.649333pt;}
.x59{left:185.529600pt;}
.x43{left:187.193867pt;}
.x65{left:188.998400pt;}
.x60{left:194.420267pt;}
.xc{left:214.640400pt;}
.x8{left:219.963067pt;}
.xd{left:228.439200pt;}
.x38{left:230.738800pt;}
.xa{left:231.643333pt;}
.x3a{left:242.915867pt;}
.x3b{left:247.999200pt;}
.x11{left:250.814667pt;}
.x40{left:251.874133pt;}
.x5c{left:258.768933pt;}
.xb{left:260.181733pt;}
.x39{left:261.618933pt;}
.x3{left:269.380533pt;}
.xe{left:271.707867pt;}
.x1f{left:275.220000pt;}
.x1c{left:276.472533pt;}
.x41{left:278.879333pt;}
.x2b{left:280.139200pt;}
.x24{left:283.230400pt;}
.x28{left:286.285067pt;}
.x20{left:290.620933pt;}
.x48{left:294.103067pt;}
.x2f{left:299.352800pt;}
.x10{left:300.689733pt;}
.x62{left:304.104267pt;}
.x63{left:305.252667pt;}
.x61{left:306.815200pt;}
.x4f{left:308.584800pt;}
.x66{left:311.359467pt;}
.x49{left:312.574400pt;}
.x67{left:314.026133pt;}
.x2c{left:315.792933pt;}
.x4d{left:316.728000pt;}
.x4b{left:323.665467pt;}
.x53{left:326.748800pt;}
.x6e{left:334.453200pt;}
.x5f{left:336.007867pt;}
.x57{left:338.263067pt;}
.x6{left:361.607067pt;}
.x36{left:386.443467pt;}
.x21{left:397.011867pt;}
.x6b{left:412.301067pt;}
.x64{left:415.764133pt;}
.x6a{left:417.045333pt;}
.x68{left:419.230267pt;}
.x54{left:420.676267pt;}
.x69{left:429.519333pt;}
.x3e{left:448.359333pt;}
.x16{left:452.208667pt;}
.x4{left:454.055067pt;}
.x29{left:458.297733pt;}
.x3f{left:466.197867pt;}
.x25{left:468.813333pt;}
.x1d{left:469.935733pt;}
.x5{left:471.437867pt;}
.x22{left:472.409733pt;}
.x2d{left:473.425333pt;}
.x2e{left:479.571200pt;}
.x58{left:492.833200pt;}
.x5e{left:494.085867pt;}
.x6c{left:496.786400pt;}
.x46{left:500.192533pt;}
.x18{left:545.604400pt;}
.x1{left:547.576800pt;}
.x15{left:567.708667pt;}
}




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