
    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_a0dfc033a9cee5ffac2b25d2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.031738;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_b192ae6e2f2b27900a9c3956.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.022461;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_1cf113de81d0cbe66b981d7d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.760319;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_199f5264ee0260ccf3234fe8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.770020;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_d8582d4067e29f5a9f07e9ba.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.041992;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_628a009d502a951f59f8e734.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.032715;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_1e0028bc796d772c3d521373.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.026855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_b06b3c9e7ffe79a54994fcf4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6176b9a7198199ddf9412e3d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.976118;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_19656ff65d17a46fb85fda60.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.031738;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_42c6ecc90cce608d05ed026d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_f2d78144fe746376d4011dcc.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.760345;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_4d7c0fd4ca2acb91dac3fb30.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.770020;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_424e899d8072dc1542aaf801.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.963379;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_1459fb2cdbaef0fad9f61871.woff2')format("woff");}.fff{font-family:fff;line-height:0.760335;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v7{vertical-align:-19.980000px;}
.v9{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:1.008000px;}
.v5{vertical-align:16.026600px;}
.v8{vertical-align:17.982000px;}
.v6{vertical-align:19.980000px;}
.v1{vertical-align:21.978000px;}
.v2{vertical-align:30.000000px;}
.v3{vertical-align:45.984000px;}
.v4{vertical-align:75.216000px;}
.ls1d{letter-spacing:-7.236000px;}
.ls10{letter-spacing:-3.240000px;}
.ls15{letter-spacing:-1.200000px;}
.ls24{letter-spacing:-1.080000px;}
.ls18{letter-spacing:-1.020000px;}
.ls16{letter-spacing:-0.960000px;}
.ls19{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.691200px;}
.ls1b{letter-spacing:-0.660000px;}
.ls9{letter-spacing:-0.612000px;}
.ls13{letter-spacing:-0.600000px;}
.ls27{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.528000px;}
.ls1e{letter-spacing:-0.480000px;}
.ls8{letter-spacing:-0.408000px;}
.ls25{letter-spacing:-0.324000px;}
.ls14{letter-spacing:-0.300000px;}
.ls26{letter-spacing:-0.283338px;}
.lsd{letter-spacing:-0.180000px;}
.ls6{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.000984px;}
.ls12{letter-spacing:0.088440px;}
.ls11{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.306000px;}
.ls22{letter-spacing:0.360000px;}
.ls29{letter-spacing:0.540000px;}
.lse{letter-spacing:0.600000px;}
.ls28{letter-spacing:0.720000px;}
.ls1a{letter-spacing:0.826200px;}
.ls5{letter-spacing:0.960000px;}
.ls23{letter-spacing:1.200000px;}
.ls17{letter-spacing:2.052000px;}
.ls3{letter-spacing:2.376000px;}
.ls1c{letter-spacing:4.395600px;}
.ls4{letter-spacing:4.968000px;}
.ls21{letter-spacing:6.750000px;}
.ls2{letter-spacing:7.668000px;}
.ls1f{letter-spacing:8.424000px;}
.ls20{letter-spacing:8.478000px;}
.lsc{letter-spacing:10.260000px;}
.ls1{letter-spacing:24.624000px;}
.ls0{letter-spacing:43.181364px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-25.500000px;}
.ws7{word-spacing:-17.928000px;}
.wsb6{word-spacing:-16.434000px;}
.ws8{word-spacing:-15.660000px;}
.ws18f{word-spacing:-15.540000px;}
.ws91{word-spacing:-15.300000px;}
.ws14c{word-spacing:-15.060000px;}
.ws5{word-spacing:-14.940000px;}
.ws92{word-spacing:-14.880000px;}
.ws34{word-spacing:-14.700000px;}
.ws55{word-spacing:-14.520000px;}
.wsa6{word-spacing:-14.400000px;}
.wsb7{word-spacing:-14.280000px;}
.ws11e{word-spacing:-14.220000px;}
.wsd7{word-spacing:-13.740000px;}
.wsf2{word-spacing:-13.680000px;}
.wsb5{word-spacing:-13.500000px;}
.ws8b{word-spacing:-13.446000px;}
.ws157{word-spacing:-13.392000px;}
.ws6{word-spacing:-13.230000px;}
.ws16a{word-spacing:-13.068000px;}
.ws17e{word-spacing:-12.852000px;}
.ws190{word-spacing:-12.690000px;}
.ws9{word-spacing:-12.366000px;}
.ws158{word-spacing:-12.312000px;}
.wsb{word-spacing:-12.150000px;}
.wsa{word-spacing:-12.042000px;}
.ws57{word-spacing:-11.952000px;}
.wsc{word-spacing:-10.992000px;}
.ws3{word-spacing:-10.896000px;}
.ws32{word-spacing:-10.800000px;}
.ws33{word-spacing:-10.704000px;}
.ws8c{word-spacing:-10.206000px;}
.ws4{word-spacing:-9.892800px;}
.ws2{word-spacing:-9.618000px;}
.ws1{word-spacing:-9.542544px;}
.wsa5{word-spacing:-8.675040px;}
.ws14d{word-spacing:-8.460000px;}
.ws14e{word-spacing:-8.340000px;}
.wsec{word-spacing:-7.807536px;}
.ws16b{word-spacing:-7.524198px;}
.ws12f{word-spacing:-6.210000px;}
.ws87{word-spacing:-6.060000px;}
.ws81{word-spacing:-5.040000px;}
.ws71{word-spacing:-4.968000px;}
.ws140{word-spacing:-4.440000px;}
.wscf{word-spacing:-4.428000px;}
.ws141{word-spacing:-4.380000px;}
.ws170{word-spacing:-4.374000px;}
.ws12a{word-spacing:-4.260000px;}
.ws145{word-spacing:-4.140000px;}
.ws126{word-spacing:-4.020000px;}
.ws156{word-spacing:-3.900000px;}
.ws131{word-spacing:-3.600000px;}
.wse6{word-spacing:-3.480000px;}
.wse7{word-spacing:-3.420000px;}
.ws146{word-spacing:-3.300000px;}
.wsef{word-spacing:-3.294000px;}
.wsb8{word-spacing:-3.240000px;}
.wsb9{word-spacing:-3.180000px;}
.ws138{word-spacing:-3.132000px;}
.ws185{word-spacing:-3.078000px;}
.ws18c{word-spacing:-3.024000px;}
.ws18b{word-spacing:-2.970000px;}
.ws82{word-spacing:-2.940000px;}
.ws181{word-spacing:-2.754000px;}
.ws4f{word-spacing:-2.580000px;}
.ws70{word-spacing:-2.520000px;}
.ws199{word-spacing:-2.484000px;}
.ws6c{word-spacing:-2.460000px;}
.ws79{word-spacing:-2.340000px;}
.ws16c{word-spacing:-2.322000px;}
.ws102{word-spacing:-2.280000px;}
.ws49{word-spacing:-2.220000px;}
.ws118{word-spacing:-2.160000px;}
.wsd4{word-spacing:-2.106000px;}
.ws117{word-spacing:-2.100000px;}
.ws13a{word-spacing:-2.052000px;}
.ws116{word-spacing:-2.040000px;}
.ws180{word-spacing:-1.998000px;}
.wsa2{word-spacing:-1.980000px;}
.ws15b{word-spacing:-1.944000px;}
.wscc{word-spacing:-1.920000px;}
.wscb{word-spacing:-1.860000px;}
.wscd{word-spacing:-1.800000px;}
.ws18a{word-spacing:-1.782000px;}
.ws142{word-spacing:-1.740000px;}
.wsd8{word-spacing:-1.680000px;}
.ws162{word-spacing:-1.674000px;}
.wsf1{word-spacing:-1.566000px;}
.ws7f{word-spacing:-1.560000px;}
.ws1c{word-spacing:-1.512000px;}
.wsb0{word-spacing:-1.500000px;}
.ws12c{word-spacing:-1.440000px;}
.wse0{word-spacing:-1.380000px;}
.ws121{word-spacing:-1.320000px;}
.wse4{word-spacing:-1.260000px;}
.ws86{word-spacing:-1.200000px;}
.ws15d{word-spacing:-1.188000px;}
.wsf4{word-spacing:-1.140000px;}
.wsf0{word-spacing:-1.134000px;}
.ws35{word-spacing:-1.080000px;}
.ws144{word-spacing:-1.026000px;}
.ws89{word-spacing:-1.020000px;}
.ws15c{word-spacing:-0.972000px;}
.ws2e{word-spacing:-0.960000px;}
.ws12{word-spacing:-0.912000px;}
.ws103{word-spacing:-0.900000px;}
.ws132{word-spacing:-0.840000px;}
.ws1d{word-spacing:-0.810000px;}
.ws107{word-spacing:-0.720000px;}
.ws99{word-spacing:-0.660000px;}
.ws6d{word-spacing:-0.600000px;}
.ws4a{word-spacing:-0.540000px;}
.wsb2{word-spacing:-0.480000px;}
.wsd1{word-spacing:-0.432000px;}
.ws129{word-spacing:-0.420000px;}
.ws14f{word-spacing:-0.360000px;}
.ws17f{word-spacing:-0.324000px;}
.ws74{word-spacing:-0.300000px;}
.ws77{word-spacing:-0.240000px;}
.ws13{word-spacing:-0.216000px;}
.ws6e{word-spacing:-0.180000px;}
.ws7c{word-spacing:-0.120000px;}
.ws11{word-spacing:-0.096000px;}
.ws40{word-spacing:-0.060000px;}
.ws18d{word-spacing:-0.054000px;}
.wsd{word-spacing:0.000000px;}
.ws163{word-spacing:0.108000px;}
.ws65{word-spacing:0.180000px;}
.ws133{word-spacing:0.240000px;}
.ws10b{word-spacing:0.270000px;}
.wsb3{word-spacing:0.300000px;}
.ws171{word-spacing:0.324000px;}
.ws88{word-spacing:0.360000px;}
.wse{word-spacing:0.408000px;}
.ws50{word-spacing:0.420000px;}
.ws147{word-spacing:0.432000px;}
.wse3{word-spacing:0.480000px;}
.ws10d{word-spacing:0.540000px;}
.ws9a{word-spacing:0.600000px;}
.wsf{word-spacing:0.612000px;}
.ws17c{word-spacing:0.648000px;}
.ws73{word-spacing:0.660000px;}
.ws14{word-spacing:0.691200px;}
.ws10f{word-spacing:0.720000px;}
.ws115{word-spacing:0.810000px;}
.ws114{word-spacing:0.864000px;}
.ws44{word-spacing:0.900000px;}
.wsdd{word-spacing:0.960000px;}
.wsf5{word-spacing:1.020000px;}
.ws139{word-spacing:1.026000px;}
.ws52{word-spacing:1.080000px;}
.wse8{word-spacing:1.140000px;}
.wsc1{word-spacing:1.200000px;}
.ws8e{word-spacing:1.242000px;}
.ws51{word-spacing:1.260000px;}
.ws8d{word-spacing:1.296000px;}
.ws78{word-spacing:1.320000px;}
.ws166{word-spacing:1.350000px;}
.ws151{word-spacing:1.380000px;}
.wsc9{word-spacing:1.440000px;}
.ws8f{word-spacing:1.458000px;}
.wsc0{word-spacing:1.500000px;}
.ws10c{word-spacing:1.512000px;}
.ws125{word-spacing:1.560000px;}
.ws2c{word-spacing:1.620000px;}
.wsd5{word-spacing:1.782000px;}
.ws100{word-spacing:1.860000px;}
.ws95{word-spacing:1.920000px;}
.ws16d{word-spacing:1.944000px;}
.ws101{word-spacing:1.980000px;}
.wsee{word-spacing:2.052000px;}
.wsbe{word-spacing:2.100000px;}
.wsed{word-spacing:2.106000px;}
.wsbb{word-spacing:2.160000px;}
.ws6a{word-spacing:2.220000px;}
.ws16f{word-spacing:2.268000px;}
.ws3e{word-spacing:2.280000px;}
.ws11c{word-spacing:2.322000px;}
.ws39{word-spacing:2.340000px;}
.ws1f{word-spacing:2.376000px;}
.ws38{word-spacing:2.400000px;}
.ws1e{word-spacing:2.430000px;}
.ws47{word-spacing:2.520000px;}
.ws6f{word-spacing:2.580000px;}
.wse1{word-spacing:2.640000px;}
.ws48{word-spacing:2.700000px;}
.wse5{word-spacing:2.760000px;}
.ws15f{word-spacing:2.808000px;}
.ws5f{word-spacing:2.820000px;}
.ws17b{word-spacing:2.862000px;}
.wsdf{word-spacing:2.880000px;}
.ws36{word-spacing:2.940000px;}
.ws97{word-spacing:3.000000px;}
.wsa3{word-spacing:3.060000px;}
.ws13f{word-spacing:3.120000px;}
.wseb{word-spacing:3.180000px;}
.ws187{word-spacing:3.186000px;}
.wsba{word-spacing:3.240000px;}
.ws191{word-spacing:3.294000px;}
.wsad{word-spacing:3.300000px;}
.wsd0{word-spacing:3.348000px;}
.wsf3{word-spacing:3.360000px;}
.ws113{word-spacing:3.480000px;}
.ws169{word-spacing:3.510000px;}
.wse2{word-spacing:3.540000px;}
.ws22{word-spacing:3.564000px;}
.ws75{word-spacing:3.600000px;}
.ws23{word-spacing:3.618000px;}
.ws7d{word-spacing:3.660000px;}
.ws24{word-spacing:3.672000px;}
.wsb4{word-spacing:3.720000px;}
.ws2a{word-spacing:3.726000px;}
.ws2b{word-spacing:3.780000px;}
.ws25{word-spacing:3.834000px;}
.ws11f{word-spacing:3.840000px;}
.ws63{word-spacing:3.900000px;}
.ws11b{word-spacing:3.942000px;}
.ws84{word-spacing:3.960000px;}
.ws11a{word-spacing:3.996000px;}
.ws128{word-spacing:4.020000px;}
.ws66{word-spacing:4.080000px;}
.ws67{word-spacing:4.140000px;}
.wsaf{word-spacing:4.200000px;}
.wsd6{word-spacing:4.266000px;}
.ws64{word-spacing:4.320000px;}
.ws12e{word-spacing:4.374000px;}
.wsc2{word-spacing:4.380000px;}
.ws12d{word-spacing:4.428000px;}
.ws6b{word-spacing:4.440000px;}
.ws98{word-spacing:4.500000px;}
.ws9b{word-spacing:4.560000px;}
.wsdb{word-spacing:4.620000px;}
.ws21{word-spacing:4.644000px;}
.ws9e{word-spacing:4.680000px;}
.ws20{word-spacing:4.698000px;}
.ws8a{word-spacing:4.740000px;}
.ws172{word-spacing:4.752000px;}
.wsda{word-spacing:4.800000px;}
.ws15e{word-spacing:4.806000px;}
.wsd9{word-spacing:4.860000px;}
.ws5e{word-spacing:4.920000px;}
.ws28{word-spacing:4.968000px;}
.ws5d{word-spacing:4.980000px;}
.ws27{word-spacing:5.022000px;}
.wse9{word-spacing:5.040000px;}
.ws13b{word-spacing:5.100000px;}
.ws159{word-spacing:5.130000px;}
.ws4d{word-spacing:5.160000px;}
.ws182{word-spacing:5.184000px;}
.ws104{word-spacing:5.220000px;}
.wsbd{word-spacing:5.280000px;}
.ws173{word-spacing:5.292000px;}
.ws68{word-spacing:5.340000px;}
.ws62{word-spacing:5.400000px;}
.ws61{word-spacing:5.460000px;}
.ws110{word-spacing:5.580000px;}
.wsc3{word-spacing:5.640000px;}
.wsc4{word-spacing:5.700000px;}
.ws83{word-spacing:5.820000px;}
.wsde{word-spacing:5.880000px;}
.ws177{word-spacing:5.886000px;}
.ws96{word-spacing:5.940000px;}
.ws10e{word-spacing:6.000000px;}
.ws153{word-spacing:6.060000px;}
.ws2f{word-spacing:6.120000px;}
.ws122{word-spacing:6.180000px;}
.wsd3{word-spacing:6.264000px;}
.ws12b{word-spacing:6.300000px;}
.wsd2{word-spacing:6.318000px;}
.ws72{word-spacing:6.420000px;}
.ws111{word-spacing:6.480000px;}
.ws143{word-spacing:6.540000px;}
.ws13e{word-spacing:6.600000px;}
.ws11d{word-spacing:6.642000px;}
.ws112{word-spacing:6.660000px;}
.ws14b{word-spacing:6.696000px;}
.ws43{word-spacing:6.720000px;}
.ws14a{word-spacing:6.750000px;}
.ws69{word-spacing:6.780000px;}
.ws17d{word-spacing:6.804000px;}
.wsff{word-spacing:6.840000px;}
.ws90{word-spacing:6.858000px;}
.ws3b{word-spacing:6.900000px;}
.ws3a{word-spacing:6.960000px;}
.ws41{word-spacing:7.020000px;}
.ws93{word-spacing:7.080000px;}
.ws195{word-spacing:7.128000px;}
.ws85{word-spacing:7.140000px;}
.ws45{word-spacing:7.200000px;}
.wsea{word-spacing:7.320000px;}
.ws3d{word-spacing:7.380000px;}
.ws76{word-spacing:7.440000px;}
.ws161{word-spacing:7.452000px;}
.wsbc{word-spacing:7.500000px;}
.wsa7{word-spacing:7.560000px;}
.wsc6{word-spacing:7.620000px;}
.ws18{word-spacing:7.668000px;}
.wsc5{word-spacing:7.680000px;}
.ws1a{word-spacing:7.722000px;}
.ws19{word-spacing:7.776000px;}
.ws3c{word-spacing:7.800000px;}
.ws30{word-spacing:7.860000px;}
.ws160{word-spacing:7.938000px;}
.ws120{word-spacing:7.980000px;}
.ws196{word-spacing:7.992000px;}
.ws9f{word-spacing:8.100000px;}
.ws46{word-spacing:8.220000px;}
.wsae{word-spacing:8.340000px;}
.ws150{word-spacing:8.400000px;}
.ws149{word-spacing:8.424000px;}
.ws105{word-spacing:8.460000px;}
.ws148{word-spacing:8.478000px;}
.ws10{word-spacing:8.514000px;}
.wsdc{word-spacing:8.520000px;}
.ws37{word-spacing:8.760000px;}
.ws3f{word-spacing:8.820000px;}
.ws152{word-spacing:8.880000px;}
.ws42{word-spacing:8.940000px;}
.ws137{word-spacing:8.964000px;}
.ws4b{word-spacing:9.000000px;}
.ws178{word-spacing:9.018000px;}
.wsa1{word-spacing:9.180000px;}
.ws176{word-spacing:9.234000px;}
.ws9c{word-spacing:9.240000px;}
.wsa4{word-spacing:9.360000px;}
.ws165{word-spacing:9.504000px;}
.ws94{word-spacing:9.540000px;}
.ws26{word-spacing:9.720000px;}
.wsf8{word-spacing:9.840000px;}
.wsc8{word-spacing:9.900000px;}
.ws2d{word-spacing:9.960000px;}
.ws184{word-spacing:9.990000px;}
.ws80{word-spacing:10.020000px;}
.ws18e{word-spacing:10.098000px;}
.ws13d{word-spacing:10.140000px;}
.ws174{word-spacing:10.206000px;}
.ws13c{word-spacing:10.260000px;}
.ws4e{word-spacing:10.320000px;}
.wsab{word-spacing:10.380000px;}
.ws127{word-spacing:10.440000px;}
.wsac{word-spacing:10.500000px;}
.wsb1{word-spacing:10.620000px;}
.ws7e{word-spacing:10.740000px;}
.ws167{word-spacing:10.908000px;}
.ws60{word-spacing:10.920000px;}
.ws7b{word-spacing:10.980000px;}
.ws168{word-spacing:11.016000px;}
.wsfe{word-spacing:11.100000px;}
.ws193{word-spacing:11.124000px;}
.wsfd{word-spacing:11.220000px;}
.ws31{word-spacing:11.280000px;}
.wsfc{word-spacing:11.340000px;}
.ws119{word-spacing:11.460000px;}
.wsfa{word-spacing:11.520000px;}
.ws16e{word-spacing:11.556000px;}
.wsf9{word-spacing:11.580000px;}
.ws106{word-spacing:11.640000px;}
.wsa9{word-spacing:11.820000px;}
.wsa8{word-spacing:11.940000px;}
.wsaa{word-spacing:12.120000px;}
.ws7a{word-spacing:12.240000px;}
.ws17a{word-spacing:12.366000px;}
.ws194{word-spacing:12.420000px;}
.wsbf{word-spacing:12.660000px;}
.ws10a{word-spacing:12.744000px;}
.ws109{word-spacing:12.852000px;}
.ws108{word-spacing:12.960000px;}
.ws186{word-spacing:13.284000px;}
.ws175{word-spacing:13.446000px;}
.ws136{word-spacing:13.554000px;}
.wsa0{word-spacing:13.560000px;}
.ws135{word-spacing:13.716000px;}
.ws134{word-spacing:13.770000px;}
.ws154{word-spacing:14.400000px;}
.ws192{word-spacing:14.418000px;}
.ws29{word-spacing:14.634000px;}
.ws15a{word-spacing:15.282000px;}
.ws155{word-spacing:15.420000px;}
.ws179{word-spacing:15.552000px;}
.wsfb{word-spacing:15.660000px;}
.wsc7{word-spacing:16.200000px;}
.wsca{word-spacing:16.380000px;}
.ws9d{word-spacing:16.680000px;}
.ws189{word-spacing:16.848000px;}
.ws164{word-spacing:16.956000px;}
.ws188{word-spacing:17.010000px;}
.ws4c{word-spacing:17.040000px;}
.ws54{word-spacing:17.700000px;}
.ws1b{word-spacing:18.468000px;}
.ws198{word-spacing:19.062000px;}
.ws183{word-spacing:20.142000px;}
.wsce{word-spacing:20.220000px;}
.ws53{word-spacing:20.340000px;}
.ws124{word-spacing:20.700000px;}
.wsf6{word-spacing:21.840000px;}
.wsf7{word-spacing:22.020000px;}
.ws197{word-spacing:24.084000px;}
.ws16{word-spacing:24.408000px;}
.ws15{word-spacing:24.624000px;}
.ws17{word-spacing:24.786000px;}
.ws130{word-spacing:35.400000px;}
.ws123{word-spacing:40.020000px;}
.ws5b{word-spacing:98.640000px;}
.ws59{word-spacing:106.041600px;}
.ws58{word-spacing:126.816000px;}
.ws5c{word-spacing:149.040000px;}
.ws56{word-spacing:157.440000px;}
.ws5a{word-spacing:176.016000px;}
._d{margin-left:-10.698000px;}
._0{margin-left:-8.904600px;}
._4{margin-left:-6.936000px;}
._3{margin-left:-4.947000px;}
._5{margin-left:-3.202800px;}
._1{margin-left:-1.734000px;}
._2{width:1.173000px;}
._e{width:2.346000px;}
._6{width:3.570000px;}
._11{width:4.962000px;}
._b{width:6.054000px;}
._10{width:7.780800px;}
._f{width:9.279600px;}
._9{width:10.290000px;}
._a{width:11.454000px;}
._c{width:12.594000px;}
._12{width:13.750800px;}
._8{width:15.141600px;}
._13{width:16.734000px;}
._1e{width:19.680000px;}
._1f{width:21.120000px;}
._7{width:36.369600px;}
._2f{width:42.251400px;}
._30{width:43.817400px;}
._17{width:71.760000px;}
._1b{width:74.121168px;}
._18{width:110.544000px;}
._19{width:116.880000px;}
._1c{width:130.320000px;}
._1a{width:136.656000px;}
._1d{width:150.144000px;}
._16{width:185.424000px;}
._14{width:192.584400px;}
._20{width:204.150000px;}
._21{width:205.728000px;}
._28{width:222.672000px;}
._15{width:230.496000px;}
._22{width:239.664000px;}
._2d{width:436.956000px;}
._29{width:644.880000px;}
._25{width:707.760000px;}
._2a{width:727.330800px;}
._23{width:746.392800px;}
._2c{width:771.072000px;}
._2b{width:791.650800px;}
._2e{width:857.232000px;}
._26{width:916.792800px;}
._27{width:920.866800px;}
._24{width:931.858800px;}
.fc2{color:rgb(109,111,79);}
.fc1{color:rgb(70,71,49);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:27.984000px;}
.fsb{font-size:31.482000px;}
.fsa{font-size:34.980000px;}
.fs3{font-size:38.478000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:43.200000px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:68.124750px;}
.y3c{bottom:71.212050px;}
.y3d{bottom:75.040050px;}
.y14f{bottom:112.790850px;}
.y119{bottom:112.976700px;}
.y149{bottom:113.042850px;}
.yb0{bottom:113.078550px;}
.yca{bottom:113.078700px;}
.y6f{bottom:113.078850px;}
.yed{bottom:116.310300px;}
.y11{bottom:117.205050px;}
.y2b{bottom:117.212700px;}
.y83{bottom:118.799850px;}
.yc5{bottom:120.380850px;}
.yc0{bottom:120.478350px;}
.yb5{bottom:120.482850px;}
.yd4{bottom:120.487350px;}
.yd0{bottom:120.496200px;}
.yd6{bottom:120.496350px;}
.y10{bottom:131.601450px;}
.y14e{bottom:133.796850px;}
.y118{bottom:133.982700px;}
.y148{bottom:134.048850px;}
.yaf{bottom:134.078550px;}
.yc9{bottom:134.078700px;}
.y6e{bottom:134.078850px;}
.yec{bottom:135.510300px;}
.y2a{bottom:138.212700px;}
.yf0{bottom:139.529400px;}
.yc4{bottom:140.185350px;}
.ybf{bottom:140.282850px;}
.yb4{bottom:140.287350px;}
.yd3{bottom:140.291850px;}
.ycf{bottom:140.300700px;}
.yd5{bottom:140.300850px;}
.y82{bottom:143.106900px;}
.yf{bottom:145.997850px;}
.yeb{bottom:154.710300px;}
.y14d{bottom:154.802850px;}
.y117{bottom:154.988700px;}
.y147{bottom:155.054850px;}
.yae{bottom:155.078550px;}
.yc8{bottom:155.078700px;}
.y6d{bottom:155.078850px;}
.y29{bottom:159.212700px;}
.yc3{bottom:159.989850px;}
.ybe{bottom:160.087350px;}
.yb3{bottom:160.091850px;}
.yd2{bottom:160.096350px;}
.ye{bottom:160.397850px;}
.y81{bottom:167.413950px;}
.yea{bottom:173.910300px;}
.y14c{bottom:175.808850px;}
.y116{bottom:175.994700px;}
.y164{bottom:176.024850px;}
.y146{bottom:176.060850px;}
.yad{bottom:176.078550px;}
.yc7{bottom:176.078700px;}
.y6c{bottom:176.078850px;}
.yc2{bottom:179.794350px;}
.ybd{bottom:179.891850px;}
.yb2{bottom:179.896350px;}
.yd1{bottom:179.900850px;}
.y28{bottom:180.212700px;}
.y80{bottom:191.721000px;}
.ye9{bottom:193.110300px;}
.y14b{bottom:196.814850px;}
.y115{bottom:197.000700px;}
.y163{bottom:197.030850px;}
.y145{bottom:197.066850px;}
.yac{bottom:197.078550px;}
.yc6{bottom:197.078700px;}
.y6b{bottom:197.078850px;}
.yc1{bottom:199.598850px;}
.ybc{bottom:199.696350px;}
.yb1{bottom:199.700850px;}
.y27{bottom:201.212700px;}
.yef{bottom:202.937100px;}
.y39{bottom:203.456400px;}
.ye8{bottom:212.310300px;}
.y7f{bottom:216.028200px;}
.y14a{bottom:217.820850px;}
.y114{bottom:218.006700px;}
.y162{bottom:218.036850px;}
.y144{bottom:218.072850px;}
.y6a{bottom:218.078850px;}
.ybb{bottom:219.500850px;}
.y38{bottom:221.451900px;}
.ye7{bottom:231.510300px;}
.yab{bottom:232.440900px;}
.yee{bottom:232.441050px;}
.y26{bottom:234.900450px;}
.y143{bottom:238.826850px;}
.y113{bottom:239.012700px;}
.y161{bottom:239.042850px;}
.y69{bottom:239.078850px;}
.y37{bottom:239.447400px;}
.y7e{bottom:240.335250px;}
.yce{bottom:246.740700px;}
.ye6{bottom:250.710300px;}
.yb9{bottom:253.441050px;}
.y36{bottom:257.442900px;}
.y142{bottom:259.832850px;}
.y112{bottom:260.018700px;}
.y160{bottom:260.048850px;}
.y68{bottom:260.078850px;}
.y7d{bottom:264.642300px;}
.ycd{bottom:266.545200px;}
.ye5{bottom:269.910300px;}
.y35{bottom:275.438400px;}
.y141{bottom:280.838850px;}
.y111{bottom:281.024700px;}
.y15f{bottom:281.054850px;}
.yaa{bottom:281.078550px;}
.y67{bottom:281.078850px;}
.ycc{bottom:286.349700px;}
.y7c{bottom:288.949350px;}
.ye4{bottom:289.110300px;}
.y34{bottom:293.433900px;}
.y140{bottom:301.844850px;}
.y110{bottom:302.030700px;}
.y15e{bottom:302.060850px;}
.ya9{bottom:302.078550px;}
.y66{bottom:302.078850px;}
.ycb{bottom:306.154200px;}
.ye3{bottom:308.310300px;}
.y33{bottom:311.429400px;}
.y7b{bottom:313.256550px;}
.y25{bottom:315.423450px;}
.yb6{bottom:316.441050px;}
.y13f{bottom:322.850850px;}
.y10f{bottom:323.036700px;}
.y15d{bottom:323.066850px;}
.ya8{bottom:323.078550px;}
.y65{bottom:323.078850px;}
.ye2{bottom:327.510300px;}
.y32{bottom:329.424900px;}
.y24{bottom:335.227950px;}
.y7a{bottom:337.563600px;}
.y13e{bottom:343.856850px;}
.y10e{bottom:344.042700px;}
.y15c{bottom:344.072850px;}
.ya7{bottom:344.078550px;}
.y64{bottom:344.078850px;}
.ye1{bottom:346.710300px;}
.y31{bottom:347.420400px;}
.yba{bottom:347.811000px;}
.y79{bottom:361.864950px;}
.y13d{bottom:364.862850px;}
.y10d{bottom:365.048700px;}
.ya6{bottom:365.078550px;}
.y63{bottom:365.078850px;}
.y30{bottom:365.415900px;}
.yde{bottom:365.912100px;}
.ye0{bottom:365.914950px;}
.y23{bottom:376.220400px;}
.ydd{bottom:380.912100px;}
.ydf{bottom:380.914950px;}
.ydb{bottom:382.592100px;}
.y13c{bottom:385.868850px;}
.y10c{bottom:386.054700px;}
.ya5{bottom:386.078550px;}
.y62{bottom:386.078850px;}
.y78{bottom:386.176950px;}
.y22{bottom:396.024900px;}
.ydc{bottom:399.272100px;}
.y15b{bottom:399.513600px;}
.y2f{bottom:400.421400px;}
.y13b{bottom:406.874850px;}
.y10b{bottom:407.060700px;}
.ya4{bottom:407.078550px;}
.y61{bottom:407.078850px;}
.y77{bottom:410.488950px;}
.y76{bottom:414.292950px;}
.y21{bottom:415.829400px;}
.y2e{bottom:418.421400px;}
.y13a{bottom:427.880850px;}
.y10a{bottom:428.066700px;}
.ya3{bottom:428.078550px;}
.y60{bottom:428.078850px;}
.y75{bottom:429.292950px;}
.yda{bottom:429.746700px;}
.y15a{bottom:431.811150px;}
.y20{bottom:435.633900px;}
.y2d{bottom:436.421400px;}
.y139{bottom:448.886850px;}
.y109{bottom:449.072700px;}
.ya2{bottom:449.078550px;}
.y5f{bottom:449.078850px;}
.yd9{bottom:449.551200px;}
.y2c{bottom:454.421400px;}
.y1f{bottom:455.438400px;}
.y74{bottom:465.269700px;}
.y138{bottom:469.892850px;}
.ya1{bottom:470.078550px;}
.y108{bottom:470.078700px;}
.y5e{bottom:470.078850px;}
.y1e{bottom:475.242900px;}
.y73{bottom:485.074200px;}
.y137{bottom:490.898850px;}
.y159{bottom:491.030850px;}
.ya0{bottom:491.078550px;}
.y5d{bottom:491.078850px;}
.y1d{bottom:495.047400px;}
.y72{bottom:504.878700px;}
.y107{bottom:505.440900px;}
.yb8{bottom:505.441050px;}
.y136{bottom:511.904850px;}
.y158{bottom:512.036850px;}
.y9f{bottom:512.078550px;}
.y5c{bottom:512.078850px;}
.y1c{bottom:514.851900px;}
.y135{bottom:532.910850px;}
.y157{bottom:533.042850px;}
.y9e{bottom:533.078550px;}
.y5b{bottom:533.078850px;}
.y1b{bottom:534.656400px;}
.y134{bottom:553.916850px;}
.y156{bottom:554.048850px;}
.y106{bottom:554.072700px;}
.y9d{bottom:554.078550px;}
.y5a{bottom:554.078850px;}
.y1a{bottom:554.460900px;}
.y19{bottom:574.265400px;}
.y133{bottom:574.922850px;}
.y155{bottom:575.054850px;}
.y9c{bottom:575.078550px;}
.y105{bottom:575.078700px;}
.y59{bottom:575.078850px;}
.y18{bottom:594.069900px;}
.y132{bottom:595.928850px;}
.y154{bottom:596.060850px;}
.y9b{bottom:596.078550px;}
.y58{bottom:596.078850px;}
.y104{bottom:601.529250px;}
.yd8{bottom:610.441050px;}
.y17{bottom:613.874400px;}
.y131{bottom:616.934850px;}
.y153{bottom:617.066850px;}
.y9a{bottom:617.078550px;}
.y57{bottom:617.078850px;}
.y16{bottom:633.678900px;}
.y130{bottom:637.940850px;}
.y103{bottom:638.072700px;}
.y152{bottom:638.072850px;}
.y99{bottom:638.078550px;}
.y56{bottom:638.078850px;}
.y15{bottom:653.483400px;}
.y12f{bottom:658.946850px;}
.y102{bottom:659.072700px;}
.y98{bottom:659.078550px;}
.y55{bottom:659.078850px;}
.y14{bottom:673.287900px;}
.y12e{bottom:679.952850px;}
.y97{bottom:680.078550px;}
.y101{bottom:680.078700px;}
.y54{bottom:680.078850px;}
.y151{bottom:693.513600px;}
.y12d{bottom:700.958850px;}
.y96{bottom:701.078550px;}
.y53{bottom:701.078850px;}
.y13{bottom:704.385300px;}
.y100{bottom:706.529250px;}
.y12c{bottom:721.964850px;}
.y95{bottom:722.078550px;}
.y52{bottom:722.078850px;}
.y150{bottom:725.811150px;}
.y12b{bottom:742.970850px;}
.yff{bottom:743.060700px;}
.y94{bottom:743.078550px;}
.y51{bottom:743.078850px;}
.y71{bottom:756.513600px;}
.y12a{bottom:763.976850px;}
.yfe{bottom:764.066700px;}
.y93{bottom:764.078550px;}
.y50{bottom:764.078850px;}
.yd{bottom:783.666900px;}
.y129{bottom:784.982850px;}
.yfd{bottom:785.072700px;}
.y92{bottom:785.078550px;}
.y4f{bottom:785.078850px;}
.y70{bottom:788.811000px;}
.yc{bottom:801.666900px;}
.y128{bottom:805.988850px;}
.yfc{bottom:806.078700px;}
.y4e{bottom:806.078850px;}
.yb{bottom:819.666900px;}
.y91{bottom:820.440900px;}
.y127{bottom:826.994850px;}
.y4d{bottom:827.078850px;}
.yfb{bottom:832.529250px;}
.ya{bottom:837.666900px;}
.y126{bottom:848.000850px;}
.y4c{bottom:848.078850px;}
.y9{bottom:855.666900px;}
.y125{bottom:869.006850px;}
.yfa{bottom:869.030850px;}
.y90{bottom:869.078700px;}
.y4b{bottom:869.078850px;}
.y8{bottom:873.666900px;}
.yd7{bottom:883.441050px;}
.y124{bottom:890.012850px;}
.yf9{bottom:890.036850px;}
.y8f{bottom:890.078700px;}
.y4a{bottom:890.078850px;}
.y7{bottom:891.666900px;}
.y123{bottom:911.018850px;}
.yf8{bottom:911.042850px;}
.y8e{bottom:911.078700px;}
.y49{bottom:911.078850px;}
.y6{bottom:926.674800px;}
.y122{bottom:932.024850px;}
.yf7{bottom:932.048850px;}
.y8d{bottom:932.078700px;}
.y48{bottom:932.078850px;}
.y5{bottom:946.474800px;}
.y121{bottom:953.030850px;}
.yf6{bottom:953.054850px;}
.y8c{bottom:953.078700px;}
.y47{bottom:953.078850px;}
.y120{bottom:974.036850px;}
.yf5{bottom:974.060850px;}
.y8b{bottom:974.078700px;}
.y46{bottom:974.078850px;}
.y4{bottom:983.288550px;}
.y11f{bottom:995.042850px;}
.yf4{bottom:995.066850px;}
.y8a{bottom:995.078700px;}
.y45{bottom:995.078850px;}
.y11e{bottom:1016.048850px;}
.yf3{bottom:1016.072850px;}
.y89{bottom:1016.078700px;}
.y44{bottom:1016.078850px;}
.y3{bottom:1016.285550px;}
.yb7{bottom:1030.441050px;}
.y11d{bottom:1037.054850px;}
.y88{bottom:1037.078700px;}
.y43{bottom:1037.078850px;}
.y2{bottom:1049.282550px;}
.y11c{bottom:1058.060850px;}
.y87{bottom:1058.078700px;}
.y42{bottom:1058.078850px;}
.yf2{bottom:1063.529250px;}
.y11b{bottom:1079.066850px;}
.y86{bottom:1079.078700px;}
.y41{bottom:1079.078850px;}
.y11a{bottom:1100.072850px;}
.y85{bottom:1100.078700px;}
.y40{bottom:1100.078850px;}
.y12{bottom:1109.815500px;}
.y84{bottom:1121.078700px;}
.y3f{bottom:1121.078850px;}
.yf1{bottom:1125.451800px;}
.y3b{bottom:1159.189500px;}
.y3a{bottom:1178.689500px;}
.y3e{bottom:1178.692050px;}
.h7{height:34.446094px;}
.h6{height:34.657031px;}
.h12{height:38.226562px;}
.h19{height:38.270086px;}
.h10{height:38.273438px;}
.h18{height:38.281486px;}
.h2{height:38.507812px;}
.h5{height:38.531250px;}
.h14{height:39.000000px;}
.h17{height:39.019200px;}
.h16{height:39.019800px;}
.h15{height:39.042600px;}
.h8{height:43.004883px;}
.hf{height:43.057617px;}
.hb{height:43.321289px;}
.ha{height:43.875000px;}
.h1a{height:43.899000px;}
.h1b{height:44.883000px;}
.h9{height:45.615234px;}
.he{height:48.134766px;}
.hd{height:48.750000px;}
.h11{height:50.176758px;}
.h4{height:53.625000px;}
.hc{height:54.738281px;}
.h3{height:81.231445px;}
.h13{height:113.442562px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:73.984200px;}
.x3{left:90.992100px;}
.xb{left:107.063850px;}
.xd{left:108.289650px;}
.x1a{left:112.251900px;}
.x6{left:119.878950px;}
.x7{left:122.032500px;}
.x8{left:124.102950px;}
.x12{left:243.381900px;}
.x5{left:300.189000px;}
.x11{left:304.452450px;}
.xe{left:305.483100px;}
.xf{left:312.755100px;}
.xc{left:317.184000px;}
.x4{left:396.050700px;}
.x14{left:473.757900px;}
.x15{left:483.237900px;}
.x10{left:527.712450px;}
.x13{left:565.413900px;}
.x16{left:597.333750px;}
.x17{left:600.069750px;}
.xa{left:646.536300px;}
.x9{left:668.280300px;}
.x18{left:707.241750px;}
.x19{left:716.985750px;}
.x1{left:801.157500px;}
@media print{
.v7{vertical-align:-17.760000pt;}
.v9{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:0.896000pt;}
.v5{vertical-align:14.245867pt;}
.v8{vertical-align:15.984000pt;}
.v6{vertical-align:17.760000pt;}
.v1{vertical-align:19.536000pt;}
.v2{vertical-align:26.666667pt;}
.v3{vertical-align:40.874667pt;}
.v4{vertical-align:66.858667pt;}
.ls1d{letter-spacing:-6.432000pt;}
.ls10{letter-spacing:-2.880000pt;}
.ls15{letter-spacing:-1.066667pt;}
.ls24{letter-spacing:-0.960000pt;}
.ls18{letter-spacing:-0.906667pt;}
.ls16{letter-spacing:-0.853333pt;}
.ls19{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.614400pt;}
.ls1b{letter-spacing:-0.586667pt;}
.ls9{letter-spacing:-0.544000pt;}
.ls13{letter-spacing:-0.533333pt;}
.ls27{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.469333pt;}
.ls1e{letter-spacing:-0.426667pt;}
.ls8{letter-spacing:-0.362667pt;}
.ls25{letter-spacing:-0.288000pt;}
.ls14{letter-spacing:-0.266667pt;}
.ls26{letter-spacing:-0.251856pt;}
.lsd{letter-spacing:-0.160000pt;}
.ls6{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.000875pt;}
.ls12{letter-spacing:0.078613pt;}
.ls11{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.272000pt;}
.ls22{letter-spacing:0.320000pt;}
.ls29{letter-spacing:0.480000pt;}
.lse{letter-spacing:0.533333pt;}
.ls28{letter-spacing:0.640000pt;}
.ls1a{letter-spacing:0.734400pt;}
.ls5{letter-spacing:0.853333pt;}
.ls23{letter-spacing:1.066667pt;}
.ls17{letter-spacing:1.824000pt;}
.ls3{letter-spacing:2.112000pt;}
.ls1c{letter-spacing:3.907200pt;}
.ls4{letter-spacing:4.416000pt;}
.ls21{letter-spacing:6.000000pt;}
.ls2{letter-spacing:6.816000pt;}
.ls1f{letter-spacing:7.488000pt;}
.ls20{letter-spacing:7.536000pt;}
.lsc{letter-spacing:9.120000pt;}
.ls1{letter-spacing:21.888000pt;}
.ls0{letter-spacing:38.383435pt;}
.ws0{word-spacing:-22.666667pt;}
.ws7{word-spacing:-15.936000pt;}
.wsb6{word-spacing:-14.608000pt;}
.ws8{word-spacing:-13.920000pt;}
.ws18f{word-spacing:-13.813333pt;}
.ws91{word-spacing:-13.600000pt;}
.ws14c{word-spacing:-13.386667pt;}
.ws5{word-spacing:-13.280000pt;}
.ws92{word-spacing:-13.226667pt;}
.ws34{word-spacing:-13.066667pt;}
.ws55{word-spacing:-12.906667pt;}
.wsa6{word-spacing:-12.800000pt;}
.wsb7{word-spacing:-12.693333pt;}
.ws11e{word-spacing:-12.640000pt;}
.wsd7{word-spacing:-12.213333pt;}
.wsf2{word-spacing:-12.160000pt;}
.wsb5{word-spacing:-12.000000pt;}
.ws8b{word-spacing:-11.952000pt;}
.ws157{word-spacing:-11.904000pt;}
.ws6{word-spacing:-11.760000pt;}
.ws16a{word-spacing:-11.616000pt;}
.ws17e{word-spacing:-11.424000pt;}
.ws190{word-spacing:-11.280000pt;}
.ws9{word-spacing:-10.992000pt;}
.ws158{word-spacing:-10.944000pt;}
.wsb{word-spacing:-10.800000pt;}
.wsa{word-spacing:-10.704000pt;}
.ws57{word-spacing:-10.624000pt;}
.wsc{word-spacing:-9.770667pt;}
.ws3{word-spacing:-9.685333pt;}
.ws32{word-spacing:-9.600000pt;}
.ws33{word-spacing:-9.514667pt;}
.ws8c{word-spacing:-9.072000pt;}
.ws4{word-spacing:-8.793600pt;}
.ws2{word-spacing:-8.549333pt;}
.ws1{word-spacing:-8.482261pt;}
.wsa5{word-spacing:-7.711147pt;}
.ws14d{word-spacing:-7.520000pt;}
.ws14e{word-spacing:-7.413333pt;}
.wsec{word-spacing:-6.940032pt;}
.ws16b{word-spacing:-6.688176pt;}
.ws12f{word-spacing:-5.520000pt;}
.ws87{word-spacing:-5.386667pt;}
.ws81{word-spacing:-4.480000pt;}
.ws71{word-spacing:-4.416000pt;}
.ws140{word-spacing:-3.946667pt;}
.wscf{word-spacing:-3.936000pt;}
.ws141{word-spacing:-3.893333pt;}
.ws170{word-spacing:-3.888000pt;}
.ws12a{word-spacing:-3.786667pt;}
.ws145{word-spacing:-3.680000pt;}
.ws126{word-spacing:-3.573333pt;}
.ws156{word-spacing:-3.466667pt;}
.ws131{word-spacing:-3.200000pt;}
.wse6{word-spacing:-3.093333pt;}
.wse7{word-spacing:-3.040000pt;}
.ws146{word-spacing:-2.933333pt;}
.wsef{word-spacing:-2.928000pt;}
.wsb8{word-spacing:-2.880000pt;}
.wsb9{word-spacing:-2.826667pt;}
.ws138{word-spacing:-2.784000pt;}
.ws185{word-spacing:-2.736000pt;}
.ws18c{word-spacing:-2.688000pt;}
.ws18b{word-spacing:-2.640000pt;}
.ws82{word-spacing:-2.613333pt;}
.ws181{word-spacing:-2.448000pt;}
.ws4f{word-spacing:-2.293333pt;}
.ws70{word-spacing:-2.240000pt;}
.ws199{word-spacing:-2.208000pt;}
.ws6c{word-spacing:-2.186667pt;}
.ws79{word-spacing:-2.080000pt;}
.ws16c{word-spacing:-2.064000pt;}
.ws102{word-spacing:-2.026667pt;}
.ws49{word-spacing:-1.973333pt;}
.ws118{word-spacing:-1.920000pt;}
.wsd4{word-spacing:-1.872000pt;}
.ws117{word-spacing:-1.866667pt;}
.ws13a{word-spacing:-1.824000pt;}
.ws116{word-spacing:-1.813333pt;}
.ws180{word-spacing:-1.776000pt;}
.wsa2{word-spacing:-1.760000pt;}
.ws15b{word-spacing:-1.728000pt;}
.wscc{word-spacing:-1.706667pt;}
.wscb{word-spacing:-1.653333pt;}
.wscd{word-spacing:-1.600000pt;}
.ws18a{word-spacing:-1.584000pt;}
.ws142{word-spacing:-1.546667pt;}
.wsd8{word-spacing:-1.493333pt;}
.ws162{word-spacing:-1.488000pt;}
.wsf1{word-spacing:-1.392000pt;}
.ws7f{word-spacing:-1.386667pt;}
.ws1c{word-spacing:-1.344000pt;}
.wsb0{word-spacing:-1.333333pt;}
.ws12c{word-spacing:-1.280000pt;}
.wse0{word-spacing:-1.226667pt;}
.ws121{word-spacing:-1.173333pt;}
.wse4{word-spacing:-1.120000pt;}
.ws86{word-spacing:-1.066667pt;}
.ws15d{word-spacing:-1.056000pt;}
.wsf4{word-spacing:-1.013333pt;}
.wsf0{word-spacing:-1.008000pt;}
.ws35{word-spacing:-0.960000pt;}
.ws144{word-spacing:-0.912000pt;}
.ws89{word-spacing:-0.906667pt;}
.ws15c{word-spacing:-0.864000pt;}
.ws2e{word-spacing:-0.853333pt;}
.ws12{word-spacing:-0.810667pt;}
.ws103{word-spacing:-0.800000pt;}
.ws132{word-spacing:-0.746667pt;}
.ws1d{word-spacing:-0.720000pt;}
.ws107{word-spacing:-0.640000pt;}
.ws99{word-spacing:-0.586667pt;}
.ws6d{word-spacing:-0.533333pt;}
.ws4a{word-spacing:-0.480000pt;}
.wsb2{word-spacing:-0.426667pt;}
.wsd1{word-spacing:-0.384000pt;}
.ws129{word-spacing:-0.373333pt;}
.ws14f{word-spacing:-0.320000pt;}
.ws17f{word-spacing:-0.288000pt;}
.ws74{word-spacing:-0.266667pt;}
.ws77{word-spacing:-0.213333pt;}
.ws13{word-spacing:-0.192000pt;}
.ws6e{word-spacing:-0.160000pt;}
.ws7c{word-spacing:-0.106667pt;}
.ws11{word-spacing:-0.085333pt;}
.ws40{word-spacing:-0.053333pt;}
.ws18d{word-spacing:-0.048000pt;}
.wsd{word-spacing:0.000000pt;}
.ws163{word-spacing:0.096000pt;}
.ws65{word-spacing:0.160000pt;}
.ws133{word-spacing:0.213333pt;}
.ws10b{word-spacing:0.240000pt;}
.wsb3{word-spacing:0.266667pt;}
.ws171{word-spacing:0.288000pt;}
.ws88{word-spacing:0.320000pt;}
.wse{word-spacing:0.362667pt;}
.ws50{word-spacing:0.373333pt;}
.ws147{word-spacing:0.384000pt;}
.wse3{word-spacing:0.426667pt;}
.ws10d{word-spacing:0.480000pt;}
.ws9a{word-spacing:0.533333pt;}
.wsf{word-spacing:0.544000pt;}
.ws17c{word-spacing:0.576000pt;}
.ws73{word-spacing:0.586667pt;}
.ws14{word-spacing:0.614400pt;}
.ws10f{word-spacing:0.640000pt;}
.ws115{word-spacing:0.720000pt;}
.ws114{word-spacing:0.768000pt;}
.ws44{word-spacing:0.800000pt;}
.wsdd{word-spacing:0.853333pt;}
.wsf5{word-spacing:0.906667pt;}
.ws139{word-spacing:0.912000pt;}
.ws52{word-spacing:0.960000pt;}
.wse8{word-spacing:1.013333pt;}
.wsc1{word-spacing:1.066667pt;}
.ws8e{word-spacing:1.104000pt;}
.ws51{word-spacing:1.120000pt;}
.ws8d{word-spacing:1.152000pt;}
.ws78{word-spacing:1.173333pt;}
.ws166{word-spacing:1.200000pt;}
.ws151{word-spacing:1.226667pt;}
.wsc9{word-spacing:1.280000pt;}
.ws8f{word-spacing:1.296000pt;}
.wsc0{word-spacing:1.333333pt;}
.ws10c{word-spacing:1.344000pt;}
.ws125{word-spacing:1.386667pt;}
.ws2c{word-spacing:1.440000pt;}
.wsd5{word-spacing:1.584000pt;}
.ws100{word-spacing:1.653333pt;}
.ws95{word-spacing:1.706667pt;}
.ws16d{word-spacing:1.728000pt;}
.ws101{word-spacing:1.760000pt;}
.wsee{word-spacing:1.824000pt;}
.wsbe{word-spacing:1.866667pt;}
.wsed{word-spacing:1.872000pt;}
.wsbb{word-spacing:1.920000pt;}
.ws6a{word-spacing:1.973333pt;}
.ws16f{word-spacing:2.016000pt;}
.ws3e{word-spacing:2.026667pt;}
.ws11c{word-spacing:2.064000pt;}
.ws39{word-spacing:2.080000pt;}
.ws1f{word-spacing:2.112000pt;}
.ws38{word-spacing:2.133333pt;}
.ws1e{word-spacing:2.160000pt;}
.ws47{word-spacing:2.240000pt;}
.ws6f{word-spacing:2.293333pt;}
.wse1{word-spacing:2.346667pt;}
.ws48{word-spacing:2.400000pt;}
.wse5{word-spacing:2.453333pt;}
.ws15f{word-spacing:2.496000pt;}
.ws5f{word-spacing:2.506667pt;}
.ws17b{word-spacing:2.544000pt;}
.wsdf{word-spacing:2.560000pt;}
.ws36{word-spacing:2.613333pt;}
.ws97{word-spacing:2.666667pt;}
.wsa3{word-spacing:2.720000pt;}
.ws13f{word-spacing:2.773333pt;}
.wseb{word-spacing:2.826667pt;}
.ws187{word-spacing:2.832000pt;}
.wsba{word-spacing:2.880000pt;}
.ws191{word-spacing:2.928000pt;}
.wsad{word-spacing:2.933333pt;}
.wsd0{word-spacing:2.976000pt;}
.wsf3{word-spacing:2.986667pt;}
.ws113{word-spacing:3.093333pt;}
.ws169{word-spacing:3.120000pt;}
.wse2{word-spacing:3.146667pt;}
.ws22{word-spacing:3.168000pt;}
.ws75{word-spacing:3.200000pt;}
.ws23{word-spacing:3.216000pt;}
.ws7d{word-spacing:3.253333pt;}
.ws24{word-spacing:3.264000pt;}
.wsb4{word-spacing:3.306667pt;}
.ws2a{word-spacing:3.312000pt;}
.ws2b{word-spacing:3.360000pt;}
.ws25{word-spacing:3.408000pt;}
.ws11f{word-spacing:3.413333pt;}
.ws63{word-spacing:3.466667pt;}
.ws11b{word-spacing:3.504000pt;}
.ws84{word-spacing:3.520000pt;}
.ws11a{word-spacing:3.552000pt;}
.ws128{word-spacing:3.573333pt;}
.ws66{word-spacing:3.626667pt;}
.ws67{word-spacing:3.680000pt;}
.wsaf{word-spacing:3.733333pt;}
.wsd6{word-spacing:3.792000pt;}
.ws64{word-spacing:3.840000pt;}
.ws12e{word-spacing:3.888000pt;}
.wsc2{word-spacing:3.893333pt;}
.ws12d{word-spacing:3.936000pt;}
.ws6b{word-spacing:3.946667pt;}
.ws98{word-spacing:4.000000pt;}
.ws9b{word-spacing:4.053333pt;}
.wsdb{word-spacing:4.106667pt;}
.ws21{word-spacing:4.128000pt;}
.ws9e{word-spacing:4.160000pt;}
.ws20{word-spacing:4.176000pt;}
.ws8a{word-spacing:4.213333pt;}
.ws172{word-spacing:4.224000pt;}
.wsda{word-spacing:4.266667pt;}
.ws15e{word-spacing:4.272000pt;}
.wsd9{word-spacing:4.320000pt;}
.ws5e{word-spacing:4.373333pt;}
.ws28{word-spacing:4.416000pt;}
.ws5d{word-spacing:4.426667pt;}
.ws27{word-spacing:4.464000pt;}
.wse9{word-spacing:4.480000pt;}
.ws13b{word-spacing:4.533333pt;}
.ws159{word-spacing:4.560000pt;}
.ws4d{word-spacing:4.586667pt;}
.ws182{word-spacing:4.608000pt;}
.ws104{word-spacing:4.640000pt;}
.wsbd{word-spacing:4.693333pt;}
.ws173{word-spacing:4.704000pt;}
.ws68{word-spacing:4.746667pt;}
.ws62{word-spacing:4.800000pt;}
.ws61{word-spacing:4.853333pt;}
.ws110{word-spacing:4.960000pt;}
.wsc3{word-spacing:5.013333pt;}
.wsc4{word-spacing:5.066667pt;}
.ws83{word-spacing:5.173333pt;}
.wsde{word-spacing:5.226667pt;}
.ws177{word-spacing:5.232000pt;}
.ws96{word-spacing:5.280000pt;}
.ws10e{word-spacing:5.333333pt;}
.ws153{word-spacing:5.386667pt;}
.ws2f{word-spacing:5.440000pt;}
.ws122{word-spacing:5.493333pt;}
.wsd3{word-spacing:5.568000pt;}
.ws12b{word-spacing:5.600000pt;}
.wsd2{word-spacing:5.616000pt;}
.ws72{word-spacing:5.706667pt;}
.ws111{word-spacing:5.760000pt;}
.ws143{word-spacing:5.813333pt;}
.ws13e{word-spacing:5.866667pt;}
.ws11d{word-spacing:5.904000pt;}
.ws112{word-spacing:5.920000pt;}
.ws14b{word-spacing:5.952000pt;}
.ws43{word-spacing:5.973333pt;}
.ws14a{word-spacing:6.000000pt;}
.ws69{word-spacing:6.026667pt;}
.ws17d{word-spacing:6.048000pt;}
.wsff{word-spacing:6.080000pt;}
.ws90{word-spacing:6.096000pt;}
.ws3b{word-spacing:6.133333pt;}
.ws3a{word-spacing:6.186667pt;}
.ws41{word-spacing:6.240000pt;}
.ws93{word-spacing:6.293333pt;}
.ws195{word-spacing:6.336000pt;}
.ws85{word-spacing:6.346667pt;}
.ws45{word-spacing:6.400000pt;}
.wsea{word-spacing:6.506667pt;}
.ws3d{word-spacing:6.560000pt;}
.ws76{word-spacing:6.613333pt;}
.ws161{word-spacing:6.624000pt;}
.wsbc{word-spacing:6.666667pt;}
.wsa7{word-spacing:6.720000pt;}
.wsc6{word-spacing:6.773333pt;}
.ws18{word-spacing:6.816000pt;}
.wsc5{word-spacing:6.826667pt;}
.ws1a{word-spacing:6.864000pt;}
.ws19{word-spacing:6.912000pt;}
.ws3c{word-spacing:6.933333pt;}
.ws30{word-spacing:6.986667pt;}
.ws160{word-spacing:7.056000pt;}
.ws120{word-spacing:7.093333pt;}
.ws196{word-spacing:7.104000pt;}
.ws9f{word-spacing:7.200000pt;}
.ws46{word-spacing:7.306667pt;}
.wsae{word-spacing:7.413333pt;}
.ws150{word-spacing:7.466667pt;}
.ws149{word-spacing:7.488000pt;}
.ws105{word-spacing:7.520000pt;}
.ws148{word-spacing:7.536000pt;}
.ws10{word-spacing:7.568000pt;}
.wsdc{word-spacing:7.573333pt;}
.ws37{word-spacing:7.786667pt;}
.ws3f{word-spacing:7.840000pt;}
.ws152{word-spacing:7.893333pt;}
.ws42{word-spacing:7.946667pt;}
.ws137{word-spacing:7.968000pt;}
.ws4b{word-spacing:8.000000pt;}
.ws178{word-spacing:8.016000pt;}
.wsa1{word-spacing:8.160000pt;}
.ws176{word-spacing:8.208000pt;}
.ws9c{word-spacing:8.213333pt;}
.wsa4{word-spacing:8.320000pt;}
.ws165{word-spacing:8.448000pt;}
.ws94{word-spacing:8.480000pt;}
.ws26{word-spacing:8.640000pt;}
.wsf8{word-spacing:8.746667pt;}
.wsc8{word-spacing:8.800000pt;}
.ws2d{word-spacing:8.853333pt;}
.ws184{word-spacing:8.880000pt;}
.ws80{word-spacing:8.906667pt;}
.ws18e{word-spacing:8.976000pt;}
.ws13d{word-spacing:9.013333pt;}
.ws174{word-spacing:9.072000pt;}
.ws13c{word-spacing:9.120000pt;}
.ws4e{word-spacing:9.173333pt;}
.wsab{word-spacing:9.226667pt;}
.ws127{word-spacing:9.280000pt;}
.wsac{word-spacing:9.333333pt;}
.wsb1{word-spacing:9.440000pt;}
.ws7e{word-spacing:9.546667pt;}
.ws167{word-spacing:9.696000pt;}
.ws60{word-spacing:9.706667pt;}
.ws7b{word-spacing:9.760000pt;}
.ws168{word-spacing:9.792000pt;}
.wsfe{word-spacing:9.866667pt;}
.ws193{word-spacing:9.888000pt;}
.wsfd{word-spacing:9.973333pt;}
.ws31{word-spacing:10.026667pt;}
.wsfc{word-spacing:10.080000pt;}
.ws119{word-spacing:10.186667pt;}
.wsfa{word-spacing:10.240000pt;}
.ws16e{word-spacing:10.272000pt;}
.wsf9{word-spacing:10.293333pt;}
.ws106{word-spacing:10.346667pt;}
.wsa9{word-spacing:10.506667pt;}
.wsa8{word-spacing:10.613333pt;}
.wsaa{word-spacing:10.773333pt;}
.ws7a{word-spacing:10.880000pt;}
.ws17a{word-spacing:10.992000pt;}
.ws194{word-spacing:11.040000pt;}
.wsbf{word-spacing:11.253333pt;}
.ws10a{word-spacing:11.328000pt;}
.ws109{word-spacing:11.424000pt;}
.ws108{word-spacing:11.520000pt;}
.ws186{word-spacing:11.808000pt;}
.ws175{word-spacing:11.952000pt;}
.ws136{word-spacing:12.048000pt;}
.wsa0{word-spacing:12.053333pt;}
.ws135{word-spacing:12.192000pt;}
.ws134{word-spacing:12.240000pt;}
.ws154{word-spacing:12.800000pt;}
.ws192{word-spacing:12.816000pt;}
.ws29{word-spacing:13.008000pt;}
.ws15a{word-spacing:13.584000pt;}
.ws155{word-spacing:13.706667pt;}
.ws179{word-spacing:13.824000pt;}
.wsfb{word-spacing:13.920000pt;}
.wsc7{word-spacing:14.400000pt;}
.wsca{word-spacing:14.560000pt;}
.ws9d{word-spacing:14.826667pt;}
.ws189{word-spacing:14.976000pt;}
.ws164{word-spacing:15.072000pt;}
.ws188{word-spacing:15.120000pt;}
.ws4c{word-spacing:15.146667pt;}
.ws54{word-spacing:15.733333pt;}
.ws1b{word-spacing:16.416000pt;}
.ws198{word-spacing:16.944000pt;}
.ws183{word-spacing:17.904000pt;}
.wsce{word-spacing:17.973333pt;}
.ws53{word-spacing:18.080000pt;}
.ws124{word-spacing:18.400000pt;}
.wsf6{word-spacing:19.413333pt;}
.wsf7{word-spacing:19.573333pt;}
.ws197{word-spacing:21.408000pt;}
.ws16{word-spacing:21.696000pt;}
.ws15{word-spacing:21.888000pt;}
.ws17{word-spacing:22.032000pt;}
.ws130{word-spacing:31.466667pt;}
.ws123{word-spacing:35.573333pt;}
.ws5b{word-spacing:87.680000pt;}
.ws59{word-spacing:94.259200pt;}
.ws58{word-spacing:112.725333pt;}
.ws5c{word-spacing:132.480000pt;}
.ws56{word-spacing:139.946667pt;}
.ws5a{word-spacing:156.458667pt;}
._d{margin-left:-9.509333pt;}
._0{margin-left:-7.915200pt;}
._4{margin-left:-6.165333pt;}
._3{margin-left:-4.397333pt;}
._5{margin-left:-2.846933pt;}
._1{margin-left:-1.541333pt;}
._2{width:1.042667pt;}
._e{width:2.085333pt;}
._6{width:3.173333pt;}
._11{width:4.410667pt;}
._b{width:5.381333pt;}
._10{width:6.916267pt;}
._f{width:8.248533pt;}
._9{width:9.146667pt;}
._a{width:10.181333pt;}
._c{width:11.194667pt;}
._12{width:12.222933pt;}
._8{width:13.459200pt;}
._13{width:14.874667pt;}
._1e{width:17.493333pt;}
._1f{width:18.773333pt;}
._7{width:32.328533pt;}
._2f{width:37.556800pt;}
._30{width:38.948800pt;}
._17{width:63.786667pt;}
._1b{width:65.885483pt;}
._18{width:98.261333pt;}
._19{width:103.893333pt;}
._1c{width:115.840000pt;}
._1a{width:121.472000pt;}
._1d{width:133.461333pt;}
._16{width:164.821333pt;}
._14{width:171.186133pt;}
._20{width:181.466667pt;}
._21{width:182.869333pt;}
._28{width:197.930667pt;}
._15{width:204.885333pt;}
._22{width:213.034667pt;}
._2d{width:388.405333pt;}
._29{width:573.226667pt;}
._25{width:629.120000pt;}
._2a{width:646.516267pt;}
._23{width:663.460267pt;}
._2c{width:685.397333pt;}
._2b{width:703.689600pt;}
._2e{width:761.984000pt;}
._26{width:814.926933pt;}
._27{width:818.548267pt;}
._24{width:828.318933pt;}
.fs9{font-size:24.874667pt;}
.fsb{font-size:27.984000pt;}
.fsa{font-size:31.093333pt;}
.fs3{font-size:34.202667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:38.400000pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:60.555333pt;}
.y3c{bottom:63.299600pt;}
.y3d{bottom:66.702267pt;}
.y14f{bottom:100.258533pt;}
.y119{bottom:100.423733pt;}
.y149{bottom:100.482533pt;}
.yb0{bottom:100.514267pt;}
.yca{bottom:100.514400pt;}
.y6f{bottom:100.514533pt;}
.yed{bottom:103.386933pt;}
.y11{bottom:104.182267pt;}
.y2b{bottom:104.189067pt;}
.y83{bottom:105.599867pt;}
.yc5{bottom:107.005200pt;}
.yc0{bottom:107.091867pt;}
.yb5{bottom:107.095867pt;}
.yd4{bottom:107.099867pt;}
.yd0{bottom:107.107733pt;}
.yd6{bottom:107.107867pt;}
.y10{bottom:116.979067pt;}
.y14e{bottom:118.930533pt;}
.y118{bottom:119.095733pt;}
.y148{bottom:119.154533pt;}
.yaf{bottom:119.180933pt;}
.yc9{bottom:119.181067pt;}
.y6e{bottom:119.181200pt;}
.yec{bottom:120.453600pt;}
.y2a{bottom:122.855733pt;}
.yf0{bottom:124.026133pt;}
.yc4{bottom:124.609200pt;}
.ybf{bottom:124.695867pt;}
.yb4{bottom:124.699867pt;}
.yd3{bottom:124.703867pt;}
.ycf{bottom:124.711733pt;}
.yd5{bottom:124.711867pt;}
.y82{bottom:127.206133pt;}
.yf{bottom:129.775867pt;}
.yeb{bottom:137.520267pt;}
.y14d{bottom:137.602533pt;}
.y117{bottom:137.767733pt;}
.y147{bottom:137.826533pt;}
.yae{bottom:137.847600pt;}
.yc8{bottom:137.847733pt;}
.y6d{bottom:137.847867pt;}
.y29{bottom:141.522400pt;}
.yc3{bottom:142.213200pt;}
.ybe{bottom:142.299867pt;}
.yb3{bottom:142.303867pt;}
.yd2{bottom:142.307867pt;}
.ye{bottom:142.575867pt;}
.y81{bottom:148.812400pt;}
.yea{bottom:154.586933pt;}
.y14c{bottom:156.274533pt;}
.y116{bottom:156.439733pt;}
.y164{bottom:156.466533pt;}
.y146{bottom:156.498533pt;}
.yad{bottom:156.514267pt;}
.yc7{bottom:156.514400pt;}
.y6c{bottom:156.514533pt;}
.yc2{bottom:159.817200pt;}
.ybd{bottom:159.903867pt;}
.yb2{bottom:159.907867pt;}
.yd1{bottom:159.911867pt;}
.y28{bottom:160.189067pt;}
.y80{bottom:170.418667pt;}
.ye9{bottom:171.653600pt;}
.y14b{bottom:174.946533pt;}
.y115{bottom:175.111733pt;}
.y163{bottom:175.138533pt;}
.y145{bottom:175.170533pt;}
.yac{bottom:175.180933pt;}
.yc6{bottom:175.181067pt;}
.y6b{bottom:175.181200pt;}
.yc1{bottom:177.421200pt;}
.ybc{bottom:177.507867pt;}
.yb1{bottom:177.511867pt;}
.y27{bottom:178.855733pt;}
.yef{bottom:180.388533pt;}
.y39{bottom:180.850133pt;}
.ye8{bottom:188.720267pt;}
.y7f{bottom:192.025067pt;}
.y14a{bottom:193.618533pt;}
.y114{bottom:193.783733pt;}
.y162{bottom:193.810533pt;}
.y144{bottom:193.842533pt;}
.y6a{bottom:193.847867pt;}
.ybb{bottom:195.111867pt;}
.y38{bottom:196.846133pt;}
.ye7{bottom:205.786933pt;}
.yab{bottom:206.614133pt;}
.yee{bottom:206.614267pt;}
.y26{bottom:208.800400pt;}
.y143{bottom:212.290533pt;}
.y113{bottom:212.455733pt;}
.y161{bottom:212.482533pt;}
.y69{bottom:212.514533pt;}
.y37{bottom:212.842133pt;}
.y7e{bottom:213.631333pt;}
.yce{bottom:219.325067pt;}
.ye6{bottom:222.853600pt;}
.yb9{bottom:225.280933pt;}
.y36{bottom:228.838133pt;}
.y142{bottom:230.962533pt;}
.y112{bottom:231.127733pt;}
.y160{bottom:231.154533pt;}
.y68{bottom:231.181200pt;}
.y7d{bottom:235.237600pt;}
.ycd{bottom:236.929067pt;}
.ye5{bottom:239.920267pt;}
.y35{bottom:244.834133pt;}
.y141{bottom:249.634533pt;}
.y111{bottom:249.799733pt;}
.y15f{bottom:249.826533pt;}
.yaa{bottom:249.847600pt;}
.y67{bottom:249.847867pt;}
.ycc{bottom:254.533067pt;}
.y7c{bottom:256.843867pt;}
.ye4{bottom:256.986933pt;}
.y34{bottom:260.830133pt;}
.y140{bottom:268.306533pt;}
.y110{bottom:268.471733pt;}
.y15e{bottom:268.498533pt;}
.ya9{bottom:268.514267pt;}
.y66{bottom:268.514533pt;}
.ycb{bottom:272.137067pt;}
.ye3{bottom:274.053600pt;}
.y33{bottom:276.826133pt;}
.y7b{bottom:278.450267pt;}
.y25{bottom:280.376400pt;}
.yb6{bottom:281.280933pt;}
.y13f{bottom:286.978533pt;}
.y10f{bottom:287.143733pt;}
.y15d{bottom:287.170533pt;}
.ya8{bottom:287.180933pt;}
.y65{bottom:287.181200pt;}
.ye2{bottom:291.120267pt;}
.y32{bottom:292.822133pt;}
.y24{bottom:297.980400pt;}
.y7a{bottom:300.056533pt;}
.y13e{bottom:305.650533pt;}
.y10e{bottom:305.815733pt;}
.y15c{bottom:305.842533pt;}
.ya7{bottom:305.847600pt;}
.y64{bottom:305.847867pt;}
.ye1{bottom:308.186933pt;}
.y31{bottom:308.818133pt;}
.yba{bottom:309.165333pt;}
.y79{bottom:321.657733pt;}
.y13d{bottom:324.322533pt;}
.y10d{bottom:324.487733pt;}
.ya6{bottom:324.514267pt;}
.y63{bottom:324.514533pt;}
.y30{bottom:324.814133pt;}
.yde{bottom:325.255200pt;}
.ye0{bottom:325.257733pt;}
.y23{bottom:334.418133pt;}
.ydd{bottom:338.588533pt;}
.ydf{bottom:338.591067pt;}
.ydb{bottom:340.081867pt;}
.y13c{bottom:342.994533pt;}
.y10c{bottom:343.159733pt;}
.ya5{bottom:343.180933pt;}
.y62{bottom:343.181200pt;}
.y78{bottom:343.268400pt;}
.y22{bottom:352.022133pt;}
.ydc{bottom:354.908533pt;}
.y15b{bottom:355.123200pt;}
.y2f{bottom:355.930133pt;}
.y13b{bottom:361.666533pt;}
.y10b{bottom:361.831733pt;}
.ya4{bottom:361.847600pt;}
.y61{bottom:361.847867pt;}
.y77{bottom:364.879067pt;}
.y76{bottom:368.260400pt;}
.y21{bottom:369.626133pt;}
.y2e{bottom:371.930133pt;}
.y13a{bottom:380.338533pt;}
.y10a{bottom:380.503733pt;}
.ya3{bottom:380.514267pt;}
.y60{bottom:380.514533pt;}
.y75{bottom:381.593733pt;}
.yda{bottom:381.997067pt;}
.y15a{bottom:383.832133pt;}
.y20{bottom:387.230133pt;}
.y2d{bottom:387.930133pt;}
.y139{bottom:399.010533pt;}
.y109{bottom:399.175733pt;}
.ya2{bottom:399.180933pt;}
.y5f{bottom:399.181200pt;}
.yd9{bottom:399.601067pt;}
.y2c{bottom:403.930133pt;}
.y1f{bottom:404.834133pt;}
.y74{bottom:413.573067pt;}
.y138{bottom:417.682533pt;}
.ya1{bottom:417.847600pt;}
.y108{bottom:417.847733pt;}
.y5e{bottom:417.847867pt;}
.y1e{bottom:422.438133pt;}
.y73{bottom:431.177067pt;}
.y137{bottom:436.354533pt;}
.y159{bottom:436.471867pt;}
.ya0{bottom:436.514267pt;}
.y5d{bottom:436.514533pt;}
.y1d{bottom:440.042133pt;}
.y72{bottom:448.781067pt;}
.y107{bottom:449.280800pt;}
.yb8{bottom:449.280933pt;}
.y136{bottom:455.026533pt;}
.y158{bottom:455.143867pt;}
.y9f{bottom:455.180933pt;}
.y5c{bottom:455.181200pt;}
.y1c{bottom:457.646133pt;}
.y135{bottom:473.698533pt;}
.y157{bottom:473.815867pt;}
.y9e{bottom:473.847600pt;}
.y5b{bottom:473.847867pt;}
.y1b{bottom:475.250133pt;}
.y134{bottom:492.370533pt;}
.y156{bottom:492.487867pt;}
.y106{bottom:492.509067pt;}
.y9d{bottom:492.514267pt;}
.y5a{bottom:492.514533pt;}
.y1a{bottom:492.854133pt;}
.y19{bottom:510.458133pt;}
.y133{bottom:511.042533pt;}
.y155{bottom:511.159867pt;}
.y9c{bottom:511.180933pt;}
.y105{bottom:511.181067pt;}
.y59{bottom:511.181200pt;}
.y18{bottom:528.062133pt;}
.y132{bottom:529.714533pt;}
.y154{bottom:529.831867pt;}
.y9b{bottom:529.847600pt;}
.y58{bottom:529.847867pt;}
.y104{bottom:534.692667pt;}
.yd8{bottom:542.614267pt;}
.y17{bottom:545.666133pt;}
.y131{bottom:548.386533pt;}
.y153{bottom:548.503867pt;}
.y9a{bottom:548.514267pt;}
.y57{bottom:548.514533pt;}
.y16{bottom:563.270133pt;}
.y130{bottom:567.058533pt;}
.y103{bottom:567.175733pt;}
.y152{bottom:567.175867pt;}
.y99{bottom:567.180933pt;}
.y56{bottom:567.181200pt;}
.y15{bottom:580.874133pt;}
.y12f{bottom:585.730533pt;}
.y102{bottom:585.842400pt;}
.y98{bottom:585.847600pt;}
.y55{bottom:585.847867pt;}
.y14{bottom:598.478133pt;}
.y12e{bottom:604.402533pt;}
.y97{bottom:604.514267pt;}
.y101{bottom:604.514400pt;}
.y54{bottom:604.514533pt;}
.y151{bottom:616.456533pt;}
.y12d{bottom:623.074533pt;}
.y96{bottom:623.180933pt;}
.y53{bottom:623.181200pt;}
.y13{bottom:626.120267pt;}
.y100{bottom:628.026000pt;}
.y12c{bottom:641.746533pt;}
.y95{bottom:641.847600pt;}
.y52{bottom:641.847867pt;}
.y150{bottom:645.165467pt;}
.y12b{bottom:660.418533pt;}
.yff{bottom:660.498400pt;}
.y94{bottom:660.514267pt;}
.y51{bottom:660.514533pt;}
.y71{bottom:672.456533pt;}
.y12a{bottom:679.090533pt;}
.yfe{bottom:679.170400pt;}
.y93{bottom:679.180933pt;}
.y50{bottom:679.181200pt;}
.yd{bottom:696.592800pt;}
.y129{bottom:697.762533pt;}
.yfd{bottom:697.842400pt;}
.y92{bottom:697.847600pt;}
.y4f{bottom:697.847867pt;}
.y70{bottom:701.165333pt;}
.yc{bottom:712.592800pt;}
.y128{bottom:716.434533pt;}
.yfc{bottom:716.514400pt;}
.y4e{bottom:716.514533pt;}
.yb{bottom:728.592800pt;}
.y91{bottom:729.280800pt;}
.y127{bottom:735.106533pt;}
.y4d{bottom:735.181200pt;}
.yfb{bottom:740.026000pt;}
.ya{bottom:744.592800pt;}
.y126{bottom:753.778533pt;}
.y4c{bottom:753.847867pt;}
.y9{bottom:760.592800pt;}
.y125{bottom:772.450533pt;}
.yfa{bottom:772.471867pt;}
.y90{bottom:772.514400pt;}
.y4b{bottom:772.514533pt;}
.y8{bottom:776.592800pt;}
.yd7{bottom:785.280933pt;}
.y124{bottom:791.122533pt;}
.yf9{bottom:791.143867pt;}
.y8f{bottom:791.181067pt;}
.y4a{bottom:791.181200pt;}
.y7{bottom:792.592800pt;}
.y123{bottom:809.794533pt;}
.yf8{bottom:809.815867pt;}
.y8e{bottom:809.847733pt;}
.y49{bottom:809.847867pt;}
.y6{bottom:823.710933pt;}
.y122{bottom:828.466533pt;}
.yf7{bottom:828.487867pt;}
.y8d{bottom:828.514400pt;}
.y48{bottom:828.514533pt;}
.y5{bottom:841.310933pt;}
.y121{bottom:847.138533pt;}
.yf6{bottom:847.159867pt;}
.y8c{bottom:847.181067pt;}
.y47{bottom:847.181200pt;}
.y120{bottom:865.810533pt;}
.yf5{bottom:865.831867pt;}
.y8b{bottom:865.847733pt;}
.y46{bottom:865.847867pt;}
.y4{bottom:874.034267pt;}
.y11f{bottom:884.482533pt;}
.yf4{bottom:884.503867pt;}
.y8a{bottom:884.514400pt;}
.y45{bottom:884.514533pt;}
.y11e{bottom:903.154533pt;}
.yf3{bottom:903.175867pt;}
.y89{bottom:903.181067pt;}
.y44{bottom:903.181200pt;}
.y3{bottom:903.364933pt;}
.yb7{bottom:915.947600pt;}
.y11d{bottom:921.826533pt;}
.y88{bottom:921.847733pt;}
.y43{bottom:921.847867pt;}
.y2{bottom:932.695600pt;}
.y11c{bottom:940.498533pt;}
.y87{bottom:940.514400pt;}
.y42{bottom:940.514533pt;}
.yf2{bottom:945.359333pt;}
.y11b{bottom:959.170533pt;}
.y86{bottom:959.181067pt;}
.y41{bottom:959.181200pt;}
.y11a{bottom:977.842533pt;}
.y85{bottom:977.847733pt;}
.y40{bottom:977.847867pt;}
.y12{bottom:986.502667pt;}
.y84{bottom:996.514400pt;}
.y3f{bottom:996.514533pt;}
.yf1{bottom:1000.401600pt;}
.y3b{bottom:1030.390667pt;}
.y3a{bottom:1047.724000pt;}
.y3e{bottom:1047.726267pt;}
.h7{height:30.618750pt;}
.h6{height:30.806250pt;}
.h12{height:33.979167pt;}
.h19{height:34.017854pt;}
.h10{height:34.020833pt;}
.h18{height:34.027988pt;}
.h2{height:34.229167pt;}
.h5{height:34.250000pt;}
.h14{height:34.666667pt;}
.h17{height:34.683733pt;}
.h16{height:34.684267pt;}
.h15{height:34.704533pt;}
.h8{height:38.226562pt;}
.hf{height:38.273438pt;}
.hb{height:38.507812pt;}
.ha{height:39.000000pt;}
.h1a{height:39.021333pt;}
.h1b{height:39.896000pt;}
.h9{height:40.546875pt;}
.he{height:42.786458pt;}
.hd{height:43.333333pt;}
.h11{height:44.601562pt;}
.h4{height:47.666667pt;}
.hc{height:48.656250pt;}
.h3{height:72.205729pt;}
.h13{height:100.837833pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:65.763733pt;}
.x3{left:80.881867pt;}
.xb{left:95.167867pt;}
.xd{left:96.257467pt;}
.x1a{left:99.779467pt;}
.x6{left:106.559067pt;}
.x7{left:108.473333pt;}
.x8{left:110.313733pt;}
.x12{left:216.339467pt;}
.x5{left:266.834667pt;}
.x11{left:270.624400pt;}
.xe{left:271.540533pt;}
.xf{left:278.004533pt;}
.xc{left:281.941333pt;}
.x4{left:352.045067pt;}
.x14{left:421.118133pt;}
.x15{left:429.544800pt;}
.x10{left:469.077733pt;}
.x13{left:502.590133pt;}
.x16{left:530.963333pt;}
.x17{left:533.395333pt;}
.xa{left:574.698933pt;}
.x9{left:594.026933pt;}
.x18{left:628.659333pt;}
.x19{left:637.320667pt;}
.x1{left:712.140000pt;}
}




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