
    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_9685a4a9a0612773ecbea8ca.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.914000;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_1922b6e4d6cfa4ea37d27380.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.716000;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_ebf9ee0557bebd09bff7158c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.431000;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_37743b33d14fd00b77e8a4eb.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.011000;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_99169ddf7fa1e1f011b62b35.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.909000;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_1152fad97a25092ffc9a74fb.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.686000;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_041fe737231372f19ed49237.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.431000;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_9b91bcaaf547967fcb4775bb.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.846000;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_7fb0052711be008f37df0505.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.010000;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_9b357c1bde60be5ed5466150.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.989000;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_479e35ab3c506441dd876779.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.487000;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_8e68a9f0f9826288777a6901.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.437000;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_f88280812e3dcc926b3f7703.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.437000;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_e1f3efa5866d11da82b641ec.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_6e9d6b9f925ad0ff44bb193d.woff2')format("woff");}.fff{font-family:fff;line-height:0.665000;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:ff10;src:url('chunks/assets/font_fe069de5d6686a7d2e66bbca.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.000000;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:ff11;src:url('chunks/assets/font_a87ca61f7cbd0ad9df6890fd.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.052000;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:ff12;src:url('chunks/assets/font_8196b4b8fbff23ec59596fb2.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.696000px;}
.v4{vertical-align:-1.410000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:15.462000px;}
.v3{vertical-align:28.392000px;}
.v1{vertical-align:31.236000px;}
.ls4{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.000520px;}
.lsa{letter-spacing:0.000532px;}
.ls2{letter-spacing:0.001114px;}
.ls9{letter-spacing:0.001800px;}
.lsc{letter-spacing:0.002158px;}
.ls3{letter-spacing:2.989409px;}
.lsb{letter-spacing:3.972993px;}
.ls1{letter-spacing:19.919518px;}
.ls8{letter-spacing:20.505525px;}
.ls7{letter-spacing:21.765525px;}
.ls0{letter-spacing:22.497525px;}
.ls6{letter-spacing:29.601525px;}
.ls5{letter-spacing:36.873525px;}
.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;}
}
.ws52{word-spacing:-25.823100px;}
.ws46{word-spacing:-17.932800px;}
.ws2d{word-spacing:-8.966400px;}
.ws1c{word-spacing:-6.197544px;}
.wsab{word-spacing:-4.232141px;}
.wsce{word-spacing:-4.088678px;}
.ws62{word-spacing:-3.945216px;}
.ws88{word-spacing:-3.730022px;}
.ws74{word-spacing:-3.658291px;}
.ws3{word-spacing:-3.514829px;}
.ws6{word-spacing:-3.156173px;}
.wsd3{word-spacing:-2.940979px;}
.wscd{word-spacing:-2.869248px;}
.wsd1{word-spacing:-2.797517px;}
.wsd0{word-spacing:-2.727792px;}
.ws80{word-spacing:-2.725786px;}
.ws9c{word-spacing:-2.654054px;}
.ws66{word-spacing:-2.510592px;}
.ws56{word-spacing:-2.223667px;}
.ws8{word-spacing:-2.151936px;}
.wsa2{word-spacing:-1.936742px;}
.ws8b{word-spacing:-1.793280px;}
.wsc6{word-spacing:-1.721549px;}
.ws54{word-spacing:-1.649818px;}
.ws44{word-spacing:-1.075968px;}
.ws61{word-spacing:-1.004237px;}
.wsbd{word-spacing:-0.992774px;}
.wsbe{word-spacing:-0.932506px;}
.ws3d{word-spacing:-0.812950px;}
.wsa0{word-spacing:-0.430387px;}
.ws5{word-spacing:-0.071731px;}
.ws2b{word-spacing:-0.047821px;}
.ws2c{word-spacing:-0.035866px;}
.ws96{word-spacing:-0.016042px;}
.wsb6{word-spacing:-0.015312px;}
.ws8d{word-spacing:-0.013478px;}
.ws9f{word-spacing:-0.012442px;}
.ws60{word-spacing:-0.011568px;}
.wsb9{word-spacing:-0.011184px;}
.ws83{word-spacing:-0.010973px;}
.ws94{word-spacing:-0.010858px;}
.wsb4{word-spacing:-0.010685px;}
.wsba{word-spacing:-0.010042px;}
.ws5b{word-spacing:-0.009878px;}
.ws71{word-spacing:-0.008678px;}
.ws65{word-spacing:-0.008294px;}
.wsc9{word-spacing:-0.007642px;}
.wsd4{word-spacing:-0.007363px;}
.wscc{word-spacing:-0.007354px;}
.ws5d{word-spacing:-0.007142px;}
.wsac{word-spacing:-0.006019px;}
.ws9a{word-spacing:-0.005549px;}
.ws69{word-spacing:-0.004042px;}
.wsa3{word-spacing:-0.003984px;}
.ws7f{word-spacing:-0.003658px;}
.ws6d{word-spacing:-0.003331px;}
.ws1b{word-spacing:-0.003110px;}
.ws92{word-spacing:-0.002784px;}
.ws68{word-spacing:-0.002582px;}
.ws89{word-spacing:-0.001805px;}
.wsaf{word-spacing:-0.001354px;}
.ws95{word-spacing:-0.000787px;}
.ws5f{word-spacing:-0.000403px;}
.ws2{word-spacing:0.000000px;}
.ws7c{word-spacing:0.000710px;}
.ws47{word-spacing:0.013152px;}
.ws1d{word-spacing:0.430385px;}
.ws8e{word-spacing:0.645581px;}
.ws59{word-spacing:0.860774px;}
.wsc4{word-spacing:0.932506px;}
.ws1a{word-spacing:1.219430px;}
.wsc0{word-spacing:1.291162px;}
.ws57{word-spacing:1.362893px;}
.wsb1{word-spacing:1.506355px;}
.ws9d{word-spacing:1.578086px;}
.ws99{word-spacing:1.649818px;}
.wsc2{word-spacing:1.936742px;}
.wsad{word-spacing:2.151936px;}
.ws58{word-spacing:2.223667px;}
.ws5e{word-spacing:2.295398px;}
.ws82{word-spacing:2.367130px;}
.ws81{word-spacing:2.438861px;}
.wsc8{word-spacing:2.654054px;}
.wsae{word-spacing:2.797517px;}
.ws75{word-spacing:2.869248px;}
.ws67{word-spacing:3.156173px;}
.ws8c{word-spacing:3.299635px;}
.wsb7{word-spacing:3.443098px;}
.ws91{word-spacing:3.586560px;}
.wsc3{word-spacing:3.730022px;}
.wsd2{word-spacing:3.801754px;}
.ws55{word-spacing:4.088678px;}
.ws43{word-spacing:4.303872px;}
.wsb8{word-spacing:4.375603px;}
.ws10{word-spacing:4.590797px;}
.ws93{word-spacing:4.805990px;}
.ws72{word-spacing:4.949453px;}
.wsbc{word-spacing:5.236378px;}
.ws38{word-spacing:5.258360px;}
.ws22{word-spacing:5.259466px;}
.ws35{word-spacing:5.260868px;}
.ws36{word-spacing:5.263541px;}
.wsa7{word-spacing:5.308109px;}
.ws5a{word-spacing:5.451571px;}
.ws90{word-spacing:5.595034px;}
.ws64{word-spacing:5.953690px;}
.ws9e{word-spacing:6.168883px;}
.wsc5{word-spacing:6.312346px;}
.ws84{word-spacing:6.384077px;}
.wscf{word-spacing:6.599270px;}
.wsb3{word-spacing:6.742733px;}
.ws5c{word-spacing:6.814464px;}
.ws98{word-spacing:6.886195px;}
.ws6f{word-spacing:6.957926px;}
.ws70{word-spacing:7.173120px;}
.ws45{word-spacing:7.316582px;}
.ws11{word-spacing:7.746970px;}
.ws78{word-spacing:7.818701px;}
.ws4b{word-spacing:7.885382px;}
.ws4c{word-spacing:7.887178px;}
.ws7b{word-spacing:8.033894px;}
.wsbb{word-spacing:8.177357px;}
.wsd5{word-spacing:8.249088px;}
.wsa4{word-spacing:8.320819px;}
.wsbf{word-spacing:8.464282px;}
.ws87{word-spacing:8.607744px;}
.ws6e{word-spacing:8.679475px;}
.wsb5{word-spacing:8.751206px;}
.wsa6{word-spacing:8.818925px;}
.wsa5{word-spacing:8.822938px;}
.wsb0{word-spacing:9.038131px;}
.ws16{word-spacing:9.109862px;}
.ws7{word-spacing:9.396787px;}
.ws8a{word-spacing:9.468518px;}
.wsb2{word-spacing:9.611981px;}
.ws7a{word-spacing:9.683712px;}
.ws79{word-spacing:9.755443px;}
.ws86{word-spacing:10.114099px;}
.ws7d{word-spacing:10.329293px;}
.ws97{word-spacing:10.401024px;}
.ws77{word-spacing:10.472755px;}
.ws76{word-spacing:10.759680px;}
.ws8f{word-spacing:10.831411px;}
.ws73{word-spacing:11.046605px;}
.ws6b{word-spacing:11.261798px;}
.wsca{word-spacing:11.333530px;}
.wsa9{word-spacing:11.476992px;}
.wsa8{word-spacing:11.519213px;}
.wsaa{word-spacing:11.548723px;}
.wsa1{word-spacing:11.620454px;}
.wsc1{word-spacing:11.835648px;}
.ws53{word-spacing:12.337766px;}
.wscb{word-spacing:12.624691px;}
.ws6a{word-spacing:13.198541px;}
.ws85{word-spacing:14.633165px;}
.ws51{word-spacing:14.775538px;}
.ws6c{word-spacing:14.776627px;}
.ws50{word-spacing:14.777649px;}
.ws63{word-spacing:15.063552px;}
.ws7e{word-spacing:15.422208px;}
.ws9b{word-spacing:16.713370px;}
.wsb{word-spacing:17.861069px;}
.wsc7{word-spacing:17.932800px;}
.ws4{word-spacing:19.836918px;}
.wsa{word-spacing:25.464406px;}
.ws12{word-spacing:25.632678px;}
.ws1{word-spacing:27.975090px;}
.ws0{word-spacing:38.680200px;}
.ws9{word-spacing:45.608783px;}
.ws48{word-spacing:53.798400px;}
.ws4d{word-spacing:71.607332px;}
.ws4a{word-spacing:76.680653px;}
.ws18{word-spacing:87.617400px;}
.ws17{word-spacing:88.463400px;}
.ws19{word-spacing:89.055600px;}
.ws14{word-spacing:89.422200px;}
.ws13{word-spacing:90.211800px;}
.ws15{word-spacing:90.747600px;}
.wse{word-spacing:101.886600px;}
.wsd{word-spacing:102.817200px;}
.wsf{word-spacing:103.465800px;}
.ws3b{word-spacing:106.778791px;}
.ws30{word-spacing:128.157749px;}
.ws40{word-spacing:138.627311px;}
.ws3e{word-spacing:146.230786px;}
.ws20{word-spacing:152.257267px;}
.ws32{word-spacing:153.359206px;}
.ws29{word-spacing:154.124335px;}
.ws24{word-spacing:154.219976px;}
.ws39{word-spacing:155.847335px;}
.ws25{word-spacing:155.893697px;}
.ws26{word-spacing:156.371903px;}
.ws27{word-spacing:158.284727px;}
.ws2a{word-spacing:159.049857px;}
.ws34{word-spacing:161.536528px;}
.ws33{word-spacing:163.544993px;}
.ws31{word-spacing:165.123073px;}
.ws23{word-spacing:167.802485px;}
.ws21{word-spacing:175.067693px;}
.ws1f{word-spacing:178.702059px;}
.ws49{word-spacing:179.901850px;}
.ws4e{word-spacing:242.574748px;}
.ws4f{word-spacing:250.756573px;}
.wsc{word-spacing:350.478643px;}
.ws41{word-spacing:630.642884px;}
.ws2f{word-spacing:631.022299px;}
.ws3f{word-spacing:670.668727px;}
.ws28{word-spacing:693.476003px;}
.ws3c{word-spacing:708.686104px;}
.ws3a{word-spacing:757.271833px;}
.ws37{word-spacing:783.856937px;}
.ws42{word-spacing:815.469503px;}
.ws2e{word-spacing:1304.471380px;}
.ws1e{word-spacing:1363.747871px;}
._10{margin-left:-8.854800px;}
._10b{margin-left:-7.770862px;}
._9e{margin-left:-6.599270px;}
._11{margin-left:-4.399495px;}
._0{margin-left:-3.223350px;}
._2{margin-left:-1.291162px;}
._3{width:8.249704px;}
._8d{width:12.142988px;}
._6d{width:14.585283px;}
._12{width:15.637336px;}
._105{width:17.311177px;}
._108{width:19.375329px;}
._c7{width:20.868373px;}
._fc{width:22.667059px;}
._c{width:23.671296px;}
._110{width:24.747264px;}
._ab{width:25.818470px;}
._102{width:26.899200px;}
._106{width:27.975168px;}
._fd{width:29.051136px;}
._109{width:30.294458px;}
._b{width:31.418266px;}
._fa{width:33.426739px;}
._1{width:35.148288px;}
._107{width:37.156762px;}
._111{width:38.471815px;}
._10a{width:39.655229px;}
._104{width:41.269332px;}
._10d{width:43.110451px;}
._9f{width:44.186419px;}
._ff{width:45.573204px;}
._fe{width:47.203891px;}
._103{width:48.633754px;}
._101{width:51.789926px;}
._e{width:53.523600px;}
._d{width:54.651600px;}
._f{width:55.723200px;}
._10f{width:57.321199px;}
._10c{width:59.420742px;}
._100{width:60.899789px;}
._10e{width:63.410381px;}
._fb{width:66.454954px;}
._5{width:71.731200px;}
._113{width:76.106803px;}
._72{width:80.003864px;}
._112{width:83.052962px;}
._a{width:91.480800px;}
._9{width:92.947200px;}
._4{width:94.923653px;}
._8{width:103.292400px;}
._c6{width:119.504179px;}
._ae{width:130.909440px;}
._71{width:134.756390px;}
._c5{width:141.597389px;}
._a8{width:142.673357px;}
._bb{width:145.399142px;}
._bd{width:148.985702px;}
._a5{width:150.133402px;}
._ba{width:152.428800px;}
._bc{width:153.863424px;}
._c3{width:156.876134px;}
._c4{width:159.243264px;}
._1b{width:163.065523px;}
._73{width:165.167619px;}
._19{width:166.652068px;}
._7c{width:167.802485px;}
._a7{width:169.644288px;}
._83{width:172.532116px;}
._a2{width:174.286639px;}
._8f{width:178.131746px;}
._30{width:179.757635px;}
._b2{width:181.193011px;}
._b8{width:183.129754px;}
._9a{width:184.602277px;}
._60{width:186.785805px;}
._bf{width:188.294400px;}
._55{width:189.559400px;}
._8b{width:190.703944px;}
._59{width:192.093892px;}
._5c{width:193.193765px;}
._64{width:196.828131px;}
._95{width:198.211778px;}
._8e{width:199.407293px;}
._b1{width:207.661824px;}
._3a{width:209.739693px;}
._34{width:211.222132px;}
._1d{width:214.902253px;}
._47{width:217.390989px;}
._a6{width:218.708429px;}
._ad{width:219.999590px;}
._36{width:221.647022px;}
._90{width:223.752598px;}
._c1{width:226.025011px;}
._b3{width:227.387904px;}
._32{width:229.107036px;}
._85{width:232.307866px;}
._77{width:233.889096px;}
._20{width:235.849741px;}
._b9{width:237.286810px;}
._3d{width:238.958080px;}
._22{width:241.157827px;}
._6f{width:245.253519px;}
._42{width:246.705017px;}
._b0{width:248.476877px;}
._69{width:252.586951px;}
._2e{width:254.547595px;}
._51{width:258.229781px;}
._d5{width:259.692071px;}
._3f{width:262.964021px;}
._4b{width:264.637742px;}
._da{width:266.785231px;}
._2a{width:268.080825px;}
._49{width:270.184931px;}
._24{width:272.384679px;}
._ac{width:273.797990px;}
._b7{width:275.447808px;}
._38{width:276.623833px;}
._2c{width:278.457895px;}
._66{width:279.701231px;}
._a9{width:280.971110px;}
._4e{width:288.930607px;}
._87{width:290.648998px;}
._28{width:294.573437px;}
._89{width:295.765802px;}
._4a{width:299.787248px;}
._aa{width:300.962833px;}
._91{width:303.369278px;}
._b5{width:311.313408px;}
._c0{width:313.178419px;}
._6c{width:314.420445px;}
._26{width:318.483737px;}
._a3{width:323.431435px;}
._a1{width:324.914011px;}
._c2{width:328.313702px;}
._af{width:329.604864px;}
._be{width:335.486822px;}
._b4{width:337.280102px;}
._a0{width:341.276464px;}
._a4{width:348.685363px;}
._f0{width:353.782113px;}
._4f{width:364.249510px;}
._b6{width:371.352422px;}
._ca{width:395.280329px;}
._6e{width:403.797146px;}
._80{width:415.270946px;}
._ec{width:426.974393px;}
._eb{width:433.898543px;}
._5d{width:435.836948px;}
._e0{width:448.364010px;}
._97{width:466.489953px;}
._46{width:474.571634px;}
._d6{width:490.530809px;}
._1f{width:496.311669px;}
._ef{width:506.469764px;}
._7b{width:526.824362px;}
._3c{width:530.885963px;}
._67{width:536.403670px;}
._58{width:549.870741px;}
._4d{width:559.405379px;}
._13{width:565.654274px;}
._7e{width:571.644302px;}
._e7{width:573.745449px;}
._40{width:575.951306px;}
._81{width:577.430595px;}
._43{width:578.629265px;}
._7f{width:582.822284px;}
._8c{width:584.654666px;}
._d7{width:608.662325px;}
._63{width:613.902524px;}
._cf{width:616.189604px;}
._75{width:623.819732px;}
._65{width:625.063063px;}
._8a{width:628.458336px;}
._f5{width:636.847595px;}
._82{width:638.676745px;}
._d2{width:649.553520px;}
._9c{width:658.904859px;}
._1e{width:661.950260px;}
._7d{width:664.561634px;}
._61{width:674.126998px;}
._93{width:691.387085px;}
._3b{width:692.729222px;}
._ee{width:694.735124px;}
._d8{width:698.186288px;}
._e9{width:701.215130px;}
._d1{width:703.160837px;}
._d4{width:713.651504px;}
._6b{width:715.635279px;}
._78{width:725.821067px;}
._14{width:727.861079px;}
._76{width:733.089803px;}
._e1{width:771.840643px;}
._84{width:774.789361px;}
._70{width:791.974471px;}
._74{width:794.587090px;}
._cd{width:795.844551px;}
._48{width:801.234153px;}
._cc{width:805.222489px;}
._d0{width:810.393403px;}
._ed{width:813.273405px;}
._53{width:818.353928px;}
._16{width:820.075469px;}
._31{width:832.078440px;}
._5b{width:833.178314px;}
._18{width:840.717695px;}
._15{width:852.450016px;}
._5a{width:853.693351px;}
._50{width:863.305292px;}
._92{width:874.348700px;}
._ce{width:883.309827px;}
._db{width:892.931653px;}
._2f{width:896.779712px;}
._98{width:907.539347px;}
._ea{width:908.968030px;}
._1c{width:910.073839px;}
._41{width:917.246929px;}
._99{width:922.886609px;}
._cb{width:935.738962px;}
._3e{width:937.666325px;}
._e6{width:939.600783px;}
._62{width:947.852113px;}
._e4{width:953.786501px;}
._9d{width:960.425780px;}
._e2{width:965.848078px;}
._d3{width:971.346264px;}
._27{width:977.931270px;}
._21{width:985.391284px;}
._88{width:987.591031px;}
._c9{width:989.661908px;}
._33{width:995.959647px;}
._25{width:998.302846px;}
._1a{width:1000.359131px;}
._f1{width:1004.728110px;}
._de{width:1012.909935px;}
._7a{width:1015.422620px;}
._39{width:1027.760335px;}
._2b{width:1033.785731px;}
._c8{width:1040.269958px;}
._f7{width:1044.328143px;}
._37{width:1045.645240px;}
._f4{width:1053.160947px;}
._f3{width:1054.404584px;}
._dc{width:1059.055428px;}
._23{width:1067.881819px;}
._f6{width:1072.539076px;}
._35{width:1074.194138px;}
._2d{width:1079.550045px;}
._f9{width:1081.440901px;}
._d9{width:1083.844791px;}
._e5{width:1088.248180px;}
._dd{width:1094.073639px;}
._e3{width:1096.084801px;}
._e8{width:1107.557287px;}
._df{width:1111.157290px;}
._79{width:1123.879741px;}
._52{width:1131.435396px;}
._45{width:1133.539502px;}
._4c{width:1135.404506px;}
._f8{width:1140.742769px;}
._86{width:1153.624154px;}
._44{width:1159.553909px;}
._96{width:1163.188274px;}
._68{width:1178.443046px;}
._6a{width:1190.446016px;}
._17{width:1192.167558px;}
._56{width:1193.506535px;}
._f2{width:1195.084124px;}
._54{width:1236.497254px;}
._5e{width:1269.319700px;}
._7{width:1280.832307px;}
._9b{width:1283.074519px;}
._94{width:1306.793536px;}
._57{width:1327.021650px;}
._29{width:1374.507506px;}
._5f{width:1388.901506px;}
._6{width:1533.899981px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:28.200000px;}
.fs7{font-size:33.840000px;}
.fs9{font-size:35.865600px;}
.fs4{font-size:41.842800px;}
.fs8{font-size:47.820600px;}
.fs2{font-size:59.775600px;}
.fsa{font-size:65.454600px;}
.fs3{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs5{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y17{bottom:2.538000px;}
.y30{bottom:7.614000px;}
.y2f{bottom:16.003500px;}
.y29{bottom:32.888250px;}
.y2a{bottom:68.899650px;}
.y31{bottom:81.892800px;}
.y2b{bottom:104.911050px;}
.y2c{bottom:140.929500px;}
.y2d{bottom:176.940900px;}
.y10{bottom:182.481000px;}
.y2e{bottom:212.952300px;}
.yf{bottom:227.344500px;}
.yb9{bottom:227.454000px;}
.y43{bottom:236.280000px;}
.y10f{bottom:237.445500px;}
.ye{bottom:245.277000px;}
.y6d{bottom:247.333500px;}
.yb8{bottom:247.777500px;}
.y91{bottom:248.280000px;}
.y34{bottom:251.155500px;}
.y10e{bottom:259.113000px;}
.yf7{bottom:260.713500px;}
.y26{bottom:261.414000px;}
.yb7{bottom:268.101000px;}
.yd{bottom:268.633500px;}
.y6c{bottom:269.001000px;}
.y25{bottom:269.803500px;}
.y11b{bottom:269.947500px;}
.y90{bottom:269.949000px;}
.y33{bottom:272.824500px;}
.y10d{bottom:280.782000px;}
.yf6{bottom:282.382500px;}
.y3d{bottom:286.688250px;}
.yb6{bottom:288.424500px;}
.y6b{bottom:290.670000px;}
.y11a{bottom:291.616500px;}
.y8f{bottom:291.618000px;}
.y32{bottom:294.493500px;}
.y35{bottom:296.494800px;}
.y20{bottom:296.671050px;}
.y11e{bottom:302.451000px;}
.yf5{bottom:304.051500px;}
.y27{bottom:307.810050px;}
.yb5{bottom:308.748000px;}
.y6a{bottom:312.339000px;}
.y10c{bottom:313.285500px;}
.y8e{bottom:313.287000px;}
.y119{bottom:324.120000px;}
.y3e{bottom:328.593450px;}
.yb4{bottom:329.071500px;}
.y18{bottom:331.107000px;}
.y69{bottom:334.008000px;}
.y8d{bottom:334.954500px;}
.yf4{bottom:336.555000px;}
.y36{bottom:339.619650px;}
.y21{bottom:339.746550px;}
.y118{bottom:345.789000px;}
.yb3{bottom:349.396500px;}
.y68{bottom:355.677000px;}
.y8c{bottom:356.623500px;}
.yf3{bottom:358.224000px;}
.y117{bottom:367.458000px;}
.yb2{bottom:369.720000px;}
.y3f{bottom:370.491600px;}
.y67{bottom:377.344500px;}
.y10b{bottom:378.291000px;}
.y8b{bottom:378.292500px;}
.yf2{bottom:379.891500px;}
.y37{bottom:382.744500px;}
.y22{bottom:382.822050px;}
.yb1{bottom:390.043500px;}
.y66{bottom:399.013500px;}
.y116{bottom:399.960000px;}
.y8a{bottom:399.961500px;}
.yb0{bottom:410.367000px;}
.y10a{bottom:410.794500px;}
.yf1{bottom:412.395000px;}
.y40{bottom:412.396800px;}
.y65{bottom:420.682500px;}
.y115{bottom:421.629000px;}
.y89{bottom:421.630500px;}
.y38{bottom:425.876400px;}
.y23{bottom:425.897550px;}
.yaf{bottom:430.690500px;}
.y109{bottom:432.463500px;}
.yf0{bottom:434.064000px;}
.y64{bottom:442.351500px;}
.y88{bottom:443.298000px;}
.yae{bottom:451.014000px;}
.y108{bottom:454.132500px;}
.y41{bottom:454.302000px;}
.yef{bottom:455.733000px;}
.yd7{bottom:458.830500px;}
.y63{bottom:464.020500px;}
.y87{bottom:464.967000px;}
.y24{bottom:468.973050px;}
.y39{bottom:469.001250px;}
.y48{bottom:469.569000px;}
.yad{bottom:471.339000px;}
.y46{bottom:472.557000px;}
.y114{bottom:475.801500px;}
.yd6{bottom:479.154000px;}
.y62{bottom:485.688000px;}
.y86{bottom:486.636000px;}
.yee{bottom:488.236500px;}
.yac{bottom:491.662500px;}
.y42{bottom:492.391500px;}
.y113{bottom:497.469000px;}
.yd5{bottom:499.477500px;}
.y61{bottom:507.357000px;}
.y107{bottom:508.303500px;}
.y85{bottom:508.305000px;}
.yed{bottom:509.904000px;}
.yab{bottom:511.986000px;}
.y1d{bottom:515.214000px;}
.y44{bottom:523.474500px;}
.y1c{bottom:523.603500px;}
.y60{bottom:529.026000px;}
.y106{bottom:529.972500px;}
.y84{bottom:529.974000px;}
.yec{bottom:531.573000px;}
.yaa{bottom:532.309500px;}
.y11d{bottom:540.807000px;}
.yd4{bottom:544.618500px;}
.y5f{bottom:550.695000px;}
.y112{bottom:551.641500px;}
.y83{bottom:551.643000px;}
.ya9{bottom:552.633000px;}
.y105{bottom:562.476000px;}
.yeb{bottom:564.076500px;}
.y28{bottom:564.800400px;}
.yd3{bottom:564.942000px;}
.y5e{bottom:572.364000px;}
.ya8{bottom:572.958000px;}
.y82{bottom:573.310500px;}
.y3a{bottom:582.069150px;}
.y19{bottom:582.393450px;}
.y104{bottom:584.145000px;}
.yd2{bottom:585.265500px;}
.yea{bottom:585.745500px;}
.yc{bottom:591.616500px;}
.ya7{bottom:593.281500px;}
.y5d{bottom:594.033000px;}
.y81{bottom:594.979500px;}
.yd1{bottom:605.590500px;}
.y103{bottom:605.814000px;}
.ye9{bottom:607.414500px;}
.y47{bottom:612.802500px;}
.yb{bottom:613.285500px;}
.ya6{bottom:613.605000px;}
.y5c{bottom:615.700500px;}
.y80{bottom:616.648500px;}
.y1e{bottom:622.233000px;}
.yd0{bottom:625.914000px;}
.y111{bottom:627.481500px;}
.ya5{bottom:633.928500px;}
.y5b{bottom:637.369500px;}
.y102{bottom:638.316000px;}
.y7f{bottom:638.317500px;}
.ye8{bottom:639.916500px;}
.ya{bottom:645.789000px;}
.ycf{bottom:646.237500px;}
.y3b{bottom:649.290900px;}
.y1a{bottom:650.129850px;}
.ya4{bottom:654.252000px;}
.y5a{bottom:659.038500px;}
.y101{bottom:659.985000px;}
.y7e{bottom:659.986500px;}
.ye7{bottom:661.585500px;}
.yce{bottom:666.561000px;}
.y9{bottom:667.458000px;}
.ya3{bottom:674.575500px;}
.y59{bottom:680.707500px;}
.y7d{bottom:681.654000px;}
.ycd{bottom:686.884500px;}
.y100{bottom:692.488500px;}
.ye6{bottom:694.089000px;}
.ya2{bottom:694.900500px;}
.y8{bottom:699.960000px;}
.y58{bottom:702.376500px;}
.y7c{bottom:703.323000px;}
.ycc{bottom:707.208000px;}
.yff{bottom:714.157500px;}
.ya1{bottom:715.224000px;}
.ye5{bottom:715.758000px;}
.y3c{bottom:716.519700px;}
.y1b{bottom:717.866250px;}
.y7{bottom:721.629000px;}
.y57{bottom:724.044000px;}
.y7b{bottom:724.992000px;}
.ycb{bottom:727.533000px;}
.ya0{bottom:735.547500px;}
.yfe{bottom:735.826500px;}
.y56{bottom:745.713000px;}
.y7a{bottom:746.661000px;}
.yca{bottom:747.856500px;}
.ye4{bottom:748.261500px;}
.y6{bottom:754.132500px;}
.y9f{bottom:755.871000px;}
.y121{bottom:757.494000px;}
.y55{bottom:767.382000px;}
.yc9{bottom:768.180000px;}
.yfd{bottom:768.328500px;}
.y79{bottom:768.330000px;}
.ye3{bottom:769.929000px;}
.y5{bottom:775.801500px;}
.y9e{bottom:776.194500px;}
.yc8{bottom:788.503500px;}
.y54{bottom:789.051000px;}
.y78{bottom:789.997500px;}
.ye2{bottom:791.598000px;}
.y9d{bottom:796.518000px;}
.y4{bottom:808.303500px;}
.yc7{bottom:808.827000px;}
.y53{bottom:810.720000px;}
.y77{bottom:811.666500px;}
.y9c{bottom:816.843000px;}
.y1f{bottom:818.600400px;}
.y11c{bottom:822.501000px;}
.ye1{bottom:824.101500px;}
.yc6{bottom:829.150500px;}
.y52{bottom:832.387500px;}
.y76{bottom:833.335500px;}
.y9b{bottom:837.166500px;}
.yfc{bottom:844.170000px;}
.ye0{bottom:845.770500px;}
.yc5{bottom:849.475500px;}
.y51{bottom:854.056500px;}
.y75{bottom:855.004500px;}
.y9a{bottom:857.490000px;}
.yfb{bottom:865.839000px;}
.yc4{bottom:869.799000px;}
.y50{bottom:875.725500px;}
.y74{bottom:876.673500px;}
.y99{bottom:877.813500px;}
.ydf{bottom:878.274000px;}
.yfa{bottom:887.506500px;}
.yc3{bottom:890.122500px;}
.y4f{bottom:897.394500px;}
.y98{bottom:898.137000px;}
.y73{bottom:898.341000px;}
.y92{bottom:898.342500px;}
.yde{bottom:899.941500px;}
.y120{bottom:909.175500px;}
.yc2{bottom:910.446000px;}
.y3{bottom:918.142500px;}
.y97{bottom:918.462000px;}
.y4e{bottom:919.063500px;}
.y72{bottom:920.010000px;}
.ydd{bottom:921.610500px;}
.yc1{bottom:930.769500px;}
.y96{bottom:938.785500px;}
.y71{bottom:941.679000px;}
.y4d{bottom:941.928000px;}
.yc0{bottom:951.094500px;}
.ydc{bottom:954.114000px;}
.y95{bottom:959.109000px;}
.y70{bottom:963.348000px;}
.y4c{bottom:963.595500px;}
.ybf{bottom:971.418000px;}
.y14{bottom:973.144500px;}
.y110{bottom:974.182500px;}
.ydb{bottom:975.783000px;}
.y2{bottom:982.774500px;}
.y6f{bottom:985.017000px;}
.y94{bottom:988.417500px;}
.ybe{bottom:991.741500px;}
.yf9{bottom:995.851500px;}
.yda{bottom:997.452000px;}
.y6e{bottom:1006.686000px;}
.ybd{bottom:1012.065000px;}
.y13{bottom:1012.746000px;}
.y45{bottom:1013.412000px;}
.yf8{bottom:1017.519000px;}
.y1{bottom:1020.135000px;}
.y4b{bottom:1028.353500px;}
.yd9{bottom:1029.954000px;}
.ybc{bottom:1032.388500px;}
.y93{bottom:1034.005500px;}
.y11f{bottom:1039.188000px;}
.y4a{bottom:1050.022500px;}
.yd8{bottom:1051.623000px;}
.y12{bottom:1052.347500px;}
.ybb{bottom:1052.712000px;}
.y49{bottom:1071.691500px;}
.y16{bottom:1072.400400px;}
.yba{bottom:1073.037000px;}
.y15{bottom:1092.636000px;}
.y11{bottom:1093.360500px;}
.hb{height:9.954600px;}
.h5{height:21.820637px;}
.hc{height:29.553600px;}
.hf{height:34.813397px;}
.h10{height:35.100320px;}
.h12{height:35.407397px;}
.h11{height:35.413397px;}
.he{height:35.464320px;}
.h8{height:36.881545px;}
.h15{height:42.361200px;}
.h7{height:43.516637px;}
.h6{height:43.666637px;}
.h18{height:47.323676px;}
.h17{height:47.650949px;}
.h19{height:48.043676px;}
.ha{height:51.861658px;}
.h4{height:52.220314px;}
.h16{height:52.650701px;}
.h3{height:60.770503px;}
.h14{height:63.205397px;}
.h13{height:63.805397px;}
.h9{height:75.816622px;}
.h2{height:88.022250px;}
.hd{height:761.400000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:151.567950px;}
.w2{width:152.449200px;}
.w5{width:153.076650px;}
.w3{width:659.880000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:13.465500px;}
.xf{left:16.003500px;}
.x17{left:19.528500px;}
.x10{left:23.800800px;}
.x18{left:27.325800px;}
.x1e{left:29.765100px;}
.x11{left:32.246700px;}
.x19{left:35.736450px;}
.x21{left:38.330850px;}
.xb{left:63.450000px;}
.x4{left:133.938000px;}
.x2{left:141.462000px;}
.x5f{left:142.905000px;}
.x27{left:151.870500px;}
.x7{left:153.967500px;}
.x5{left:155.607000px;}
.x1b{left:163.752450px;}
.xa{left:166.262250px;}
.x14{left:169.787250px;}
.x6{left:177.835500px;}
.x4d{left:180.564000px;}
.x4e{left:194.910000px;}
.x28{left:208.164000px;}
.x5d{left:216.354000px;}
.x29{left:223.108500px;}
.x5e{left:228.370500px;}
.x2a{left:237.604500px;}
.x2b{left:251.950500px;}
.x26{left:259.052250px;}
.x24{left:260.307150px;}
.x25{left:262.069650px;}
.x2c{left:266.148000px;}
.x23{left:271.446150px;}
.x20{left:272.701050px;}
.x22{left:274.463550px;}
.x1f{left:277.826400px;}
.x12{left:279.081300px;}
.x1a{left:280.843800px;}
.x4f{left:295.035000px;}
.x1{left:296.191500px;}
.x2d{left:302.088000px;}
.x2e{left:309.036000px;}
.x1c{left:319.367100px;}
.xc{left:321.249450px;}
.x15{left:323.893200px;}
.x60{left:334.605000px;}
.x2f{left:337.729500px;}
.x30{left:352.075500px;}
.x50{left:353.127000px;}
.x31{left:366.421500px;}
.x51{left:367.623000px;}
.x3{left:370.299000px;}
.x32{left:380.767500px;}
.x52{left:381.969000px;}
.x33{left:395.113500px;}
.x53{left:396.315000px;}
.x34{left:409.461000px;}
.x54{left:410.512500px;}
.x35{left:423.807000px;}
.x55{left:425.007000px;}
.x36{left:438.153000px;}
.x56{left:439.353000px;}
.x9{left:441.973500px;}
.x37{left:452.499000px;}
.x57{left:453.700500px;}
.x38{left:466.845000px;}
.x58{left:467.896500px;}
.x1d{left:474.981750px;}
.xd{left:476.236650px;}
.x16{left:477.999150px;}
.x39{left:481.191000px;}
.x59{left:489.490500px;}
.x3a{left:495.388500px;}
.x5a{left:496.440000px;}
.x3b{left:509.884500px;}
.x3c{left:524.080500px;}
.x5b{left:525.132000px;}
.x3d{left:538.576500px;}
.x3e{left:552.922500px;}
.x3f{left:567.268500px;}
.x40{left:581.616000px;}
.x8{left:590.271000px;}
.x41{left:595.962000px;}
.x42{left:610.308000px;}
.x43{left:624.654000px;}
.xe{left:631.216800px;}
.x44{left:639.000000px;}
.x45{left:653.346000px;}
.x5c{left:661.197000px;}
.x46{left:667.692000px;}
.x47{left:682.039500px;}
.x48{left:696.385500px;}
.x49{left:710.731500px;}
.x4a{left:725.077500px;}
.x4b{left:739.275000px;}
.x4c{left:753.471000px;}
@media print{
.v2{vertical-align:-19.285333pt;}
.v4{vertical-align:-1.253333pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:13.744000pt;}
.v3{vertical-align:25.237333pt;}
.v1{vertical-align:27.765333pt;}
.ls4{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.000462pt;}
.lsa{letter-spacing:0.000473pt;}
.ls2{letter-spacing:0.000990pt;}
.ls9{letter-spacing:0.001600pt;}
.lsc{letter-spacing:0.001918pt;}
.ls3{letter-spacing:2.657253pt;}
.lsb{letter-spacing:3.531549pt;}
.ls1{letter-spacing:17.706238pt;}
.ls8{letter-spacing:18.227133pt;}
.ls7{letter-spacing:19.347133pt;}
.ls0{letter-spacing:19.997800pt;}
.ls6{letter-spacing:26.312467pt;}
.ls5{letter-spacing:32.776467pt;}
.ws52{word-spacing:-22.953867pt;}
.ws46{word-spacing:-15.940267pt;}
.ws2d{word-spacing:-7.970133pt;}
.ws1c{word-spacing:-5.508928pt;}
.wsab{word-spacing:-3.761903pt;}
.wsce{word-spacing:-3.634381pt;}
.ws62{word-spacing:-3.506859pt;}
.ws88{word-spacing:-3.315575pt;}
.ws74{word-spacing:-3.251814pt;}
.ws3{word-spacing:-3.124292pt;}
.ws6{word-spacing:-2.805487pt;}
.wsd3{word-spacing:-2.614204pt;}
.wscd{word-spacing:-2.550443pt;}
.wsd1{word-spacing:-2.486682pt;}
.wsd0{word-spacing:-2.424704pt;}
.ws80{word-spacing:-2.422921pt;}
.ws9c{word-spacing:-2.359159pt;}
.ws66{word-spacing:-2.231637pt;}
.ws56{word-spacing:-1.976593pt;}
.ws8{word-spacing:-1.912832pt;}
.wsa2{word-spacing:-1.721549pt;}
.ws8b{word-spacing:-1.594027pt;}
.wsc6{word-spacing:-1.530266pt;}
.ws54{word-spacing:-1.466505pt;}
.ws44{word-spacing:-0.956416pt;}
.ws61{word-spacing:-0.892655pt;}
.wsbd{word-spacing:-0.882466pt;}
.wsbe{word-spacing:-0.828894pt;}
.ws3d{word-spacing:-0.722622pt;}
.wsa0{word-spacing:-0.382566pt;}
.ws5{word-spacing:-0.063761pt;}
.ws2b{word-spacing:-0.042507pt;}
.ws2c{word-spacing:-0.031881pt;}
.ws96{word-spacing:-0.014259pt;}
.wsb6{word-spacing:-0.013611pt;}
.ws8d{word-spacing:-0.011981pt;}
.ws9f{word-spacing:-0.011059pt;}
.ws60{word-spacing:-0.010283pt;}
.wsb9{word-spacing:-0.009941pt;}
.ws83{word-spacing:-0.009754pt;}
.ws94{word-spacing:-0.009651pt;}
.wsb4{word-spacing:-0.009498pt;}
.wsba{word-spacing:-0.008926pt;}
.ws5b{word-spacing:-0.008781pt;}
.ws71{word-spacing:-0.007714pt;}
.ws65{word-spacing:-0.007373pt;}
.wsc9{word-spacing:-0.006793pt;}
.wsd4{word-spacing:-0.006545pt;}
.wscc{word-spacing:-0.006537pt;}
.ws5d{word-spacing:-0.006349pt;}
.wsac{word-spacing:-0.005350pt;}
.ws9a{word-spacing:-0.004932pt;}
.ws69{word-spacing:-0.003593pt;}
.wsa3{word-spacing:-0.003541pt;}
.ws7f{word-spacing:-0.003251pt;}
.ws6d{word-spacing:-0.002961pt;}
.ws1b{word-spacing:-0.002765pt;}
.ws92{word-spacing:-0.002475pt;}
.ws68{word-spacing:-0.002295pt;}
.ws89{word-spacing:-0.001604pt;}
.wsaf{word-spacing:-0.001203pt;}
.ws95{word-spacing:-0.000700pt;}
.ws5f{word-spacing:-0.000358pt;}
.ws2{word-spacing:0.000000pt;}
.ws7c{word-spacing:0.000631pt;}
.ws47{word-spacing:0.011691pt;}
.ws1d{word-spacing:0.382565pt;}
.ws8e{word-spacing:0.573850pt;}
.ws59{word-spacing:0.765133pt;}
.wsc4{word-spacing:0.828894pt;}
.ws1a{word-spacing:1.083938pt;}
.wsc0{word-spacing:1.147699pt;}
.ws57{word-spacing:1.211460pt;}
.wsb1{word-spacing:1.338982pt;}
.ws9d{word-spacing:1.402743pt;}
.ws99{word-spacing:1.466505pt;}
.wsc2{word-spacing:1.721549pt;}
.wsad{word-spacing:1.912832pt;}
.ws58{word-spacing:1.976593pt;}
.ws5e{word-spacing:2.040354pt;}
.ws82{word-spacing:2.104115pt;}
.ws81{word-spacing:2.167876pt;}
.wsc8{word-spacing:2.359159pt;}
.wsae{word-spacing:2.486682pt;}
.ws75{word-spacing:2.550443pt;}
.ws67{word-spacing:2.805487pt;}
.ws8c{word-spacing:2.933009pt;}
.wsb7{word-spacing:3.060531pt;}
.ws91{word-spacing:3.188053pt;}
.wsc3{word-spacing:3.315575pt;}
.wsd2{word-spacing:3.379337pt;}
.ws55{word-spacing:3.634381pt;}
.ws43{word-spacing:3.825664pt;}
.wsb8{word-spacing:3.889425pt;}
.ws10{word-spacing:4.080708pt;}
.ws93{word-spacing:4.271991pt;}
.ws72{word-spacing:4.399514pt;}
.wsbc{word-spacing:4.654558pt;}
.ws38{word-spacing:4.674098pt;}
.ws22{word-spacing:4.675081pt;}
.ws35{word-spacing:4.676327pt;}
.ws36{word-spacing:4.678703pt;}
.wsa7{word-spacing:4.718319pt;}
.ws5a{word-spacing:4.845841pt;}
.ws90{word-spacing:4.973363pt;}
.ws64{word-spacing:5.292169pt;}
.ws9e{word-spacing:5.483452pt;}
.wsc5{word-spacing:5.610974pt;}
.ws84{word-spacing:5.674735pt;}
.wscf{word-spacing:5.866018pt;}
.wsb3{word-spacing:5.993540pt;}
.ws5c{word-spacing:6.057301pt;}
.ws98{word-spacing:6.121062pt;}
.ws6f{word-spacing:6.184823pt;}
.ws70{word-spacing:6.376107pt;}
.ws45{word-spacing:6.503629pt;}
.ws11{word-spacing:6.886195pt;}
.ws78{word-spacing:6.949956pt;}
.ws4b{word-spacing:7.009229pt;}
.ws4c{word-spacing:7.010825pt;}
.ws7b{word-spacing:7.141239pt;}
.wsbb{word-spacing:7.268762pt;}
.wsd5{word-spacing:7.332523pt;}
.wsa4{word-spacing:7.396284pt;}
.wsbf{word-spacing:7.523806pt;}
.ws87{word-spacing:7.651328pt;}
.ws6e{word-spacing:7.715089pt;}
.wsb5{word-spacing:7.778850pt;}
.wsa6{word-spacing:7.839044pt;}
.wsa5{word-spacing:7.842611pt;}
.wsb0{word-spacing:8.033894pt;}
.ws16{word-spacing:8.097655pt;}
.ws7{word-spacing:8.352700pt;}
.ws8a{word-spacing:8.416461pt;}
.wsb2{word-spacing:8.543983pt;}
.ws7a{word-spacing:8.607744pt;}
.ws79{word-spacing:8.671505pt;}
.ws86{word-spacing:8.990310pt;}
.ws7d{word-spacing:9.181594pt;}
.ws97{word-spacing:9.245355pt;}
.ws77{word-spacing:9.309116pt;}
.ws76{word-spacing:9.564160pt;}
.ws8f{word-spacing:9.627921pt;}
.ws73{word-spacing:9.819204pt;}
.ws6b{word-spacing:10.010487pt;}
.wsca{word-spacing:10.074249pt;}
.wsa9{word-spacing:10.201771pt;}
.wsa8{word-spacing:10.239300pt;}
.wsaa{word-spacing:10.265532pt;}
.wsa1{word-spacing:10.329293pt;}
.wsc1{word-spacing:10.520576pt;}
.ws53{word-spacing:10.966903pt;}
.wscb{word-spacing:11.221948pt;}
.ws6a{word-spacing:11.732036pt;}
.ws85{word-spacing:13.007258pt;}
.ws51{word-spacing:13.133811pt;}
.ws6c{word-spacing:13.134780pt;}
.ws50{word-spacing:13.135688pt;}
.ws63{word-spacing:13.389824pt;}
.ws7e{word-spacing:13.708629pt;}
.ws9b{word-spacing:14.856329pt;}
.wsb{word-spacing:15.876506pt;}
.wsc7{word-spacing:15.940267pt;}
.ws4{word-spacing:17.632816pt;}
.wsa{word-spacing:22.635027pt;}
.ws12{word-spacing:22.784602pt;}
.ws1{word-spacing:24.866747pt;}
.ws0{word-spacing:34.382400pt;}
.ws9{word-spacing:40.541140pt;}
.ws48{word-spacing:47.820800pt;}
.ws4d{word-spacing:63.650962pt;}
.ws4a{word-spacing:68.160580pt;}
.ws18{word-spacing:77.882133pt;}
.ws17{word-spacing:78.634133pt;}
.ws19{word-spacing:79.160533pt;}
.ws14{word-spacing:79.486400pt;}
.ws13{word-spacing:80.188267pt;}
.ws15{word-spacing:80.664533pt;}
.wse{word-spacing:90.565867pt;}
.wsd{word-spacing:91.393067pt;}
.wsf{word-spacing:91.969600pt;}
.ws3b{word-spacing:94.914481pt;}
.ws30{word-spacing:113.917999pt;}
.ws40{word-spacing:123.224276pt;}
.ws3e{word-spacing:129.982921pt;}
.ws20{word-spacing:135.339793pt;}
.ws32{word-spacing:136.319294pt;}
.ws29{word-spacing:136.999409pt;}
.ws24{word-spacing:137.084423pt;}
.ws39{word-spacing:138.530965pt;}
.ws25{word-spacing:138.572175pt;}
.ws26{word-spacing:138.997247pt;}
.ws27{word-spacing:140.697535pt;}
.ws2a{word-spacing:141.377651pt;}
.ws34{word-spacing:143.588025pt;}
.ws33{word-spacing:145.373327pt;}
.ws31{word-spacing:146.776065pt;}
.ws23{word-spacing:149.157765pt;}
.ws21{word-spacing:155.615727pt;}
.ws1f{word-spacing:158.846275pt;}
.ws49{word-spacing:159.912755pt;}
.ws4e{word-spacing:215.621998pt;}
.ws4f{word-spacing:222.894731pt;}
.wsc{word-spacing:311.536572pt;}
.ws41{word-spacing:560.571453pt;}
.ws2f{word-spacing:560.908710pt;}
.ws3f{word-spacing:596.149979pt;}
.ws28{word-spacing:616.423114pt;}
.ws3c{word-spacing:629.943203pt;}
.ws3a{word-spacing:673.130518pt;}
.ws37{word-spacing:696.761722pt;}
.ws42{word-spacing:724.861781pt;}
.ws2e{word-spacing:1159.530115pt;}
.ws1e{word-spacing:1212.220330pt;}
._10{margin-left:-7.870933pt;}
._10b{margin-left:-6.907433pt;}
._9e{margin-left:-5.866018pt;}
._11{margin-left:-3.910662pt;}
._0{margin-left:-2.865200pt;}
._2{margin-left:-1.147699pt;}
._3{width:7.333070pt;}
._8d{width:10.793767pt;}
._6d{width:12.964696pt;}
._12{width:13.899854pt;}
._105{width:15.387713pt;}
._108{width:17.222515pt;}
._c7{width:18.549665pt;}
._fc{width:20.148497pt;}
._c{width:21.041152pt;}
._110{width:21.997568pt;}
._ab{width:22.949751pt;}
._102{width:23.910400pt;}
._106{width:24.866816pt;}
._fd{width:25.823232pt;}
._109{width:26.928407pt;}
._b{width:27.927347pt;}
._fa{width:29.712657pt;}
._1{width:31.242923pt;}
._107{width:33.028233pt;}
._111{width:34.197169pt;}
._10a{width:35.249092pt;}
._104{width:36.683851pt;}
._10d{width:38.320401pt;}
._9f{width:39.276817pt;}
._ff{width:40.509515pt;}
._fe{width:41.959014pt;}
._103{width:43.230003pt;}
._101{width:46.035490pt;}
._e{width:47.576533pt;}
._d{width:48.579200pt;}
._f{width:49.531733pt;}
._10f{width:50.952177pt;}
._10c{width:52.818437pt;}
._100{width:54.133146pt;}
._10e{width:56.364783pt;}
._fb{width:59.071070pt;}
._5{width:63.761067pt;}
._113{width:67.650492pt;}
._72{width:71.114546pt;}
._112{width:73.824855pt;}
._a{width:81.316267pt;}
._9{width:82.619733pt;}
._4{width:84.376580pt;}
._8{width:91.815467pt;}
._c6{width:106.225937pt;}
._ae{width:116.363947pt;}
._71{width:119.783458pt;}
._c5{width:125.864346pt;}
._a8{width:126.820762pt;}
._bb{width:129.243682pt;}
._bd{width:132.431735pt;}
._a5{width:133.451913pt;}
._ba{width:135.492267pt;}
._bc{width:136.767488pt;}
._c3{width:139.445453pt;}
._c4{width:141.549568pt;}
._1b{width:144.947131pt;}
._73{width:146.815661pt;}
._19{width:148.135171pt;}
._7c{width:149.157765pt;}
._a7{width:150.794923pt;}
._83{width:153.361881pt;}
._a2{width:154.921457pt;}
._8f{width:158.339330pt;}
._30{width:159.784565pt;}
._b2{width:161.060454pt;}
._b8{width:162.782003pt;}
._9a{width:164.090913pt;}
._60{width:166.031827pt;}
._bf{width:167.372800pt;}
._55{width:168.497244pt;}
._8b{width:169.514617pt;}
._59{width:170.750126pt;}
._5c{width:171.727791pt;}
._64{width:174.958339pt;}
._95{width:176.188247pt;}
._8e{width:177.250927pt;}
._b1{width:184.588288pt;}
._3a{width:186.435283pt;}
._34{width:187.753006pt;}
._1d{width:191.024225pt;}
._47{width:193.236435pt;}
._a6{width:194.407492pt;}
._ad{width:195.555191pt;}
._36{width:197.019575pt;}
._90{width:198.891198pt;}
._c1{width:200.911121pt;}
._b3{width:202.122581pt;}
._32{width:203.650699pt;}
._85{width:206.495881pt;}
._77{width:207.901419pt;}
._20{width:209.644214pt;}
._b9{width:210.921609pt;}
._3d{width:212.407182pt;}
._22{width:214.362513pt;}
._6f{width:218.003128pt;}
._42{width:219.293348pt;}
._b0{width:220.868335pt;}
._69{width:224.521734pt;}
._2e{width:226.264529pt;}
._51{width:229.537583pt;}
._d5{width:230.837397pt;}
._3f{width:233.745796pt;}
._4b{width:235.233548pt;}
._da{width:237.142427pt;}
._2a{width:238.294067pt;}
._49{width:240.164383pt;}
._24{width:242.119715pt;}
._ac{width:243.375991pt;}
._b7{width:244.842496pt;}
._38{width:245.887851pt;}
._2c{width:247.518129pt;}
._66{width:248.623316pt;}
._a9{width:249.752098pt;}
._4e{width:256.827206pt;}
._87{width:258.354665pt;}
._28{width:261.843055pt;}
._89{width:262.902935pt;}
._4a{width:266.477554pt;}
._aa{width:267.522518pt;}
._91{width:269.661580pt;}
._b5{width:276.723029pt;}
._c0{width:278.380817pt;}
._6c{width:279.484840pt;}
._26{width:283.096655pt;}
._a3{width:287.494609pt;}
._a1{width:288.812454pt;}
._c2{width:291.834402pt;}
._af{width:292.982101pt;}
._be{width:298.210509pt;}
._b4{width:299.804535pt;}
._a0{width:303.356857pt;}
._a4{width:309.942545pt;}
._f0{width:314.472989pt;}
._4f{width:323.777342pt;}
._b6{width:330.091042pt;}
._ca{width:351.360293pt;}
._6e{width:358.930797pt;}
._80{width:369.129730pt;}
._ec{width:379.532794pt;}
._eb{width:385.687594pt;}
._5d{width:387.410621pt;}
._e0{width:398.545787pt;}
._97{width:414.657736pt;}
._46{width:421.841453pt;}
._d6{width:436.027386pt;}
._1f{width:441.165928pt;}
._ef{width:450.195346pt;}
._7b{width:468.288322pt;}
._3c{width:471.898634pt;}
._67{width:476.803262pt;}
._58{width:488.773992pt;}
._4d{width:497.249226pt;}
._13{width:502.803799pt;}
._7e{width:508.128269pt;}
._e7{width:509.995955pt;}
._40{width:511.956717pt;}
._81{width:513.271640pt;}
._43{width:514.337125pt;}
._7f{width:518.064253pt;}
._8c{width:519.693037pt;}
._d7{width:541.033178pt;}
._63{width:545.691133pt;}
._cf{width:547.724093pt;}
._75{width:554.506429pt;}
._65{width:555.611611pt;}
._8a{width:558.629632pt;}
._f5{width:566.086751pt;}
._82{width:567.712662pt;}
._d2{width:577.380907pt;}
._9c{width:585.693208pt;}
._1e{width:588.400231pt;}
._7d{width:590.721453pt;}
._61{width:599.223998pt;}
._93{width:614.566298pt;}
._3b{width:615.759309pt;}
._ee{width:617.542333pt;}
._d8{width:620.610034pt;}
._e9{width:623.302338pt;}
._d1{width:625.031855pt;}
._d4{width:634.356892pt;}
._6b{width:636.120248pt;}
._78{width:645.174282pt;}
._14{width:646.987626pt;}
._76{width:651.635381pt;}
._e1{width:686.080572pt;}
._84{width:688.701654pt;}
._70{width:703.977308pt;}
._74{width:706.299635pt;}
._cd{width:707.417379pt;}
._48{width:712.208136pt;}
._cc{width:715.753324pt;}
._d0{width:720.349691pt;}
._ed{width:722.909693pt;}
._53{width:727.425714pt;}
._16{width:728.955973pt;}
._31{width:739.625280pt;}
._5b{width:740.602946pt;}
._18{width:747.304618pt;}
._15{width:757.733347pt;}
._5a{width:758.838534pt;}
._50{width:767.382482pt;}
._92{width:777.198845pt;}
._ce{width:785.164291pt;}
._db{width:793.717025pt;}
._2f{width:797.137522pt;}
._98{width:806.701642pt;}
._ea{width:807.971582pt;}
._1c{width:808.954523pt;}
._41{width:815.330603pt;}
._99{width:820.343653pt;}
._cb{width:831.767966pt;}
._3e{width:833.481178pt;}
._e6{width:835.200696pt;}
._62{width:842.535211pt;}
._e4{width:847.810223pt;}
._9d{width:853.711805pt;}
._e2{width:858.531625pt;}
._d3{width:863.418901pt;}
._27{width:869.272240pt;}
._21{width:875.903363pt;}
._88{width:877.858694pt;}
._c9{width:879.699474pt;}
._33{width:885.297464pt;}
._25{width:887.380307pt;}
._1a{width:889.208117pt;}
._f1{width:893.091653pt;}
._de{width:900.364387pt;}
._7a{width:902.597885pt;}
._39{width:913.564742pt;}
._2b{width:918.920650pt;}
._c8{width:924.684407pt;}
._f7{width:928.291683pt;}
._37{width:929.462435pt;}
._f4{width:936.143064pt;}
._f3{width:937.248519pt;}
._dc{width:941.382603pt;}
._23{width:949.228283pt;}
._f6{width:953.368067pt;}
._35{width:954.839234pt;}
._2d{width:959.600040pt;}
._f9{width:961.280801pt;}
._d9{width:963.417592pt;}
._e5{width:967.331715pt;}
._dd{width:972.509901pt;}
._e3{width:974.297601pt;}
._e8{width:984.495366pt;}
._df{width:987.695369pt;}
._79{width:999.004214pt;}
._52{width:1005.720352pt;}
._45{width:1007.590669pt;}
._4c{width:1009.248450pt;}
._f8{width:1013.993572pt;}
._86{width:1025.443693pt;}
._44{width:1030.714586pt;}
._96{width:1033.945133pt;}
._68{width:1047.504930pt;}
._6a{width:1058.174237pt;}
._17{width:1059.704496pt;}
._56{width:1060.894698pt;}
._f2{width:1062.296999pt;}
._54{width:1099.108670pt;}
._5e{width:1128.284178pt;}
._7{width:1138.517606pt;}
._9b{width:1140.510683pt;}
._94{width:1161.594254pt;}
._57{width:1179.574800pt;}
._29{width:1221.784450pt;}
._5f{width:1234.579117pt;}
._6{width:1363.466650pt;}
.fs6{font-size:25.066667pt;}
.fs7{font-size:30.080000pt;}
.fs9{font-size:31.880533pt;}
.fs4{font-size:37.193600pt;}
.fs8{font-size:42.507200pt;}
.fs2{font-size:53.133867pt;}
.fsa{font-size:58.181867pt;}
.fs3{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs5{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y17{bottom:2.256000pt;}
.y30{bottom:6.768000pt;}
.y2f{bottom:14.225333pt;}
.y29{bottom:29.234000pt;}
.y2a{bottom:61.244133pt;}
.y31{bottom:72.793600pt;}
.y2b{bottom:93.254267pt;}
.y2c{bottom:125.270667pt;}
.y2d{bottom:157.280800pt;}
.y10{bottom:162.205333pt;}
.y2e{bottom:189.290933pt;}
.yf{bottom:202.084000pt;}
.yb9{bottom:202.181333pt;}
.y43{bottom:210.026667pt;}
.y10f{bottom:211.062667pt;}
.ye{bottom:218.024000pt;}
.y6d{bottom:219.852000pt;}
.yb8{bottom:220.246667pt;}
.y91{bottom:220.693333pt;}
.y34{bottom:223.249333pt;}
.y10e{bottom:230.322667pt;}
.yf7{bottom:231.745333pt;}
.y26{bottom:232.368000pt;}
.yb7{bottom:238.312000pt;}
.yd{bottom:238.785333pt;}
.y6c{bottom:239.112000pt;}
.y25{bottom:239.825333pt;}
.y11b{bottom:239.953333pt;}
.y90{bottom:239.954667pt;}
.y33{bottom:242.510667pt;}
.y10d{bottom:249.584000pt;}
.yf6{bottom:251.006667pt;}
.y3d{bottom:254.834000pt;}
.yb6{bottom:256.377333pt;}
.y6b{bottom:258.373333pt;}
.y11a{bottom:259.214667pt;}
.y8f{bottom:259.216000pt;}
.y32{bottom:261.772000pt;}
.y35{bottom:263.550933pt;}
.y20{bottom:263.707600pt;}
.y11e{bottom:268.845333pt;}
.yf5{bottom:270.268000pt;}
.y27{bottom:273.608933pt;}
.yb5{bottom:274.442667pt;}
.y6a{bottom:277.634667pt;}
.y10c{bottom:278.476000pt;}
.y8e{bottom:278.477333pt;}
.y119{bottom:288.106667pt;}
.y3e{bottom:292.083067pt;}
.yb4{bottom:292.508000pt;}
.y18{bottom:294.317333pt;}
.y69{bottom:296.896000pt;}
.y8d{bottom:297.737333pt;}
.yf4{bottom:299.160000pt;}
.y36{bottom:301.884133pt;}
.y21{bottom:301.996933pt;}
.y118{bottom:307.368000pt;}
.yb3{bottom:310.574667pt;}
.y68{bottom:316.157333pt;}
.y8c{bottom:316.998667pt;}
.yf3{bottom:318.421333pt;}
.y117{bottom:326.629333pt;}
.yb2{bottom:328.640000pt;}
.y3f{bottom:329.325867pt;}
.y67{bottom:335.417333pt;}
.y10b{bottom:336.258667pt;}
.y8b{bottom:336.260000pt;}
.yf2{bottom:337.681333pt;}
.y37{bottom:340.217333pt;}
.y22{bottom:340.286267pt;}
.yb1{bottom:346.705333pt;}
.y66{bottom:354.678667pt;}
.y116{bottom:355.520000pt;}
.y8a{bottom:355.521333pt;}
.yb0{bottom:364.770667pt;}
.y10a{bottom:365.150667pt;}
.yf1{bottom:366.573333pt;}
.y40{bottom:366.574933pt;}
.y65{bottom:373.940000pt;}
.y115{bottom:374.781333pt;}
.y89{bottom:374.782667pt;}
.y38{bottom:378.556800pt;}
.y23{bottom:378.575600pt;}
.yaf{bottom:382.836000pt;}
.y109{bottom:384.412000pt;}
.yf0{bottom:385.834667pt;}
.y64{bottom:393.201333pt;}
.y88{bottom:394.042667pt;}
.yae{bottom:400.901333pt;}
.y108{bottom:403.673333pt;}
.y41{bottom:403.824000pt;}
.yef{bottom:405.096000pt;}
.yd7{bottom:407.849333pt;}
.y63{bottom:412.462667pt;}
.y87{bottom:413.304000pt;}
.y24{bottom:416.864933pt;}
.y39{bottom:416.890000pt;}
.y48{bottom:417.394667pt;}
.yad{bottom:418.968000pt;}
.y46{bottom:420.050667pt;}
.y114{bottom:422.934667pt;}
.yd6{bottom:425.914667pt;}
.y62{bottom:431.722667pt;}
.y86{bottom:432.565333pt;}
.yee{bottom:433.988000pt;}
.yac{bottom:437.033333pt;}
.y42{bottom:437.681333pt;}
.y113{bottom:442.194667pt;}
.yd5{bottom:443.980000pt;}
.y61{bottom:450.984000pt;}
.y107{bottom:451.825333pt;}
.y85{bottom:451.826667pt;}
.yed{bottom:453.248000pt;}
.yab{bottom:455.098667pt;}
.y1d{bottom:457.968000pt;}
.y44{bottom:465.310667pt;}
.y1c{bottom:465.425333pt;}
.y60{bottom:470.245333pt;}
.y106{bottom:471.086667pt;}
.y84{bottom:471.088000pt;}
.yec{bottom:472.509333pt;}
.yaa{bottom:473.164000pt;}
.y11d{bottom:480.717333pt;}
.yd4{bottom:484.105333pt;}
.y5f{bottom:489.506667pt;}
.y112{bottom:490.348000pt;}
.y83{bottom:490.349333pt;}
.ya9{bottom:491.229333pt;}
.y105{bottom:499.978667pt;}
.yeb{bottom:501.401333pt;}
.y28{bottom:502.044800pt;}
.yd3{bottom:502.170667pt;}
.y5e{bottom:508.768000pt;}
.ya8{bottom:509.296000pt;}
.y82{bottom:509.609333pt;}
.y3a{bottom:517.394800pt;}
.y19{bottom:517.683067pt;}
.y104{bottom:519.240000pt;}
.yd2{bottom:520.236000pt;}
.yea{bottom:520.662667pt;}
.yc{bottom:525.881333pt;}
.ya7{bottom:527.361333pt;}
.y5d{bottom:528.029333pt;}
.y81{bottom:528.870667pt;}
.yd1{bottom:538.302667pt;}
.y103{bottom:538.501333pt;}
.ye9{bottom:539.924000pt;}
.y47{bottom:544.713333pt;}
.yb{bottom:545.142667pt;}
.ya6{bottom:545.426667pt;}
.y5c{bottom:547.289333pt;}
.y80{bottom:548.132000pt;}
.y1e{bottom:553.096000pt;}
.yd0{bottom:556.368000pt;}
.y111{bottom:557.761333pt;}
.ya5{bottom:563.492000pt;}
.y5b{bottom:566.550667pt;}
.y102{bottom:567.392000pt;}
.y7f{bottom:567.393333pt;}
.ye8{bottom:568.814667pt;}
.ya{bottom:574.034667pt;}
.ycf{bottom:574.433333pt;}
.y3b{bottom:577.147467pt;}
.y1a{bottom:577.893200pt;}
.ya4{bottom:581.557333pt;}
.y5a{bottom:585.812000pt;}
.y101{bottom:586.653333pt;}
.y7e{bottom:586.654667pt;}
.ye7{bottom:588.076000pt;}
.yce{bottom:592.498667pt;}
.y9{bottom:593.296000pt;}
.ya3{bottom:599.622667pt;}
.y59{bottom:605.073333pt;}
.y7d{bottom:605.914667pt;}
.ycd{bottom:610.564000pt;}
.y100{bottom:615.545333pt;}
.ye6{bottom:616.968000pt;}
.ya2{bottom:617.689333pt;}
.y8{bottom:622.186667pt;}
.y58{bottom:624.334667pt;}
.y7c{bottom:625.176000pt;}
.ycc{bottom:628.629333pt;}
.yff{bottom:634.806667pt;}
.ya1{bottom:635.754667pt;}
.ye5{bottom:636.229333pt;}
.y3c{bottom:636.906400pt;}
.y1b{bottom:638.103333pt;}
.y7{bottom:641.448000pt;}
.y57{bottom:643.594667pt;}
.y7b{bottom:644.437333pt;}
.ycb{bottom:646.696000pt;}
.ya0{bottom:653.820000pt;}
.yfe{bottom:654.068000pt;}
.y56{bottom:662.856000pt;}
.y7a{bottom:663.698667pt;}
.yca{bottom:664.761333pt;}
.ye4{bottom:665.121333pt;}
.y6{bottom:670.340000pt;}
.y9f{bottom:671.885333pt;}
.y121{bottom:673.328000pt;}
.y55{bottom:682.117333pt;}
.yc9{bottom:682.826667pt;}
.yfd{bottom:682.958667pt;}
.y79{bottom:682.960000pt;}
.ye3{bottom:684.381333pt;}
.y5{bottom:689.601333pt;}
.y9e{bottom:689.950667pt;}
.yc8{bottom:700.892000pt;}
.y54{bottom:701.378667pt;}
.y78{bottom:702.220000pt;}
.ye2{bottom:703.642667pt;}
.y9d{bottom:708.016000pt;}
.y4{bottom:718.492000pt;}
.yc7{bottom:718.957333pt;}
.y53{bottom:720.640000pt;}
.y77{bottom:721.481333pt;}
.y9c{bottom:726.082667pt;}
.y1f{bottom:727.644800pt;}
.y11c{bottom:731.112000pt;}
.ye1{bottom:732.534667pt;}
.yc6{bottom:737.022667pt;}
.y52{bottom:739.900000pt;}
.y76{bottom:740.742667pt;}
.y9b{bottom:744.148000pt;}
.yfc{bottom:750.373333pt;}
.ye0{bottom:751.796000pt;}
.yc5{bottom:755.089333pt;}
.y51{bottom:759.161333pt;}
.y75{bottom:760.004000pt;}
.y9a{bottom:762.213333pt;}
.yfb{bottom:769.634667pt;}
.yc4{bottom:773.154667pt;}
.y50{bottom:778.422667pt;}
.y74{bottom:779.265333pt;}
.y99{bottom:780.278667pt;}
.ydf{bottom:780.688000pt;}
.yfa{bottom:788.894667pt;}
.yc3{bottom:791.220000pt;}
.y4f{bottom:797.684000pt;}
.y98{bottom:798.344000pt;}
.y73{bottom:798.525333pt;}
.y92{bottom:798.526667pt;}
.yde{bottom:799.948000pt;}
.y120{bottom:808.156000pt;}
.yc2{bottom:809.285333pt;}
.y3{bottom:816.126667pt;}
.y97{bottom:816.410667pt;}
.y4e{bottom:816.945333pt;}
.y72{bottom:817.786667pt;}
.ydd{bottom:819.209333pt;}
.yc1{bottom:827.350667pt;}
.y96{bottom:834.476000pt;}
.y71{bottom:837.048000pt;}
.y4d{bottom:837.269333pt;}
.yc0{bottom:845.417333pt;}
.ydc{bottom:848.101333pt;}
.y95{bottom:852.541333pt;}
.y70{bottom:856.309333pt;}
.y4c{bottom:856.529333pt;}
.ybf{bottom:863.482667pt;}
.y14{bottom:865.017333pt;}
.y110{bottom:865.940000pt;}
.ydb{bottom:867.362667pt;}
.y2{bottom:873.577333pt;}
.y6f{bottom:875.570667pt;}
.y94{bottom:878.593333pt;}
.ybe{bottom:881.548000pt;}
.yf9{bottom:885.201333pt;}
.yda{bottom:886.624000pt;}
.y6e{bottom:894.832000pt;}
.ybd{bottom:899.613333pt;}
.y13{bottom:900.218667pt;}
.y45{bottom:900.810667pt;}
.yf8{bottom:904.461333pt;}
.y1{bottom:906.786667pt;}
.y4b{bottom:914.092000pt;}
.yd9{bottom:915.514667pt;}
.ybc{bottom:917.678667pt;}
.y93{bottom:919.116000pt;}
.y11f{bottom:923.722667pt;}
.y4a{bottom:933.353333pt;}
.yd8{bottom:934.776000pt;}
.y12{bottom:935.420000pt;}
.ybb{bottom:935.744000pt;}
.y49{bottom:952.614667pt;}
.y16{bottom:953.244800pt;}
.yba{bottom:953.810667pt;}
.y15{bottom:971.232000pt;}
.y11{bottom:971.876000pt;}
.hb{height:8.848533pt;}
.h5{height:19.396122pt;}
.hc{height:26.269867pt;}
.hf{height:30.945242pt;}
.h10{height:31.200285pt;}
.h12{height:31.473242pt;}
.h11{height:31.478575pt;}
.he{height:31.523840pt;}
.h8{height:32.783596pt;}
.h15{height:37.654400pt;}
.h7{height:38.681455pt;}
.h6{height:38.814788pt;}
.h18{height:42.065490pt;}
.h17{height:42.356399pt;}
.h19{height:42.705490pt;}
.ha{height:46.099251pt;}
.h4{height:46.418057pt;}
.h16{height:46.800623pt;}
.h3{height:54.018225pt;}
.h14{height:56.182575pt;}
.h13{height:56.715908pt;}
.h9{height:67.392553pt;}
.h2{height:78.242000pt;}
.hd{height:676.800000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:134.727067pt;}
.w2{width:135.510400pt;}
.w5{width:136.068133pt;}
.w3{width:586.560000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:11.969333pt;}
.xf{left:14.225333pt;}
.x17{left:17.358667pt;}
.x10{left:21.156267pt;}
.x18{left:24.289600pt;}
.x1e{left:26.457867pt;}
.x11{left:28.663733pt;}
.x19{left:31.765733pt;}
.x21{left:34.071867pt;}
.xb{left:56.400000pt;}
.x4{left:119.056000pt;}
.x2{left:125.744000pt;}
.x5f{left:127.026667pt;}
.x27{left:134.996000pt;}
.x7{left:136.860000pt;}
.x5{left:138.317333pt;}
.x1b{left:145.557733pt;}
.xa{left:147.788667pt;}
.x14{left:150.922000pt;}
.x6{left:158.076000pt;}
.x4d{left:160.501333pt;}
.x4e{left:173.253333pt;}
.x28{left:185.034667pt;}
.x5d{left:192.314667pt;}
.x29{left:198.318667pt;}
.x5e{left:202.996000pt;}
.x2a{left:211.204000pt;}
.x2b{left:223.956000pt;}
.x26{left:230.268667pt;}
.x24{left:231.384133pt;}
.x25{left:232.950800pt;}
.x2c{left:236.576000pt;}
.x23{left:241.285467pt;}
.x20{left:242.400933pt;}
.x22{left:243.967600pt;}
.x1f{left:246.956800pt;}
.x12{left:248.072267pt;}
.x1a{left:249.638933pt;}
.x4f{left:262.253333pt;}
.x1{left:263.281333pt;}
.x2d{left:268.522667pt;}
.x2e{left:274.698667pt;}
.x1c{left:283.881867pt;}
.xc{left:285.555067pt;}
.x15{left:287.905067pt;}
.x60{left:297.426667pt;}
.x2f{left:300.204000pt;}
.x30{left:312.956000pt;}
.x50{left:313.890667pt;}
.x31{left:325.708000pt;}
.x51{left:326.776000pt;}
.x3{left:329.154667pt;}
.x32{left:338.460000pt;}
.x52{left:339.528000pt;}
.x33{left:351.212000pt;}
.x53{left:352.280000pt;}
.x34{left:363.965333pt;}
.x54{left:364.900000pt;}
.x35{left:376.717333pt;}
.x55{left:377.784000pt;}
.x36{left:389.469333pt;}
.x56{left:390.536000pt;}
.x9{left:392.865333pt;}
.x37{left:402.221333pt;}
.x57{left:403.289333pt;}
.x38{left:414.973333pt;}
.x58{left:415.908000pt;}
.x1d{left:422.206000pt;}
.xd{left:423.321467pt;}
.x16{left:424.888133pt;}
.x39{left:427.725333pt;}
.x59{left:435.102667pt;}
.x3a{left:440.345333pt;}
.x5a{left:441.280000pt;}
.x3b{left:453.230667pt;}
.x3c{left:465.849333pt;}
.x5b{left:466.784000pt;}
.x3d{left:478.734667pt;}
.x3e{left:491.486667pt;}
.x3f{left:504.238667pt;}
.x40{left:516.992000pt;}
.x8{left:524.685333pt;}
.x41{left:529.744000pt;}
.x42{left:542.496000pt;}
.x43{left:555.248000pt;}
.xe{left:561.081600pt;}
.x44{left:568.000000pt;}
.x45{left:580.752000pt;}
.x5c{left:587.730667pt;}
.x46{left:593.504000pt;}
.x47{left:606.257333pt;}
.x48{left:619.009333pt;}
.x49{left:631.761333pt;}
.x4a{left:644.513333pt;}
.x4b{left:657.133333pt;}
.x4c{left:669.752000pt;}
}




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