
    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_d8647eacf537d06ef4d7d7de.woff')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_4c89817d8d4c54060c4162e6.woff')format("woff");}.ff2{font-family:ff2;line-height:0.900000;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_bfb988f8a2ff1f536982c370.woff')format("woff");}.ff3{font-family:ff3;line-height:0.890000;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_81381dfd20803c1fe358c3af.woff')format("woff");}.ff4{font-family:ff4;line-height:0.712000;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_3a0894afdca25b260ddd1929.woff')format("woff");}.ff5{font-family:ff5;line-height:0.999000;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_88ce9ce84b3f2d3e21934841.woff')format("woff");}.ff6{font-family:ff6;line-height:0.887000;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_2e3a1f133473a521ac465881.woff')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_d5169df9111add349c3b5450.woff')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_d9eb206476ad2a2d5c7a959f.woff')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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_b8f39d0ab9d40f9ec0c30d6f.woff')format("woff");}.ffa{font-family:ffa;line-height:0.898000;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_2ccbbf39a9e13e736746e046.woff')format("woff");}.ffb{font-family:ffb;line-height:0.444000;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_af83db49f71689a18fa13f35.woff')format("woff");}.ffc{font-family:ffc;line-height:0.695000;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_1a8f296b1fdca1a24d5e5226.woff')format("woff");}.ffd{font-family:ffd;line-height:1.400000;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_c97b8895d55dbfb4b78c0baa.woff')format("woff");}.ffe{font-family:ffe;line-height:0.898200;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_5703535055664b77828b719f.woff')format("woff");}.fff{font-family:fff;line-height:0.678000;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_7207629f4a99f6ab0e568be6.woff')format("woff");}.ff10{font-family:ff10;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_50c2e1ba031704f6f7cb04c8.woff')format("woff");}.ff11{font-family:ff11;line-height:1.432129;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_ae65649d98b4cf1caf490ea4.woff')format("woff");}.ff12{font-family:ff12;line-height:1.432129;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;}
.ff13{font-family:sans-serif;visibility:hidden;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v7{vertical-align:-8.406000px;}
.v3{vertical-align:-5.976000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:4.119925px;}
.v1{vertical-align:17.629445px;}
.va{vertical-align:22.854000px;}
.vb{vertical-align:25.842000px;}
.v6{vertical-align:27.216000px;}
.v5{vertical-align:34.782000px;}
.v9{vertical-align:36.486000px;}
.v8{vertical-align:51.216000px;}
.v4{vertical-align:91.566000px;}
.ls0{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.000111px;}
.ls20{letter-spacing:0.000563px;}
.lsd{letter-spacing:0.001398px;}
.lsb{letter-spacing:0.001791px;}
.ls25{letter-spacing:0.013369px;}
.ls23{letter-spacing:0.014483px;}
.ls1b{letter-spacing:0.022702px;}
.ls9{letter-spacing:1.560154px;}
.ls13{letter-spacing:2.984289px;}
.ls21{letter-spacing:2.986886px;}
.ls29{letter-spacing:2.987468px;}
.ls11{letter-spacing:2.987870px;}
.ls16{letter-spacing:2.990289px;}
.lsc{letter-spacing:2.992886px;}
.lsf{letter-spacing:3.478059px;}
.ls15{letter-spacing:3.734425px;}
.ls31{letter-spacing:4.488422px;}
.lse{letter-spacing:4.751996px;}
.ls14{letter-spacing:5.063159px;}
.ls1c{letter-spacing:5.069159px;}
.ls7{letter-spacing:5.810227px;}
.ls1d{letter-spacing:10.490688px;}
.ls2a{letter-spacing:11.297664px;}
.ls12{letter-spacing:12.202714px;}
.ls1e{letter-spacing:13.466289px;}
.ls2f{letter-spacing:14.471770px;}
.ls24{letter-spacing:14.474289px;}
.ls2c{letter-spacing:14.579366px;}
.ls26{letter-spacing:14.686963px;}
.ls3{letter-spacing:15.224947px;}
.ls1f{letter-spacing:16.436289px;}
.lsa{letter-spacing:16.442289px;}
.ls2e{letter-spacing:16.892698px;}
.ls28{letter-spacing:17.269286px;}
.ls27{letter-spacing:17.444289px;}
.ls4{letter-spacing:17.914867px;}
.ls2b{letter-spacing:18.347468px;}
.ls22{letter-spacing:18.614246px;}
.ls19{letter-spacing:18.721843px;}
.ls1a{letter-spacing:20.281997px;}
.ls2{letter-spacing:21.035174px;}
.ls6{letter-spacing:22.057344px;}
.ls5{letter-spacing:22.111142px;}
.ls8{letter-spacing:22.810522px;}
.ls30{letter-spacing:24.639667px;}
.ls2d{letter-spacing:24.881468px;}
.ls1{letter-spacing:26.038426px;}
.ls18{letter-spacing:29.911910px;}
.ls17{letter-spacing:468.013336px;}
.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;}
}
.ws80{word-spacing:-36.071827px;}
.ws82{word-spacing:-29.388273px;}
.ws83{word-spacing:-26.872301px;}
.ws85{word-spacing:-15.359443px;}
.ws45{word-spacing:-13.449600px;}
.wsaa{word-spacing:-11.812652px;}
.ws74{word-spacing:-7.101102px;}
.ws72{word-spacing:-5.918473px;}
.wsa8{word-spacing:-5.352941px;}
.ws73{word-spacing:-4.733180px;}
.ws89{word-spacing:-3.669233px;}
.ws76{word-spacing:-3.550551px;}
.ws8e{word-spacing:-3.227904px;}
.ws8{word-spacing:-3.120307px;}
.ws6a{word-spacing:-3.066509px;}
.ws7e{word-spacing:-3.012710px;}
.ws3d{word-spacing:-2.958912px;}
.ws96{word-spacing:-2.851315px;}
.ws10{word-spacing:-2.743718px;}
.ws3{word-spacing:-2.689920px;}
.ws6f{word-spacing:-2.636122px;}
.ws13{word-spacing:-2.582323px;}
.wsc3{word-spacing:-2.528525px;}
.ws6e{word-spacing:-2.474726px;}
.ws0{word-spacing:-2.367130px;}
.wsc9{word-spacing:-2.313331px;}
.wsa{word-spacing:-2.259533px;}
.ws77{word-spacing:-2.205734px;}
.ws70{word-spacing:-2.151936px;}
.ws3e{word-spacing:-2.098138px;}
.wsbd{word-spacing:-2.044339px;}
.ws12{word-spacing:-1.990541px;}
.ws6b{word-spacing:-1.829146px;}
.ws4{word-spacing:-1.775347px;}
.ws11{word-spacing:-1.613952px;}
.ws2a{word-spacing:-1.560154px;}
.wsc8{word-spacing:-1.506355px;}
.ws6d{word-spacing:-1.398758px;}
.ws61{word-spacing:-1.344960px;}
.ws2f{word-spacing:-1.338977px;}
.ws68{word-spacing:-1.291162px;}
.ws34{word-spacing:-1.237363px;}
.ws3f{word-spacing:-1.183565px;}
.wsaf{word-spacing:-1.129766px;}
.wsc4{word-spacing:-1.075968px;}
.ws99{word-spacing:-1.022170px;}
.ws1{word-spacing:-0.968371px;}
.wsb{word-spacing:-0.914573px;}
.wsd1{word-spacing:-0.860774px;}
.ws14{word-spacing:-0.753178px;}
.ws9c{word-spacing:-0.591782px;}
.ws3a{word-spacing:-0.537984px;}
.ws5c{word-spacing:-0.484186px;}
.ws7c{word-spacing:-0.430387px;}
.wsc6{word-spacing:-0.376589px;}
.ws32{word-spacing:-0.215194px;}
.wsb8{word-spacing:-0.161395px;}
.ws25{word-spacing:-0.107597px;}
.ws7{word-spacing:-0.053798px;}
.ws81{word-spacing:-0.026899px;}
.ws5{word-spacing:0.000000px;}
.ws9d{word-spacing:0.026899px;}
.ws1d{word-spacing:0.053798px;}
.ws47{word-spacing:0.107597px;}
.ws2e{word-spacing:0.191282px;}
.ws30{word-spacing:0.215194px;}
.ws94{word-spacing:0.268992px;}
.ws67{word-spacing:0.322790px;}
.ws9f{word-spacing:0.376589px;}
.ws7d{word-spacing:0.430387px;}
.ws53{word-spacing:0.484186px;}
.ws88{word-spacing:0.537984px;}
.wsb7{word-spacing:0.591782px;}
.wsc2{word-spacing:0.699379px;}
.ws44{word-spacing:0.753178px;}
.ws95{word-spacing:0.860774px;}
.ws1c{word-spacing:0.968371px;}
.ws56{word-spacing:1.022170px;}
.wsa3{word-spacing:1.075968px;}
.ws21{word-spacing:1.129766px;}
.ws1f{word-spacing:1.183565px;}
.ws59{word-spacing:1.237363px;}
.ws5d{word-spacing:1.291162px;}
.ws71{word-spacing:1.344960px;}
.ws2{word-spacing:1.398758px;}
.wsc0{word-spacing:1.452557px;}
.ws92{word-spacing:1.506355px;}
.ws91{word-spacing:1.613952px;}
.wse8{word-spacing:1.667750px;}
.wsa5{word-spacing:1.721549px;}
.ws27{word-spacing:1.775347px;}
.ws9b{word-spacing:1.829146px;}
.ws98{word-spacing:1.936742px;}
.wsa6{word-spacing:1.990541px;}
.ws22{word-spacing:2.044339px;}
.ws2c{word-spacing:2.151927px;}
.ws40{word-spacing:2.151936px;}
.ws50{word-spacing:2.205734px;}
.ws5a{word-spacing:2.313331px;}
.ws55{word-spacing:2.367130px;}
.wsa1{word-spacing:2.420928px;}
.wsa0{word-spacing:2.474726px;}
.ws5f{word-spacing:2.528525px;}
.ws79{word-spacing:2.582323px;}
.ws1e{word-spacing:2.636122px;}
.ws1b{word-spacing:2.689920px;}
.ws24{word-spacing:2.743718px;}
.wsba{word-spacing:2.797517px;}
.ws60{word-spacing:2.851315px;}
.ws4a{word-spacing:2.905114px;}
.ws39{word-spacing:2.958912px;}
.ws87{word-spacing:3.012710px;}
.wsf{word-spacing:3.066509px;}
.ws65{word-spacing:3.120307px;}
.ws42{word-spacing:3.174106px;}
.ws29{word-spacing:3.227904px;}
.ws7a{word-spacing:3.335501px;}
.ws3b{word-spacing:3.389299px;}
.wsab{word-spacing:3.443098px;}
.wsc1{word-spacing:3.496896px;}
.ws31{word-spacing:3.550694px;}
.ws17{word-spacing:3.604493px;}
.ws49{word-spacing:3.658291px;}
.wsc5{word-spacing:3.712090px;}
.ws19{word-spacing:3.765888px;}
.ws62{word-spacing:3.819686px;}
.ws33{word-spacing:3.873485px;}
.ws23{word-spacing:3.927283px;}
.ws66{word-spacing:4.034880px;}
.ws51{word-spacing:4.088678px;}
.ws37{word-spacing:4.142477px;}
.ws26{word-spacing:4.250074px;}
.ws1a{word-spacing:4.303872px;}
.wsc7{word-spacing:4.357670px;}
.ws63{word-spacing:4.411469px;}
.ws64{word-spacing:4.465267px;}
.ws48{word-spacing:4.519066px;}
.wsad{word-spacing:4.572864px;}
.ws2b{word-spacing:4.734259px;}
.ws4c{word-spacing:4.895654px;}
.wsbb{word-spacing:5.003251px;}
.wse{word-spacing:5.057050px;}
.wse3{word-spacing:5.110848px;}
.ws57{word-spacing:5.164646px;}
.ws84{word-spacing:5.272243px;}
.ws9{word-spacing:5.326042px;}
.ws8b{word-spacing:5.433638px;}
.wsea{word-spacing:5.487437px;}
.ws28{word-spacing:5.541235px;}
.ws78{word-spacing:5.648832px;}
.ws15{word-spacing:5.810227px;}
.ws97{word-spacing:5.917824px;}
.ws52{word-spacing:6.079219px;}
.ws6c{word-spacing:6.186816px;}
.ws54{word-spacing:6.240614px;}
.wsb5{word-spacing:6.294413px;}
.ws7b{word-spacing:6.348211px;}
.ws8a{word-spacing:6.402010px;}
.wsac{word-spacing:6.536506px;}
.ws4d{word-spacing:6.563405px;}
.ws36{word-spacing:6.617203px;}
.ws8d{word-spacing:6.724800px;}
.wsb4{word-spacing:6.832397px;}
.wsb3{word-spacing:6.886195px;}
.ws46{word-spacing:6.939994px;}
.wsda{word-spacing:6.993792px;}
.ws7f{word-spacing:7.101389px;}
.wsb1{word-spacing:7.155187px;}
.ws4b{word-spacing:7.262784px;}
.wse6{word-spacing:7.316582px;}
.wsb0{word-spacing:7.343482px;}
.ws69{word-spacing:7.424179px;}
.ws4e{word-spacing:7.585574px;}
.wsec{word-spacing:7.639373px;}
.ws43{word-spacing:7.746970px;}
.ws38{word-spacing:7.800768px;}
.wsb2{word-spacing:7.854566px;}
.wsdd{word-spacing:7.908365px;}
.wsa7{word-spacing:7.962163px;}
.ws9a{word-spacing:8.015962px;}
.ws9e{word-spacing:8.069760px;}
.ws90{word-spacing:8.284954px;}
.ws20{word-spacing:8.446349px;}
.ws5e{word-spacing:8.553946px;}
.ws5b{word-spacing:8.661542px;}
.ws3c{word-spacing:8.715341px;}
.wsb9{word-spacing:8.769139px;}
.ws93{word-spacing:9.145728px;}
.ws86{word-spacing:9.199526px;}
.wsce{word-spacing:9.307123px;}
.wsa4{word-spacing:9.737510px;}
.ws2d{word-spacing:9.755402px;}
.wscc{word-spacing:9.791309px;}
.wse4{word-spacing:9.952704px;}
.ws58{word-spacing:10.490688px;}
.wsd5{word-spacing:10.759680px;}
.wsd{word-spacing:11.028672px;}
.wsbf{word-spacing:11.243866px;}
.wse1{word-spacing:11.297664px;}
.ws8c{word-spacing:11.512858px;}
.ws8f{word-spacing:11.889446px;}
.wsdf{word-spacing:11.997043px;}
.wsc{word-spacing:12.481229px;}
.wsd2{word-spacing:12.911616px;}
.wsd3{word-spacing:13.019213px;}
.wsd6{word-spacing:13.234406px;}
.ws41{word-spacing:13.395802px;}
.ws35{word-spacing:13.449600px;}
.wsae{word-spacing:13.879987px;}
.wsb6{word-spacing:13.987584px;}
.wsd7{word-spacing:14.095181px;}
.ws4f{word-spacing:14.471770px;}
.wscd{word-spacing:14.525568px;}
.wse7{word-spacing:14.740762px;}
.wsdb{word-spacing:15.009754px;}
.wscf{word-spacing:15.386342px;}
.wsd0{word-spacing:16.247117px;}
.wse5{word-spacing:16.838899px;}
.ws16{word-spacing:17.054093px;}
.wsbe{word-spacing:17.376883px;}
.wsd8{word-spacing:17.645875px;}
.wse9{word-spacing:17.753472px;}
.ws6{word-spacing:17.861069px;}
.wse0{word-spacing:17.914867px;}
.wsdc{word-spacing:18.183859px;}
.wsd4{word-spacing:18.237658px;}
.wse2{word-spacing:18.452851px;}
.wsbc{word-spacing:18.721843px;}
.wsd9{word-spacing:18.775642px;}
.wscb{word-spacing:20.497190px;}
.wsde{word-spacing:21.357965px;}
.wseb{word-spacing:21.949747px;}
.wsca{word-spacing:25.715635px;}
.ws18{word-spacing:32.225242px;}
.ws75{word-spacing:42.665460px;}
.wsa2{word-spacing:73.626884px;}
.wsa9{word-spacing:316.057348px;}
._21{margin-left:-812.083407px;}
._5{margin-left:-6.402010px;}
._f{margin-left:-5.110848px;}
._3{margin-left:-4.016947px;}
._4{margin-left:-2.958912px;}
._1{margin-left:-1.721549px;}
._19{width:1.849884px;}
._1a{width:2.874094px;}
._20{width:10.275494px;}
._2{width:11.943245px;}
._16{width:13.969651px;}
._1e{width:15.009754px;}
._0{width:16.085722px;}
._13{width:17.592077px;}
._10{width:18.614246px;}
._6{width:19.797811px;}
._8{width:20.873779px;}
._24{width:22.003546px;}
._11{width:23.133312px;}
._7{width:24.801062px;}
._a{width:26.253619px;}
._c{width:27.329587px;}
._9{width:28.405555px;}
._17{width:29.589120px;}
._b{width:30.934080px;}
._e{width:32.279040px;}
._18{width:34.538573px;}
._12{width:35.668339px;}
._1f{width:38.196864px;}
._d{width:39.810816px;}
._23{width:41.317171px;}
._15{width:42.393139px;}
._33{width:43.791898px;}
._32{width:45.603110px;}
._35{width:47.001869px;}
._14{width:48.041971px;}
._22{width:50.570496px;}
._34{width:55.950336px;}
._36{width:59.070643px;}
._2d{width:151.603891px;}
._2c{width:179.740454px;}
._2e{width:185.981069px;}
._26{width:187.541222px;}
._2a{width:193.190054px;}
._1b{width:197.552837px;}
._29{width:200.990822px;}
._27{width:226.814054px;}
._1d{width:234.849213px;}
._30{width:238.326912px;}
._31{width:253.713254px;}
._1c{width:267.925950px;}
._2b{width:280.074470px;}
._25{width:283.033382px;}
._28{width:289.058803px;}
._2f{width:330.860160px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:12.549000px;}
.fs7{font-size:12.771766px;}
.fsb{font-size:13.198680px;}
.fs8{font-size:14.046069px;}
.fs6{font-size:14.898797px;}
.fsd{font-size:15.058800px;}
.fs4{font-size:17.025828px;}
.fs3{font-size:21.289471px;}
.fs5{font-size:25.543533px;}
.fsa{font-size:29.887800px;}
.fs9{font-size:35.865600px;}
.fs2{font-size:47.820600px;}
.fs0{font-size:53.798400px;}
.fs1{font-size:71.731200px;}
.y0{bottom:0.000000px;}
.ya7{bottom:11.066309px;}
.y11d{bottom:12.428020px;}
.yce{bottom:15.886200px;}
.y11c{bottom:16.717229px;}
.ya9{bottom:24.503970px;}
.y12a{bottom:24.733919px;}
.yd0{bottom:34.448700px;}
.y11e{bottom:36.488857px;}
.y12b{bottom:37.062654px;}
.ya5{bottom:38.612317px;}
.yd4{bottom:39.824400px;}
.y12c{bottom:49.391390px;}
.ya6{bottom:54.325517px;}
.y11f{bottom:55.627475px;}
.y12d{bottom:61.720125px;}
.ycd{bottom:63.584400px;}
.yd3{bottom:63.643800px;}
.ycf{bottom:65.188200px;}
.ya1{bottom:66.805056px;}
.yd2{bottom:67.980000px;}
.y123{bottom:68.280776px;}
.y98{bottom:70.517779px;}
.ya0{bottom:70.829169px;}
.yd1{bottom:72.345900px;}
.y12e{bottom:74.048861px;}
.y120{bottom:74.766092px;}
.y97{bottom:77.536023px;}
.y96{bottom:84.554267px;}
.y12f{bottom:86.377596px;}
.y121{bottom:93.904710px;}
.ya8{bottom:96.794275px;}
.ya3{bottom:96.866134px;}
.y130{bottom:98.706332px;}
.y129{bottom:99.525727px;}
.y9c{bottom:101.441167px;}
.y9f{bottom:103.333458px;}
.y128{bottom:104.128661px;}
.y39{bottom:106.299000px;}
.ya2{bottom:108.124068px;}
.y9b{bottom:108.459410px;}
.y127{bottom:108.731595px;}
.y9e{bottom:108.962424px;}
.ya4{bottom:109.297767px;}
.y131{bottom:111.035067px;}
.y122{bottom:113.043327px;}
.y126{bottom:113.334529px;}
.y9d{bottom:114.567438px;}
.y9a{bottom:115.501607px;}
.y125{bottom:117.937463px;}
.y38{bottom:119.785500px;}
.y63{bottom:121.915500px;}
.y124{bottom:125.025687px;}
.y108{bottom:132.032539px;}
.y37{bottom:133.273500px;}
.y107{bottom:136.321748px;}
.y62{bottom:137.532000px;}
.yf9{bottom:137.686500px;}
.y99{bottom:140.939746px;}
.y116{bottom:144.319095px;}
.y109{bottom:144.337856px;}
.y175{bottom:146.610000px;}
.y36{bottom:146.760000px;}
.y61{bottom:153.148500px;}
.yf8{bottom:153.303000px;}
.y35{bottom:160.246500px;}
.y10a{bottom:163.722863px;}
.y117{bottom:163.758701px;}
.y60{bottom:168.765000px;}
.yf7{bottom:168.919500px;}
.yc9{bottom:169.479000px;}
.y174{bottom:180.694500px;}
.y10b{bottom:183.107870px;}
.y118{bottom:183.198308px;}
.y8e{bottom:184.380000px;}
.y5f{bottom:184.381500px;}
.yf6{bottom:184.534500px;}
.yc8{bottom:185.095500px;}
.y34{bottom:187.647000px;}
.y10f{bottom:187.885295px;}
.y1be{bottom:192.054000px;}
.y173{bottom:196.311000px;}
.y8d{bottom:199.996500px;}
.y5e{bottom:199.998000px;}
.yf5{bottom:200.151000px;}
.yc7{bottom:200.712000px;}
.y10c{bottom:202.492878px;}
.y119{bottom:202.637914px;}
.y33{bottom:203.263500px;}
.y1bd{bottom:207.670500px;}
.y172{bottom:211.927500px;}
.y5d{bottom:215.613000px;}
.y146{bottom:215.614500px;}
.yc6{bottom:216.328500px;}
.y32{bottom:218.880000px;}
.y115{bottom:219.130246px;}
.y10d{bottom:221.877885px;}
.y11a{bottom:222.077520px;}
.y1bc{bottom:223.287000px;}
.y114{bottom:223.733180px;}
.y171{bottom:227.544000px;}
.y113{bottom:228.336114px;}
.yf4{bottom:229.968000px;}
.y5c{bottom:231.229500px;}
.y145{bottom:231.231000px;}
.yc5{bottom:231.945000px;}
.y112{bottom:232.939048px;}
.y31{bottom:234.496500px;}
.y111{bottom:237.541982px;}
.y1bb{bottom:238.902000px;}
.y10e{bottom:241.262892px;}
.y11b{bottom:241.517127px;}
.y170{bottom:243.160500px;}
.y110{bottom:244.630206px;}
.y5b{bottom:246.846000px;}
.y30{bottom:250.113000px;}
.yc4{bottom:255.684000px;}
.y16f{bottom:258.777000px;}
.y1ba{bottom:262.192500px;}
.y5a{bottom:262.462500px;}
.y132{bottom:262.774491px;}
.y144{bottom:264.850500px;}
.y2f{bottom:265.729500px;}
.yf3{bottom:267.546000px;}
.yc3{bottom:271.300500px;}
.y141{bottom:271.308000px;}
.y13f{bottom:271.962000px;}
.y16e{bottom:274.393500px;}
.y1b9{bottom:277.809000px;}
.y59{bottom:278.079000px;}
.y18c{bottom:278.991000px;}
.y13e{bottom:280.429500px;}
.y2e{bottom:281.620500px;}
.yf2{bottom:283.162500px;}
.y140{bottom:289.128000px;}
.y16d{bottom:290.010000px;}
.y143{bottom:293.206500px;}
.y1b8{bottom:293.424000px;}
.y58{bottom:293.695500px;}
.yc2{bottom:294.324000px;}
.y2d{bottom:297.237000px;}
.y142{bottom:297.241500px;}
.yf1{bottom:298.779000px;}
.y16c{bottom:305.625000px;}
.y1b7{bottom:309.040500px;}
.y8c{bottom:309.312000px;}
.yc1{bottom:309.940500px;}
.y2c{bottom:312.853500px;}
.yf0{bottom:314.550000px;}
.y57{bottom:318.849000px;}
.y16b{bottom:321.241500px;}
.y13d{bottom:321.625500px;}
.y18b{bottom:323.067000px;}
.y8b{bottom:324.928500px;}
.y2b{bottom:328.470000px;}
.yef{bottom:330.166500px;}
.y1b6{bottom:332.331000px;}
.yc0{bottom:333.679500px;}
.y56{bottom:334.465500px;}
.y16a{bottom:336.858000px;}
.y13c{bottom:337.242000px;}
.y18a{bottom:338.683500px;}
.y2a{bottom:344.086500px;}
.yee{bottom:345.781500px;}
.y1b5{bottom:347.946000px;}
.y55{bottom:350.082000px;}
.y169{bottom:352.474500px;}
.y13b{bottom:352.858500px;}
.y189{bottom:354.300000px;}
.y8a{bottom:359.670000px;}
.y29{bottom:359.703000px;}
.yed{bottom:361.398000px;}
.ybf{bottom:362.556000px;}
.y1b4{bottom:363.562500px;}
.y54{bottom:365.698500px;}
.y13a{bottom:368.475000px;}
.y188{bottom:369.916500px;}
.ybe{bottom:371.677500px;}
.y28{bottom:375.319500px;}
.yec{bottom:377.014500px;}
.y1b3{bottom:379.179000px;}
.y53{bottom:381.313500px;}
.y139{bottom:384.091500px;}
.y187{bottom:385.533000px;}
.y27{bottom:390.936000px;}
.y168{bottom:391.321500px;}
.yeb{bottom:392.631000px;}
.y138{bottom:399.708000px;}
.y186{bottom:401.149500px;}
.y1b2{bottom:402.468000px;}
.y26{bottom:406.552500px;}
.y167{bottom:406.938000px;}
.yea{bottom:408.247500px;}
.ybd{bottom:413.823000px;}
.y137{bottom:415.324500px;}
.y1b1{bottom:418.084500px;}
.y185{bottom:418.206000px;}
.y25{bottom:422.169000px;}
.y166{bottom:422.554500px;}
.y89{bottom:422.989500px;}
.ye9{bottom:423.864000px;}
.y1df{bottom:427.473000px;}
.y52{bottom:428.112000px;}
.ybc{bottom:430.153500px;}
.y136{bottom:430.939500px;}
.y1b0{bottom:433.701000px;}
.y184{bottom:433.822500px;}
.y24{bottom:437.785500px;}
.y165{bottom:438.171000px;}
.y88{bottom:438.606000px;}
.ye8{bottom:439.635000px;}
.ybb{bottom:445.770000px;}
.y1de{bottom:449.067000px;}
.y1af{bottom:449.317500px;}
.y183{bottom:449.439000px;}
.y23{bottom:453.676500px;}
.y87{bottom:454.221000px;}
.ye7{bottom:455.251500px;}
.y162{bottom:461.290500px;}
.yba{bottom:461.386500px;}
.y135{bottom:461.631000px;}
.y182{bottom:465.055500px;}
.y164{bottom:469.098000px;}
.y22{bottom:469.293000px;}
.y86{bottom:469.837500px;}
.y1dd{bottom:470.661000px;}
.ye6{bottom:470.868000px;}
.y1ae{bottom:472.606500px;}
.y15f{bottom:476.667000px;}
.y161{bottom:476.907000px;}
.yb9{bottom:477.003000px;}
.y134{bottom:477.247500px;}
.y181{bottom:480.672000px;}
.y163{bottom:484.714500px;}
.y21{bottom:484.909500px;}
.y85{bottom:485.454000px;}
.y1dc{bottom:486.277500px;}
.ye5{bottom:486.484500px;}
.y1ad{bottom:488.223000px;}
.y160{bottom:492.523500px;}
.yb8{bottom:492.619500px;}
.y133{bottom:492.864000px;}
.y180{bottom:496.288500px;}
.y20{bottom:500.526000px;}
.y84{bottom:501.070500px;}
.y1db{bottom:501.894000px;}
.ye4{bottom:502.254000px;}
.y1ac{bottom:503.839500px;}
.yb7{bottom:508.236000px;}
.y17f{bottom:511.905000px;}
.y51{bottom:513.070500px;}
.y15e{bottom:513.238500px;}
.y1f{bottom:516.142500px;}
.y83{bottom:516.687000px;}
.ye3{bottom:517.870500px;}
.y1ab{bottom:519.456000px;}
.y106{bottom:523.423500px;}
.y1da{bottom:523.488000px;}
.yb6{bottom:523.852500px;}
.y17e{bottom:527.521500px;}
.y50{bottom:528.687000px;}
.y15d{bottom:528.855000px;}
.y1e{bottom:531.759000px;}
.y82{bottom:532.303500px;}
.ye2{bottom:533.487000px;}
.y1d9{bottom:539.104500px;}
.yb5{bottom:539.469000px;}
.y1aa{bottom:542.745000px;}
.y17d{bottom:543.138000px;}
.y4f{bottom:544.303500px;}
.y81{bottom:547.920000px;}
.ye1{bottom:549.103500px;}
.y1d8{bottom:554.721000px;}
.yb4{bottom:555.085500px;}
.y1a9{bottom:558.361500px;}
.y17c{bottom:558.754500px;}
.y4e{bottom:559.918500px;}
.y1d{bottom:561.793500px;}
.y80{bottom:563.536500px;}
.ye0{bottom:564.720000px;}
.y15c{bottom:568.218000px;}
.y1d7{bottom:570.337500px;}
.yb3{bottom:570.702000px;}
.y1a8{bottom:573.978000px;}
.y17b{bottom:574.371000px;}
.y4d{bottom:575.535000px;}
.y7f{bottom:579.153000px;}
.ydf{bottom:580.336500px;}
.y15b{bottom:583.834500px;}
.y1d6{bottom:585.954000px;}
.yb2{bottom:587.032500px;}
.y1a7{bottom:589.594500px;}
.y4c{bottom:591.151500px;}
.y7e{bottom:594.769500px;}
.yde{bottom:595.953000px;}
.y15a{bottom:599.451000px;}
.y1c{bottom:599.983500px;}
.yb1{bottom:602.649000px;}
.y1a6{bottom:605.211000px;}
.y4b{bottom:606.768000px;}
.y1d5{bottom:607.548000px;}
.y7d{bottom:610.386000px;}
.y17a{bottom:610.801500px;}
.ydd{bottom:611.569500px;}
.y159{bottom:615.067500px;}
.y1b{bottom:615.600000px;}
.yb0{bottom:618.265500px;}
.y4a{bottom:622.384500px;}
.y1d4{bottom:623.164500px;}
.y7c{bottom:626.002500px;}
.ydc{bottom:627.186000px;}
.y1a5{bottom:628.500000px;}
.y158{bottom:630.684000px;}
.yaf{bottom:633.882000px;}
.y49{bottom:638.001000px;}
.y1a{bottom:638.217000px;}
.y1d3{bottom:638.779500px;}
.y7b{bottom:641.619000px;}
.ydb{bottom:642.957000px;}
.y1a4{bottom:644.116500px;}
.y157{bottom:646.300500px;}
.yae{bottom:649.498500px;}
.y48{bottom:653.617500px;}
.y19{bottom:653.833500px;}
.y1d2{bottom:654.396000px;}
.yda{bottom:658.573500px;}
.y1a3{bottom:659.733000px;}
.y156{bottom:661.917000px;}
.y7a{bottom:662.785500px;}
.yad{bottom:665.115000px;}
.y47{bottom:669.234000px;}
.y18{bottom:669.450000px;}
.yd9{bottom:674.190000px;}
.y1a2{bottom:675.349500px;}
.y1d1{bottom:675.990000px;}
.y155{bottom:677.532000px;}
.y79{bottom:678.402000px;}
.yac{bottom:680.731500px;}
.y46{bottom:684.850500px;}
.y17{bottom:685.066500px;}
.yd8{bottom:689.806500px;}
.y1a1{bottom:690.966000px;}
.y1d0{bottom:691.606500px;}
.y154{bottom:693.148500px;}
.y78{bottom:694.018500px;}
.yab{bottom:696.348000px;}
.y45{bottom:700.467000px;}
.y16{bottom:700.683000px;}
.yd7{bottom:705.421500px;}
.y1cf{bottom:707.223000px;}
.y153{bottom:708.765000px;}
.y77{bottom:709.635000px;}
.y1a0{bottom:714.255000px;}
.y44{bottom:716.083500px;}
.y15{bottom:716.299500px;}
.yd6{bottom:721.038000px;}
.y76{bottom:725.251500px;}
.y1ce{bottom:728.817000px;}
.y19f{bottom:729.871500px;}
.yaa{bottom:731.326500px;}
.y43{bottom:731.700000px;}
.y14{bottom:731.914500px;}
.y75{bottom:740.868000px;}
.y1cd{bottom:744.433500px;}
.y152{bottom:744.888000px;}
.y19e{bottom:745.488000px;}
.y42{bottom:747.316500px;}
.y13{bottom:747.531000px;}
.y74{bottom:756.484500px;}
.yd5{bottom:757.560000px;}
.y1cc{bottom:760.050000px;}
.y151{bottom:760.504500px;}
.y19d{bottom:761.104500px;}
.y95{bottom:761.887500px;}
.y41{bottom:762.933000px;}
.y12{bottom:763.147500px;}
.y73{bottom:772.101000px;}
.y1cb{bottom:775.666500px;}
.y150{bottom:776.121000px;}
.y19c{bottom:776.721000px;}
.y40{bottom:778.549500px;}
.y11{bottom:778.764000px;}
.y72{bottom:787.717500px;}
.ycc{bottom:788.119500px;}
.y1ca{bottom:791.283000px;}
.y14f{bottom:791.737500px;}
.y3f{bottom:794.164500px;}
.y10{bottom:794.380500px;}
.y19b{bottom:800.010000px;}
.y71{bottom:803.334000px;}
.y1c9{bottom:806.899500px;}
.yf{bottom:809.997000px;}
.y14c{bottom:814.857000px;}
.y105{bottom:815.193000px;}
.y19a{bottom:815.626500px;}
.y70{bottom:818.950500px;}
.y3e{bottom:819.318000px;}
.y14e{bottom:822.666000px;}
.ye{bottom:825.613500px;}
.y1c8{bottom:828.493500px;}
.y149{bottom:830.235000px;}
.y14b{bottom:830.473500px;}
.y104{bottom:830.809500px;}
.y199{bottom:831.243000px;}
.y6f{bottom:834.565500px;}
.y3d{bottom:834.934500px;}
.y14d{bottom:838.282500px;}
.yd{bottom:841.230000px;}
.y1c7{bottom:844.110000px;}
.y14a{bottom:846.090000px;}
.y103{bottom:846.426000px;}
.y198{bottom:846.859500px;}
.y6e{bottom:850.182000px;}
.y3c{bottom:850.551000px;}
.yc{bottom:856.846500px;}
.y1c6{bottom:859.726500px;}
.y102{bottom:862.042500px;}
.y197{bottom:862.476000px;}
.y6d{bottom:865.798500px;}
.y3b{bottom:866.167500px;}
.y148{bottom:866.805000px;}
.yb{bottom:872.463000px;}
.y101{bottom:877.659000px;}
.y1c5{bottom:881.320500px;}
.y6c{bottom:881.415000px;}
.y3a{bottom:881.784000px;}
.y147{bottom:882.421500px;}
.y196{bottom:885.765000px;}
.y100{bottom:893.275500px;}
.y1c4{bottom:896.937000px;}
.y6b{bottom:897.031500px;}
.ya{bottom:897.400500px;}
.y195{bottom:901.381500px;}
.y179{bottom:907.450500px;}
.yff{bottom:908.892000px;}
.y1c3{bottom:912.553500px;}
.y6a{bottom:912.648000px;}
.y194{bottom:916.998000px;}
.y178{bottom:923.067000px;}
.yfe{bottom:924.508500px;}
.y69{bottom:928.264500px;}
.y193{bottom:932.614500px;}
.ycb{bottom:933.778500px;}
.y1c2{bottom:934.147500px;}
.y177{bottom:938.683500px;}
.yfd{bottom:940.125000px;}
.y68{bottom:943.881000px;}
.y192{bottom:948.231000px;}
.y1c1{bottom:949.762500px;}
.y9{bottom:953.425500px;}
.y176{bottom:954.300000px;}
.yfc{bottom:955.741500px;}
.y94{bottom:956.143500px;}
.y67{bottom:959.497500px;}
.y1c0{bottom:965.379000px;}
.yca{bottom:971.358000px;}
.y191{bottom:971.520000px;}
.y93{bottom:971.758500px;}
.y66{bottom:975.114000px;}
.y1bf{bottom:980.995500px;}
.y6{bottom:986.974500px;}
.y190{bottom:987.136500px;}
.y92{bottom:987.375000px;}
.y65{bottom:990.730500px;}
.y8{bottom:993.175500px;}
.yfb{bottom:1002.589500px;}
.y5{bottom:1002.591000px;}
.y18f{bottom:1002.753000px;}
.y91{bottom:1002.991500px;}
.yfa{bottom:1018.206000px;}
.y4{bottom:1018.207500px;}
.y18e{bottom:1018.369500px;}
.y90{bottom:1018.608000px;}
.y64{bottom:1025.472000px;}
.y7{bottom:1033.225500px;}
.y3{bottom:1033.822500px;}
.y18d{bottom:1033.984500px;}
.y8f{bottom:1034.224500px;}
.y2{bottom:1049.439000px;}
.y1{bottom:1065.055500px;}
.h1b{height:0.000000px;}
.h15{height:11.658021px;}
.he{height:13.320553px;}
.h13{height:13.765811px;}
.h16{height:13.989625px;}
.hf{height:15.538980px;}
.hb{height:17.757406px;}
.ha{height:22.204253px;}
.h19{height:24.890726px;}
.hd{height:26.641106px;}
.h1a{height:26.899200px;}
.h7{height:32.900573px;}
.h1d{height:36.744307px;}
.h1{height:37.013299px;}
.h1c{height:37.277299px;}
.h1e{height:37.283299px;}
.h5{height:37.336090px;}
.h6{height:37.605082px;}
.h8{height:40.348800px;}
.h17{height:43.978838px;}
.hc{height:44.270551px;}
.h18{height:46.966838px;}
.h3{height:48.992410px;}
.h4{height:49.351066px;}
.h2{height:49.781453px;}
.h11{height:73.499299px;}
.h10{height:91.566000px;}
.h12{height:113.124000px;}
.h9{height:171.982899px;}
.h14{height:271.058400px;}
.h0{height:1188.000000px;}
.w3{width:361.411200px;}
.w2{width:361.416000px;}
.w1{width:361.424910px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2e{left:5.937050px;}
.x2d{left:7.843909px;}
.x10{left:10.671084px;}
.xf{left:12.496306px;}
.xe{left:14.556268px;}
.x11{left:20.489439px;}
.x2b{left:22.345500px;}
.x23{left:27.068580px;}
.x24{left:28.740690px;}
.x18{left:54.852485px;}
.x25{left:78.348600px;}
.x2{left:81.637500px;}
.x22{left:83.764500px;}
.x2c{left:88.817410px;}
.x41{left:91.512000px;}
.x16{left:92.842022px;}
.x1{left:104.053500px;}
.x19{left:111.357729px;}
.x5{left:141.409500px;}
.x12{left:143.862018px;}
.x34{left:145.183597px;}
.x29{left:146.541000px;}
.x3{left:149.847000px;}
.x27{left:164.567700px;}
.x4{left:168.114000px;}
.x2a{left:169.371000px;}
.x31{left:184.948535px;}
.x30{left:186.855394px;}
.x1c{left:188.917705px;}
.x2f{left:192.840679px;}
.x7{left:201.798000px;}
.x3b{left:203.733000px;}
.x3c{left:205.608000px;}
.xb{left:206.854500px;}
.x32{left:208.639674px;}
.x48{left:210.183000px;}
.x42{left:212.091000px;}
.x28{left:215.651700px;}
.x1a{left:218.116473px;}
.x6{left:228.226500px;}
.x13{left:259.411532px;}
.x14{left:261.088245px;}
.x17{left:265.160264px;}
.x15{left:267.316038px;}
.x49{left:268.510500px;}
.x33{left:272.132810px;}
.x43{left:290.398500px;}
.x3e{left:292.275000px;}
.x3d{left:293.767500px;}
.x26{left:308.880000px;}
.x1b{left:315.461669px;}
.x44{left:356.143500px;}
.x3f{left:358.020000px;}
.x45{left:383.904000px;}
.x40{left:385.780500px;}
.x8{left:472.819500px;}
.xd{left:474.945000px;}
.xc{left:479.842500px;}
.x9{left:495.235500px;}
.x20{left:498.000000px;}
.x46{left:501.058500px;}
.x4a{left:502.698000px;}
.x4b{left:507.928500px;}
.x21{left:510.178500px;}
.x1d{left:560.310000px;}
.x1e{left:568.081500px;}
.x35{left:574.116000px;}
.xa{left:591.049500px;}
.x47{left:600.994500px;}
.x36{left:637.030500px;}
.x1f{left:656.883000px;}
.x38{left:666.955500px;}
.x39{left:668.008500px;}
.x37{left:674.199000px;}
.x3a{left:689.226000px;}
@media print{
.v7{vertical-align:-7.472000pt;}
.v3{vertical-align:-5.312000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:3.662155pt;}
.v1{vertical-align:15.670618pt;}
.va{vertical-align:20.314667pt;}
.vb{vertical-align:22.970667pt;}
.v6{vertical-align:24.192000pt;}
.v5{vertical-align:30.917333pt;}
.v9{vertical-align:32.432000pt;}
.v8{vertical-align:45.525333pt;}
.v4{vertical-align:81.392000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.000099pt;}
.ls20{letter-spacing:0.000500pt;}
.lsd{letter-spacing:0.001242pt;}
.lsb{letter-spacing:0.001592pt;}
.ls25{letter-spacing:0.011884pt;}
.ls23{letter-spacing:0.012873pt;}
.ls1b{letter-spacing:0.020180pt;}
.ls9{letter-spacing:1.386803pt;}
.ls13{letter-spacing:2.652701pt;}
.ls21{letter-spacing:2.655010pt;}
.ls29{letter-spacing:2.655527pt;}
.ls11{letter-spacing:2.655884pt;}
.ls16{letter-spacing:2.658034pt;}
.lsc{letter-spacing:2.660343pt;}
.lsf{letter-spacing:3.091608pt;}
.ls15{letter-spacing:3.319489pt;}
.ls31{letter-spacing:3.989709pt;}
.lse{letter-spacing:4.223996pt;}
.ls14{letter-spacing:4.500586pt;}
.ls1c{letter-spacing:4.505919pt;}
.ls7{letter-spacing:5.164646pt;}
.ls1d{letter-spacing:9.325056pt;}
.ls2a{letter-spacing:10.042368pt;}
.ls12{letter-spacing:10.846857pt;}
.ls1e{letter-spacing:11.970034pt;}
.ls2f{letter-spacing:12.863795pt;}
.ls24{letter-spacing:12.866034pt;}
.ls2c{letter-spacing:12.959437pt;}
.ls26{letter-spacing:13.055078pt;}
.ls3{letter-spacing:13.533286pt;}
.ls1f{letter-spacing:14.610034pt;}
.lsa{letter-spacing:14.615368pt;}
.ls2e{letter-spacing:15.015731pt;}
.ls28{letter-spacing:15.350477pt;}
.ls27{letter-spacing:15.506034pt;}
.ls4{letter-spacing:15.924326pt;}
.ls2b{letter-spacing:16.308861pt;}
.ls22{letter-spacing:16.545997pt;}
.ls19{letter-spacing:16.641638pt;}
.ls1a{letter-spacing:18.028442pt;}
.ls2{letter-spacing:18.697933pt;}
.ls6{letter-spacing:19.606528pt;}
.ls5{letter-spacing:19.654349pt;}
.ls8{letter-spacing:20.276019pt;}
.ls30{letter-spacing:21.901926pt;}
.ls2d{letter-spacing:22.116861pt;}
.ls1{letter-spacing:23.145267pt;}
.ls18{letter-spacing:26.588365pt;}
.ls17{letter-spacing:416.011855pt;}
.ws80{word-spacing:-32.063846pt;}
.ws82{word-spacing:-26.122909pt;}
.ws83{word-spacing:-23.886490pt;}
.ws85{word-spacing:-13.652838pt;}
.ws45{word-spacing:-11.955200pt;}
.wsaa{word-spacing:-10.500135pt;}
.ws74{word-spacing:-6.312091pt;}
.ws72{word-spacing:-5.260865pt;}
.wsa8{word-spacing:-4.758170pt;}
.ws73{word-spacing:-4.207271pt;}
.ws89{word-spacing:-3.261540pt;}
.ws76{word-spacing:-3.156045pt;}
.ws8e{word-spacing:-2.869248pt;}
.ws8{word-spacing:-2.773606pt;}
.ws6a{word-spacing:-2.725786pt;}
.ws7e{word-spacing:-2.677965pt;}
.ws3d{word-spacing:-2.630144pt;}
.ws96{word-spacing:-2.534502pt;}
.ws10{word-spacing:-2.438861pt;}
.ws3{word-spacing:-2.391040pt;}
.ws6f{word-spacing:-2.343219pt;}
.ws13{word-spacing:-2.295398pt;}
.wsc3{word-spacing:-2.247578pt;}
.ws6e{word-spacing:-2.199757pt;}
.ws0{word-spacing:-2.104115pt;}
.wsc9{word-spacing:-2.056294pt;}
.wsa{word-spacing:-2.008474pt;}
.ws77{word-spacing:-1.960653pt;}
.ws70{word-spacing:-1.912832pt;}
.ws3e{word-spacing:-1.865011pt;}
.wsbd{word-spacing:-1.817190pt;}
.ws12{word-spacing:-1.769370pt;}
.ws6b{word-spacing:-1.625907pt;}
.ws4{word-spacing:-1.578086pt;}
.ws11{word-spacing:-1.434624pt;}
.ws2a{word-spacing:-1.386803pt;}
.wsc8{word-spacing:-1.338982pt;}
.ws6d{word-spacing:-1.243341pt;}
.ws61{word-spacing:-1.195520pt;}
.ws2f{word-spacing:-1.190202pt;}
.ws68{word-spacing:-1.147699pt;}
.ws34{word-spacing:-1.099878pt;}
.ws3f{word-spacing:-1.052058pt;}
.wsaf{word-spacing:-1.004237pt;}
.wsc4{word-spacing:-0.956416pt;}
.ws99{word-spacing:-0.908595pt;}
.ws1{word-spacing:-0.860774pt;}
.wsb{word-spacing:-0.812954pt;}
.wsd1{word-spacing:-0.765133pt;}
.ws14{word-spacing:-0.669491pt;}
.ws9c{word-spacing:-0.526029pt;}
.ws3a{word-spacing:-0.478208pt;}
.ws5c{word-spacing:-0.430387pt;}
.ws7c{word-spacing:-0.382566pt;}
.wsc6{word-spacing:-0.334746pt;}
.ws32{word-spacing:-0.191283pt;}
.wsb8{word-spacing:-0.143462pt;}
.ws25{word-spacing:-0.095642pt;}
.ws7{word-spacing:-0.047821pt;}
.ws81{word-spacing:-0.023910pt;}
.ws5{word-spacing:0.000000pt;}
.ws9d{word-spacing:0.023910pt;}
.ws1d{word-spacing:0.047821pt;}
.ws47{word-spacing:0.095642pt;}
.ws2e{word-spacing:0.170029pt;}
.ws30{word-spacing:0.191283pt;}
.ws94{word-spacing:0.239104pt;}
.ws67{word-spacing:0.286925pt;}
.ws9f{word-spacing:0.334746pt;}
.ws7d{word-spacing:0.382566pt;}
.ws53{word-spacing:0.430387pt;}
.ws88{word-spacing:0.478208pt;}
.wsb7{word-spacing:0.526029pt;}
.wsc2{word-spacing:0.621670pt;}
.ws44{word-spacing:0.669491pt;}
.ws95{word-spacing:0.765133pt;}
.ws1c{word-spacing:0.860774pt;}
.ws56{word-spacing:0.908595pt;}
.wsa3{word-spacing:0.956416pt;}
.ws21{word-spacing:1.004237pt;}
.ws1f{word-spacing:1.052058pt;}
.ws59{word-spacing:1.099878pt;}
.ws5d{word-spacing:1.147699pt;}
.ws71{word-spacing:1.195520pt;}
.ws2{word-spacing:1.243341pt;}
.wsc0{word-spacing:1.291162pt;}
.ws92{word-spacing:1.338982pt;}
.ws91{word-spacing:1.434624pt;}
.wse8{word-spacing:1.482445pt;}
.wsa5{word-spacing:1.530266pt;}
.ws27{word-spacing:1.578086pt;}
.ws9b{word-spacing:1.625907pt;}
.ws98{word-spacing:1.721549pt;}
.wsa6{word-spacing:1.769370pt;}
.ws22{word-spacing:1.817190pt;}
.ws2c{word-spacing:1.912824pt;}
.ws40{word-spacing:1.912832pt;}
.ws50{word-spacing:1.960653pt;}
.ws5a{word-spacing:2.056294pt;}
.ws55{word-spacing:2.104115pt;}
.wsa1{word-spacing:2.151936pt;}
.wsa0{word-spacing:2.199757pt;}
.ws5f{word-spacing:2.247578pt;}
.ws79{word-spacing:2.295398pt;}
.ws1e{word-spacing:2.343219pt;}
.ws1b{word-spacing:2.391040pt;}
.ws24{word-spacing:2.438861pt;}
.wsba{word-spacing:2.486682pt;}
.ws60{word-spacing:2.534502pt;}
.ws4a{word-spacing:2.582323pt;}
.ws39{word-spacing:2.630144pt;}
.ws87{word-spacing:2.677965pt;}
.wsf{word-spacing:2.725786pt;}
.ws65{word-spacing:2.773606pt;}
.ws42{word-spacing:2.821427pt;}
.ws29{word-spacing:2.869248pt;}
.ws7a{word-spacing:2.964890pt;}
.ws3b{word-spacing:3.012710pt;}
.wsab{word-spacing:3.060531pt;}
.wsc1{word-spacing:3.108352pt;}
.ws31{word-spacing:3.156173pt;}
.ws17{word-spacing:3.203994pt;}
.ws49{word-spacing:3.251814pt;}
.wsc5{word-spacing:3.299635pt;}
.ws19{word-spacing:3.347456pt;}
.ws62{word-spacing:3.395277pt;}
.ws33{word-spacing:3.443098pt;}
.ws23{word-spacing:3.490918pt;}
.ws66{word-spacing:3.586560pt;}
.ws51{word-spacing:3.634381pt;}
.ws37{word-spacing:3.682202pt;}
.ws26{word-spacing:3.777843pt;}
.ws1a{word-spacing:3.825664pt;}
.wsc7{word-spacing:3.873485pt;}
.ws63{word-spacing:3.921306pt;}
.ws64{word-spacing:3.969126pt;}
.ws48{word-spacing:4.016947pt;}
.wsad{word-spacing:4.064768pt;}
.ws2b{word-spacing:4.208230pt;}
.ws4c{word-spacing:4.351693pt;}
.wsbb{word-spacing:4.447334pt;}
.wse{word-spacing:4.495155pt;}
.wse3{word-spacing:4.542976pt;}
.ws57{word-spacing:4.590797pt;}
.ws84{word-spacing:4.686438pt;}
.ws9{word-spacing:4.734259pt;}
.ws8b{word-spacing:4.829901pt;}
.wsea{word-spacing:4.877722pt;}
.ws28{word-spacing:4.925542pt;}
.ws78{word-spacing:5.021184pt;}
.ws15{word-spacing:5.164646pt;}
.ws97{word-spacing:5.260288pt;}
.ws52{word-spacing:5.403750pt;}
.ws6c{word-spacing:5.499392pt;}
.ws54{word-spacing:5.547213pt;}
.wsb5{word-spacing:5.595034pt;}
.ws7b{word-spacing:5.642854pt;}
.ws8a{word-spacing:5.690675pt;}
.wsac{word-spacing:5.810227pt;}
.ws4d{word-spacing:5.834138pt;}
.ws36{word-spacing:5.881958pt;}
.ws8d{word-spacing:5.977600pt;}
.wsb4{word-spacing:6.073242pt;}
.wsb3{word-spacing:6.121062pt;}
.ws46{word-spacing:6.168883pt;}
.wsda{word-spacing:6.216704pt;}
.ws7f{word-spacing:6.312346pt;}
.wsb1{word-spacing:6.360166pt;}
.ws4b{word-spacing:6.455808pt;}
.wse6{word-spacing:6.503629pt;}
.wsb0{word-spacing:6.527539pt;}
.ws69{word-spacing:6.599270pt;}
.ws4e{word-spacing:6.742733pt;}
.wsec{word-spacing:6.790554pt;}
.ws43{word-spacing:6.886195pt;}
.ws38{word-spacing:6.934016pt;}
.wsb2{word-spacing:6.981837pt;}
.wsdd{word-spacing:7.029658pt;}
.wsa7{word-spacing:7.077478pt;}
.ws9a{word-spacing:7.125299pt;}
.ws9e{word-spacing:7.173120pt;}
.ws90{word-spacing:7.364403pt;}
.ws20{word-spacing:7.507866pt;}
.ws5e{word-spacing:7.603507pt;}
.ws5b{word-spacing:7.699149pt;}
.ws3c{word-spacing:7.746970pt;}
.wsb9{word-spacing:7.794790pt;}
.ws93{word-spacing:8.129536pt;}
.ws86{word-spacing:8.177357pt;}
.wsce{word-spacing:8.272998pt;}
.wsa4{word-spacing:8.655565pt;}
.ws2d{word-spacing:8.671469pt;}
.wscc{word-spacing:8.703386pt;}
.wse4{word-spacing:8.846848pt;}
.ws58{word-spacing:9.325056pt;}
.wsd5{word-spacing:9.564160pt;}
.wsd{word-spacing:9.803264pt;}
.wsbf{word-spacing:9.994547pt;}
.wse1{word-spacing:10.042368pt;}
.ws8c{word-spacing:10.233651pt;}
.ws8f{word-spacing:10.568397pt;}
.wsdf{word-spacing:10.664038pt;}
.wsc{word-spacing:11.094426pt;}
.wsd2{word-spacing:11.476992pt;}
.wsd3{word-spacing:11.572634pt;}
.wsd6{word-spacing:11.763917pt;}
.ws41{word-spacing:11.907379pt;}
.ws35{word-spacing:11.955200pt;}
.wsae{word-spacing:12.337766pt;}
.wsb6{word-spacing:12.433408pt;}
.wsd7{word-spacing:12.529050pt;}
.ws4f{word-spacing:12.863795pt;}
.wscd{word-spacing:12.911616pt;}
.wse7{word-spacing:13.102899pt;}
.wsdb{word-spacing:13.342003pt;}
.wscf{word-spacing:13.676749pt;}
.wsd0{word-spacing:14.441882pt;}
.wse5{word-spacing:14.967910pt;}
.ws16{word-spacing:15.159194pt;}
.wsbe{word-spacing:15.446118pt;}
.wsd8{word-spacing:15.685222pt;}
.wse9{word-spacing:15.780864pt;}
.ws6{word-spacing:15.876506pt;}
.wse0{word-spacing:15.924326pt;}
.wsdc{word-spacing:16.163430pt;}
.wsd4{word-spacing:16.211251pt;}
.wse2{word-spacing:16.402534pt;}
.wsbc{word-spacing:16.641638pt;}
.wsd9{word-spacing:16.689459pt;}
.wscb{word-spacing:18.219725pt;}
.wsde{word-spacing:18.984858pt;}
.wseb{word-spacing:19.510886pt;}
.wsca{word-spacing:22.858342pt;}
.ws18{word-spacing:28.644659pt;}
.ws75{word-spacing:37.924853pt;}
.wsa2{word-spacing:65.446119pt;}
.wsa9{word-spacing:280.939865pt;}
._21{margin-left:-721.851918pt;}
._5{margin-left:-5.690675pt;}
._f{margin-left:-4.542976pt;}
._3{margin-left:-3.570620pt;}
._4{margin-left:-2.630144pt;}
._1{margin-left:-1.530266pt;}
._19{width:1.644342pt;}
._1a{width:2.554750pt;}
._20{width:9.133773pt;}
._2{width:10.616218pt;}
._16{width:12.417468pt;}
._1e{width:13.342003pt;}
._0{width:14.298419pt;}
._13{width:15.637402pt;}
._10{width:16.545997pt;}
._6{width:17.598054pt;}
._8{width:18.554470pt;}
._24{width:19.558707pt;}
._11{width:20.562944pt;}
._7{width:22.045389pt;}
._a{width:23.336550pt;}
._c{width:24.292966pt;}
._9{width:25.249382pt;}
._17{width:26.301440pt;}
._b{width:27.496960pt;}
._e{width:28.692480pt;}
._18{width:30.700954pt;}
._12{width:31.705190pt;}
._1f{width:33.952768pt;}
._d{width:35.387392pt;}
._23{width:36.726374pt;}
._15{width:37.682790pt;}
._33{width:38.926131pt;}
._32{width:40.536098pt;}
._35{width:41.779439pt;}
._14{width:42.703974pt;}
._22{width:44.951552pt;}
._34{width:49.733632pt;}
._36{width:52.507238pt;}
._2d{width:134.759014pt;}
._2c{width:159.769293pt;}
._2e{width:165.316506pt;}
._26{width:166.703309pt;}
._2a{width:171.724493pt;}
._1b{width:175.602522pt;}
._29{width:178.658509pt;}
._27{width:201.612493pt;}
._1d{width:208.754856pt;}
._30{width:211.846144pt;}
._31{width:225.522893pt;}
._1c{width:238.156400pt;}
._2b{width:248.955085pt;}
._25{width:251.585229pt;}
._28{width:256.941158pt;}
._2f{width:294.097920pt;}
.fsc{font-size:11.154667pt;}
.fs7{font-size:11.352681pt;}
.fsb{font-size:11.732160pt;}
.fs8{font-size:12.485394pt;}
.fs6{font-size:13.243375pt;}
.fsd{font-size:13.385600pt;}
.fs4{font-size:15.134069pt;}
.fs3{font-size:18.923974pt;}
.fs5{font-size:22.705362pt;}
.fsa{font-size:26.566933pt;}
.fs9{font-size:31.880533pt;}
.fs2{font-size:42.507200pt;}
.fs0{font-size:47.820800pt;}
.fs1{font-size:63.761067pt;}
.y0{bottom:0.000000pt;}
.ya7{bottom:9.836719pt;}
.y11d{bottom:11.047129pt;}
.yce{bottom:14.121067pt;}
.y11c{bottom:14.859759pt;}
.ya9{bottom:21.781307pt;}
.y12a{bottom:21.985705pt;}
.yd0{bottom:30.621067pt;}
.y11e{bottom:32.434540pt;}
.y12b{bottom:32.944581pt;}
.ya5{bottom:34.322059pt;}
.yd4{bottom:35.399467pt;}
.y12c{bottom:43.903457pt;}
.ya6{bottom:48.289349pt;}
.y11f{bottom:49.446644pt;}
.y12d{bottom:54.862333pt;}
.ycd{bottom:56.519467pt;}
.yd3{bottom:56.572267pt;}
.ycf{bottom:57.945067pt;}
.ya1{bottom:59.382272pt;}
.yd2{bottom:60.426667pt;}
.y123{bottom:60.694023pt;}
.y98{bottom:62.682470pt;}
.ya0{bottom:62.959261pt;}
.yd1{bottom:64.307467pt;}
.y12e{bottom:65.821209pt;}
.y120{bottom:66.458749pt;}
.y97{bottom:68.920909pt;}
.y96{bottom:75.159348pt;}
.y12f{bottom:76.780085pt;}
.y121{bottom:83.470853pt;}
.ya8{bottom:86.039356pt;}
.ya3{bottom:86.103230pt;}
.y130{bottom:87.738961pt;}
.y129{bottom:88.467313pt;}
.y9c{bottom:90.169926pt;}
.y9f{bottom:91.851962pt;}
.y128{bottom:92.558810pt;}
.y39{bottom:94.488000pt;}
.ya2{bottom:96.110282pt;}
.y9b{bottom:96.408365pt;}
.y127{bottom:96.650307pt;}
.y9e{bottom:96.855488pt;}
.ya4{bottom:97.153571pt;}
.y131{bottom:98.697837pt;}
.y122{bottom:100.482958pt;}
.y126{bottom:100.741803pt;}
.y9d{bottom:101.837723pt;}
.y9a{bottom:102.668095pt;}
.y125{bottom:104.833300pt;}
.y38{bottom:106.476000pt;}
.y63{bottom:108.369333pt;}
.y124{bottom:111.133944pt;}
.y108{bottom:117.362257pt;}
.y37{bottom:118.465333pt;}
.y107{bottom:121.174887pt;}
.y62{bottom:122.250667pt;}
.yf9{bottom:122.388000pt;}
.y99{bottom:125.279774pt;}
.y116{bottom:128.283640pt;}
.y109{bottom:128.300316pt;}
.y175{bottom:130.320000pt;}
.y36{bottom:130.453333pt;}
.y61{bottom:136.132000pt;}
.yf8{bottom:136.269333pt;}
.y35{bottom:142.441333pt;}
.y10a{bottom:145.531434pt;}
.y117{bottom:145.563290pt;}
.y60{bottom:150.013333pt;}
.yf7{bottom:150.150667pt;}
.yc9{bottom:150.648000pt;}
.y174{bottom:160.617333pt;}
.y10b{bottom:162.762551pt;}
.y118{bottom:162.842940pt;}
.y8e{bottom:163.893333pt;}
.y5f{bottom:163.894667pt;}
.yf6{bottom:164.030667pt;}
.yc8{bottom:164.529333pt;}
.y34{bottom:166.797333pt;}
.y10f{bottom:167.009151pt;}
.y1be{bottom:170.714667pt;}
.y173{bottom:174.498667pt;}
.y8d{bottom:177.774667pt;}
.y5e{bottom:177.776000pt;}
.yf5{bottom:177.912000pt;}
.yc7{bottom:178.410667pt;}
.y10c{bottom:179.993669pt;}
.y119{bottom:180.122590pt;}
.y33{bottom:180.678667pt;}
.y1bd{bottom:184.596000pt;}
.y172{bottom:188.380000pt;}
.y5d{bottom:191.656000pt;}
.y146{bottom:191.657333pt;}
.yc6{bottom:192.292000pt;}
.y32{bottom:194.560000pt;}
.y115{bottom:194.782441pt;}
.y10d{bottom:197.224786pt;}
.y11a{bottom:197.402240pt;}
.y1bc{bottom:198.477333pt;}
.y114{bottom:198.873938pt;}
.y171{bottom:202.261333pt;}
.y113{bottom:202.965434pt;}
.yf4{bottom:204.416000pt;}
.y5c{bottom:205.537333pt;}
.y145{bottom:205.538667pt;}
.yc5{bottom:206.173333pt;}
.y112{bottom:207.056931pt;}
.y31{bottom:208.441333pt;}
.y111{bottom:211.148428pt;}
.y1bb{bottom:212.357333pt;}
.y10e{bottom:214.455904pt;}
.y11b{bottom:214.681890pt;}
.y170{bottom:216.142667pt;}
.y110{bottom:217.449072pt;}
.y5b{bottom:219.418667pt;}
.y30{bottom:222.322667pt;}
.yc4{bottom:227.274667pt;}
.y16f{bottom:230.024000pt;}
.y1ba{bottom:233.060000pt;}
.y5a{bottom:233.300000pt;}
.y132{bottom:233.577326pt;}
.y144{bottom:235.422667pt;}
.y2f{bottom:236.204000pt;}
.yf3{bottom:237.818667pt;}
.yc3{bottom:241.156000pt;}
.y141{bottom:241.162667pt;}
.y13f{bottom:241.744000pt;}
.y16e{bottom:243.905333pt;}
.y1b9{bottom:246.941333pt;}
.y59{bottom:247.181333pt;}
.y18c{bottom:247.992000pt;}
.y13e{bottom:249.270667pt;}
.y2e{bottom:250.329333pt;}
.yf2{bottom:251.700000pt;}
.y140{bottom:257.002667pt;}
.y16d{bottom:257.786667pt;}
.y143{bottom:260.628000pt;}
.y1b8{bottom:260.821333pt;}
.y58{bottom:261.062667pt;}
.yc2{bottom:261.621333pt;}
.y2d{bottom:264.210667pt;}
.y142{bottom:264.214667pt;}
.yf1{bottom:265.581333pt;}
.y16c{bottom:271.666667pt;}
.y1b7{bottom:274.702667pt;}
.y8c{bottom:274.944000pt;}
.yc1{bottom:275.502667pt;}
.y2c{bottom:278.092000pt;}
.yf0{bottom:279.600000pt;}
.y57{bottom:283.421333pt;}
.y16b{bottom:285.548000pt;}
.y13d{bottom:285.889333pt;}
.y18b{bottom:287.170667pt;}
.y8b{bottom:288.825333pt;}
.y2b{bottom:291.973333pt;}
.yef{bottom:293.481333pt;}
.y1b6{bottom:295.405333pt;}
.yc0{bottom:296.604000pt;}
.y56{bottom:297.302667pt;}
.y16a{bottom:299.429333pt;}
.y13c{bottom:299.770667pt;}
.y18a{bottom:301.052000pt;}
.y2a{bottom:305.854667pt;}
.yee{bottom:307.361333pt;}
.y1b5{bottom:309.285333pt;}
.y55{bottom:311.184000pt;}
.y169{bottom:313.310667pt;}
.y13b{bottom:313.652000pt;}
.y189{bottom:314.933333pt;}
.y8a{bottom:319.706667pt;}
.y29{bottom:319.736000pt;}
.yed{bottom:321.242667pt;}
.ybf{bottom:322.272000pt;}
.y1b4{bottom:323.166667pt;}
.y54{bottom:325.065333pt;}
.y13a{bottom:327.533333pt;}
.y188{bottom:328.814667pt;}
.ybe{bottom:330.380000pt;}
.y28{bottom:333.617333pt;}
.yec{bottom:335.124000pt;}
.y1b3{bottom:337.048000pt;}
.y53{bottom:338.945333pt;}
.y139{bottom:341.414667pt;}
.y187{bottom:342.696000pt;}
.y27{bottom:347.498667pt;}
.y168{bottom:347.841333pt;}
.yeb{bottom:349.005333pt;}
.y138{bottom:355.296000pt;}
.y186{bottom:356.577333pt;}
.y1b2{bottom:357.749333pt;}
.y26{bottom:361.380000pt;}
.y167{bottom:361.722667pt;}
.yea{bottom:362.886667pt;}
.ybd{bottom:367.842667pt;}
.y137{bottom:369.177333pt;}
.y1b1{bottom:371.630667pt;}
.y185{bottom:371.738667pt;}
.y25{bottom:375.261333pt;}
.y166{bottom:375.604000pt;}
.y89{bottom:375.990667pt;}
.ye9{bottom:376.768000pt;}
.y1df{bottom:379.976000pt;}
.y52{bottom:380.544000pt;}
.ybc{bottom:382.358667pt;}
.y136{bottom:383.057333pt;}
.y1b0{bottom:385.512000pt;}
.y184{bottom:385.620000pt;}
.y24{bottom:389.142667pt;}
.y165{bottom:389.485333pt;}
.y88{bottom:389.872000pt;}
.ye8{bottom:390.786667pt;}
.ybb{bottom:396.240000pt;}
.y1de{bottom:399.170667pt;}
.y1af{bottom:399.393333pt;}
.y183{bottom:399.501333pt;}
.y23{bottom:403.268000pt;}
.y87{bottom:403.752000pt;}
.ye7{bottom:404.668000pt;}
.y162{bottom:410.036000pt;}
.yba{bottom:410.121333pt;}
.y135{bottom:410.338667pt;}
.y182{bottom:413.382667pt;}
.y164{bottom:416.976000pt;}
.y22{bottom:417.149333pt;}
.y86{bottom:417.633333pt;}
.y1dd{bottom:418.365333pt;}
.ye6{bottom:418.549333pt;}
.y1ae{bottom:420.094667pt;}
.y15f{bottom:423.704000pt;}
.y161{bottom:423.917333pt;}
.yb9{bottom:424.002667pt;}
.y134{bottom:424.220000pt;}
.y181{bottom:427.264000pt;}
.y163{bottom:430.857333pt;}
.y21{bottom:431.030667pt;}
.y85{bottom:431.514667pt;}
.y1dc{bottom:432.246667pt;}
.ye5{bottom:432.430667pt;}
.y1ad{bottom:433.976000pt;}
.y160{bottom:437.798667pt;}
.yb8{bottom:437.884000pt;}
.y133{bottom:438.101333pt;}
.y180{bottom:441.145333pt;}
.y20{bottom:444.912000pt;}
.y84{bottom:445.396000pt;}
.y1db{bottom:446.128000pt;}
.ye4{bottom:446.448000pt;}
.y1ac{bottom:447.857333pt;}
.yb7{bottom:451.765333pt;}
.y17f{bottom:455.026667pt;}
.y51{bottom:456.062667pt;}
.y15e{bottom:456.212000pt;}
.y1f{bottom:458.793333pt;}
.y83{bottom:459.277333pt;}
.ye3{bottom:460.329333pt;}
.y1ab{bottom:461.738667pt;}
.y106{bottom:465.265333pt;}
.y1da{bottom:465.322667pt;}
.yb6{bottom:465.646667pt;}
.y17e{bottom:468.908000pt;}
.y50{bottom:469.944000pt;}
.y15d{bottom:470.093333pt;}
.y1e{bottom:472.674667pt;}
.y82{bottom:473.158667pt;}
.ye2{bottom:474.210667pt;}
.y1d9{bottom:479.204000pt;}
.yb5{bottom:479.528000pt;}
.y1aa{bottom:482.440000pt;}
.y17d{bottom:482.789333pt;}
.y4f{bottom:483.825333pt;}
.y81{bottom:487.040000pt;}
.ye1{bottom:488.092000pt;}
.y1d8{bottom:493.085333pt;}
.yb4{bottom:493.409333pt;}
.y1a9{bottom:496.321333pt;}
.y17c{bottom:496.670667pt;}
.y4e{bottom:497.705333pt;}
.y1d{bottom:499.372000pt;}
.y80{bottom:500.921333pt;}
.ye0{bottom:501.973333pt;}
.y15c{bottom:505.082667pt;}
.y1d7{bottom:506.966667pt;}
.yb3{bottom:507.290667pt;}
.y1a8{bottom:510.202667pt;}
.y17b{bottom:510.552000pt;}
.y4d{bottom:511.586667pt;}
.y7f{bottom:514.802667pt;}
.ydf{bottom:515.854667pt;}
.y15b{bottom:518.964000pt;}
.y1d6{bottom:520.848000pt;}
.yb2{bottom:521.806667pt;}
.y1a7{bottom:524.084000pt;}
.y4c{bottom:525.468000pt;}
.y7e{bottom:528.684000pt;}
.yde{bottom:529.736000pt;}
.y15a{bottom:532.845333pt;}
.y1c{bottom:533.318667pt;}
.yb1{bottom:535.688000pt;}
.y1a6{bottom:537.965333pt;}
.y4b{bottom:539.349333pt;}
.y1d5{bottom:540.042667pt;}
.y7d{bottom:542.565333pt;}
.y17a{bottom:542.934667pt;}
.ydd{bottom:543.617333pt;}
.y159{bottom:546.726667pt;}
.y1b{bottom:547.200000pt;}
.yb0{bottom:549.569333pt;}
.y4a{bottom:553.230667pt;}
.y1d4{bottom:553.924000pt;}
.y7c{bottom:556.446667pt;}
.ydc{bottom:557.498667pt;}
.y1a5{bottom:558.666667pt;}
.y158{bottom:560.608000pt;}
.yaf{bottom:563.450667pt;}
.y49{bottom:567.112000pt;}
.y1a{bottom:567.304000pt;}
.y1d3{bottom:567.804000pt;}
.y7b{bottom:570.328000pt;}
.ydb{bottom:571.517333pt;}
.y1a4{bottom:572.548000pt;}
.y157{bottom:574.489333pt;}
.yae{bottom:577.332000pt;}
.y48{bottom:580.993333pt;}
.y19{bottom:581.185333pt;}
.y1d2{bottom:581.685333pt;}
.yda{bottom:585.398667pt;}
.y1a3{bottom:586.429333pt;}
.y156{bottom:588.370667pt;}
.y7a{bottom:589.142667pt;}
.yad{bottom:591.213333pt;}
.y47{bottom:594.874667pt;}
.y18{bottom:595.066667pt;}
.yd9{bottom:599.280000pt;}
.y1a2{bottom:600.310667pt;}
.y1d1{bottom:600.880000pt;}
.y155{bottom:602.250667pt;}
.y79{bottom:603.024000pt;}
.yac{bottom:605.094667pt;}
.y46{bottom:608.756000pt;}
.y17{bottom:608.948000pt;}
.yd8{bottom:613.161333pt;}
.y1a1{bottom:614.192000pt;}
.y1d0{bottom:614.761333pt;}
.y154{bottom:616.132000pt;}
.y78{bottom:616.905333pt;}
.yab{bottom:618.976000pt;}
.y45{bottom:622.637333pt;}
.y16{bottom:622.829333pt;}
.yd7{bottom:627.041333pt;}
.y1cf{bottom:628.642667pt;}
.y153{bottom:630.013333pt;}
.y77{bottom:630.786667pt;}
.y1a0{bottom:634.893333pt;}
.y44{bottom:636.518667pt;}
.y15{bottom:636.710667pt;}
.yd6{bottom:640.922667pt;}
.y76{bottom:644.668000pt;}
.y1ce{bottom:647.837333pt;}
.y19f{bottom:648.774667pt;}
.yaa{bottom:650.068000pt;}
.y43{bottom:650.400000pt;}
.y14{bottom:650.590667pt;}
.y75{bottom:658.549333pt;}
.y1cd{bottom:661.718667pt;}
.y152{bottom:662.122667pt;}
.y19e{bottom:662.656000pt;}
.y42{bottom:664.281333pt;}
.y13{bottom:664.472000pt;}
.y74{bottom:672.430667pt;}
.yd5{bottom:673.386667pt;}
.y1cc{bottom:675.600000pt;}
.y151{bottom:676.004000pt;}
.y19d{bottom:676.537333pt;}
.y95{bottom:677.233333pt;}
.y41{bottom:678.162667pt;}
.y12{bottom:678.353333pt;}
.y73{bottom:686.312000pt;}
.y1cb{bottom:689.481333pt;}
.y150{bottom:689.885333pt;}
.y19c{bottom:690.418667pt;}
.y40{bottom:692.044000pt;}
.y11{bottom:692.234667pt;}
.y72{bottom:700.193333pt;}
.ycc{bottom:700.550667pt;}
.y1ca{bottom:703.362667pt;}
.y14f{bottom:703.766667pt;}
.y3f{bottom:705.924000pt;}
.y10{bottom:706.116000pt;}
.y19b{bottom:711.120000pt;}
.y71{bottom:714.074667pt;}
.y1c9{bottom:717.244000pt;}
.yf{bottom:719.997333pt;}
.y14c{bottom:724.317333pt;}
.y105{bottom:724.616000pt;}
.y19a{bottom:725.001333pt;}
.y70{bottom:727.956000pt;}
.y3e{bottom:728.282667pt;}
.y14e{bottom:731.258667pt;}
.ye{bottom:733.878667pt;}
.y1c8{bottom:736.438667pt;}
.y149{bottom:737.986667pt;}
.y14b{bottom:738.198667pt;}
.y104{bottom:738.497333pt;}
.y199{bottom:738.882667pt;}
.y6f{bottom:741.836000pt;}
.y3d{bottom:742.164000pt;}
.y14d{bottom:745.140000pt;}
.yd{bottom:747.760000pt;}
.y1c7{bottom:750.320000pt;}
.y14a{bottom:752.080000pt;}
.y103{bottom:752.378667pt;}
.y198{bottom:752.764000pt;}
.y6e{bottom:755.717333pt;}
.y3c{bottom:756.045333pt;}
.yc{bottom:761.641333pt;}
.y1c6{bottom:764.201333pt;}
.y102{bottom:766.260000pt;}
.y197{bottom:766.645333pt;}
.y6d{bottom:769.598667pt;}
.y3b{bottom:769.926667pt;}
.y148{bottom:770.493333pt;}
.yb{bottom:775.522667pt;}
.y101{bottom:780.141333pt;}
.y1c5{bottom:783.396000pt;}
.y6c{bottom:783.480000pt;}
.y3a{bottom:783.808000pt;}
.y147{bottom:784.374667pt;}
.y196{bottom:787.346667pt;}
.y100{bottom:794.022667pt;}
.y1c4{bottom:797.277333pt;}
.y6b{bottom:797.361333pt;}
.ya{bottom:797.689333pt;}
.y195{bottom:801.228000pt;}
.y179{bottom:806.622667pt;}
.yff{bottom:807.904000pt;}
.y1c3{bottom:811.158667pt;}
.y6a{bottom:811.242667pt;}
.y194{bottom:815.109333pt;}
.y178{bottom:820.504000pt;}
.yfe{bottom:821.785333pt;}
.y69{bottom:825.124000pt;}
.y193{bottom:828.990667pt;}
.ycb{bottom:830.025333pt;}
.y1c2{bottom:830.353333pt;}
.y177{bottom:834.385333pt;}
.yfd{bottom:835.666667pt;}
.y68{bottom:839.005333pt;}
.y192{bottom:842.872000pt;}
.y1c1{bottom:844.233333pt;}
.y9{bottom:847.489333pt;}
.y176{bottom:848.266667pt;}
.yfc{bottom:849.548000pt;}
.y94{bottom:849.905333pt;}
.y67{bottom:852.886667pt;}
.y1c0{bottom:858.114667pt;}
.yca{bottom:863.429333pt;}
.y191{bottom:863.573333pt;}
.y93{bottom:863.785333pt;}
.y66{bottom:866.768000pt;}
.y1bf{bottom:871.996000pt;}
.y6{bottom:877.310667pt;}
.y190{bottom:877.454667pt;}
.y92{bottom:877.666667pt;}
.y65{bottom:880.649333pt;}
.y8{bottom:882.822667pt;}
.yfb{bottom:891.190667pt;}
.y5{bottom:891.192000pt;}
.y18f{bottom:891.336000pt;}
.y91{bottom:891.548000pt;}
.yfa{bottom:905.072000pt;}
.y4{bottom:905.073333pt;}
.y18e{bottom:905.217333pt;}
.y90{bottom:905.429333pt;}
.y64{bottom:911.530667pt;}
.y7{bottom:918.422667pt;}
.y3{bottom:918.953333pt;}
.y18d{bottom:919.097333pt;}
.y8f{bottom:919.310667pt;}
.y2{bottom:932.834667pt;}
.y1{bottom:946.716000pt;}
.h1b{height:0.000000pt;}
.h15{height:10.362685pt;}
.he{height:11.840492pt;}
.h13{height:12.236276pt;}
.h16{height:12.435222pt;}
.hf{height:13.812426pt;}
.hb{height:15.784361pt;}
.ha{height:19.737114pt;}
.h19{height:22.125090pt;}
.hd{height:23.680983pt;}
.h1a{height:23.910400pt;}
.h7{height:29.244954pt;}
.h1d{height:32.661606pt;}
.h1{height:32.900710pt;}
.h1c{height:33.135377pt;}
.h1e{height:33.140710pt;}
.h5{height:33.187635pt;}
.h6{height:33.426739pt;}
.h8{height:35.865600pt;}
.h17{height:39.092301pt;}
.hc{height:39.351601pt;}
.h18{height:41.748301pt;}
.h3{height:43.548809pt;}
.h4{height:43.867614pt;}
.h2{height:44.250180pt;}
.h11{height:65.332710pt;}
.h10{height:81.392000pt;}
.h12{height:100.554667pt;}
.h9{height:152.873688pt;}
.h14{height:240.940800pt;}
.h0{height:1056.000000pt;}
.w3{width:321.254400pt;}
.w2{width:321.258667pt;}
.w1{width:321.266587pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2e{left:5.277377pt;}
.x2d{left:6.972364pt;}
.x10{left:9.485408pt;}
.xf{left:11.107828pt;}
.xe{left:12.938905pt;}
.x11{left:18.212835pt;}
.x2b{left:19.862667pt;}
.x23{left:24.060960pt;}
.x24{left:25.547280pt;}
.x18{left:48.757764pt;}
.x25{left:69.643200pt;}
.x2{left:72.566667pt;}
.x22{left:74.457333pt;}
.x2c{left:78.948809pt;}
.x41{left:81.344000pt;}
.x16{left:82.526242pt;}
.x1{left:92.492000pt;}
.x19{left:98.984648pt;}
.x5{left:125.697333pt;}
.x12{left:127.877350pt;}
.x34{left:129.052086pt;}
.x29{left:130.258667pt;}
.x3{left:133.197333pt;}
.x27{left:146.282400pt;}
.x4{left:149.434667pt;}
.x2a{left:150.552000pt;}
.x31{left:164.398697pt;}
.x30{left:166.093684pt;}
.x1c{left:167.926849pt;}
.x2f{left:171.413937pt;}
.x7{left:179.376000pt;}
.x3b{left:181.096000pt;}
.x3c{left:182.762667pt;}
.xb{left:183.870667pt;}
.x32{left:185.457488pt;}
.x48{left:186.829333pt;}
.x42{left:188.525333pt;}
.x28{left:191.690400pt;}
.x1a{left:193.881310pt;}
.x6{left:202.868000pt;}
.x13{left:230.588028pt;}
.x14{left:232.078440pt;}
.x17{left:235.698012pt;}
.x15{left:237.614256pt;}
.x49{left:238.676000pt;}
.x33{left:241.895831pt;}
.x43{left:258.132000pt;}
.x3e{left:259.800000pt;}
.x3d{left:261.126667pt;}
.x26{left:274.560000pt;}
.x1b{left:280.410372pt;}
.x44{left:316.572000pt;}
.x3f{left:318.240000pt;}
.x45{left:341.248000pt;}
.x40{left:342.916000pt;}
.x8{left:420.284000pt;}
.xd{left:422.173333pt;}
.xc{left:426.526667pt;}
.x9{left:440.209333pt;}
.x20{left:442.666667pt;}
.x46{left:445.385333pt;}
.x4a{left:446.842667pt;}
.x4b{left:451.492000pt;}
.x21{left:453.492000pt;}
.x1d{left:498.053333pt;}
.x1e{left:504.961333pt;}
.x35{left:510.325333pt;}
.xa{left:525.377333pt;}
.x47{left:534.217333pt;}
.x36{left:566.249333pt;}
.x1f{left:583.896000pt;}
.x38{left:592.849333pt;}
.x39{left:593.785333pt;}
.x37{left:599.288000pt;}
.x3a{left:612.645333pt;}
}




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