
    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_f92ce89a5f52e1b76fbfed2d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.969000;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_f92ce89a5f52e1b76fbfed2d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.969000;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_bec8c5bb7a9e419b0a3b6772.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.720000;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_e24776e73074e93f1c27a902.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.720000;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_ba10ac5a4abb2545bb683e0b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.969000;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_10029e432b15e451982f1bbe.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.893555;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_cc5892a3d7ee0570b2df568e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_98fe1650ab9eab812e70b8bb.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_8eae2a66ed9dd16368eb7a9b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893066;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_83f3951664f6b292f9c50002.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910645;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_2ea141fc117058a88231b0ff.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910645;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_4cb63eaec95b98f295ad9d95.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.707000;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_7da29a1cc74fd240d6b56f4e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.940000;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_bec8c5bb7a9e419b0a3b6772.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.720000;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_bc67eace01479e1446084690.woff2')format("woff");}.fff{font-family:fff;line-height:0.945813;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_c5347890500af7d67c33a20e.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.700000;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_c3a9bcac8e1a5df55afc1f43.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-4.923600px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.619400px;}
.v3{vertical-align:35.586000px;}
.ls5{letter-spacing:-5.400000px;}
.ls6{letter-spacing:-4.200000px;}
.ls7{letter-spacing:-3.300000px;}
.ls2{letter-spacing:-0.768000px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:49.020000px;}
.ls3{letter-spacing:62.481000px;}
.ls0{letter-spacing:62.539200px;}
.ls8{letter-spacing:70.020000px;}
.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;}
}
.ws2{word-spacing:-18.000000px;}
.ws3{word-spacing:-15.000000px;}
.ws58{word-spacing:-6.480000px;}
.ws51{word-spacing:-6.060000px;}
.wsd4{word-spacing:-5.940000px;}
.wsb6{word-spacing:-5.700000px;}
.ws92{word-spacing:-5.340000px;}
.wsc3{word-spacing:-5.220000px;}
.ws13{word-spacing:-4.800000px;}
.ws5e{word-spacing:-4.740000px;}
.wsd7{word-spacing:-4.620000px;}
.ws4e{word-spacing:-3.900000px;}
.ws50{word-spacing:-3.840000px;}
.wsc6{word-spacing:-3.720000px;}
.ws30{word-spacing:-3.300000px;}
.wscd{word-spacing:-2.940000px;}
.ws11{word-spacing:-2.880000px;}
.ws42{word-spacing:-2.280000px;}
.ws8e{word-spacing:-2.160000px;}
.ws10{word-spacing:-2.040000px;}
.ws31{word-spacing:-1.998000px;}
.wsd2{word-spacing:-1.980000px;}
.ws99{word-spacing:-1.740000px;}
.ws6{word-spacing:-1.620000px;}
.ws66{word-spacing:-1.080000px;}
.ws5b{word-spacing:-0.972000px;}
.ws34{word-spacing:-0.960000px;}
.ws84{word-spacing:-0.840000px;}
.ws3b{word-spacing:-0.780000px;}
.ws3c{word-spacing:-0.720000px;}
.ws90{word-spacing:-0.480000px;}
.ws4b{word-spacing:-0.360000px;}
.ws4{word-spacing:0.000000px;}
.ws5{word-spacing:0.060000px;}
.ws6e{word-spacing:0.240000px;}
.ws6c{word-spacing:0.600000px;}
.ws39{word-spacing:0.660000px;}
.ws1{word-spacing:0.720000px;}
.ws7{word-spacing:0.780000px;}
.wsda{word-spacing:0.960000px;}
.wsa4{word-spacing:1.080000px;}
.wsc1{word-spacing:1.200000px;}
.wsc2{word-spacing:1.320000px;}
.wscc{word-spacing:1.440000px;}
.ws69{word-spacing:1.560000px;}
.wsf{word-spacing:1.620000px;}
.ws6d{word-spacing:1.800000px;}
.ws5c{word-spacing:2.100000px;}
.ws1d{word-spacing:2.160000px;}
.wsce{word-spacing:2.220000px;}
.ws9f{word-spacing:2.280000px;}
.ws52{word-spacing:2.340000px;}
.ws7d{word-spacing:2.580000px;}
.wsa3{word-spacing:2.700000px;}
.ws88{word-spacing:2.760000px;}
.wsa5{word-spacing:2.820000px;}
.ws91{word-spacing:3.000000px;}
.ws49{word-spacing:3.240000px;}
.ws40{word-spacing:3.300000px;}
.ws86{word-spacing:3.780000px;}
.ws95{word-spacing:3.840000px;}
.wsb8{word-spacing:3.960000px;}
.ws1f{word-spacing:4.140000px;}
.ws3f{word-spacing:4.200000px;}
.ws15{word-spacing:4.260000px;}
.wsc4{word-spacing:4.680000px;}
.ws7c{word-spacing:4.740000px;}
.wsd3{word-spacing:4.800000px;}
.ws8f{word-spacing:4.860000px;}
.ws5a{word-spacing:4.980000px;}
.wsbb{word-spacing:5.220000px;}
.ws5f{word-spacing:5.280000px;}
.ws55{word-spacing:5.580000px;}
.wsa{word-spacing:5.760000px;}
.ws8{word-spacing:6.000000px;}
.ws24{word-spacing:6.180000px;}
.ws81{word-spacing:6.240000px;}
.ws70{word-spacing:6.300000px;}
.wsb{word-spacing:6.600000px;}
.ws53{word-spacing:6.900000px;}
.wsa7{word-spacing:6.960000px;}
.wsd9{word-spacing:7.200000px;}
.ws59{word-spacing:7.260000px;}
.ws17{word-spacing:7.320000px;}
.ws87{word-spacing:7.440000px;}
.wsb4{word-spacing:7.560000px;}
.ws7a{word-spacing:7.620000px;}
.ws38{word-spacing:7.740000px;}
.ws22{word-spacing:7.860000px;}
.ws5d{word-spacing:7.980000px;}
.wsa2{word-spacing:8.040000px;}
.ws8a{word-spacing:8.100000px;}
.wsd8{word-spacing:8.280000px;}
.ws85{word-spacing:8.520000px;}
.wsab{word-spacing:8.640000px;}
.ws9e{word-spacing:8.700000px;}
.wsca{word-spacing:8.940000px;}
.ws9{word-spacing:9.060000px;}
.ws94{word-spacing:9.240000px;}
.wsbe{word-spacing:9.420000px;}
.ws7e{word-spacing:9.480000px;}
.ws76{word-spacing:9.540000px;}
.wsb1{word-spacing:9.600000px;}
.ws6a{word-spacing:9.720000px;}
.ws16{word-spacing:9.900000px;}
.ws7b{word-spacing:10.140000px;}
.ws77{word-spacing:10.200000px;}
.ws83{word-spacing:10.500000px;}
.ws32{word-spacing:10.560000px;}
.ws1a{word-spacing:10.620000px;}
.ws82{word-spacing:10.680000px;}
.ws19{word-spacing:10.740000px;}
.ws7f{word-spacing:10.860000px;}
.wsc5{word-spacing:10.920000px;}
.ws80{word-spacing:10.980000px;}
.ws93{word-spacing:11.220000px;}
.ws12{word-spacing:11.580000px;}
.wsc{word-spacing:11.700000px;}
.ws9d{word-spacing:11.880000px;}
.ws8d{word-spacing:12.000000px;}
.wsd0{word-spacing:12.480000px;}
.ws72{word-spacing:12.540000px;}
.wsb7{word-spacing:12.600000px;}
.wsa0{word-spacing:12.720000px;}
.ws74{word-spacing:12.840000px;}
.ws21{word-spacing:12.960000px;}
.wsbd{word-spacing:13.080000px;}
.ws96{word-spacing:13.320000px;}
.ws60{word-spacing:13.560000px;}
.ws1c{word-spacing:13.980000px;}
.ws20{word-spacing:14.160000px;}
.ws1e{word-spacing:14.220000px;}
.ws9b{word-spacing:14.400000px;}
.ws1b{word-spacing:14.460000px;}
.ws23{word-spacing:14.880000px;}
.ws71{word-spacing:14.940000px;}
.ws4a{word-spacing:15.180000px;}
.ws75{word-spacing:15.360000px;}
.wsaa{word-spacing:15.660000px;}
.ws73{word-spacing:16.320000px;}
.ws33{word-spacing:16.380000px;}
.wsb5{word-spacing:16.500000px;}
.ws9c{word-spacing:16.680000px;}
.ws3a{word-spacing:17.400000px;}
.wsb9{word-spacing:17.580000px;}
.ws8b{word-spacing:17.700000px;}
.wsc7{word-spacing:18.240000px;}
.wsad{word-spacing:18.420000px;}
.ws78{word-spacing:18.540000px;}
.wsba{word-spacing:18.660000px;}
.ws18{word-spacing:19.440000px;}
.wsd6{word-spacing:19.500000px;}
.ws61{word-spacing:19.860000px;}
.ws41{word-spacing:19.920000px;}
.wscb{word-spacing:20.760000px;}
.ws8c{word-spacing:20.880000px;}
.ws6b{word-spacing:21.060000px;}
.ws3d{word-spacing:21.360000px;}
.ws54{word-spacing:21.600000px;}
.wsdb{word-spacing:21.960000px;}
.wsd5{word-spacing:22.740000px;}
.ws9a{word-spacing:23.040000px;}
.ws2f{word-spacing:23.340000px;}
.ws79{word-spacing:23.520000px;}
.wsbc{word-spacing:24.240000px;}
.ws98{word-spacing:24.540000px;}
.ws35{word-spacing:25.620000px;}
.ws4c{word-spacing:25.740000px;}
.ws37{word-spacing:25.860000px;}
.wsa1{word-spacing:26.940000px;}
.ws36{word-spacing:27.000000px;}
.ws3e{word-spacing:27.480000px;}
.ws14{word-spacing:27.600000px;}
.ws97{word-spacing:28.080000px;}
.wsd1{word-spacing:28.560000px;}
.wsa6{word-spacing:29.220000px;}
.wsc8{word-spacing:29.460000px;}
.ws89{word-spacing:29.520000px;}
.wsb3{word-spacing:29.820000px;}
.wsa8{word-spacing:30.120000px;}
.wsb0{word-spacing:30.960000px;}
.ws6f{word-spacing:31.320000px;}
.wsa9{word-spacing:32.700000px;}
.wsc0{word-spacing:33.060000px;}
.wscf{word-spacing:35.460000px;}
.wsb2{word-spacing:37.200000px;}
.ws56{word-spacing:39.720000px;}
.ws4f{word-spacing:39.900000px;}
.wsbf{word-spacing:40.440000px;}
.ws4d{word-spacing:41.220000px;}
.wsaf{word-spacing:41.460000px;}
.wsae{word-spacing:41.700000px;}
.wsdc{word-spacing:43.260000px;}
.ws57{word-spacing:47.100000px;}
.ws68{word-spacing:49.320000px;}
.wsac{word-spacing:49.860000px;}
.wsc9{word-spacing:58.560000px;}
.wse{word-spacing:63.240000px;}
.ws63{word-spacing:91.465200px;}
.ws67{word-spacing:104.280000px;}
.ws62{word-spacing:108.486000px;}
.ws25{word-spacing:127.234800px;}
.ws64{word-spacing:127.980000px;}
.ws48{word-spacing:139.212000px;}
.ws2c{word-spacing:140.994000px;}
.ws28{word-spacing:148.230000px;}
.ws26{word-spacing:150.660000px;}
.ws2a{word-spacing:151.254000px;}
.ws2b{word-spacing:152.496000px;}
.ws65{word-spacing:153.468000px;}
.ws29{word-spacing:157.194000px;}
.ws45{word-spacing:175.122000px;}
.ws44{word-spacing:178.200000px;}
.ws46{word-spacing:187.164000px;}
.ws47{word-spacing:188.265600px;}
.ws27{word-spacing:192.736800px;}
.ws2d{word-spacing:201.096000px;}
.ws43{word-spacing:228.981600px;}
.ws2e{word-spacing:288.586800px;}
.wsd{word-spacing:386.314800px;}
.ws0{word-spacing:1728.777600px;}
._1d{margin-left:-51.000000px;}
._4e{margin-left:-34.260000px;}
._22{margin-left:-15.360000px;}
._56{margin-left:-8.604000px;}
._1f{margin-left:-6.594000px;}
._4{margin-left:-5.508000px;}
._2{margin-left:-4.386000px;}
._5{margin-left:-3.318000px;}
._3{margin-left:-2.181000px;}
._0{margin-left:-1.140000px;}
._1{width:1.380000px;}
._c{width:2.986200px;}
._e{width:4.351800px;}
._8{width:5.356800px;}
._a{width:6.453000px;}
._7{width:7.770600px;}
._d{width:9.558000px;}
._b{width:10.627200px;}
._14{width:11.802000px;}
._16{width:12.837000px;}
._53{width:13.953000px;}
._6{width:15.670800px;}
._1a{width:17.485200px;}
._15{width:19.314000px;}
._13{width:20.406000px;}
._48{width:21.558000px;}
._10{width:22.590000px;}
._1c{width:23.772000px;}
._9{width:25.293600px;}
._11{width:26.413200px;}
._21{width:27.454200px;}
._1b{width:28.542000px;}
._44{width:29.622000px;}
._55{width:31.458000px;}
._51{width:33.012000px;}
._47{width:34.458000px;}
._59{width:35.640000px;}
._42{width:36.690000px;}
._18{width:37.782000px;}
._17{width:38.856000px;}
._49{width:40.566000px;}
._4a{width:41.592000px;}
._58{width:42.816000px;}
._45{width:44.280000px;}
._4d{width:45.660600px;}
._4c{width:47.372400px;}
._4b{width:48.588600px;}
._20{width:50.177400px;}
._19{width:51.402000px;}
._43{width:52.620000px;}
._25{width:54.786000px;}
._1e{width:57.060000px;}
._57{width:58.440000px;}
._41{width:59.460000px;}
._50{width:60.750000px;}
._54{width:61.980000px;}
._24{width:63.126000px;}
._f{width:64.260000px;}
._52{width:66.180000px;}
._46{width:67.680000px;}
._12{width:70.020000px;}
._35{width:73.008000px;}
._27{width:75.276000px;}
._36{width:86.184000px;}
._5a{width:93.066000px;}
._2f{width:98.766000px;}
._38{width:107.265000px;}
._39{width:115.506000px;}
._32{width:125.064000px;}
._28{width:136.393200px;}
._26{width:141.486000px;}
._2c{width:149.472000px;}
._30{width:155.520000px;}
._37{width:170.694000px;}
._3e{width:173.448000px;}
._33{width:177.984000px;}
._3d{width:187.725000px;}
._23{width:190.512000px;}
._3a{width:192.996000px;}
._29{width:200.901600px;}
._40{width:208.386000px;}
._2d{width:213.159600px;}
._3f{width:218.862000px;}
._3b{width:228.474000px;}
._2a{width:254.275200px;}
._34{width:260.874000px;}
._2e{width:273.402000px;}
._4f{width:287.658000px;}
._3c{width:312.660000px;}
._31{width:345.507600px;}
._2b{width:393.217200px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y37{bottom:63.438750px;}
.y2{bottom:64.760550px;}
.y1{bottom:65.586600px;}
.y178{bottom:86.409600px;}
.y134{bottom:88.137150px;}
.y67{bottom:98.737950px;}
.ye4{bottom:99.159600px;}
.y163{bottom:99.162150px;}
.y108{bottom:101.897100px;}
.ybb{bottom:104.460000px;}
.y177{bottom:105.909600px;}
.y133{bottom:107.637150px;}
.y91{bottom:117.997950px;}
.y66{bottom:118.237950px;}
.ye3{bottom:118.659600px;}
.y162{bottom:118.662150px;}
.y107{bottom:121.397100px;}
.y2d{bottom:123.942450px;}
.yba{bottom:123.960000px;}
.y176{bottom:125.409600px;}
.y132{bottom:127.137150px;}
.y90{bottom:137.497950px;}
.y65{bottom:137.737950px;}
.ye2{bottom:138.159600px;}
.y161{bottom:138.162150px;}
.y106{bottom:140.897100px;}
.y2c{bottom:143.442450px;}
.yb9{bottom:143.460000px;}
.y175{bottom:144.909600px;}
.y131{bottom:146.637150px;}
.y8f{bottom:156.997950px;}
.y64{bottom:157.237950px;}
.ye1{bottom:157.659600px;}
.y160{bottom:157.662150px;}
.y105{bottom:160.397100px;}
.y2b{bottom:162.942450px;}
.yb8{bottom:162.960000px;}
.y174{bottom:164.409600px;}
.y130{bottom:166.137150px;}
.y8e{bottom:176.497950px;}
.y63{bottom:176.737950px;}
.ye0{bottom:177.159600px;}
.y15f{bottom:177.162150px;}
.y2a{bottom:182.442450px;}
.yb7{bottom:182.460000px;}
.y173{bottom:183.909600px;}
.y12f{bottom:185.637150px;}
.y8d{bottom:195.997950px;}
.y62{bottom:196.237950px;}
.ydf{bottom:196.659600px;}
.y15e{bottom:196.662150px;}
.y104{bottom:199.397100px;}
.y29{bottom:201.942450px;}
.yb6{bottom:201.960000px;}
.y172{bottom:203.409600px;}
.y12e{bottom:205.137150px;}
.y8c{bottom:215.497950px;}
.y61{bottom:215.737950px;}
.y169{bottom:216.159600px;}
.y15d{bottom:216.162150px;}
.y103{bottom:218.897100px;}
.y28{bottom:221.442450px;}
.yb5{bottom:221.460000px;}
.y171{bottom:222.159600px;}
.y12d{bottom:224.637150px;}
.y60{bottom:235.237950px;}
.yde{bottom:235.659600px;}
.y15c{bottom:235.662150px;}
.y102{bottom:238.397100px;}
.y170{bottom:240.909600px;}
.y27{bottom:240.942450px;}
.yb4{bottom:240.960000px;}
.y12c{bottom:244.137150px;}
.y8b{bottom:254.497950px;}
.y5f{bottom:254.737950px;}
.ydd{bottom:255.159600px;}
.y15b{bottom:255.162150px;}
.y101{bottom:257.897100px;}
.y16f{bottom:259.659600px;}
.y26{bottom:260.442450px;}
.yb3{bottom:260.460000px;}
.y12b{bottom:263.637150px;}
.y8a{bottom:273.997950px;}
.y5e{bottom:274.237950px;}
.ydc{bottom:274.659600px;}
.y15a{bottom:274.662150px;}
.y100{bottom:277.397100px;}
.y16e{bottom:278.409600px;}
.y25{bottom:279.942450px;}
.yb2{bottom:279.960000px;}
.y12a{bottom:283.137150px;}
.y89{bottom:293.497950px;}
.y5d{bottom:293.737950px;}
.ydb{bottom:294.159600px;}
.y159{bottom:294.162150px;}
.yff{bottom:296.897100px;}
.y16d{bottom:297.159600px;}
.y24{bottom:299.442450px;}
.yb1{bottom:299.460000px;}
.y129{bottom:302.637150px;}
.y88{bottom:312.997950px;}
.y5c{bottom:313.237950px;}
.yda{bottom:313.659600px;}
.y158{bottom:313.662150px;}
.y16c{bottom:315.909600px;}
.yfe{bottom:316.397100px;}
.y23{bottom:318.942450px;}
.yb0{bottom:318.960000px;}
.y128{bottom:322.137150px;}
.y87{bottom:332.497950px;}
.y5b{bottom:332.737950px;}
.yd9{bottom:333.159600px;}
.y157{bottom:333.162150px;}
.y16b{bottom:334.659600px;}
.yfd{bottom:335.897100px;}
.y22{bottom:338.442450px;}
.yaf{bottom:338.460000px;}
.y127{bottom:341.637150px;}
.y5a{bottom:352.237950px;}
.yd8{bottom:352.659600px;}
.y156{bottom:352.662150px;}
.y16a{bottom:353.409600px;}
.yfc{bottom:355.397100px;}
.y21{bottom:357.942450px;}
.yae{bottom:357.960000px;}
.y126{bottom:361.137150px;}
.y86{bottom:371.497950px;}
.y59{bottom:371.737950px;}
.y168{bottom:372.159600px;}
.y155{bottom:372.162150px;}
.yfb{bottom:374.897100px;}
.y20{bottom:377.442450px;}
.yad{bottom:377.460000px;}
.y125{bottom:380.637150px;}
.y85{bottom:390.997950px;}
.y58{bottom:391.237950px;}
.yd7{bottom:391.659600px;}
.y154{bottom:391.662150px;}
.yfa{bottom:394.397100px;}
.y1f{bottom:396.942450px;}
.yac{bottom:396.960000px;}
.y124{bottom:400.137150px;}
.y84{bottom:410.497950px;}
.y57{bottom:410.737950px;}
.yd6{bottom:411.159600px;}
.y153{bottom:411.162150px;}
.yf9{bottom:413.897100px;}
.y1e{bottom:416.442450px;}
.yab{bottom:416.460000px;}
.y123{bottom:419.637150px;}
.y83{bottom:429.997950px;}
.y56{bottom:430.237950px;}
.yd5{bottom:430.659600px;}
.y152{bottom:430.662150px;}
.yf8{bottom:433.397100px;}
.y1d{bottom:435.942450px;}
.yaa{bottom:435.960000px;}
.y122{bottom:439.137150px;}
.y82{bottom:449.497950px;}
.y55{bottom:449.737950px;}
.yd4{bottom:450.159600px;}
.y151{bottom:450.162150px;}
.yf7{bottom:452.897100px;}
.y1c{bottom:455.442450px;}
.ya9{bottom:455.460000px;}
.y36{bottom:456.139950px;}
.y121{bottom:458.637150px;}
.y81{bottom:468.997950px;}
.y54{bottom:469.237950px;}
.yd3{bottom:469.659600px;}
.y150{bottom:469.662150px;}
.yf6{bottom:472.397100px;}
.ya8{bottom:474.960000px;}
.y120{bottom:478.137150px;}
.y35{bottom:478.639950px;}
.y1b{bottom:480.942450px;}
.y53{bottom:488.737950px;}
.yd2{bottom:489.159600px;}
.y14f{bottom:489.162150px;}
.ya7{bottom:494.460000px;}
.y11f{bottom:497.637150px;}
.y34{bottom:501.139950px;}
.y80{bottom:507.997950px;}
.y52{bottom:508.237950px;}
.y167{bottom:508.659600px;}
.y14e{bottom:508.662150px;}
.yf5{bottom:511.397100px;}
.ya6{bottom:513.960000px;}
.y7f{bottom:527.497950px;}
.y51{bottom:527.737950px;}
.yd1{bottom:528.159600px;}
.y14d{bottom:528.162150px;}
.y1a{bottom:529.005450px;}
.yf4{bottom:530.897100px;}
.ya5{bottom:533.460000px;}
.y11e{bottom:536.317650px;}
.y33{bottom:541.639950px;}
.y11d{bottom:545.416650px;}
.y7e{bottom:546.997950px;}
.y19{bottom:547.000950px;}
.y50{bottom:547.237950px;}
.yd0{bottom:547.659600px;}
.y14c{bottom:547.662150px;}
.yf3{bottom:550.397100px;}
.ya4{bottom:552.960000px;}
.y18{bottom:564.996450px;}
.y7d{bottom:566.497950px;}
.y4f{bottom:566.737950px;}
.ycf{bottom:567.159600px;}
.y14b{bottom:567.162150px;}
.yf2{bottom:569.350950px;}
.ya3{bottom:572.460000px;}
.yf1{bottom:578.449950px;}
.y17{bottom:582.991950px;}
.y11c{bottom:583.324650px;}
.y7c{bottom:585.997950px;}
.y4e{bottom:586.237950px;}
.y32{bottom:586.639950px;}
.yce{bottom:586.659600px;}
.y14a{bottom:586.662150px;}
.y16{bottom:600.987450px;}
.ya2{bottom:602.487450px;}
.y7b{bottom:605.497950px;}
.y4d{bottom:605.737950px;}
.ycd{bottom:606.159600px;}
.y149{bottom:606.162150px;}
.yf0{bottom:606.772950px;}
.y11b{bottom:613.375650px;}
.yef{bottom:615.871950px;}
.y15{bottom:618.982950px;}
.y11a{bottom:622.474650px;}
.y7a{bottom:624.997950px;}
.y4c{bottom:625.237950px;}
.ycc{bottom:625.659600px;}
.y148{bottom:625.662150px;}
.y31{bottom:627.139950px;}
.ya1{bottom:627.475950px;}
.y14{bottom:636.978450px;}
.y79{bottom:644.497950px;}
.y4b{bottom:644.737950px;}
.ycb{bottom:645.159600px;}
.y147{bottom:645.162150px;}
.yee{bottom:653.293950px;}
.y119{bottom:653.929650px;}
.ya0{bottom:654.475950px;}
.y13{bottom:654.973950px;}
.y118{bottom:663.028650px;}
.y30{bottom:663.139950px;}
.y78{bottom:663.997950px;}
.y4a{bottom:664.237950px;}
.y166{bottom:664.659600px;}
.y146{bottom:664.662150px;}
.y12{bottom:672.969450px;}
.yed{bottom:681.603450px;}
.y77{bottom:683.497950px;}
.y49{bottom:683.737950px;}
.yca{bottom:684.159600px;}
.y145{bottom:684.162150px;}
.y9f{bottom:685.579950px;}
.yec{bottom:690.715950px;}
.y11{bottom:690.964950px;}
.y117{bottom:697.075650px;}
.y2f{bottom:699.139950px;}
.y76{bottom:702.997950px;}
.y48{bottom:703.237950px;}
.yc9{bottom:703.659600px;}
.y144{bottom:703.662150px;}
.y116{bottom:706.174650px;}
.y10{bottom:708.960450px;}
.y9e{bottom:714.118950px;}
.yeb{bottom:719.551950px;}
.y75{bottom:722.497950px;}
.y47{bottom:722.737950px;}
.yc8{bottom:723.159600px;}
.y143{bottom:723.162150px;}
.yf{bottom:726.955950px;}
.yea{bottom:728.650950px;}
.y2e{bottom:735.139950px;}
.y9d{bottom:738.837450px;}
.y115{bottom:740.208150px;}
.y74{bottom:741.997950px;}
.y46{bottom:742.237950px;}
.yc7{bottom:742.659600px;}
.y142{bottom:742.662150px;}
.ye{bottom:744.951450px;}
.ye9{bottom:757.486950px;}
.y73{bottom:761.497950px;}
.y45{bottom:761.737950px;}
.yc6{bottom:762.159600px;}
.y141{bottom:762.162150px;}
.y114{bottom:762.401400px;}
.yd{bottom:762.946950px;}
.y9c{bottom:764.284950px;}
.ye8{bottom:766.585950px;}
.yc{bottom:780.942450px;}
.y72{bottom:780.997950px;}
.y44{bottom:781.237950px;}
.yc5{bottom:781.659600px;}
.y140{bottom:781.662150px;}
.y113{bottom:781.901400px;}
.y9b{bottom:789.678450px;}
.ye7{bottom:794.908950px;}
.yb{bottom:798.942450px;}
.y71{bottom:800.497950px;}
.y43{bottom:800.737950px;}
.y165{bottom:801.159600px;}
.y13f{bottom:801.162150px;}
.y112{bottom:801.401400px;}
.ye6{bottom:804.007950px;}
.y9a{bottom:815.220450px;}
.y70{bottom:819.997950px;}
.y42{bottom:820.237950px;}
.yc4{bottom:820.659600px;}
.y13e{bottom:820.662150px;}
.y111{bottom:820.901400px;}
.ye5{bottom:835.719450px;}
.y6f{bottom:839.497950px;}
.y99{bottom:839.700450px;}
.y41{bottom:839.737950px;}
.yc3{bottom:840.159600px;}
.y13d{bottom:840.162150px;}
.y110{bottom:840.401400px;}
.ya{bottom:840.951450px;}
.y9{bottom:858.946950px;}
.y6e{bottom:858.997950px;}
.y40{bottom:859.237950px;}
.yc2{bottom:859.659600px;}
.y13c{bottom:859.662150px;}
.y10f{bottom:859.901400px;}
.y8{bottom:876.942450px;}
.y98{bottom:878.700450px;}
.y3f{bottom:878.737950px;}
.yc1{bottom:879.159600px;}
.y13b{bottom:879.162150px;}
.y10e{bottom:879.401400px;}
.y7{bottom:894.942450px;}
.y6d{bottom:897.997950px;}
.y97{bottom:898.200450px;}
.y3e{bottom:898.237950px;}
.yc0{bottom:898.659600px;}
.y13a{bottom:898.662150px;}
.y10d{bottom:898.901400px;}
.y6c{bottom:917.497950px;}
.y96{bottom:917.700450px;}
.y3d{bottom:917.737950px;}
.ybf{bottom:918.159600px;}
.y139{bottom:918.162150px;}
.y6b{bottom:936.997950px;}
.y95{bottom:937.200450px;}
.y3c{bottom:937.237950px;}
.y164{bottom:937.659600px;}
.y138{bottom:937.662150px;}
.y10c{bottom:937.901400px;}
.y6{bottom:939.949950px;}
.y6a{bottom:956.497950px;}
.y94{bottom:956.700450px;}
.y3b{bottom:956.737950px;}
.ybe{bottom:957.159600px;}
.y137{bottom:957.162150px;}
.y10b{bottom:957.401400px;}
.y5{bottom:965.442450px;}
.y69{bottom:975.997950px;}
.y93{bottom:976.200450px;}
.y3a{bottom:976.237950px;}
.ybd{bottom:976.659600px;}
.y136{bottom:976.662150px;}
.y10a{bottom:976.901400px;}
.y68{bottom:995.497950px;}
.y92{bottom:995.700450px;}
.y39{bottom:995.737950px;}
.ybc{bottom:996.159600px;}
.y135{bottom:996.162150px;}
.y109{bottom:996.401400px;}
.y4{bottom:1024.374150px;}
.y38{bottom:1027.506750px;}
.y3{bottom:1039.374150px;}
.h5{height:34.176000px;}
.h4{height:34.560000px;}
.h9{height:36.571289px;}
.h12{height:36.597656px;}
.h16{height:37.088508px;}
.h8{height:37.494141px;}
.h13{height:37.520508px;}
.h7{height:40.664062px;}
.h11{height:41.660156px;}
.hc{height:41.689453px;}
.h3{height:42.000000px;}
.h2{height:42.720000px;}
.he{height:46.200000px;}
.ha{height:48.796875px;}
.hd{height:50.400000px;}
.h10{height:52.492611px;}
.hf{height:53.467611px;}
.h6{height:60.996094px;}
.hb{height:62.534180px;}
.h15{height:73.052508px;}
.h14{height:73.106508px;}
.h1{height:1092.750000px;}
.h0{height:1092.960000px;}
.w1{width:774.000000px;}
.w0{width:774.360000px;}
.x0{left:0.000000px;}
.x1{left:63.779550px;}
.xe{left:65.202600px;}
.xc{left:73.559100px;}
.x1d{left:77.179500px;}
.xd{left:78.453150px;}
.x22{left:83.376000px;}
.x12{left:90.779550px;}
.x14{left:92.369250px;}
.x16{left:95.150250px;}
.x1e{left:98.442000px;}
.x18{left:100.982250px;}
.x20{left:103.315500px;}
.x21{left:109.687500px;}
.x15{left:110.918250px;}
.x19{left:117.290250px;}
.x17{left:121.178250px;}
.x13{left:127.347750px;}
.x1f{left:185.935500px;}
.xb{left:224.187900px;}
.x5{left:239.890500px;}
.x6{left:317.020500px;}
.xa{left:348.277050px;}
.xf{left:399.929550px;}
.x10{left:408.929550px;}
.x4{left:412.272150px;}
.x1b{left:416.562300px;}
.x23{left:421.195800px;}
.x9{left:425.524050px;}
.x11{left:426.929550px;}
.x1a{left:448.165800px;}
.x1c{left:526.735800px;}
.x8{left:531.134550px;}
.x7{left:544.354050px;}
.x3{left:614.196150px;}
.x2{left:632.875800px;}
@media print{
.v1{vertical-align:-4.376533pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.439467pt;}
.v3{vertical-align:31.632000pt;}
.ls5{letter-spacing:-4.800000pt;}
.ls6{letter-spacing:-3.733333pt;}
.ls7{letter-spacing:-2.933333pt;}
.ls2{letter-spacing:-0.682667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:43.573333pt;}
.ls3{letter-spacing:55.538667pt;}
.ls0{letter-spacing:55.590400pt;}
.ls8{letter-spacing:62.240000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws3{word-spacing:-13.333333pt;}
.ws58{word-spacing:-5.760000pt;}
.ws51{word-spacing:-5.386667pt;}
.wsd4{word-spacing:-5.280000pt;}
.wsb6{word-spacing:-5.066667pt;}
.ws92{word-spacing:-4.746667pt;}
.wsc3{word-spacing:-4.640000pt;}
.ws13{word-spacing:-4.266667pt;}
.ws5e{word-spacing:-4.213333pt;}
.wsd7{word-spacing:-4.106667pt;}
.ws4e{word-spacing:-3.466667pt;}
.ws50{word-spacing:-3.413333pt;}
.wsc6{word-spacing:-3.306667pt;}
.ws30{word-spacing:-2.933333pt;}
.wscd{word-spacing:-2.613333pt;}
.ws11{word-spacing:-2.560000pt;}
.ws42{word-spacing:-2.026667pt;}
.ws8e{word-spacing:-1.920000pt;}
.ws10{word-spacing:-1.813333pt;}
.ws31{word-spacing:-1.776000pt;}
.wsd2{word-spacing:-1.760000pt;}
.ws99{word-spacing:-1.546667pt;}
.ws6{word-spacing:-1.440000pt;}
.ws66{word-spacing:-0.960000pt;}
.ws5b{word-spacing:-0.864000pt;}
.ws34{word-spacing:-0.853333pt;}
.ws84{word-spacing:-0.746667pt;}
.ws3b{word-spacing:-0.693333pt;}
.ws3c{word-spacing:-0.640000pt;}
.ws90{word-spacing:-0.426667pt;}
.ws4b{word-spacing:-0.320000pt;}
.ws4{word-spacing:0.000000pt;}
.ws5{word-spacing:0.053333pt;}
.ws6e{word-spacing:0.213333pt;}
.ws6c{word-spacing:0.533333pt;}
.ws39{word-spacing:0.586667pt;}
.ws1{word-spacing:0.640000pt;}
.ws7{word-spacing:0.693333pt;}
.wsda{word-spacing:0.853333pt;}
.wsa4{word-spacing:0.960000pt;}
.wsc1{word-spacing:1.066667pt;}
.wsc2{word-spacing:1.173333pt;}
.wscc{word-spacing:1.280000pt;}
.ws69{word-spacing:1.386667pt;}
.wsf{word-spacing:1.440000pt;}
.ws6d{word-spacing:1.600000pt;}
.ws5c{word-spacing:1.866667pt;}
.ws1d{word-spacing:1.920000pt;}
.wsce{word-spacing:1.973333pt;}
.ws9f{word-spacing:2.026667pt;}
.ws52{word-spacing:2.080000pt;}
.ws7d{word-spacing:2.293333pt;}
.wsa3{word-spacing:2.400000pt;}
.ws88{word-spacing:2.453333pt;}
.wsa5{word-spacing:2.506667pt;}
.ws91{word-spacing:2.666667pt;}
.ws49{word-spacing:2.880000pt;}
.ws40{word-spacing:2.933333pt;}
.ws86{word-spacing:3.360000pt;}
.ws95{word-spacing:3.413333pt;}
.wsb8{word-spacing:3.520000pt;}
.ws1f{word-spacing:3.680000pt;}
.ws3f{word-spacing:3.733333pt;}
.ws15{word-spacing:3.786667pt;}
.wsc4{word-spacing:4.160000pt;}
.ws7c{word-spacing:4.213333pt;}
.wsd3{word-spacing:4.266667pt;}
.ws8f{word-spacing:4.320000pt;}
.ws5a{word-spacing:4.426667pt;}
.wsbb{word-spacing:4.640000pt;}
.ws5f{word-spacing:4.693333pt;}
.ws55{word-spacing:4.960000pt;}
.wsa{word-spacing:5.120000pt;}
.ws8{word-spacing:5.333333pt;}
.ws24{word-spacing:5.493333pt;}
.ws81{word-spacing:5.546667pt;}
.ws70{word-spacing:5.600000pt;}
.wsb{word-spacing:5.866667pt;}
.ws53{word-spacing:6.133333pt;}
.wsa7{word-spacing:6.186667pt;}
.wsd9{word-spacing:6.400000pt;}
.ws59{word-spacing:6.453333pt;}
.ws17{word-spacing:6.506667pt;}
.ws87{word-spacing:6.613333pt;}
.wsb4{word-spacing:6.720000pt;}
.ws7a{word-spacing:6.773333pt;}
.ws38{word-spacing:6.880000pt;}
.ws22{word-spacing:6.986667pt;}
.ws5d{word-spacing:7.093333pt;}
.wsa2{word-spacing:7.146667pt;}
.ws8a{word-spacing:7.200000pt;}
.wsd8{word-spacing:7.360000pt;}
.ws85{word-spacing:7.573333pt;}
.wsab{word-spacing:7.680000pt;}
.ws9e{word-spacing:7.733333pt;}
.wsca{word-spacing:7.946667pt;}
.ws9{word-spacing:8.053333pt;}
.ws94{word-spacing:8.213333pt;}
.wsbe{word-spacing:8.373333pt;}
.ws7e{word-spacing:8.426667pt;}
.ws76{word-spacing:8.480000pt;}
.wsb1{word-spacing:8.533333pt;}
.ws6a{word-spacing:8.640000pt;}
.ws16{word-spacing:8.800000pt;}
.ws7b{word-spacing:9.013333pt;}
.ws77{word-spacing:9.066667pt;}
.ws83{word-spacing:9.333333pt;}
.ws32{word-spacing:9.386667pt;}
.ws1a{word-spacing:9.440000pt;}
.ws82{word-spacing:9.493333pt;}
.ws19{word-spacing:9.546667pt;}
.ws7f{word-spacing:9.653333pt;}
.wsc5{word-spacing:9.706667pt;}
.ws80{word-spacing:9.760000pt;}
.ws93{word-spacing:9.973333pt;}
.ws12{word-spacing:10.293333pt;}
.wsc{word-spacing:10.400000pt;}
.ws9d{word-spacing:10.560000pt;}
.ws8d{word-spacing:10.666667pt;}
.wsd0{word-spacing:11.093333pt;}
.ws72{word-spacing:11.146667pt;}
.wsb7{word-spacing:11.200000pt;}
.wsa0{word-spacing:11.306667pt;}
.ws74{word-spacing:11.413333pt;}
.ws21{word-spacing:11.520000pt;}
.wsbd{word-spacing:11.626667pt;}
.ws96{word-spacing:11.840000pt;}
.ws60{word-spacing:12.053333pt;}
.ws1c{word-spacing:12.426667pt;}
.ws20{word-spacing:12.586667pt;}
.ws1e{word-spacing:12.640000pt;}
.ws9b{word-spacing:12.800000pt;}
.ws1b{word-spacing:12.853333pt;}
.ws23{word-spacing:13.226667pt;}
.ws71{word-spacing:13.280000pt;}
.ws4a{word-spacing:13.493333pt;}
.ws75{word-spacing:13.653333pt;}
.wsaa{word-spacing:13.920000pt;}
.ws73{word-spacing:14.506667pt;}
.ws33{word-spacing:14.560000pt;}
.wsb5{word-spacing:14.666667pt;}
.ws9c{word-spacing:14.826667pt;}
.ws3a{word-spacing:15.466667pt;}
.wsb9{word-spacing:15.626667pt;}
.ws8b{word-spacing:15.733333pt;}
.wsc7{word-spacing:16.213333pt;}
.wsad{word-spacing:16.373333pt;}
.ws78{word-spacing:16.480000pt;}
.wsba{word-spacing:16.586667pt;}
.ws18{word-spacing:17.280000pt;}
.wsd6{word-spacing:17.333333pt;}
.ws61{word-spacing:17.653333pt;}
.ws41{word-spacing:17.706667pt;}
.wscb{word-spacing:18.453333pt;}
.ws8c{word-spacing:18.560000pt;}
.ws6b{word-spacing:18.720000pt;}
.ws3d{word-spacing:18.986667pt;}
.ws54{word-spacing:19.200000pt;}
.wsdb{word-spacing:19.520000pt;}
.wsd5{word-spacing:20.213333pt;}
.ws9a{word-spacing:20.480000pt;}
.ws2f{word-spacing:20.746667pt;}
.ws79{word-spacing:20.906667pt;}
.wsbc{word-spacing:21.546667pt;}
.ws98{word-spacing:21.813333pt;}
.ws35{word-spacing:22.773333pt;}
.ws4c{word-spacing:22.880000pt;}
.ws37{word-spacing:22.986667pt;}
.wsa1{word-spacing:23.946667pt;}
.ws36{word-spacing:24.000000pt;}
.ws3e{word-spacing:24.426667pt;}
.ws14{word-spacing:24.533333pt;}
.ws97{word-spacing:24.960000pt;}
.wsd1{word-spacing:25.386667pt;}
.wsa6{word-spacing:25.973333pt;}
.wsc8{word-spacing:26.186667pt;}
.ws89{word-spacing:26.240000pt;}
.wsb3{word-spacing:26.506667pt;}
.wsa8{word-spacing:26.773333pt;}
.wsb0{word-spacing:27.520000pt;}
.ws6f{word-spacing:27.840000pt;}
.wsa9{word-spacing:29.066667pt;}
.wsc0{word-spacing:29.386667pt;}
.wscf{word-spacing:31.520000pt;}
.wsb2{word-spacing:33.066667pt;}
.ws56{word-spacing:35.306667pt;}
.ws4f{word-spacing:35.466667pt;}
.wsbf{word-spacing:35.946667pt;}
.ws4d{word-spacing:36.640000pt;}
.wsaf{word-spacing:36.853333pt;}
.wsae{word-spacing:37.066667pt;}
.wsdc{word-spacing:38.453333pt;}
.ws57{word-spacing:41.866667pt;}
.ws68{word-spacing:43.840000pt;}
.wsac{word-spacing:44.320000pt;}
.wsc9{word-spacing:52.053333pt;}
.wse{word-spacing:56.213333pt;}
.ws63{word-spacing:81.302400pt;}
.ws67{word-spacing:92.693333pt;}
.ws62{word-spacing:96.432000pt;}
.ws25{word-spacing:113.097600pt;}
.ws64{word-spacing:113.760000pt;}
.ws48{word-spacing:123.744000pt;}
.ws2c{word-spacing:125.328000pt;}
.ws28{word-spacing:131.760000pt;}
.ws26{word-spacing:133.920000pt;}
.ws2a{word-spacing:134.448000pt;}
.ws2b{word-spacing:135.552000pt;}
.ws65{word-spacing:136.416000pt;}
.ws29{word-spacing:139.728000pt;}
.ws45{word-spacing:155.664000pt;}
.ws44{word-spacing:158.400000pt;}
.ws46{word-spacing:166.368000pt;}
.ws47{word-spacing:167.347200pt;}
.ws27{word-spacing:171.321600pt;}
.ws2d{word-spacing:178.752000pt;}
.ws43{word-spacing:203.539200pt;}
.ws2e{word-spacing:256.521600pt;}
.wsd{word-spacing:343.390933pt;}
.ws0{word-spacing:1536.691200pt;}
._1d{margin-left:-45.333333pt;}
._4e{margin-left:-30.453333pt;}
._22{margin-left:-13.653333pt;}
._56{margin-left:-7.648000pt;}
._1f{margin-left:-5.861333pt;}
._4{margin-left:-4.896000pt;}
._2{margin-left:-3.898667pt;}
._5{margin-left:-2.949333pt;}
._3{margin-left:-1.938667pt;}
._0{margin-left:-1.013333pt;}
._1{width:1.226667pt;}
._c{width:2.654400pt;}
._e{width:3.868267pt;}
._8{width:4.761600pt;}
._a{width:5.736000pt;}
._7{width:6.907200pt;}
._d{width:8.496000pt;}
._b{width:9.446400pt;}
._14{width:10.490667pt;}
._16{width:11.410667pt;}
._53{width:12.402667pt;}
._6{width:13.929600pt;}
._1a{width:15.542400pt;}
._15{width:17.168000pt;}
._13{width:18.138667pt;}
._48{width:19.162667pt;}
._10{width:20.080000pt;}
._1c{width:21.130667pt;}
._9{width:22.483200pt;}
._11{width:23.478400pt;}
._21{width:24.403733pt;}
._1b{width:25.370667pt;}
._44{width:26.330667pt;}
._55{width:27.962667pt;}
._51{width:29.344000pt;}
._47{width:30.629333pt;}
._59{width:31.680000pt;}
._42{width:32.613333pt;}
._18{width:33.584000pt;}
._17{width:34.538667pt;}
._49{width:36.058667pt;}
._4a{width:36.970667pt;}
._58{width:38.058667pt;}
._45{width:39.360000pt;}
._4d{width:40.587200pt;}
._4c{width:42.108800pt;}
._4b{width:43.189867pt;}
._20{width:44.602133pt;}
._19{width:45.690667pt;}
._43{width:46.773333pt;}
._25{width:48.698667pt;}
._1e{width:50.720000pt;}
._57{width:51.946667pt;}
._41{width:52.853333pt;}
._50{width:54.000000pt;}
._54{width:55.093333pt;}
._24{width:56.112000pt;}
._f{width:57.120000pt;}
._52{width:58.826667pt;}
._46{width:60.160000pt;}
._12{width:62.240000pt;}
._35{width:64.896000pt;}
._27{width:66.912000pt;}
._36{width:76.608000pt;}
._5a{width:82.725333pt;}
._2f{width:87.792000pt;}
._38{width:95.346667pt;}
._39{width:102.672000pt;}
._32{width:111.168000pt;}
._28{width:121.238400pt;}
._26{width:125.765333pt;}
._2c{width:132.864000pt;}
._30{width:138.240000pt;}
._37{width:151.728000pt;}
._3e{width:154.176000pt;}
._33{width:158.208000pt;}
._3d{width:166.866667pt;}
._23{width:169.344000pt;}
._3a{width:171.552000pt;}
._29{width:178.579200pt;}
._40{width:185.232000pt;}
._2d{width:189.475200pt;}
._3f{width:194.544000pt;}
._3b{width:203.088000pt;}
._2a{width:226.022400pt;}
._34{width:231.888000pt;}
._2e{width:243.024000pt;}
._4f{width:255.696000pt;}
._3c{width:277.920000pt;}
._31{width:307.117867pt;}
._2b{width:349.526400pt;}
.fs1{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:56.390000pt;}
.y2{bottom:57.564933pt;}
.y1{bottom:58.299200pt;}
.y178{bottom:76.808533pt;}
.y134{bottom:78.344133pt;}
.y67{bottom:87.767067pt;}
.ye4{bottom:88.141867pt;}
.y163{bottom:88.144133pt;}
.y108{bottom:90.575200pt;}
.ybb{bottom:92.853333pt;}
.y177{bottom:94.141867pt;}
.y133{bottom:95.677467pt;}
.y91{bottom:104.887067pt;}
.y66{bottom:105.100400pt;}
.ye3{bottom:105.475200pt;}
.y162{bottom:105.477467pt;}
.y107{bottom:107.908533pt;}
.y2d{bottom:110.171067pt;}
.yba{bottom:110.186667pt;}
.y176{bottom:111.475200pt;}
.y132{bottom:113.010800pt;}
.y90{bottom:122.220400pt;}
.y65{bottom:122.433733pt;}
.ye2{bottom:122.808533pt;}
.y161{bottom:122.810800pt;}
.y106{bottom:125.241867pt;}
.y2c{bottom:127.504400pt;}
.yb9{bottom:127.520000pt;}
.y175{bottom:128.808533pt;}
.y131{bottom:130.344133pt;}
.y8f{bottom:139.553733pt;}
.y64{bottom:139.767067pt;}
.ye1{bottom:140.141867pt;}
.y160{bottom:140.144133pt;}
.y105{bottom:142.575200pt;}
.y2b{bottom:144.837733pt;}
.yb8{bottom:144.853333pt;}
.y174{bottom:146.141867pt;}
.y130{bottom:147.677467pt;}
.y8e{bottom:156.887067pt;}
.y63{bottom:157.100400pt;}
.ye0{bottom:157.475200pt;}
.y15f{bottom:157.477467pt;}
.y2a{bottom:162.171067pt;}
.yb7{bottom:162.186667pt;}
.y173{bottom:163.475200pt;}
.y12f{bottom:165.010800pt;}
.y8d{bottom:174.220400pt;}
.y62{bottom:174.433733pt;}
.ydf{bottom:174.808533pt;}
.y15e{bottom:174.810800pt;}
.y104{bottom:177.241867pt;}
.y29{bottom:179.504400pt;}
.yb6{bottom:179.520000pt;}
.y172{bottom:180.808533pt;}
.y12e{bottom:182.344133pt;}
.y8c{bottom:191.553733pt;}
.y61{bottom:191.767067pt;}
.y169{bottom:192.141867pt;}
.y15d{bottom:192.144133pt;}
.y103{bottom:194.575200pt;}
.y28{bottom:196.837733pt;}
.yb5{bottom:196.853333pt;}
.y171{bottom:197.475200pt;}
.y12d{bottom:199.677467pt;}
.y60{bottom:209.100400pt;}
.yde{bottom:209.475200pt;}
.y15c{bottom:209.477467pt;}
.y102{bottom:211.908533pt;}
.y170{bottom:214.141867pt;}
.y27{bottom:214.171067pt;}
.yb4{bottom:214.186667pt;}
.y12c{bottom:217.010800pt;}
.y8b{bottom:226.220400pt;}
.y5f{bottom:226.433733pt;}
.ydd{bottom:226.808533pt;}
.y15b{bottom:226.810800pt;}
.y101{bottom:229.241867pt;}
.y16f{bottom:230.808533pt;}
.y26{bottom:231.504400pt;}
.yb3{bottom:231.520000pt;}
.y12b{bottom:234.344133pt;}
.y8a{bottom:243.553733pt;}
.y5e{bottom:243.767067pt;}
.ydc{bottom:244.141867pt;}
.y15a{bottom:244.144133pt;}
.y100{bottom:246.575200pt;}
.y16e{bottom:247.475200pt;}
.y25{bottom:248.837733pt;}
.yb2{bottom:248.853333pt;}
.y12a{bottom:251.677467pt;}
.y89{bottom:260.887067pt;}
.y5d{bottom:261.100400pt;}
.ydb{bottom:261.475200pt;}
.y159{bottom:261.477467pt;}
.yff{bottom:263.908533pt;}
.y16d{bottom:264.141867pt;}
.y24{bottom:266.171067pt;}
.yb1{bottom:266.186667pt;}
.y129{bottom:269.010800pt;}
.y88{bottom:278.220400pt;}
.y5c{bottom:278.433733pt;}
.yda{bottom:278.808533pt;}
.y158{bottom:278.810800pt;}
.y16c{bottom:280.808533pt;}
.yfe{bottom:281.241867pt;}
.y23{bottom:283.504400pt;}
.yb0{bottom:283.520000pt;}
.y128{bottom:286.344133pt;}
.y87{bottom:295.553733pt;}
.y5b{bottom:295.767067pt;}
.yd9{bottom:296.141867pt;}
.y157{bottom:296.144133pt;}
.y16b{bottom:297.475200pt;}
.yfd{bottom:298.575200pt;}
.y22{bottom:300.837733pt;}
.yaf{bottom:300.853333pt;}
.y127{bottom:303.677467pt;}
.y5a{bottom:313.100400pt;}
.yd8{bottom:313.475200pt;}
.y156{bottom:313.477467pt;}
.y16a{bottom:314.141867pt;}
.yfc{bottom:315.908533pt;}
.y21{bottom:318.171067pt;}
.yae{bottom:318.186667pt;}
.y126{bottom:321.010800pt;}
.y86{bottom:330.220400pt;}
.y59{bottom:330.433733pt;}
.y168{bottom:330.808533pt;}
.y155{bottom:330.810800pt;}
.yfb{bottom:333.241867pt;}
.y20{bottom:335.504400pt;}
.yad{bottom:335.520000pt;}
.y125{bottom:338.344133pt;}
.y85{bottom:347.553733pt;}
.y58{bottom:347.767067pt;}
.yd7{bottom:348.141867pt;}
.y154{bottom:348.144133pt;}
.yfa{bottom:350.575200pt;}
.y1f{bottom:352.837733pt;}
.yac{bottom:352.853333pt;}
.y124{bottom:355.677467pt;}
.y84{bottom:364.887067pt;}
.y57{bottom:365.100400pt;}
.yd6{bottom:365.475200pt;}
.y153{bottom:365.477467pt;}
.yf9{bottom:367.908533pt;}
.y1e{bottom:370.171067pt;}
.yab{bottom:370.186667pt;}
.y123{bottom:373.010800pt;}
.y83{bottom:382.220400pt;}
.y56{bottom:382.433733pt;}
.yd5{bottom:382.808533pt;}
.y152{bottom:382.810800pt;}
.yf8{bottom:385.241867pt;}
.y1d{bottom:387.504400pt;}
.yaa{bottom:387.520000pt;}
.y122{bottom:390.344133pt;}
.y82{bottom:399.553733pt;}
.y55{bottom:399.767067pt;}
.yd4{bottom:400.141867pt;}
.y151{bottom:400.144133pt;}
.yf7{bottom:402.575200pt;}
.y1c{bottom:404.837733pt;}
.ya9{bottom:404.853333pt;}
.y36{bottom:405.457733pt;}
.y121{bottom:407.677467pt;}
.y81{bottom:416.887067pt;}
.y54{bottom:417.100400pt;}
.yd3{bottom:417.475200pt;}
.y150{bottom:417.477467pt;}
.yf6{bottom:419.908533pt;}
.ya8{bottom:422.186667pt;}
.y120{bottom:425.010800pt;}
.y35{bottom:425.457733pt;}
.y1b{bottom:427.504400pt;}
.y53{bottom:434.433733pt;}
.yd2{bottom:434.808533pt;}
.y14f{bottom:434.810800pt;}
.ya7{bottom:439.520000pt;}
.y11f{bottom:442.344133pt;}
.y34{bottom:445.457733pt;}
.y80{bottom:451.553733pt;}
.y52{bottom:451.767067pt;}
.y167{bottom:452.141867pt;}
.y14e{bottom:452.144133pt;}
.yf5{bottom:454.575200pt;}
.ya6{bottom:456.853333pt;}
.y7f{bottom:468.887067pt;}
.y51{bottom:469.100400pt;}
.yd1{bottom:469.475200pt;}
.y14d{bottom:469.477467pt;}
.y1a{bottom:470.227067pt;}
.yf4{bottom:471.908533pt;}
.ya5{bottom:474.186667pt;}
.y11e{bottom:476.726800pt;}
.y33{bottom:481.457733pt;}
.y11d{bottom:484.814800pt;}
.y7e{bottom:486.220400pt;}
.y19{bottom:486.223067pt;}
.y50{bottom:486.433733pt;}
.yd0{bottom:486.808533pt;}
.y14c{bottom:486.810800pt;}
.yf3{bottom:489.241867pt;}
.ya4{bottom:491.520000pt;}
.y18{bottom:502.219067pt;}
.y7d{bottom:503.553733pt;}
.y4f{bottom:503.767067pt;}
.ycf{bottom:504.141867pt;}
.y14b{bottom:504.144133pt;}
.yf2{bottom:506.089733pt;}
.ya3{bottom:508.853333pt;}
.yf1{bottom:514.177733pt;}
.y17{bottom:518.215067pt;}
.y11c{bottom:518.510800pt;}
.y7c{bottom:520.887067pt;}
.y4e{bottom:521.100400pt;}
.y32{bottom:521.457733pt;}
.yce{bottom:521.475200pt;}
.y14a{bottom:521.477467pt;}
.y16{bottom:534.211067pt;}
.ya2{bottom:535.544400pt;}
.y7b{bottom:538.220400pt;}
.y4d{bottom:538.433733pt;}
.ycd{bottom:538.808533pt;}
.y149{bottom:538.810800pt;}
.yf0{bottom:539.353733pt;}
.y11b{bottom:545.222800pt;}
.yef{bottom:547.441733pt;}
.y15{bottom:550.207067pt;}
.y11a{bottom:553.310800pt;}
.y7a{bottom:555.553733pt;}
.y4c{bottom:555.767067pt;}
.ycc{bottom:556.141867pt;}
.y148{bottom:556.144133pt;}
.y31{bottom:557.457733pt;}
.ya1{bottom:557.756400pt;}
.y14{bottom:566.203067pt;}
.y79{bottom:572.887067pt;}
.y4b{bottom:573.100400pt;}
.ycb{bottom:573.475200pt;}
.y147{bottom:573.477467pt;}
.yee{bottom:580.705733pt;}
.y119{bottom:581.270800pt;}
.ya0{bottom:581.756400pt;}
.y13{bottom:582.199067pt;}
.y118{bottom:589.358800pt;}
.y30{bottom:589.457733pt;}
.y78{bottom:590.220400pt;}
.y4a{bottom:590.433733pt;}
.y166{bottom:590.808533pt;}
.y146{bottom:590.810800pt;}
.y12{bottom:598.195067pt;}
.yed{bottom:605.869733pt;}
.y77{bottom:607.553733pt;}
.y49{bottom:607.767067pt;}
.yca{bottom:608.141867pt;}
.y145{bottom:608.144133pt;}
.y9f{bottom:609.404400pt;}
.yec{bottom:613.969733pt;}
.y11{bottom:614.191067pt;}
.y117{bottom:619.622800pt;}
.y2f{bottom:621.457733pt;}
.y76{bottom:624.887067pt;}
.y48{bottom:625.100400pt;}
.yc9{bottom:625.475200pt;}
.y144{bottom:625.477467pt;}
.y116{bottom:627.710800pt;}
.y10{bottom:630.187067pt;}
.y9e{bottom:634.772400pt;}
.yeb{bottom:639.601733pt;}
.y75{bottom:642.220400pt;}
.y47{bottom:642.433733pt;}
.yc8{bottom:642.808533pt;}
.y143{bottom:642.810800pt;}
.yf{bottom:646.183067pt;}
.yea{bottom:647.689733pt;}
.y2e{bottom:653.457733pt;}
.y9d{bottom:656.744400pt;}
.y115{bottom:657.962800pt;}
.y74{bottom:659.553733pt;}
.y46{bottom:659.767067pt;}
.yc7{bottom:660.141867pt;}
.y142{bottom:660.144133pt;}
.ye{bottom:662.179067pt;}
.ye9{bottom:673.321733pt;}
.y73{bottom:676.887067pt;}
.y45{bottom:677.100400pt;}
.yc6{bottom:677.475200pt;}
.y141{bottom:677.477467pt;}
.y114{bottom:677.690133pt;}
.yd{bottom:678.175067pt;}
.y9c{bottom:679.364400pt;}
.ye8{bottom:681.409733pt;}
.yc{bottom:694.171067pt;}
.y72{bottom:694.220400pt;}
.y44{bottom:694.433733pt;}
.yc5{bottom:694.808533pt;}
.y140{bottom:694.810800pt;}
.y113{bottom:695.023467pt;}
.y9b{bottom:701.936400pt;}
.ye7{bottom:706.585733pt;}
.yb{bottom:710.171067pt;}
.y71{bottom:711.553733pt;}
.y43{bottom:711.767067pt;}
.y165{bottom:712.141867pt;}
.y13f{bottom:712.144133pt;}
.y112{bottom:712.356800pt;}
.ye6{bottom:714.673733pt;}
.y9a{bottom:724.640400pt;}
.y70{bottom:728.887067pt;}
.y42{bottom:729.100400pt;}
.yc4{bottom:729.475200pt;}
.y13e{bottom:729.477467pt;}
.y111{bottom:729.690133pt;}
.ye5{bottom:742.861733pt;}
.y6f{bottom:746.220400pt;}
.y99{bottom:746.400400pt;}
.y41{bottom:746.433733pt;}
.yc3{bottom:746.808533pt;}
.y13d{bottom:746.810800pt;}
.y110{bottom:747.023467pt;}
.ya{bottom:747.512400pt;}
.y9{bottom:763.508400pt;}
.y6e{bottom:763.553733pt;}
.y40{bottom:763.767067pt;}
.yc2{bottom:764.141867pt;}
.y13c{bottom:764.144133pt;}
.y10f{bottom:764.356800pt;}
.y8{bottom:779.504400pt;}
.y98{bottom:781.067067pt;}
.y3f{bottom:781.100400pt;}
.yc1{bottom:781.475200pt;}
.y13b{bottom:781.477467pt;}
.y10e{bottom:781.690133pt;}
.y7{bottom:795.504400pt;}
.y6d{bottom:798.220400pt;}
.y97{bottom:798.400400pt;}
.y3e{bottom:798.433733pt;}
.yc0{bottom:798.808533pt;}
.y13a{bottom:798.810800pt;}
.y10d{bottom:799.023467pt;}
.y6c{bottom:815.553733pt;}
.y96{bottom:815.733733pt;}
.y3d{bottom:815.767067pt;}
.ybf{bottom:816.141867pt;}
.y139{bottom:816.144133pt;}
.y6b{bottom:832.887067pt;}
.y95{bottom:833.067067pt;}
.y3c{bottom:833.100400pt;}
.y164{bottom:833.475200pt;}
.y138{bottom:833.477467pt;}
.y10c{bottom:833.690133pt;}
.y6{bottom:835.511067pt;}
.y6a{bottom:850.220400pt;}
.y94{bottom:850.400400pt;}
.y3b{bottom:850.433733pt;}
.ybe{bottom:850.808533pt;}
.y137{bottom:850.810800pt;}
.y10b{bottom:851.023467pt;}
.y5{bottom:858.171067pt;}
.y69{bottom:867.553733pt;}
.y93{bottom:867.733733pt;}
.y3a{bottom:867.767067pt;}
.ybd{bottom:868.141867pt;}
.y136{bottom:868.144133pt;}
.y10a{bottom:868.356800pt;}
.y68{bottom:884.887067pt;}
.y92{bottom:885.067067pt;}
.y39{bottom:885.100400pt;}
.ybc{bottom:885.475200pt;}
.y135{bottom:885.477467pt;}
.y109{bottom:885.690133pt;}
.y4{bottom:910.554800pt;}
.y38{bottom:913.339333pt;}
.y3{bottom:923.888133pt;}
.h5{height:30.378667pt;}
.h4{height:30.720000pt;}
.h9{height:32.507812pt;}
.h12{height:32.531250pt;}
.h16{height:32.967562pt;}
.h8{height:33.328125pt;}
.h13{height:33.351562pt;}
.h7{height:36.145833pt;}
.h11{height:37.031250pt;}
.hc{height:37.057292pt;}
.h3{height:37.333333pt;}
.h2{height:37.973333pt;}
.he{height:41.066667pt;}
.ha{height:43.375000pt;}
.hd{height:44.800000pt;}
.h10{height:46.660099pt;}
.hf{height:47.526765pt;}
.h6{height:54.218750pt;}
.hb{height:55.585938pt;}
.h15{height:64.935563pt;}
.h14{height:64.983563pt;}
.h1{height:971.333333pt;}
.h0{height:971.520000pt;}
.w1{width:688.000000pt;}
.w0{width:688.320000pt;}
.x0{left:0.000000pt;}
.x1{left:56.692933pt;}
.xe{left:57.957867pt;}
.xc{left:65.385867pt;}
.x1d{left:68.604000pt;}
.xd{left:69.736133pt;}
.x22{left:74.112000pt;}
.x12{left:80.692933pt;}
.x14{left:82.106000pt;}
.x16{left:84.578000pt;}
.x1e{left:87.504000pt;}
.x18{left:89.762000pt;}
.x20{left:91.836000pt;}
.x21{left:97.500000pt;}
.x15{left:98.594000pt;}
.x19{left:104.258000pt;}
.x17{left:107.714000pt;}
.x13{left:113.198000pt;}
.x1f{left:165.276000pt;}
.xb{left:199.278133pt;}
.x5{left:213.236000pt;}
.x6{left:281.796000pt;}
.xa{left:309.579600pt;}
.xf{left:355.492933pt;}
.x10{left:363.492933pt;}
.x4{left:366.464133pt;}
.x1b{left:370.277600pt;}
.x23{left:374.396267pt;}
.x9{left:378.243600pt;}
.x11{left:379.492933pt;}
.x1a{left:398.369600pt;}
.x1c{left:468.209600pt;}
.x8{left:472.119600pt;}
.x7{left:483.870267pt;}
.x3{left:545.952133pt;}
.x2{left:562.556267pt;}
}




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