
    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_6c7a1b902c66daefc4b8245e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.022000;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_2865fb55b3cfc612eab5ad17.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.951000;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_2c1fc357130559a0ff38b649.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.842000;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_ac06a3a99a1ef42f89807e11.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.874000;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_12c73d07ff288c49bfa66657.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.951000;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_81bf9f1424ac0c7a7332ddf7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.899000;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_63c6996c8ea20e1137b120f7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.970000;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_2865fb55b3cfc612eab5ad17.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.951000;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_6c7a1b902c66daefc4b8245e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.022000;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_61f08943df018c4ea9cf7f66.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.948000;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_75d8fea72e6e0ca033c9b70a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.820000;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_3d256f4618aef599fc2053df.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.948000;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_937d5c21d7dae56ae0b7114f.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_b06ef4fb143a82c5709cb089.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.926270;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_6556b9b889f261c0bf5d03fc.woff2')format("woff");}.fff{font-family:fff;line-height:1.105000;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_e1b29d06ec774677f093fab3.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.666000;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_84562d185f2cd7cb6456ccc6.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.105000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_84562d185f2cd7cb6456ccc6.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.105000;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:ff13;src:url('chunks/assets/font_079a433f56cce771a2530ef0.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.948000;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:5.400600px;}
.v2{vertical-align:10.824233px;}
.v1{vertical-align:12.000000px;}
.v4{vertical-align:13.986000px;}
.ls2{letter-spacing:-0.300000px;}
.ls3{letter-spacing:-0.240000px;}
.ls8{letter-spacing:-0.210000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.002400px;}
.ls7{letter-spacing:0.011400px;}
.ls1{letter-spacing:0.513000px;}
.ls5{letter-spacing:0.720000px;}
.ls6{letter-spacing:2.520000px;}
.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;}
}
.ws9b{word-spacing:-16.065000px;}
.wsce{word-spacing:-14.340000px;}
.ws4c{word-spacing:-14.192779px;}
.ws9a{word-spacing:-13.620000px;}
.ws4f{word-spacing:-13.158000px;}
.ws103{word-spacing:-13.005000px;}
.ws4e{word-spacing:-12.144000px;}
.ws101{word-spacing:-10.836000px;}
.ws102{word-spacing:-10.626000px;}
.wsfd{word-spacing:-4.743000px;}
.ws36{word-spacing:-4.740000px;}
.ws77{word-spacing:-3.780000px;}
.ws2b{word-spacing:-3.300000px;}
.wse0{word-spacing:-3.060000px;}
.wsaf{word-spacing:-3.000000px;}
.ws7f{word-spacing:-2.880000px;}
.ws7e{word-spacing:-2.832000px;}
.ws11{word-spacing:-2.820000px;}
.ws35{word-spacing:-2.640000px;}
.wsb7{word-spacing:-2.460000px;}
.ws83{word-spacing:-2.448000px;}
.wsd2{word-spacing:-2.400000px;}
.wsab{word-spacing:-2.340000px;}
.ws3b{word-spacing:-2.160000px;}
.ws4{word-spacing:-2.040000px;}
.ws99{word-spacing:-2.016000px;}
.ws3e{word-spacing:-1.920000px;}
.wsee{word-spacing:-1.887000px;}
.ws3d{word-spacing:-1.860000px;}
.wsd1{word-spacing:-1.740000px;}
.wsff{word-spacing:-1.728000px;}
.ws75{word-spacing:-1.680000px;}
.ws27{word-spacing:-1.620000px;}
.ws90{word-spacing:-1.479000px;}
.ws8b{word-spacing:-1.377000px;}
.ws29{word-spacing:-1.320000px;}
.wsf0{word-spacing:-1.275000px;}
.wse9{word-spacing:-1.200000px;}
.wsa7{word-spacing:-1.140000px;}
.ws34{word-spacing:-1.080000px;}
.wsc8{word-spacing:-1.056000px;}
.ws8f{word-spacing:-1.020000px;}
.ws129{word-spacing:-0.960000px;}
.ws87{word-spacing:-0.912000px;}
.ws1d{word-spacing:-0.780000px;}
.ws52{word-spacing:-0.660000px;}
.wsdb{word-spacing:-0.600000px;}
.ws14{word-spacing:-0.540000px;}
.ws2{word-spacing:-0.513000px;}
.ws8e{word-spacing:-0.510000px;}
.ws105{word-spacing:-0.480000px;}
.ws37{word-spacing:-0.420000px;}
.wsf6{word-spacing:-0.357000px;}
.ws8d{word-spacing:-0.306000px;}
.ws40{word-spacing:-0.240000px;}
.ws9c{word-spacing:-0.114000px;}
.wscf{word-spacing:-0.084000px;}
.ws0{word-spacing:-0.075000px;}
.ws49{word-spacing:-0.060000px;}
.ws4d{word-spacing:-0.048000px;}
.ws1{word-spacing:0.000000px;}
.wse6{word-spacing:0.060000px;}
.ws72{word-spacing:0.180000px;}
.ws134{word-spacing:0.210000px;}
.wsc9{word-spacing:0.288000px;}
.ws10f{word-spacing:0.420000px;}
.ws89{word-spacing:0.528000px;}
.wsf8{word-spacing:0.612000px;}
.wsd4{word-spacing:0.660000px;}
.wsf5{word-spacing:0.765000px;}
.wsec{word-spacing:0.960000px;}
.ws3{word-spacing:1.020000px;}
.wsed{word-spacing:1.224000px;}
.wse2{word-spacing:1.320000px;}
.wsba{word-spacing:1.440000px;}
.wsb5{word-spacing:1.620000px;}
.wsc6{word-spacing:1.632000px;}
.ws55{word-spacing:1.680000px;}
.ws4a{word-spacing:1.740000px;}
.ws109{word-spacing:1.800000px;}
.ws85{word-spacing:1.824000px;}
.ws7a{word-spacing:1.920000px;}
.ws2e{word-spacing:1.980000px;}
.wsf4{word-spacing:1.989000px;}
.wsb6{word-spacing:2.040000px;}
.ws1c{word-spacing:2.280000px;}
.ws94{word-spacing:2.295000px;}
.ws16{word-spacing:2.340000px;}
.ws3a{word-spacing:2.460000px;}
.ws9{word-spacing:2.520000px;}
.ws100{word-spacing:2.640000px;}
.ws76{word-spacing:2.700000px;}
.ws42{word-spacing:2.760000px;}
.wsf2{word-spacing:2.805000px;}
.ws8c{word-spacing:2.856000px;}
.ws133{word-spacing:2.880000px;}
.ws18{word-spacing:2.940000px;}
.ws5f{word-spacing:3.000000px;}
.ws41{word-spacing:3.060000px;}
.ws107{word-spacing:3.120000px;}
.ws86{word-spacing:3.168000px;}
.ws4b{word-spacing:3.240000px;}
.wsfa{word-spacing:3.264000px;}
.ws98{word-spacing:3.417000px;}
.ws38{word-spacing:3.480000px;}
.ws15{word-spacing:3.540000px;}
.wsef{word-spacing:3.570000px;}
.ws5{word-spacing:3.600000px;}
.ws93{word-spacing:3.621000px;}
.ws11b{word-spacing:3.660000px;}
.ws5c{word-spacing:3.718500px;}
.ws1f{word-spacing:3.720000px;}
.ws44{word-spacing:3.840000px;}
.wse{word-spacing:3.960000px;}
.ws48{word-spacing:4.020000px;}
.wsf1{word-spacing:4.182000px;}
.ws74{word-spacing:4.200000px;}
.ws10e{word-spacing:4.260000px;}
.wsac{word-spacing:4.320000px;}
.wse5{word-spacing:4.440000px;}
.ws126{word-spacing:4.500000px;}
.wsca{word-spacing:4.512000px;}
.ws81{word-spacing:4.608000px;}
.wsda{word-spacing:4.620000px;}
.wsea{word-spacing:4.680000px;}
.ws5d{word-spacing:4.740000px;}
.wsfc{word-spacing:4.896000px;}
.ws88{word-spacing:4.992000px;}
.ws97{word-spacing:5.049000px;}
.ws23{word-spacing:5.100000px;}
.wsd5{word-spacing:5.160000px;}
.ws46{word-spacing:5.280000px;}
.ws5e{word-spacing:5.340000px;}
.ws45{word-spacing:5.460000px;}
.ws82{word-spacing:5.520000px;}
.wscd{word-spacing:5.568000px;}
.ws113{word-spacing:5.580000px;}
.ws53{word-spacing:5.820000px;}
.ws33{word-spacing:5.880000px;}
.ws111{word-spacing:5.940000px;}
.ws91{word-spacing:5.967000px;}
.ws12{word-spacing:6.300000px;}
.ws12f{word-spacing:6.420000px;}
.wseb{word-spacing:6.480000px;}
.ws3f{word-spacing:6.540000px;}
.wsc0{word-spacing:6.660000px;}
.ws63{word-spacing:6.720000px;}
.wsa9{word-spacing:6.780000px;}
.wsfb{word-spacing:6.783000px;}
.wsdd{word-spacing:6.900000px;}
.ws47{word-spacing:7.140000px;}
.wsa{word-spacing:7.260000px;}
.wsbf{word-spacing:7.320000px;}
.ws92{word-spacing:7.446000px;}
.wsb0{word-spacing:7.492500px;}
.ws58{word-spacing:7.500000px;}
.ws7c{word-spacing:7.740000px;}
.wsc7{word-spacing:7.824000px;}
.ws2c{word-spacing:7.920000px;}
.wsb2{word-spacing:7.980000px;}
.ws96{word-spacing:8.058000px;}
.ws6d{word-spacing:8.100000px;}
.ws7b{word-spacing:8.160000px;}
.ws2a{word-spacing:8.520000px;}
.wsf9{word-spacing:8.568000px;}
.ws39{word-spacing:8.640000px;}
.wsb8{word-spacing:8.700000px;}
.ws124{word-spacing:8.760000px;}
.ws59{word-spacing:8.820000px;}
.wsf7{word-spacing:8.823000px;}
.ws12b{word-spacing:8.880000px;}
.ws17{word-spacing:9.060000px;}
.wsc3{word-spacing:9.240000px;}
.ws32{word-spacing:9.360000px;}
.wse3{word-spacing:9.480000px;}
.ws125{word-spacing:9.600000px;}
.wsd{word-spacing:9.720000px;}
.wse4{word-spacing:9.840000px;}
.ws95{word-spacing:9.945000px;}
.ws10d{word-spacing:10.020000px;}
.wsfe{word-spacing:10.098000px;}
.wsbe{word-spacing:10.140000px;}
.ws1b{word-spacing:10.500000px;}
.ws60{word-spacing:10.620000px;}
.ws132{word-spacing:10.680000px;}
.wsb1{word-spacing:10.860000px;}
.ws1a{word-spacing:10.920000px;}
.ws8a{word-spacing:10.965000px;}
.ws67{word-spacing:11.040000px;}
.ws11c{word-spacing:11.100000px;}
.ws31{word-spacing:11.160000px;}
.wsa5{word-spacing:11.280000px;}
.ws7{word-spacing:11.340000px;}
.ws54{word-spacing:11.520000px;}
.ws7d{word-spacing:11.640000px;}
.ws10a{word-spacing:11.700000px;}
.ws62{word-spacing:11.760000px;}
.ws120{word-spacing:11.820000px;}
.wsa8{word-spacing:11.940000px;}
.ws70{word-spacing:12.060000px;}
.ws30{word-spacing:12.120000px;}
.wse1{word-spacing:12.240000px;}
.ws2d{word-spacing:12.300000px;}
.ws51{word-spacing:12.420000px;}
.wsa3{word-spacing:12.660000px;}
.ws123{word-spacing:12.720000px;}
.wsd3{word-spacing:12.780000px;}
.ws118{word-spacing:12.840000px;}
.ws11a{word-spacing:13.020000px;}
.ws26{word-spacing:13.080000px;}
.wsd0{word-spacing:13.200000px;}
.wsc{word-spacing:13.260000px;}
.wscb{word-spacing:13.296000px;}
.wsad{word-spacing:13.320000px;}
.wscc{word-spacing:13.392000px;}
.ws28{word-spacing:13.440000px;}
.wsd8{word-spacing:13.620000px;}
.ws6b{word-spacing:13.680000px;}
.ws78{word-spacing:13.860000px;}
.ws119{word-spacing:13.980000px;}
.ws115{word-spacing:14.100000px;}
.ws104{word-spacing:14.280000px;}
.ws10b{word-spacing:14.460000px;}
.ws112{word-spacing:14.580000px;}
.wse7{word-spacing:14.820000px;}
.ws9e{word-spacing:14.880000px;}
.ws73{word-spacing:14.940000px;}
.ws6e{word-spacing:15.000000px;}
.ws43{word-spacing:15.180000px;}
.ws21{word-spacing:15.480000px;}
.wsf3{word-spacing:15.606000px;}
.ws79{word-spacing:15.720000px;}
.ws61{word-spacing:16.020000px;}
.ws3c{word-spacing:16.080000px;}
.ws2f{word-spacing:16.260000px;}
.ws6{word-spacing:16.380000px;}
.wsd6{word-spacing:16.500000px;}
.ws65{word-spacing:16.560000px;}
.wsbd{word-spacing:16.620000px;}
.wsc2{word-spacing:16.740000px;}
.wsc4{word-spacing:16.980000px;}
.ws8{word-spacing:17.100000px;}
.ws110{word-spacing:17.160000px;}
.wsd7{word-spacing:17.220000px;}
.ws5a{word-spacing:17.280000px;}
.ws80{word-spacing:17.472000px;}
.wse8{word-spacing:17.760000px;}
.wsdf{word-spacing:17.820000px;}
.ws84{word-spacing:17.904000px;}
.wsae{word-spacing:18.060000px;}
.wsaa{word-spacing:18.480000px;}
.wsf{word-spacing:18.540000px;}
.wsb4{word-spacing:18.840000px;}
.ws25{word-spacing:19.260000px;}
.wsa4{word-spacing:19.380000px;}
.wsb3{word-spacing:19.560000px;}
.ws64{word-spacing:19.800000px;}
.ws24{word-spacing:19.860000px;}
.ws10{word-spacing:19.980000px;}
.ws106{word-spacing:20.340000px;}
.ws127{word-spacing:20.400000px;}
.ws68{word-spacing:20.460000px;}
.wsc1{word-spacing:20.760000px;}
.ws130{word-spacing:20.820000px;}
.wsbb{word-spacing:21.000000px;}
.ws5b{word-spacing:21.600000px;}
.ws71{word-spacing:21.720000px;}
.ws57{word-spacing:21.840000px;}
.ws131{word-spacing:21.900000px;}
.ws50{word-spacing:22.260000px;}
.wsa1{word-spacing:22.440000px;}
.ws12e{word-spacing:22.680000px;}
.wsd9{word-spacing:22.740000px;}
.ws6f{word-spacing:22.920000px;}
.ws56{word-spacing:22.921500px;}
.ws66{word-spacing:23.220000px;}
.ws13{word-spacing:23.940000px;}
.ws6c{word-spacing:24.000000px;}
.ws128{word-spacing:24.120000px;}
.wsa6{word-spacing:25.320000px;}
.ws116{word-spacing:26.220000px;}
.ws6a{word-spacing:26.640000px;}
.ws12a{word-spacing:26.820000px;}
.wsde{word-spacing:26.940000px;}
.ws117{word-spacing:27.472500px;}
.ws9f{word-spacing:27.660000px;}
.wsc5{word-spacing:27.840000px;}
.ws69{word-spacing:28.980000px;}
.ws122{word-spacing:29.280000px;}
.ws108{word-spacing:29.340000px;}
.wsb{word-spacing:29.940000px;}
.ws12d{word-spacing:30.960000px;}
.ws12c{word-spacing:31.380000px;}
.ws11f{word-spacing:31.740000px;}
.wsbc{word-spacing:31.980000px;}
.ws1e{word-spacing:32.580000px;}
.ws10c{word-spacing:32.820000px;}
.wsb9{word-spacing:33.120000px;}
.ws11d{word-spacing:33.540000px;}
.ws11e{word-spacing:34.140000px;}
.ws114{word-spacing:35.100000px;}
.ws19{word-spacing:35.160000px;}
.wsa0{word-spacing:35.520000px;}
.wsdc{word-spacing:37.740000px;}
.ws121{word-spacing:37.980000px;}
.ws20{word-spacing:39.600000px;}
.ws22{word-spacing:40.260000px;}
.wsa2{word-spacing:67.500000px;}
.ws9d{word-spacing:131.471869px;}
._b{margin-left:-43.890000px;}
._13{margin-left:-32.881200px;}
._12{margin-left:-24.735000px;}
._14{margin-left:-20.761200px;}
._11{margin-left:-17.142000px;}
._8{margin-left:-15.079200px;}
._5{margin-left:-12.360000px;}
._6{margin-left:-11.124000px;}
._7{margin-left:-8.528400px;}
._15{margin-left:-6.420000px;}
._3{margin-left:-5.394000px;}
._a{margin-left:-3.780000px;}
._4{margin-left:-2.472000px;}
._0{margin-left:-1.050000px;}
._9{width:1.362300px;}
._d{width:2.730000px;}
._c{width:7.752000px;}
._10{width:9.095700px;}
._2{width:10.200000px;}
._16{width:12.701700px;}
._f{width:14.070000px;}
._1{width:15.566400px;}
._e{width:17.590200px;}
.fc5{color:transparent;}
.fc3{color:rgb(88,89,91);}
.fc7{color:rgb(64,64,64);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc6{color:rgb(17,140,168);}
.fc1{color:rgb(0,92,131);}
.fc0{color:rgb(128,130,133);}
.fs12{font-size:27.300000px;}
.fsf{font-size:40.208400px;}
.fse{font-size:40.540200px;}
.fs11{font-size:42.000000px;}
.fs9{font-size:48.000000px;}
.fs1{font-size:51.000000px;}
.fsc{font-size:51.940800px;}
.fsa{font-size:51.988200px;}
.fs8{font-size:55.500000px;}
.fs4{font-size:57.000000px;}
.fs7{font-size:60.000000px;}
.fs6{font-size:63.000000px;}
.fsb{font-size:66.106200px;}
.fs5{font-size:72.000000px;}
.fs0{font-size:75.000000px;}
.fs10{font-size:84.000000px;}
.fsd{font-size:114.000000px;}
.fs3{font-size:123.600000px;}
.fs2{font-size:186.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:34.237650px;}
.y75{bottom:54.221400px;}
.y70{bottom:65.770950px;}
.y76{bottom:72.024109px;}
.ye9{bottom:80.580000px;}
.y1e{bottom:81.000000px;}
.y59{bottom:81.120150px;}
.ye8{bottom:93.600000px;}
.y133{bottom:94.665150px;}
.y58{bottom:96.120150px;}
.y1d{bottom:101.250000px;}
.yc4{bottom:101.520150px;}
.y6d{bottom:102.300150px;}
.y9a{bottom:103.858707px;}
.y73{bottom:106.284750px;}
.ye7{bottom:106.620000px;}
.y132{bottom:107.685150px;}
.y57{bottom:111.120150px;}
.y78{bottom:111.979570px;}
.yc3{bottom:116.520150px;}
.y99{bottom:116.705291px;}
.y6c{bottom:117.300150px;}
.ye6{bottom:119.640000px;}
.y131{bottom:120.705150px;}
.y1c{bottom:121.500000px;}
.y71{bottom:124.983450px;}
.y56{bottom:126.120150px;}
.y77{bottom:127.341061px;}
.y96{bottom:129.684000px;}
.y98{bottom:130.215314px;}
.yc2{bottom:131.520150px;}
.ye5{bottom:132.660000px;}
.y130{bottom:133.725150px;}
.y74{bottom:136.827000px;}
.y55{bottom:141.120150px;}
.y1b{bottom:141.750000px;}
.y6f{bottom:143.697000px;}
.y95{bottom:144.684000px;}
.ye4{bottom:145.680000px;}
.y12f{bottom:146.745150px;}
.y9c{bottom:149.545502px;}
.y54{bottom:156.120150px;}
.ye3{bottom:158.700000px;}
.y94{bottom:159.684000px;}
.y12e{bottom:159.765150px;}
.y9b{bottom:160.974739px;}
.y1a{bottom:162.000000px;}
.y53{bottom:171.120150px;}
.ye2{bottom:171.720000px;}
.y12d{bottom:172.785150px;}
.y93{bottom:174.684000px;}
.y19{bottom:182.250000px;}
.ye1{bottom:184.740000px;}
.y12c{bottom:185.805150px;}
.y52{bottom:186.120150px;}
.y97{bottom:186.155250px;}
.y6e{bottom:193.885650px;}
.ye0{bottom:197.760000px;}
.y9d{bottom:198.368551px;}
.y12b{bottom:198.825150px;}
.y51{bottom:201.120150px;}
.y18{bottom:202.500000px;}
.ydf{bottom:210.780000px;}
.y12a{bottom:211.845150px;}
.y50{bottom:216.120150px;}
.y17{bottom:222.750000px;}
.yde{bottom:223.800000px;}
.y4f{bottom:231.120150px;}
.ydd{bottom:236.820000px;}
.y129{bottom:241.125150px;}
.y23{bottom:242.986500px;}
.y16{bottom:243.000000px;}
.y4e{bottom:246.120150px;}
.y81{bottom:249.073200px;}
.ydc{bottom:249.840000px;}
.y128{bottom:254.145150px;}
.y4d{bottom:261.120150px;}
.ydb{bottom:262.860000px;}
.y22{bottom:263.241000px;}
.y15{bottom:263.250000px;}
.y127{bottom:267.165150px;}
.y72{bottom:268.680450px;}
.yda{bottom:275.880000px;}
.y126{bottom:280.185150px;}
.y21{bottom:283.495500px;}
.y14{bottom:283.500000px;}
.y4a{bottom:284.220300px;}
.yd9{bottom:288.900000px;}
.y125{bottom:293.205150px;}
.yd8{bottom:301.920000px;}
.y13{bottom:303.750000px;}
.y4c{bottom:305.340506px;}
.y124{bottom:306.225150px;}
.y4b{bottom:309.005674px;}
.yd7{bottom:314.940000px;}
.y43{bottom:316.610100px;}
.y123{bottom:319.245150px;}
.y7e{bottom:321.000000px;}
.y12{bottom:324.000000px;}
.yd6{bottom:327.960000px;}
.y122{bottom:332.265150px;}
.y44{bottom:336.885498px;}
.yd5{bottom:340.980000px;}
.y11{bottom:344.250000px;}
.y121{bottom:345.285150px;}
.yd4{bottom:354.000000px;}
.y45{bottom:356.848967px;}
.y7d{bottom:361.500000px;}
.yc7{bottom:364.486500px;}
.y10{bottom:364.500000px;}
.yd3{bottom:367.020000px;}
.y120{bottom:374.565150px;}
.y46{bottom:377.124365px;}
.yd2{bottom:380.040000px;}
.yc6{bottom:384.741000px;}
.yf{bottom:384.750000px;}
.y11f{bottom:387.585150px;}
.yd1{bottom:393.060000px;}
.y47{bottom:397.399763px;}
.y11e{bottom:400.605150px;}
.yc5{bottom:404.995500px;}
.ye{bottom:405.000000px;}
.yd0{bottom:406.080000px;}
.y11d{bottom:413.625150px;}
.y48{bottom:417.675161px;}
.ycf{bottom:419.100000px;}
.y6b{bottom:421.585650px;}
.y7c{bottom:422.250000px;}
.yd{bottom:425.250000px;}
.y11c{bottom:426.645150px;}
.yce{bottom:432.120000px;}
.y49{bottom:437.638630px;}
.y6a{bottom:438.836400px;}
.y11b{bottom:439.665150px;}
.ycd{bottom:445.140000px;}
.yc{bottom:445.500000px;}
.y11a{bottom:452.685150px;}
.y69{bottom:456.087150px;}
.ycc{bottom:458.160000px;}
.y119{bottom:465.705150px;}
.yb{bottom:465.741000px;}
.y20{bottom:465.750000px;}
.ycb{bottom:471.180000px;}
.y68{bottom:473.337900px;}
.y118{bottom:478.725150px;}
.yc1{bottom:480.815400px;}
.y7b{bottom:483.000000px;}
.yca{bottom:484.200000px;}
.ya{bottom:485.995500px;}
.y1f{bottom:486.000000px;}
.y67{bottom:490.588650px;}
.y117{bottom:491.745150px;}
.yc9{bottom:497.220000px;}
.yc0{bottom:498.066150px;}
.y116{bottom:504.765150px;}
.y92{bottom:505.920000px;}
.y9{bottom:506.250000px;}
.y66{bottom:507.839400px;}
.yc8{bottom:510.240000px;}
.ybf{bottom:515.316900px;}
.y115{bottom:517.785150px;}
.y91{bottom:520.920000px;}
.y65{bottom:525.090150px;}
.y31{bottom:526.500000px;}
.y114{bottom:530.805150px;}
.ybe{bottom:532.567650px;}
.y90{bottom:535.920000px;}
.y64{bottom:542.340900px;}
.y113{bottom:543.825150px;}
.y30{bottom:546.750000px;}
.ybd{bottom:549.818400px;}
.y8f{bottom:550.920000px;}
.y112{bottom:556.845150px;}
.y63{bottom:559.591650px;}
.y7a{bottom:564.000000px;}
.y8e{bottom:565.920000px;}
.y2f{bottom:567.000000px;}
.ybc{bottom:567.069150px;}
.y111{bottom:569.865150px;}
.y62{bottom:576.842400px;}
.y8d{bottom:580.920000px;}
.y110{bottom:582.885150px;}
.ybb{bottom:584.319900px;}
.y2e{bottom:587.250000px;}
.y61{bottom:594.093150px;}
.y10f{bottom:595.905150px;}
.y8c{bottom:595.920000px;}
.yba{bottom:601.570650px;}
.y79{bottom:604.500000px;}
.y2d{bottom:607.500000px;}
.y10e{bottom:608.925150px;}
.y60{bottom:611.343900px;}
.y80{bottom:612.687000px;}
.yb9{bottom:618.821400px;}
.y10d{bottom:621.945150px;}
.y2c{bottom:627.750000px;}
.y5f{bottom:628.594650px;}
.y10c{bottom:634.965150px;}
.yb8{bottom:636.072150px;}
.y87{bottom:639.914564px;}
.y88{bottom:645.721947px;}
.y5e{bottom:645.845400px;}
.y10b{bottom:647.985150px;}
.y2b{bottom:648.000000px;}
.y86{bottom:651.519196px;}
.yb7{bottom:653.322900px;}
.y10a{bottom:661.005150px;}
.y5d{bottom:663.096150px;}
.y2a{bottom:668.250000px;}
.yb6{bottom:670.573650px;}
.y109{bottom:674.025150px;}
.y5c{bottom:680.346900px;}
.y8a{bottom:684.042571px;}
.y108{bottom:687.045150px;}
.yb5{bottom:687.824400px;}
.y29{bottom:688.500000px;}
.y89{bottom:696.863410px;}
.y5b{bottom:697.597650px;}
.y107{bottom:700.065150px;}
.yb4{bottom:705.075150px;}
.y9f{bottom:708.741000px;}
.y28{bottom:708.750000px;}
.y106{bottom:713.085150px;}
.y85{bottom:719.241600px;}
.yb3{bottom:722.325900px;}
.y105{bottom:726.105150px;}
.y9e{bottom:728.995500px;}
.y27{bottom:729.000000px;}
.y5a{bottom:732.097650px;}
.y8b{bottom:735.670516px;}
.y104{bottom:739.125150px;}
.yb2{bottom:739.576650px;}
.y26{bottom:749.250000px;}
.y103{bottom:752.145150px;}
.yb1{bottom:756.827400px;}
.y102{bottom:765.165150px;}
.y25{bottom:769.500000px;}
.yb0{bottom:774.078150px;}
.y101{bottom:778.185150px;}
.y24{bottom:789.750000px;}
.y100{bottom:791.205150px;}
.yaf{bottom:791.328900px;}
.yff{bottom:804.225150px;}
.yae{bottom:808.579650px;}
.y7f{bottom:809.017800px;}
.y41{bottom:810.000000px;}
.yfe{bottom:817.245150px;}
.yad{bottom:825.830400px;}
.y40{bottom:830.250000px;}
.yac{bottom:843.081150px;}
.yfd{bottom:846.525150px;}
.y3f{bottom:850.500000px;}
.yfc{bottom:859.545150px;}
.y7{bottom:862.244550px;}
.y3e{bottom:870.750000px;}
.yfb{bottom:872.565150px;}
.yab{bottom:876.232500px;}
.y83{bottom:876.628376px;}
.y6{bottom:884.745300px;}
.y82{bottom:885.526950px;}
.yfa{bottom:885.585150px;}
.y3d{bottom:891.000000px;}
.yaa{bottom:893.482500px;}
.yf9{bottom:898.605150px;}
.ya9{bottom:910.732500px;}
.y3c{bottom:911.250000px;}
.yf8{bottom:911.625150px;}
.yf7{bottom:924.645150px;}
.y84{bottom:926.330661px;}
.ya8{bottom:927.982500px;}
.y5{bottom:929.745600px;}
.y3b{bottom:931.500000px;}
.yf6{bottom:937.665150px;}
.ya7{bottom:946.579650px;}
.yf5{bottom:950.685150px;}
.y3a{bottom:951.750000px;}
.yf4{bottom:963.705150px;}
.ya6{bottom:963.830400px;}
.y4{bottom:964.260900px;}
.y39{bottom:972.000000px;}
.yf3{bottom:976.725150px;}
.ya5{bottom:981.081150px;}
.yf2{bottom:989.745150px;}
.y38{bottom:992.250000px;}
.ya4{bottom:998.331900px;}
.y3{bottom:998.745300px;}
.y37{bottom:1012.500000px;}
.ya3{bottom:1015.582650px;}
.yf1{bottom:1022.265000px;}
.y36{bottom:1032.750000px;}
.yf0{bottom:1035.285000px;}
.y2{bottom:1040.745300px;}
.yef{bottom:1048.305000px;}
.ya2{bottom:1050.073650px;}
.y35{bottom:1053.000000px;}
.yee{bottom:1061.325000px;}
.ya1{bottom:1070.328150px;}
.y34{bottom:1073.250000px;}
.yed{bottom:1074.345000px;}
.yec{bottom:1087.365000px;}
.ya0{bottom:1090.582650px;}
.y33{bottom:1093.495500px;}
.y42{bottom:1093.500000px;}
.yeb{bottom:1100.385000px;}
.yea{bottom:1113.405000px;}
.y32{bottom:1113.750000px;}
.y8{bottom:1142.676000px;}
.h15{height:31.584000px;}
.h16{height:34.515600px;}
.h13{height:35.383392px;}
.h10{height:35.675376px;}
.h9{height:36.096000px;}
.ha{height:38.352000px;}
.h8{height:41.850501px;}
.h7{height:42.780000px;}
.h4{height:42.864000px;}
.he{height:45.707904px;}
.h12{height:46.499609px;}
.hb{height:47.320161px;}
.h6{height:47.376000px;}
.h1{height:52.500000px;}
.h5{height:54.144000px;}
.h14{height:55.944000px;}
.hf{height:75.924000px;}
.h3{height:92.947200px;}
.h2{height:139.872000px;}
.hd{height:148.038000px;}
.hc{height:167.764500px;}
.h11{height:326.373000px;}
.h0{height:1188.000000px;}
.w2{width:148.039500px;}
.w1{width:176.212500px;}
.w3{width:514.800000px;}
.w0{width:918.000000px;}
.x1f{left:-44.595450px;}
.x21{left:-4.306800px;}
.x0{left:0.000000px;}
.x24{left:8.709784px;}
.x26{left:42.250555px;}
.x25{left:47.769265px;}
.x1{left:54.000000px;}
.x38{left:59.628272px;}
.x39{left:65.076511px;}
.x27{left:70.200000px;}
.x3a{left:71.952147px;}
.x5{left:75.668250px;}
.xb{left:81.000000px;}
.x37{left:83.170291px;}
.x23{left:88.010400px;}
.x19{left:92.381857px;}
.x3b{left:97.200000px;}
.x2{left:101.240700px;}
.x36{left:105.747307px;}
.x1a{left:107.900335px;}
.x4{left:114.613500px;}
.x10{left:116.532367px;}
.x6{left:124.204650px;}
.x2a{left:127.358308px;}
.x35{left:137.431526px;}
.x3{left:140.196600px;}
.x11{left:155.196600px;}
.x34{left:156.691350px;}
.x2b{left:175.611281px;}
.x12{left:178.760252px;}
.x13{left:202.323903px;}
.x14{left:225.887555px;}
.x33{left:237.600000px;}
.x29{left:242.542350px;}
.x15{left:249.451207px;}
.x16{left:273.014858px;}
.x17{left:296.578510px;}
.x18{left:320.142162px;}
.x7{left:322.200000px;}
.x3e{left:333.004500px;}
.x3d{left:338.400000px;}
.xc{left:349.200450px;}
.xd{left:365.394750px;}
.x1b{left:371.175000px;}
.x22{left:380.127000px;}
.x3c{left:384.134850px;}
.x30{left:416.133644px;}
.x31{left:421.941028px;}
.x1e{left:427.674000px;}
.x32{left:438.775346px;}
.x2f{left:441.430729px;}
.x20{left:451.993800px;}
.x1d{left:469.055700px;}
.x2d{left:494.741092px;}
.x1c{left:499.500000px;}
.x2e{left:508.200438px;}
.x2c{left:522.734100px;}
.x8{left:590.400000px;}
.x3f{left:601.200000px;}
.x28{left:603.355200px;}
.x9{left:606.600000px;}
.xe{left:617.394750px;}
.xf{left:633.594750px;}
.xa{left:658.011450px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:4.800533pt;}
.v2{vertical-align:9.621541pt;}
.v1{vertical-align:10.666667pt;}
.v4{vertical-align:12.432000pt;}
.ls2{letter-spacing:-0.266667pt;}
.ls3{letter-spacing:-0.213333pt;}
.ls8{letter-spacing:-0.186667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.002133pt;}
.ls7{letter-spacing:0.010133pt;}
.ls1{letter-spacing:0.456000pt;}
.ls5{letter-spacing:0.640000pt;}
.ls6{letter-spacing:2.240000pt;}
.ws9b{word-spacing:-14.280000pt;}
.wsce{word-spacing:-12.746667pt;}
.ws4c{word-spacing:-12.615803pt;}
.ws9a{word-spacing:-12.106667pt;}
.ws4f{word-spacing:-11.696000pt;}
.ws103{word-spacing:-11.560000pt;}
.ws4e{word-spacing:-10.794667pt;}
.ws101{word-spacing:-9.632000pt;}
.ws102{word-spacing:-9.445333pt;}
.wsfd{word-spacing:-4.216000pt;}
.ws36{word-spacing:-4.213333pt;}
.ws77{word-spacing:-3.360000pt;}
.ws2b{word-spacing:-2.933333pt;}
.wse0{word-spacing:-2.720000pt;}
.wsaf{word-spacing:-2.666667pt;}
.ws7f{word-spacing:-2.560000pt;}
.ws7e{word-spacing:-2.517333pt;}
.ws11{word-spacing:-2.506667pt;}
.ws35{word-spacing:-2.346667pt;}
.wsb7{word-spacing:-2.186667pt;}
.ws83{word-spacing:-2.176000pt;}
.wsd2{word-spacing:-2.133333pt;}
.wsab{word-spacing:-2.080000pt;}
.ws3b{word-spacing:-1.920000pt;}
.ws4{word-spacing:-1.813333pt;}
.ws99{word-spacing:-1.792000pt;}
.ws3e{word-spacing:-1.706667pt;}
.wsee{word-spacing:-1.677333pt;}
.ws3d{word-spacing:-1.653333pt;}
.wsd1{word-spacing:-1.546667pt;}
.wsff{word-spacing:-1.536000pt;}
.ws75{word-spacing:-1.493333pt;}
.ws27{word-spacing:-1.440000pt;}
.ws90{word-spacing:-1.314667pt;}
.ws8b{word-spacing:-1.224000pt;}
.ws29{word-spacing:-1.173333pt;}
.wsf0{word-spacing:-1.133333pt;}
.wse9{word-spacing:-1.066667pt;}
.wsa7{word-spacing:-1.013333pt;}
.ws34{word-spacing:-0.960000pt;}
.wsc8{word-spacing:-0.938667pt;}
.ws8f{word-spacing:-0.906667pt;}
.ws129{word-spacing:-0.853333pt;}
.ws87{word-spacing:-0.810667pt;}
.ws1d{word-spacing:-0.693333pt;}
.ws52{word-spacing:-0.586667pt;}
.wsdb{word-spacing:-0.533333pt;}
.ws14{word-spacing:-0.480000pt;}
.ws2{word-spacing:-0.456000pt;}
.ws8e{word-spacing:-0.453333pt;}
.ws105{word-spacing:-0.426667pt;}
.ws37{word-spacing:-0.373333pt;}
.wsf6{word-spacing:-0.317333pt;}
.ws8d{word-spacing:-0.272000pt;}
.ws40{word-spacing:-0.213333pt;}
.ws9c{word-spacing:-0.101333pt;}
.wscf{word-spacing:-0.074667pt;}
.ws0{word-spacing:-0.066667pt;}
.ws49{word-spacing:-0.053333pt;}
.ws4d{word-spacing:-0.042667pt;}
.ws1{word-spacing:0.000000pt;}
.wse6{word-spacing:0.053333pt;}
.ws72{word-spacing:0.160000pt;}
.ws134{word-spacing:0.186667pt;}
.wsc9{word-spacing:0.256000pt;}
.ws10f{word-spacing:0.373333pt;}
.ws89{word-spacing:0.469333pt;}
.wsf8{word-spacing:0.544000pt;}
.wsd4{word-spacing:0.586667pt;}
.wsf5{word-spacing:0.680000pt;}
.wsec{word-spacing:0.853333pt;}
.ws3{word-spacing:0.906667pt;}
.wsed{word-spacing:1.088000pt;}
.wse2{word-spacing:1.173333pt;}
.wsba{word-spacing:1.280000pt;}
.wsb5{word-spacing:1.440000pt;}
.wsc6{word-spacing:1.450667pt;}
.ws55{word-spacing:1.493333pt;}
.ws4a{word-spacing:1.546667pt;}
.ws109{word-spacing:1.600000pt;}
.ws85{word-spacing:1.621333pt;}
.ws7a{word-spacing:1.706667pt;}
.ws2e{word-spacing:1.760000pt;}
.wsf4{word-spacing:1.768000pt;}
.wsb6{word-spacing:1.813333pt;}
.ws1c{word-spacing:2.026667pt;}
.ws94{word-spacing:2.040000pt;}
.ws16{word-spacing:2.080000pt;}
.ws3a{word-spacing:2.186667pt;}
.ws9{word-spacing:2.240000pt;}
.ws100{word-spacing:2.346667pt;}
.ws76{word-spacing:2.400000pt;}
.ws42{word-spacing:2.453333pt;}
.wsf2{word-spacing:2.493333pt;}
.ws8c{word-spacing:2.538667pt;}
.ws133{word-spacing:2.560000pt;}
.ws18{word-spacing:2.613333pt;}
.ws5f{word-spacing:2.666667pt;}
.ws41{word-spacing:2.720000pt;}
.ws107{word-spacing:2.773333pt;}
.ws86{word-spacing:2.816000pt;}
.ws4b{word-spacing:2.880000pt;}
.wsfa{word-spacing:2.901333pt;}
.ws98{word-spacing:3.037333pt;}
.ws38{word-spacing:3.093333pt;}
.ws15{word-spacing:3.146667pt;}
.wsef{word-spacing:3.173333pt;}
.ws5{word-spacing:3.200000pt;}
.ws93{word-spacing:3.218667pt;}
.ws11b{word-spacing:3.253333pt;}
.ws5c{word-spacing:3.305333pt;}
.ws1f{word-spacing:3.306667pt;}
.ws44{word-spacing:3.413333pt;}
.wse{word-spacing:3.520000pt;}
.ws48{word-spacing:3.573333pt;}
.wsf1{word-spacing:3.717333pt;}
.ws74{word-spacing:3.733333pt;}
.ws10e{word-spacing:3.786667pt;}
.wsac{word-spacing:3.840000pt;}
.wse5{word-spacing:3.946667pt;}
.ws126{word-spacing:4.000000pt;}
.wsca{word-spacing:4.010667pt;}
.ws81{word-spacing:4.096000pt;}
.wsda{word-spacing:4.106667pt;}
.wsea{word-spacing:4.160000pt;}
.ws5d{word-spacing:4.213333pt;}
.wsfc{word-spacing:4.352000pt;}
.ws88{word-spacing:4.437333pt;}
.ws97{word-spacing:4.488000pt;}
.ws23{word-spacing:4.533333pt;}
.wsd5{word-spacing:4.586667pt;}
.ws46{word-spacing:4.693333pt;}
.ws5e{word-spacing:4.746667pt;}
.ws45{word-spacing:4.853333pt;}
.ws82{word-spacing:4.906667pt;}
.wscd{word-spacing:4.949333pt;}
.ws113{word-spacing:4.960000pt;}
.ws53{word-spacing:5.173333pt;}
.ws33{word-spacing:5.226667pt;}
.ws111{word-spacing:5.280000pt;}
.ws91{word-spacing:5.304000pt;}
.ws12{word-spacing:5.600000pt;}
.ws12f{word-spacing:5.706667pt;}
.wseb{word-spacing:5.760000pt;}
.ws3f{word-spacing:5.813333pt;}
.wsc0{word-spacing:5.920000pt;}
.ws63{word-spacing:5.973333pt;}
.wsa9{word-spacing:6.026667pt;}
.wsfb{word-spacing:6.029333pt;}
.wsdd{word-spacing:6.133333pt;}
.ws47{word-spacing:6.346667pt;}
.wsa{word-spacing:6.453333pt;}
.wsbf{word-spacing:6.506667pt;}
.ws92{word-spacing:6.618667pt;}
.wsb0{word-spacing:6.660000pt;}
.ws58{word-spacing:6.666667pt;}
.ws7c{word-spacing:6.880000pt;}
.wsc7{word-spacing:6.954667pt;}
.ws2c{word-spacing:7.040000pt;}
.wsb2{word-spacing:7.093333pt;}
.ws96{word-spacing:7.162667pt;}
.ws6d{word-spacing:7.200000pt;}
.ws7b{word-spacing:7.253333pt;}
.ws2a{word-spacing:7.573333pt;}
.wsf9{word-spacing:7.616000pt;}
.ws39{word-spacing:7.680000pt;}
.wsb8{word-spacing:7.733333pt;}
.ws124{word-spacing:7.786667pt;}
.ws59{word-spacing:7.840000pt;}
.wsf7{word-spacing:7.842667pt;}
.ws12b{word-spacing:7.893333pt;}
.ws17{word-spacing:8.053333pt;}
.wsc3{word-spacing:8.213333pt;}
.ws32{word-spacing:8.320000pt;}
.wse3{word-spacing:8.426667pt;}
.ws125{word-spacing:8.533333pt;}
.wsd{word-spacing:8.640000pt;}
.wse4{word-spacing:8.746667pt;}
.ws95{word-spacing:8.840000pt;}
.ws10d{word-spacing:8.906667pt;}
.wsfe{word-spacing:8.976000pt;}
.wsbe{word-spacing:9.013333pt;}
.ws1b{word-spacing:9.333333pt;}
.ws60{word-spacing:9.440000pt;}
.ws132{word-spacing:9.493333pt;}
.wsb1{word-spacing:9.653333pt;}
.ws1a{word-spacing:9.706667pt;}
.ws8a{word-spacing:9.746667pt;}
.ws67{word-spacing:9.813333pt;}
.ws11c{word-spacing:9.866667pt;}
.ws31{word-spacing:9.920000pt;}
.wsa5{word-spacing:10.026667pt;}
.ws7{word-spacing:10.080000pt;}
.ws54{word-spacing:10.240000pt;}
.ws7d{word-spacing:10.346667pt;}
.ws10a{word-spacing:10.400000pt;}
.ws62{word-spacing:10.453333pt;}
.ws120{word-spacing:10.506667pt;}
.wsa8{word-spacing:10.613333pt;}
.ws70{word-spacing:10.720000pt;}
.ws30{word-spacing:10.773333pt;}
.wse1{word-spacing:10.880000pt;}
.ws2d{word-spacing:10.933333pt;}
.ws51{word-spacing:11.040000pt;}
.wsa3{word-spacing:11.253333pt;}
.ws123{word-spacing:11.306667pt;}
.wsd3{word-spacing:11.360000pt;}
.ws118{word-spacing:11.413333pt;}
.ws11a{word-spacing:11.573333pt;}
.ws26{word-spacing:11.626667pt;}
.wsd0{word-spacing:11.733333pt;}
.wsc{word-spacing:11.786667pt;}
.wscb{word-spacing:11.818667pt;}
.wsad{word-spacing:11.840000pt;}
.wscc{word-spacing:11.904000pt;}
.ws28{word-spacing:11.946667pt;}
.wsd8{word-spacing:12.106667pt;}
.ws6b{word-spacing:12.160000pt;}
.ws78{word-spacing:12.320000pt;}
.ws119{word-spacing:12.426667pt;}
.ws115{word-spacing:12.533333pt;}
.ws104{word-spacing:12.693333pt;}
.ws10b{word-spacing:12.853333pt;}
.ws112{word-spacing:12.960000pt;}
.wse7{word-spacing:13.173333pt;}
.ws9e{word-spacing:13.226667pt;}
.ws73{word-spacing:13.280000pt;}
.ws6e{word-spacing:13.333333pt;}
.ws43{word-spacing:13.493333pt;}
.ws21{word-spacing:13.760000pt;}
.wsf3{word-spacing:13.872000pt;}
.ws79{word-spacing:13.973333pt;}
.ws61{word-spacing:14.240000pt;}
.ws3c{word-spacing:14.293333pt;}
.ws2f{word-spacing:14.453333pt;}
.ws6{word-spacing:14.560000pt;}
.wsd6{word-spacing:14.666667pt;}
.ws65{word-spacing:14.720000pt;}
.wsbd{word-spacing:14.773333pt;}
.wsc2{word-spacing:14.880000pt;}
.wsc4{word-spacing:15.093333pt;}
.ws8{word-spacing:15.200000pt;}
.ws110{word-spacing:15.253333pt;}
.wsd7{word-spacing:15.306667pt;}
.ws5a{word-spacing:15.360000pt;}
.ws80{word-spacing:15.530667pt;}
.wse8{word-spacing:15.786667pt;}
.wsdf{word-spacing:15.840000pt;}
.ws84{word-spacing:15.914667pt;}
.wsae{word-spacing:16.053333pt;}
.wsaa{word-spacing:16.426667pt;}
.wsf{word-spacing:16.480000pt;}
.wsb4{word-spacing:16.746667pt;}
.ws25{word-spacing:17.120000pt;}
.wsa4{word-spacing:17.226667pt;}
.wsb3{word-spacing:17.386667pt;}
.ws64{word-spacing:17.600000pt;}
.ws24{word-spacing:17.653333pt;}
.ws10{word-spacing:17.760000pt;}
.ws106{word-spacing:18.080000pt;}
.ws127{word-spacing:18.133333pt;}
.ws68{word-spacing:18.186667pt;}
.wsc1{word-spacing:18.453333pt;}
.ws130{word-spacing:18.506667pt;}
.wsbb{word-spacing:18.666667pt;}
.ws5b{word-spacing:19.200000pt;}
.ws71{word-spacing:19.306667pt;}
.ws57{word-spacing:19.413333pt;}
.ws131{word-spacing:19.466667pt;}
.ws50{word-spacing:19.786667pt;}
.wsa1{word-spacing:19.946667pt;}
.ws12e{word-spacing:20.160000pt;}
.wsd9{word-spacing:20.213333pt;}
.ws6f{word-spacing:20.373333pt;}
.ws56{word-spacing:20.374667pt;}
.ws66{word-spacing:20.640000pt;}
.ws13{word-spacing:21.280000pt;}
.ws6c{word-spacing:21.333333pt;}
.ws128{word-spacing:21.440000pt;}
.wsa6{word-spacing:22.506667pt;}
.ws116{word-spacing:23.306667pt;}
.ws6a{word-spacing:23.680000pt;}
.ws12a{word-spacing:23.840000pt;}
.wsde{word-spacing:23.946667pt;}
.ws117{word-spacing:24.420000pt;}
.ws9f{word-spacing:24.586667pt;}
.wsc5{word-spacing:24.746667pt;}
.ws69{word-spacing:25.760000pt;}
.ws122{word-spacing:26.026667pt;}
.ws108{word-spacing:26.080000pt;}
.wsb{word-spacing:26.613333pt;}
.ws12d{word-spacing:27.520000pt;}
.ws12c{word-spacing:27.893333pt;}
.ws11f{word-spacing:28.213333pt;}
.wsbc{word-spacing:28.426667pt;}
.ws1e{word-spacing:28.960000pt;}
.ws10c{word-spacing:29.173333pt;}
.wsb9{word-spacing:29.440000pt;}
.ws11d{word-spacing:29.813333pt;}
.ws11e{word-spacing:30.346667pt;}
.ws114{word-spacing:31.200000pt;}
.ws19{word-spacing:31.253333pt;}
.wsa0{word-spacing:31.573333pt;}
.wsdc{word-spacing:33.546667pt;}
.ws121{word-spacing:33.760000pt;}
.ws20{word-spacing:35.200000pt;}
.ws22{word-spacing:35.786667pt;}
.wsa2{word-spacing:60.000000pt;}
.ws9d{word-spacing:116.863883pt;}
._b{margin-left:-39.013333pt;}
._13{margin-left:-29.227733pt;}
._12{margin-left:-21.986667pt;}
._14{margin-left:-18.454400pt;}
._11{margin-left:-15.237333pt;}
._8{margin-left:-13.403733pt;}
._5{margin-left:-10.986667pt;}
._6{margin-left:-9.888000pt;}
._7{margin-left:-7.580800pt;}
._15{margin-left:-5.706667pt;}
._3{margin-left:-4.794667pt;}
._a{margin-left:-3.360000pt;}
._4{margin-left:-2.197333pt;}
._0{margin-left:-0.933333pt;}
._9{width:1.210933pt;}
._d{width:2.426667pt;}
._c{width:6.890667pt;}
._10{width:8.085067pt;}
._2{width:9.066667pt;}
._16{width:11.290400pt;}
._f{width:12.506667pt;}
._1{width:13.836800pt;}
._e{width:15.635733pt;}
.fs12{font-size:24.266667pt;}
.fsf{font-size:35.740800pt;}
.fse{font-size:36.035733pt;}
.fs11{font-size:37.333333pt;}
.fs9{font-size:42.666667pt;}
.fs1{font-size:45.333333pt;}
.fsc{font-size:46.169600pt;}
.fsa{font-size:46.211733pt;}
.fs8{font-size:49.333333pt;}
.fs4{font-size:50.666667pt;}
.fs7{font-size:53.333333pt;}
.fs6{font-size:56.000000pt;}
.fsb{font-size:58.761067pt;}
.fs5{font-size:64.000000pt;}
.fs0{font-size:66.666667pt;}
.fs10{font-size:74.666667pt;}
.fsd{font-size:101.333333pt;}
.fs3{font-size:109.866667pt;}
.fs2{font-size:165.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:30.433467pt;}
.y75{bottom:48.196800pt;}
.y70{bottom:58.463067pt;}
.y76{bottom:64.021430pt;}
.ye9{bottom:71.626667pt;}
.y1e{bottom:72.000000pt;}
.y59{bottom:72.106800pt;}
.ye8{bottom:83.200000pt;}
.y133{bottom:84.146800pt;}
.y58{bottom:85.440133pt;}
.y1d{bottom:90.000000pt;}
.yc4{bottom:90.240133pt;}
.y6d{bottom:90.933467pt;}
.y9a{bottom:92.318851pt;}
.y73{bottom:94.475333pt;}
.ye7{bottom:94.773333pt;}
.y132{bottom:95.720133pt;}
.y57{bottom:98.773467pt;}
.y78{bottom:99.537395pt;}
.yc3{bottom:103.573467pt;}
.y99{bottom:103.738037pt;}
.y6c{bottom:104.266800pt;}
.ye6{bottom:106.346667pt;}
.y131{bottom:107.293467pt;}
.y1c{bottom:108.000000pt;}
.y71{bottom:111.096400pt;}
.y56{bottom:112.106800pt;}
.y77{bottom:113.192054pt;}
.y96{bottom:115.274667pt;}
.y98{bottom:115.746945pt;}
.yc2{bottom:116.906800pt;}
.ye5{bottom:117.920000pt;}
.y130{bottom:118.866800pt;}
.y74{bottom:121.624000pt;}
.y55{bottom:125.440133pt;}
.y1b{bottom:126.000000pt;}
.y6f{bottom:127.730667pt;}
.y95{bottom:128.608000pt;}
.ye4{bottom:129.493333pt;}
.y12f{bottom:130.440133pt;}
.y9c{bottom:132.929335pt;}
.y54{bottom:138.773467pt;}
.ye3{bottom:141.066667pt;}
.y94{bottom:141.941333pt;}
.y12e{bottom:142.013467pt;}
.y9b{bottom:143.088657pt;}
.y1a{bottom:144.000000pt;}
.y53{bottom:152.106800pt;}
.ye2{bottom:152.640000pt;}
.y12d{bottom:153.586800pt;}
.y93{bottom:155.274667pt;}
.y19{bottom:162.000000pt;}
.ye1{bottom:164.213333pt;}
.y12c{bottom:165.160133pt;}
.y52{bottom:165.440133pt;}
.y97{bottom:165.471333pt;}
.y6e{bottom:172.342800pt;}
.ye0{bottom:175.786667pt;}
.y9d{bottom:176.327601pt;}
.y12b{bottom:176.733467pt;}
.y51{bottom:178.773467pt;}
.y18{bottom:180.000000pt;}
.ydf{bottom:187.360000pt;}
.y12a{bottom:188.306800pt;}
.y50{bottom:192.106800pt;}
.y17{bottom:198.000000pt;}
.yde{bottom:198.933333pt;}
.y4f{bottom:205.440133pt;}
.ydd{bottom:210.506667pt;}
.y129{bottom:214.333467pt;}
.y23{bottom:215.988000pt;}
.y16{bottom:216.000000pt;}
.y4e{bottom:218.773467pt;}
.y81{bottom:221.398400pt;}
.ydc{bottom:222.080000pt;}
.y128{bottom:225.906800pt;}
.y4d{bottom:232.106800pt;}
.ydb{bottom:233.653333pt;}
.y22{bottom:233.992000pt;}
.y15{bottom:234.000000pt;}
.y127{bottom:237.480133pt;}
.y72{bottom:238.827067pt;}
.yda{bottom:245.226667pt;}
.y126{bottom:249.053467pt;}
.y21{bottom:251.996000pt;}
.y14{bottom:252.000000pt;}
.y4a{bottom:252.640267pt;}
.yd9{bottom:256.800000pt;}
.y125{bottom:260.626800pt;}
.yd8{bottom:268.373333pt;}
.y13{bottom:270.000000pt;}
.y4c{bottom:271.413783pt;}
.y124{bottom:272.200133pt;}
.y4b{bottom:274.671711pt;}
.yd7{bottom:279.946667pt;}
.y43{bottom:281.431200pt;}
.y123{bottom:283.773467pt;}
.y7e{bottom:285.333333pt;}
.y12{bottom:288.000000pt;}
.yd6{bottom:291.520000pt;}
.y122{bottom:295.346800pt;}
.y44{bottom:299.453776pt;}
.yd5{bottom:303.093333pt;}
.y11{bottom:306.000000pt;}
.y121{bottom:306.920133pt;}
.yd4{bottom:314.666667pt;}
.y45{bottom:317.199082pt;}
.y7d{bottom:321.333333pt;}
.yc7{bottom:323.988000pt;}
.y10{bottom:324.000000pt;}
.yd3{bottom:326.240000pt;}
.y120{bottom:332.946800pt;}
.y46{bottom:335.221658pt;}
.yd2{bottom:337.813333pt;}
.yc6{bottom:341.992000pt;}
.yf{bottom:342.000000pt;}
.y11f{bottom:344.520133pt;}
.yd1{bottom:349.386667pt;}
.y47{bottom:353.244234pt;}
.y11e{bottom:356.093467pt;}
.yc5{bottom:359.996000pt;}
.ye{bottom:360.000000pt;}
.yd0{bottom:360.960000pt;}
.y11d{bottom:367.666800pt;}
.y48{bottom:371.266810pt;}
.ycf{bottom:372.533333pt;}
.y6b{bottom:374.742800pt;}
.y7c{bottom:375.333333pt;}
.yd{bottom:378.000000pt;}
.y11c{bottom:379.240133pt;}
.yce{bottom:384.106667pt;}
.y49{bottom:389.012115pt;}
.y6a{bottom:390.076800pt;}
.y11b{bottom:390.813467pt;}
.ycd{bottom:395.680000pt;}
.yc{bottom:396.000000pt;}
.y11a{bottom:402.386800pt;}
.y69{bottom:405.410800pt;}
.ycc{bottom:407.253333pt;}
.y119{bottom:413.960133pt;}
.yb{bottom:413.992000pt;}
.y20{bottom:414.000000pt;}
.ycb{bottom:418.826667pt;}
.y68{bottom:420.744800pt;}
.y118{bottom:425.533467pt;}
.yc1{bottom:427.391467pt;}
.y7b{bottom:429.333333pt;}
.yca{bottom:430.400000pt;}
.ya{bottom:431.996000pt;}
.y1f{bottom:432.000000pt;}
.y67{bottom:436.078800pt;}
.y117{bottom:437.106800pt;}
.yc9{bottom:441.973333pt;}
.yc0{bottom:442.725467pt;}
.y116{bottom:448.680133pt;}
.y92{bottom:449.706667pt;}
.y9{bottom:450.000000pt;}
.y66{bottom:451.412800pt;}
.yc8{bottom:453.546667pt;}
.ybf{bottom:458.059467pt;}
.y115{bottom:460.253467pt;}
.y91{bottom:463.040000pt;}
.y65{bottom:466.746800pt;}
.y31{bottom:468.000000pt;}
.y114{bottom:471.826800pt;}
.ybe{bottom:473.393467pt;}
.y90{bottom:476.373333pt;}
.y64{bottom:482.080800pt;}
.y113{bottom:483.400133pt;}
.y30{bottom:486.000000pt;}
.ybd{bottom:488.727467pt;}
.y8f{bottom:489.706667pt;}
.y112{bottom:494.973467pt;}
.y63{bottom:497.414800pt;}
.y7a{bottom:501.333333pt;}
.y8e{bottom:503.040000pt;}
.y2f{bottom:504.000000pt;}
.ybc{bottom:504.061467pt;}
.y111{bottom:506.546800pt;}
.y62{bottom:512.748800pt;}
.y8d{bottom:516.373333pt;}
.y110{bottom:518.120133pt;}
.ybb{bottom:519.395467pt;}
.y2e{bottom:522.000000pt;}
.y61{bottom:528.082800pt;}
.y10f{bottom:529.693467pt;}
.y8c{bottom:529.706667pt;}
.yba{bottom:534.729467pt;}
.y79{bottom:537.333333pt;}
.y2d{bottom:540.000000pt;}
.y10e{bottom:541.266800pt;}
.y60{bottom:543.416800pt;}
.y80{bottom:544.610667pt;}
.yb9{bottom:550.063467pt;}
.y10d{bottom:552.840133pt;}
.y2c{bottom:558.000000pt;}
.y5f{bottom:558.750800pt;}
.y10c{bottom:564.413467pt;}
.yb8{bottom:565.397467pt;}
.y87{bottom:568.812945pt;}
.y88{bottom:573.975064pt;}
.y5e{bottom:574.084800pt;}
.y10b{bottom:575.986800pt;}
.y2b{bottom:576.000000pt;}
.y86{bottom:579.128174pt;}
.yb7{bottom:580.731467pt;}
.y10a{bottom:587.560133pt;}
.y5d{bottom:589.418800pt;}
.y2a{bottom:594.000000pt;}
.yb6{bottom:596.065467pt;}
.y109{bottom:599.133467pt;}
.y5c{bottom:604.752800pt;}
.y8a{bottom:608.037841pt;}
.y108{bottom:610.706800pt;}
.yb5{bottom:611.399467pt;}
.y29{bottom:612.000000pt;}
.y89{bottom:619.434142pt;}
.y5b{bottom:620.086800pt;}
.y107{bottom:622.280133pt;}
.yb4{bottom:626.733467pt;}
.y9f{bottom:629.992000pt;}
.y28{bottom:630.000000pt;}
.y106{bottom:633.853467pt;}
.y85{bottom:639.325867pt;}
.yb3{bottom:642.067467pt;}
.y105{bottom:645.426800pt;}
.y9e{bottom:647.996000pt;}
.y27{bottom:648.000000pt;}
.y5a{bottom:650.753467pt;}
.y8b{bottom:653.929348pt;}
.y104{bottom:657.000133pt;}
.yb2{bottom:657.401467pt;}
.y26{bottom:666.000000pt;}
.y103{bottom:668.573467pt;}
.yb1{bottom:672.735467pt;}
.y102{bottom:680.146800pt;}
.y25{bottom:684.000000pt;}
.yb0{bottom:688.069467pt;}
.y101{bottom:691.720133pt;}
.y24{bottom:702.000000pt;}
.y100{bottom:703.293467pt;}
.yaf{bottom:703.403467pt;}
.yff{bottom:714.866800pt;}
.yae{bottom:718.737467pt;}
.y7f{bottom:719.126933pt;}
.y41{bottom:720.000000pt;}
.yfe{bottom:726.440133pt;}
.yad{bottom:734.071467pt;}
.y40{bottom:738.000000pt;}
.yac{bottom:749.405467pt;}
.yfd{bottom:752.466800pt;}
.y3f{bottom:756.000000pt;}
.yfc{bottom:764.040133pt;}
.y7{bottom:766.439600pt;}
.y3e{bottom:774.000000pt;}
.yfb{bottom:775.613467pt;}
.yab{bottom:778.873333pt;}
.y83{bottom:779.225223pt;}
.y6{bottom:786.440267pt;}
.y82{bottom:787.135067pt;}
.yfa{bottom:787.186800pt;}
.y3d{bottom:792.000000pt;}
.yaa{bottom:794.206667pt;}
.yf9{bottom:798.760133pt;}
.ya9{bottom:809.540000pt;}
.y3c{bottom:810.000000pt;}
.yf8{bottom:810.333467pt;}
.yf7{bottom:821.906800pt;}
.y84{bottom:823.405032pt;}
.ya8{bottom:824.873333pt;}
.y5{bottom:826.440533pt;}
.y3b{bottom:828.000000pt;}
.yf6{bottom:833.480133pt;}
.ya7{bottom:841.404133pt;}
.yf5{bottom:845.053467pt;}
.y3a{bottom:846.000000pt;}
.yf4{bottom:856.626800pt;}
.ya6{bottom:856.738133pt;}
.y4{bottom:857.120800pt;}
.y39{bottom:864.000000pt;}
.yf3{bottom:868.200133pt;}
.ya5{bottom:872.072133pt;}
.yf2{bottom:879.773467pt;}
.y38{bottom:882.000000pt;}
.ya4{bottom:887.406133pt;}
.y3{bottom:887.773600pt;}
.y37{bottom:900.000000pt;}
.ya3{bottom:902.740133pt;}
.yf1{bottom:908.680000pt;}
.y36{bottom:918.000000pt;}
.yf0{bottom:920.253333pt;}
.y2{bottom:925.106933pt;}
.yef{bottom:931.826667pt;}
.ya2{bottom:933.398800pt;}
.y35{bottom:936.000000pt;}
.yee{bottom:943.400000pt;}
.ya1{bottom:951.402800pt;}
.y34{bottom:954.000000pt;}
.yed{bottom:954.973333pt;}
.yec{bottom:966.546667pt;}
.ya0{bottom:969.406800pt;}
.y33{bottom:971.996000pt;}
.y42{bottom:972.000000pt;}
.yeb{bottom:978.120000pt;}
.yea{bottom:989.693333pt;}
.y32{bottom:990.000000pt;}
.y8{bottom:1015.712000pt;}
.h15{height:28.074667pt;}
.h16{height:30.680533pt;}
.h13{height:31.451904pt;}
.h10{height:31.711445pt;}
.h9{height:32.085333pt;}
.ha{height:34.090667pt;}
.h8{height:37.200445pt;}
.h7{height:38.026667pt;}
.h4{height:38.101333pt;}
.he{height:40.629248pt;}
.h12{height:41.332986pt;}
.hb{height:42.062365pt;}
.h6{height:42.112000pt;}
.h1{height:46.666667pt;}
.h5{height:48.128000pt;}
.h14{height:49.728000pt;}
.hf{height:67.488000pt;}
.h3{height:82.619733pt;}
.h2{height:124.330667pt;}
.hd{height:131.589333pt;}
.hc{height:149.124000pt;}
.h11{height:290.109333pt;}
.h0{height:1056.000000pt;}
.w2{width:131.590667pt;}
.w1{width:156.633333pt;}
.w3{width:457.600000pt;}
.w0{width:816.000000pt;}
.x1f{left:-39.640400pt;}
.x21{left:-3.828267pt;}
.x0{left:0.000000pt;}
.x24{left:7.742030pt;}
.x26{left:37.556049pt;}
.x25{left:42.461569pt;}
.x1{left:48.000000pt;}
.x38{left:53.002909pt;}
.x39{left:57.845787pt;}
.x27{left:62.400000pt;}
.x3a{left:63.957464pt;}
.x5{left:67.260667pt;}
.xb{left:72.000000pt;}
.x37{left:73.929147pt;}
.x23{left:78.231467pt;}
.x19{left:82.117207pt;}
.x3b{left:86.400000pt;}
.x2{left:89.991733pt;}
.x36{left:93.997606pt;}
.x1a{left:95.911409pt;}
.x4{left:101.878667pt;}
.x10{left:103.584326pt;}
.x6{left:110.404133pt;}
.x2a{left:113.207385pt;}
.x35{left:122.161357pt;}
.x3{left:124.619200pt;}
.x11{left:137.952533pt;}
.x34{left:139.281200pt;}
.x2b{left:156.098916pt;}
.x12{left:158.898001pt;}
.x13{left:179.843470pt;}
.x14{left:200.788938pt;}
.x33{left:211.200000pt;}
.x29{left:215.593200pt;}
.x15{left:221.734406pt;}
.x16{left:242.679874pt;}
.x17{left:263.625342pt;}
.x18{left:284.570810pt;}
.x7{left:286.400000pt;}
.x3e{left:296.004000pt;}
.x3d{left:300.800000pt;}
.xc{left:310.400400pt;}
.xd{left:324.795333pt;}
.x1b{left:329.933333pt;}
.x22{left:337.890667pt;}
.x3c{left:341.453200pt;}
.x30{left:369.896573pt;}
.x31{left:375.058691pt;}
.x1e{left:380.154667pt;}
.x32{left:390.022530pt;}
.x2f{left:392.382870pt;}
.x20{left:401.772267pt;}
.x1d{left:416.938400pt;}
.x2d{left:439.769859pt;}
.x1c{left:444.000000pt;}
.x2e{left:451.733723pt;}
.x2c{left:464.652533pt;}
.x8{left:524.800000pt;}
.x3f{left:534.400000pt;}
.x28{left:536.315733pt;}
.x9{left:539.200000pt;}
.xe{left:548.795333pt;}
.xf{left:563.195333pt;}
.xa{left:584.899067pt;}
}




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