
    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_8831336c6591433e52af9594.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.131000;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_7384a04cc44d80dc1796f76d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.012000;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_bb87a5d64cc1323fa2328d57.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.135000;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_02414fe124280fa55d71ebbf.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.081000;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_9c4a16eb53271430caa2e108.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.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:ff6;src:url('chunks/assets/font_e95e407f35bf67601d9ad915.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.734000;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_4682d5c0e99e91995934f211.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.956000;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_1a1686b202ad9dd56e919f37.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.941000;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_36864348da67e41156f8a290.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_f3a48da598551df4deb230c7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.958000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m6{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;}
.v1{vertical-align:18.781200px;}
.ls8{letter-spacing:-0.564000px;}
.ls6{letter-spacing:-0.432000px;}
.ls2{letter-spacing:-0.420000px;}
.ls9{letter-spacing:-0.328812px;}
.lse{letter-spacing:-0.282000px;}
.ls7{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.172800px;}
.lsf{letter-spacing:-0.164406px;}
.ls1{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.172800px;}
.ls4{letter-spacing:0.216000px;}
.ls0{letter-spacing:0.432000px;}
.ls3{letter-spacing:2.592000px;}
.ls5{letter-spacing:5.663520px;}
.lsa{letter-spacing:6.134400px;}
.lsd{letter-spacing:33.187021px;}
.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;}
}
.ws31{word-spacing:-16.694400px;}
.wsec{word-spacing:-16.412400px;}
.wsed{word-spacing:-11.400000px;}
.wsee{word-spacing:-10.800000px;}
.ws7a{word-spacing:-9.732835px;}
.ws1{word-spacing:-9.072000px;}
.ws0{word-spacing:-9.000000px;}
.ws50{word-spacing:-8.640000px;}
.wsa4{word-spacing:-8.424000px;}
.ws9d{word-spacing:-8.208000px;}
.wscc{word-spacing:-3.327600px;}
.wsa5{word-spacing:-3.271200px;}
.ws83{word-spacing:-3.158400px;}
.ws88{word-spacing:-3.110400px;}
.ws8e{word-spacing:-3.045600px;}
.ws1b{word-spacing:-2.989200px;}
.ws82{word-spacing:-2.932800px;}
.wse2{word-spacing:-2.876400px;}
.ws65{word-spacing:-2.820000px;}
.wsbf{word-spacing:-2.763600px;}
.wsdd{word-spacing:-2.650800px;}
.ws5b{word-spacing:-2.594400px;}
.ws28{word-spacing:-2.538000px;}
.ws86{word-spacing:-2.481600px;}
.wsb5{word-spacing:-2.425200px;}
.wsde{word-spacing:-2.368800px;}
.wsc{word-spacing:-2.256000px;}
.wsa3{word-spacing:-2.203200px;}
.ws6{word-spacing:-2.143200px;}
.ws60{word-spacing:-2.086800px;}
.ws93{word-spacing:-2.030400px;}
.wsd9{word-spacing:-1.974000px;}
.wsab{word-spacing:-1.917600px;}
.wsd2{word-spacing:-1.861200px;}
.ws18{word-spacing:-1.804800px;}
.ws2a{word-spacing:-1.748400px;}
.ws92{word-spacing:-1.692000px;}
.ws51{word-spacing:-1.635600px;}
.ws3{word-spacing:-1.579200px;}
.ws58{word-spacing:-1.522800px;}
.wsb8{word-spacing:-1.466400px;}
.wsf4{word-spacing:-1.458000px;}
.ws2c{word-spacing:-1.425600px;}
.ws20{word-spacing:-1.353600px;}
.ws119{word-spacing:-1.350000px;}
.ws67{word-spacing:-1.297200px;}
.ws5d{word-spacing:-1.296000px;}
.ws6e{word-spacing:-1.240800px;}
.ws55{word-spacing:-1.184400px;}
.wsfe{word-spacing:-1.170000px;}
.ws90{word-spacing:-1.128000px;}
.wsa{word-spacing:-1.071600px;}
.ws42{word-spacing:-1.036800px;}
.ws105{word-spacing:-1.035000px;}
.ws3c{word-spacing:-1.015200px;}
.wsd4{word-spacing:-0.958800px;}
.ws3d{word-spacing:-0.902400px;}
.wscb{word-spacing:-0.846000px;}
.ws2d{word-spacing:-0.820800px;}
.ws7c{word-spacing:-0.789600px;}
.ws13e{word-spacing:-0.702000px;}
.ws14{word-spacing:-0.676800px;}
.wsc0{word-spacing:-0.648000px;}
.ws111{word-spacing:-0.630000px;}
.ws80{word-spacing:-0.564000px;}
.ws8{word-spacing:-0.507600px;}
.ws3a{word-spacing:-0.394800px;}
.wsf9{word-spacing:-0.378000px;}
.ws41{word-spacing:-0.345600px;}
.ws21{word-spacing:-0.338400px;}
.ws78{word-spacing:-0.302400px;}
.ws118{word-spacing:-0.270000px;}
.ws4f{word-spacing:-0.259200px;}
.ws47{word-spacing:-0.225600px;}
.ws12c{word-spacing:-0.225000px;}
.ws133{word-spacing:-0.180000px;}
.ws66{word-spacing:-0.169200px;}
.ws6c{word-spacing:-0.112800px;}
.ws32{word-spacing:-0.056400px;}
.ws12{word-spacing:-0.043200px;}
.ws11{word-spacing:-0.032881px;}
.ws2{word-spacing:0.000000px;}
.ws13d{word-spacing:0.054000px;}
.ws49{word-spacing:0.056400px;}
.ws26{word-spacing:0.112800px;}
.wsc6{word-spacing:0.129600px;}
.ws106{word-spacing:0.135000px;}
.wsf1{word-spacing:0.164406px;}
.ws7f{word-spacing:0.169200px;}
.ws2f{word-spacing:0.172800px;}
.wsaf{word-spacing:0.216000px;}
.wse0{word-spacing:0.282000px;}
.wsb9{word-spacing:0.328812px;}
.ws54{word-spacing:0.338400px;}
.ws115{word-spacing:0.360000px;}
.wsbb{word-spacing:0.394800px;}
.wsdc{word-spacing:0.432000px;}
.ws1c{word-spacing:0.451200px;}
.ws112{word-spacing:0.495000px;}
.ws52{word-spacing:0.507600px;}
.wsbe{word-spacing:0.564000px;}
.ws120{word-spacing:0.585000px;}
.wsef{word-spacing:0.620400px;}
.wsa9{word-spacing:0.676800px;}
.ws94{word-spacing:0.733200px;}
.ws39{word-spacing:0.789600px;}
.ws7{word-spacing:0.846000px;}
.wsfc{word-spacing:0.855000px;}
.wseb{word-spacing:0.902400px;}
.ws13c{word-spacing:0.918000px;}
.ws13a{word-spacing:0.945000px;}
.ws104{word-spacing:0.990000px;}
.wsca{word-spacing:1.015200px;}
.ws126{word-spacing:1.035000px;}
.ws5e{word-spacing:1.036800px;}
.wsaa{word-spacing:1.071600px;}
.ws75{word-spacing:1.128000px;}
.ws45{word-spacing:1.184400px;}
.ws17{word-spacing:1.240800px;}
.ws4e{word-spacing:1.297200px;}
.ws130{word-spacing:1.305000px;}
.ws9c{word-spacing:1.410000px;}
.ws30{word-spacing:1.425600px;}
.ws97{word-spacing:1.466400px;}
.wsb6{word-spacing:1.522800px;}
.wsf6{word-spacing:1.566000px;}
.ws3e{word-spacing:1.579200px;}
.ws1a{word-spacing:1.635600px;}
.ws13b{word-spacing:1.674000px;}
.wsbd{word-spacing:1.692000px;}
.ws2b{word-spacing:1.728000px;}
.ws44{word-spacing:1.748400px;}
.ws10f{word-spacing:1.800000px;}
.ws5c{word-spacing:1.804800px;}
.ws53{word-spacing:1.861200px;}
.ws91{word-spacing:1.917600px;}
.ws113{word-spacing:1.935000px;}
.wsf2{word-spacing:1.944000px;}
.ws72{word-spacing:1.974000px;}
.ws69{word-spacing:2.030400px;}
.ws11f{word-spacing:2.070000px;}
.wsac{word-spacing:2.143200px;}
.wsb0{word-spacing:2.203200px;}
.wsc8{word-spacing:2.256000px;}
.ws101{word-spacing:2.295000px;}
.ws7d{word-spacing:2.312400px;}
.wsd{word-spacing:2.368800px;}
.ws3f{word-spacing:2.376000px;}
.ws132{word-spacing:2.385000px;}
.ws2e{word-spacing:2.419200px;}
.wsb7{word-spacing:2.425200px;}
.ws134{word-spacing:2.430000px;}
.ws10a{word-spacing:2.475000px;}
.ws6b{word-spacing:2.481600px;}
.ws27{word-spacing:2.538000px;}
.ws5f{word-spacing:2.592000px;}
.wsb{word-spacing:2.650800px;}
.ws11c{word-spacing:2.655000px;}
.wsbc{word-spacing:2.707200px;}
.ws4c{word-spacing:2.763600px;}
.ws4a{word-spacing:2.820000px;}
.ws61{word-spacing:2.876400px;}
.ws10d{word-spacing:2.925000px;}
.ws64{word-spacing:2.932800px;}
.wsda{word-spacing:2.937600px;}
.ws29{word-spacing:2.989200px;}
.ws116{word-spacing:3.015000px;}
.ws71{word-spacing:3.045600px;}
.ws121{word-spacing:3.060000px;}
.ws5a{word-spacing:3.102000px;}
.wsc2{word-spacing:3.153600px;}
.ws9b{word-spacing:3.158400px;}
.ws33{word-spacing:3.214800px;}
.ws4{word-spacing:3.327600px;}
.ws24{word-spacing:3.384000px;}
.wsdb{word-spacing:3.412800px;}
.ws59{word-spacing:3.440400px;}
.ws1f{word-spacing:3.496800px;}
.wsb2{word-spacing:3.553200px;}
.ws110{word-spacing:3.600000px;}
.ws57{word-spacing:3.609600px;}
.ws108{word-spacing:3.645000px;}
.ws8f{word-spacing:3.666000px;}
.wsa8{word-spacing:3.722400px;}
.wsf8{word-spacing:3.726000px;}
.ws1d{word-spacing:3.778800px;}
.ws10c{word-spacing:3.780000px;}
.ws79{word-spacing:3.801600px;}
.ws4b{word-spacing:3.835200px;}
.ws19{word-spacing:3.891600px;}
.wsce{word-spacing:3.931200px;}
.ws3b{word-spacing:3.948000px;}
.wsfb{word-spacing:3.996000px;}
.ws37{word-spacing:4.004400px;}
.ws8b{word-spacing:4.017600px;}
.ws12b{word-spacing:4.050000px;}
.ws35{word-spacing:4.060800px;}
.ws117{word-spacing:4.095000px;}
.ws22{word-spacing:4.117200px;}
.ws63{word-spacing:4.173600px;}
.ws137{word-spacing:4.185000px;}
.ws7e{word-spacing:4.230000px;}
.ws76{word-spacing:4.233600px;}
.ws34{word-spacing:4.286400px;}
.wsfd{word-spacing:4.320000px;}
.wsc3{word-spacing:4.449600px;}
.ws12f{word-spacing:4.455000px;}
.wsb1{word-spacing:4.455600px;}
.wsf3{word-spacing:4.482000px;}
.ws70{word-spacing:4.512000px;}
.wsba{word-spacing:4.568400px;}
.ws11d{word-spacing:4.590000px;}
.ws25{word-spacing:4.624800px;}
.ws9a{word-spacing:4.681200px;}
.ws8d{word-spacing:4.737600px;}
.ws84{word-spacing:4.794000px;}
.wsd1{word-spacing:4.850400px;}
.wsff{word-spacing:4.860000px;}
.ws16{word-spacing:4.906800px;}
.wsfa{word-spacing:4.968000px;}
.wsf7{word-spacing:5.022000px;}
.wsf5{word-spacing:5.076000px;}
.ws38{word-spacing:5.132400px;}
.ws87{word-spacing:5.184000px;}
.ws140{word-spacing:5.292000px;}
.ws62{word-spacing:5.301600px;}
.ws131{word-spacing:5.355000px;}
.ws6d{word-spacing:5.358000px;}
.ws11b{word-spacing:5.400000px;}
.wsb4{word-spacing:5.414400px;}
.ws12a{word-spacing:5.490000px;}
.wse9{word-spacing:5.527200px;}
.ws77{word-spacing:5.529600px;}
.wse{word-spacing:5.572800px;}
.ws9{word-spacing:5.583600px;}
.wsae{word-spacing:5.616000px;}
.ws7b{word-spacing:5.640000px;}
.wsa2{word-spacing:5.659200px;}
.ws5{word-spacing:5.696400px;}
.ws81{word-spacing:5.752800px;}
.wse3{word-spacing:5.809200px;}
.wse5{word-spacing:5.865600px;}
.ws48{word-spacing:5.922000px;}
.ws56{word-spacing:5.978400px;}
.ws13{word-spacing:6.034800px;}
.wsc1{word-spacing:6.048000px;}
.wse6{word-spacing:6.091200px;}
.ws89{word-spacing:6.134400px;}
.ws95{word-spacing:6.147600px;}
.ws40{word-spacing:6.177600px;}
.ws8a{word-spacing:6.307200px;}
.wsf0{word-spacing:6.316800px;}
.ws12d{word-spacing:6.345000px;}
.wsea{word-spacing:6.373200px;}
.ws98{word-spacing:6.429600px;}
.ws23{word-spacing:6.542400px;}
.ws114{word-spacing:6.570000px;}
.wsdf{word-spacing:6.598800px;}
.ws125{word-spacing:6.750000px;}
.ws4d{word-spacing:6.768000px;}
.ws103{word-spacing:6.795000px;}
.wsd5{word-spacing:6.824400px;}
.ws9e{word-spacing:6.825600px;}
.ws136{word-spacing:6.840000px;}
.ws46{word-spacing:6.880800px;}
.ws1e{word-spacing:6.937200px;}
.wsd3{word-spacing:7.050000px;}
.wscf{word-spacing:7.084800px;}
.wsd0{word-spacing:7.106400px;}
.ws11a{word-spacing:7.200000px;}
.ws74{word-spacing:7.219200px;}
.wsc7{word-spacing:7.444800px;}
.ws138{word-spacing:7.515000px;}
.wse1{word-spacing:7.557600px;}
.ws15{word-spacing:7.614000px;}
.ws6f{word-spacing:7.783200px;}
.ws36{word-spacing:7.896000px;}
.ws6a{word-spacing:7.952400px;}
.ws100{word-spacing:8.100000px;}
.ws99{word-spacing:8.290800px;}
.wse4{word-spacing:8.347200px;}
.ws96{word-spacing:8.403600px;}
.ws102{word-spacing:8.415000px;}
.ws73{word-spacing:8.460000px;}
.ws43{word-spacing:8.510400px;}
.wsb3{word-spacing:8.572800px;}
.ws10{word-spacing:8.640000px;}
.wsd8{word-spacing:8.685600px;}
.ws68{word-spacing:8.742000px;}
.wsc9{word-spacing:8.911200px;}
.ws109{word-spacing:9.000000px;}
.wse8{word-spacing:9.080400px;}
.ws127{word-spacing:9.090000px;}
.wsd6{word-spacing:9.136800px;}
.wsa6{word-spacing:9.249600px;}
.ws85{word-spacing:9.306000px;}
.wsa7{word-spacing:9.362400px;}
.ws107{word-spacing:9.810000px;}
.wsd7{word-spacing:9.813600px;}
.wsad{word-spacing:10.065600px;}
.ws8c{word-spacing:10.095600px;}
.ws13f{word-spacing:10.260000px;}
.wsc4{word-spacing:10.540800px;}
.ws128{word-spacing:10.935000px;}
.wsa0{word-spacing:11.534400px;}
.ws129{word-spacing:11.700000px;}
.wse7{word-spacing:12.182400px;}
.ws12e{word-spacing:12.375000px;}
.ws10b{word-spacing:12.825000px;}
.ws135{word-spacing:13.185000px;}
.ws122{word-spacing:13.770000px;}
.ws11e{word-spacing:14.760000px;}
.wsc5{word-spacing:15.940800px;}
.wsa1{word-spacing:15.984000px;}
.ws139{word-spacing:16.110000px;}
.wsf{word-spacing:16.977600px;}
.ws124{word-spacing:18.630000px;}
.ws10e{word-spacing:18.945000px;}
.wscd{word-spacing:19.094400px;}
.ws123{word-spacing:26.685000px;}
.ws9f{word-spacing:32.140800px;}
._2{margin-left:-12.696000px;}
._e{margin-left:-9.984000px;}
._d{margin-left:-7.728000px;}
._7{margin-left:-6.390120px;}
._6{margin-left:-5.188800px;}
._4{margin-left:-3.770400px;}
._3{margin-left:-2.484000px;}
._5{margin-left:-1.015200px;}
._1{width:1.914000px;}
._a{width:3.001415px;}
._10{width:4.179240px;}
._11{width:5.779200px;}
._13{width:6.838080px;}
._c{width:25.313951px;}
._f{width:27.257951px;}
._12{width:28.553951px;}
._8{width:29.763551px;}
._b{width:31.491551px;}
._9{width:33.566054px;}
._0{width:2237.895000px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,94,163);}
.fc1{color:rgb(135,20,110);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:32.881200px;}
.fs5{font-size:43.200000px;}
.fs0{font-size:45.000000px;}
.fs8{font-size:54.000000px;}
.fs4{font-size:56.400000px;}
.fs7{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs3{font-size:84.000000px;}
.fs2{font-size:138.000000px;}
.y0{bottom:0.000000px;}
.y5c{bottom:103.953600px;}
.y92{bottom:103.957350px;}
.yf1{bottom:103.960650px;}
.y85{bottom:103.960800px;}
.y93{bottom:103.960950px;}
.y15e{bottom:103.965150px;}
.y166{bottom:103.965450px;}
.yf0{bottom:103.969050px;}
.y44{bottom:104.169750px;}
.y12c{bottom:104.173200px;}
.yd2{bottom:104.176950px;}
.y12b{bottom:104.178000px;}
.y13{bottom:104.432100px;}
.y5b{bottom:116.557200px;}
.y90{bottom:116.557350px;}
.y172{bottom:116.560800px;}
.y91{bottom:116.560950px;}
.y43{bottom:116.773350px;}
.y168{bottom:118.210650px;}
.yef{bottom:118.214250px;}
.yd1{bottom:118.422150px;}
.y12a{bottom:118.423200px;}
.y144{bottom:123.931650px;}
.y84{bottom:123.945150px;}
.y165{bottom:124.213050px;}
.y5a{bottom:129.160800px;}
.y8f{bottom:129.160950px;}
.yee{bottom:132.459450px;}
.y129{bottom:132.676800px;}
.y42{bottom:136.762200px;}
.y59{bottom:141.760800px;}
.y143{bottom:143.911650px;}
.y83{bottom:143.929650px;}
.ye5{bottom:144.460650px;}
.yc9{bottom:144.463050px;}
.ye4{bottom:144.467850px;}
.y128{bottom:146.922000px;}
.yd0{bottom:146.923350px;}
.ycf{bottom:146.928150px;}
.y142{bottom:156.515250px;}
.y41{bottom:156.742200px;}
.yb2{bottom:160.173750px;}
.yed{bottom:160.960650px;}
.yec{bottom:160.965450px;}
.yce{bottom:161.173350px;}
.y58{bottom:161.745300px;}
.y82{bottom:163.910400px;}
.y14c{bottom:163.914000px;}
.yc8{bottom:164.710650px;}
.y12{bottom:164.712900px;}
.ye3{bottom:164.715450px;}
.y8e{bottom:164.722650px;}
.y15d{bottom:164.725050px;}
.y1a5{bottom:165.854400px;}
.y141{bottom:169.118850px;}
.y40{bottom:169.342200px;}
.y1d9{bottom:169.923000px;}
.yb1{bottom:172.777350px;}
.yeb{bottom:175.210650px;}
.yea{bottom:175.215450px;}
.y127{bottom:175.423200px;}
.y126{bottom:175.431600px;}
.y81{bottom:176.514000px;}
.y1a4{bottom:180.108150px;}
.y140{bottom:181.722450px;}
.y57{bottom:181.729650px;}
.y1d8{bottom:184.176750px;}
.y11{bottom:184.960500px;}
.y164{bottom:184.960650px;}
.ye2{bottom:184.963050px;}
.yc7{bottom:184.965450px;}
.y10{bottom:184.967700px;}
.y8d{bottom:184.970250px;}
.y15c{bottom:184.972650px;}
.y104{bottom:184.996650px;}
.yb0{bottom:185.380950px;}
.y3f{bottom:189.326700px;}
.ye9{bottom:189.460650px;}
.ye8{bottom:189.465450px;}
.y125{bottom:189.676800px;}
.y13f{bottom:194.326050px;}
.y1a3{bottom:194.361900px;}
.y80{bottom:196.498500px;}
.yaf{bottom:197.984550px;}
.y56{bottom:201.718500px;}
.y1d7{bottom:202.683000px;}
.ye7{bottom:203.710650px;}
.y124{bottom:203.922000px;}
.yc6{bottom:205.213050px;}
.yf{bottom:205.215300px;}
.y14b{bottom:205.215450px;}
.y8c{bottom:205.217850px;}
.y15b{bottom:205.220250px;}
.ye1{bottom:205.241850px;}
.y103{bottom:205.244250px;}
.y13e{bottom:206.929650px;}
.y3e{bottom:209.311050px;}
.y10a{bottom:209.664900px;}
.y109{bottom:209.669700px;}
.yae{bottom:210.588150px;}
.y1a2{bottom:212.868150px;}
.y7f{bottom:216.482850px;}
.y1d6{bottom:216.693150px;}
.ye6{bottom:217.960650px;}
.y55{bottom:221.698500px;}
.yad{bottom:223.191750px;}
.y108{bottom:223.914900px;}
.ye{bottom:225.462900px;}
.yc5{bottom:225.463050px;}
.y8b{bottom:225.465450px;}
.y15a{bottom:225.467850px;}
.ye0{bottom:225.489450px;}
.y102{bottom:225.491850px;}
.y13d{bottom:226.914000px;}
.y1a1{bottom:227.121900px;}
.y3d{bottom:229.292700px;}
.y123{bottom:232.423200px;}
.y122{bottom:232.432800px;}
.y54{bottom:234.298500px;}
.y1d5{bottom:235.199400px;}
.y1a0{bottom:241.375650px;}
.yac{bottom:243.176100px;}
.yd{bottom:245.710500px;}
.yc4{bottom:245.710650px;}
.y8a{bottom:245.713050px;}
.yc3{bottom:245.715450px;}
.ydf{bottom:245.737050px;}
.y101{bottom:245.739450px;}
.y121{bottom:246.678000px;}
.y3c{bottom:249.272700px;}
.y1d4{bottom:249.453150px;}
.y19f{bottom:259.881900px;}
.y120{bottom:260.923200px;}
.y3b{bottom:261.876300px;}
.yab{bottom:263.153400px;}
.y89{bottom:265.960650px;}
.y7e{bottom:265.963050px;}
.yc{bottom:265.974900px;}
.y163{bottom:265.975050px;}
.yde{bottom:265.984650px;}
.y100{bottom:265.987050px;}
.y1d3{bottom:267.959400px;}
.y19e{bottom:274.135650px;}
.y3a{bottom:274.479900px;}
.yaa{bottom:275.757000px;}
.y1d2{bottom:282.213150px;}
.y7d{bottom:286.210650px;}
.y13c{bottom:286.213050px;}
.y53{bottom:286.217850px;}
.y7c{bottom:286.220250px;}
.yb{bottom:286.222500px;}
.y11f{bottom:286.222650px;}
.ydd{bottom:286.232250px;}
.yff{bottom:286.234650px;}
.y14a{bottom:286.237050px;}
.y39{bottom:287.079900px;}
.ya9{bottom:288.360600px;}
.y19d{bottom:288.389400px;}
.y1d1{bottom:296.466900px;}
.y52{bottom:306.465450px;}
.y7b{bottom:306.467850px;}
.ya{bottom:306.470100px;}
.y11e{bottom:306.470250px;}
.y13b{bottom:306.472650px;}
.ydc{bottom:306.479850px;}
.yfe{bottom:306.482250px;}
.y149{bottom:306.484650px;}
.y19c{bottom:306.895650px;}
.y38{bottom:307.064250px;}
.ya8{bottom:308.344950px;}
.y1d0{bottom:310.720650px;}
.y19b{bottom:321.149400px;}
.y1cf{bottom:324.974400px;}
.y51{bottom:326.713050px;}
.y7a{bottom:326.715450px;}
.y9{bottom:326.717700px;}
.y11d{bottom:326.717850px;}
.y13a{bottom:326.720250px;}
.ydb{bottom:326.727450px;}
.yfd{bottom:326.729850px;}
.yc2{bottom:326.732250px;}
.y159{bottom:326.751450px;}
.y37{bottom:327.048600px;}
.y36{bottom:327.053100px;}
.y19a{bottom:335.403150px;}
.y1ce{bottom:339.228150px;}
.y171{bottom:346.960650px;}
.y50{bottom:346.963050px;}
.y8{bottom:346.965300px;}
.y11c{bottom:346.965450px;}
.y139{bottom:346.967850px;}
.yda{bottom:346.975050px;}
.yfc{bottom:346.977450px;}
.yc1{bottom:346.979850px;}
.y158{bottom:346.999050px;}
.y35{bottom:347.033100px;}
.y1cd{bottom:353.481900px;}
.y199{bottom:353.909400px;}
.y34{bottom:359.633100px;}
.y79{bottom:367.210650px;}
.y7{bottom:367.212900px;}
.y11b{bottom:367.213050px;}
.y4f{bottom:367.215450px;}
.ya7{bottom:367.222650px;}
.yfb{bottom:367.225050px;}
.yc0{bottom:367.227450px;}
.y88{bottom:367.232250px;}
.y157{bottom:367.246650px;}
.y198{bottom:368.163150px;}
.y1cc{bottom:371.988150px;}
.y1cb{bottom:386.241900px;}
.y196{bottom:386.665650px;}
.y197{bottom:386.669400px;}
.y6{bottom:387.460500px;}
.y11a{bottom:387.460650px;}
.y4e{bottom:387.463050px;}
.y162{bottom:387.467850px;}
.ya6{bottom:387.470250px;}
.yfa{bottom:387.472650px;}
.ybf{bottom:387.475050px;}
.y87{bottom:387.479850px;}
.y156{bottom:387.494250px;}
.y1ca{bottom:400.495650px;}
.y194{bottom:400.797750px;}
.y195{bottom:400.919400px;}
.y78{bottom:403.957650px;}
.y170{bottom:407.710650px;}
.y4d{bottom:407.713050px;}
.y161{bottom:407.715450px;}
.ya5{bottom:407.717850px;}
.yf9{bottom:407.720250px;}
.ybe{bottom:407.722650px;}
.y33{bottom:407.727450px;}
.y155{bottom:407.741850px;}
.y1c9{bottom:414.749400px;}
.y193{bottom:415.051500px;}
.y77{bottom:427.960650px;}
.y160{bottom:427.963050px;}
.ya4{bottom:427.965450px;}
.yf8{bottom:427.967850px;}
.ybd{bottom:427.970250px;}
.y32{bottom:427.975050px;}
.y154{bottom:427.989450px;}
.y1c8{bottom:429.003150px;}
.y192{bottom:433.557750px;}
.y1c7{bottom:443.256900px;}
.y191{bottom:447.811500px;}
.y15f{bottom:448.210650px;}
.ya3{bottom:448.213050px;}
.yf7{bottom:448.215450px;}
.ybc{bottom:448.217850px;}
.y31{bottom:448.222650px;}
.y153{bottom:448.237050px;}
.y1c6{bottom:457.510650px;}
.y190{bottom:462.065250px;}
.y16{bottom:462.332100px;}
.yd9{bottom:468.460650px;}
.yf6{bottom:468.463050px;}
.ybb{bottom:468.465450px;}
.y30{bottom:468.470250px;}
.ya2{bottom:468.477450px;}
.y152{bottom:468.484650px;}
.y1c5{bottom:476.016900px;}
.y18f{bottom:476.319000px;}
.y15{bottom:476.582100px;}
.y17{bottom:476.586900px;}
.y119{bottom:488.710650px;}
.yba{bottom:488.713050px;}
.yf5{bottom:488.715450px;}
.y2f{bottom:488.717850px;}
.ya1{bottom:488.725050px;}
.y151{bottom:488.732250px;}
.y1c4{bottom:490.270650px;}
.y14{bottom:490.832100px;}
.y18e{bottom:494.825250px;}
.y1c3{bottom:504.524400px;}
.yb9{bottom:508.960650px;}
.yf4{bottom:508.963050px;}
.y2e{bottom:508.965450px;}
.y76{bottom:508.967850px;}
.ya0{bottom:508.972650px;}
.y150{bottom:508.979850px;}
.y18d{bottom:509.079000px;}
.y1c2{bottom:518.778150px;}
.y18c{bottom:523.332750px;}
.yf3{bottom:529.210650px;}
.y2d{bottom:529.213050px;}
.y75{bottom:529.215450px;}
.y9f{bottom:529.220250px;}
.y14f{bottom:529.227450px;}
.y1c1{bottom:533.031900px;}
.y18b{bottom:541.839000px;}
.y86{bottom:549.460650px;}
.y74{bottom:549.463050px;}
.y2c{bottom:549.465450px;}
.y9e{bottom:549.467850px;}
.yb8{bottom:549.472650px;}
.y14e{bottom:549.475050px;}
.y4c{bottom:549.477450px;}
.y118{bottom:549.482250px;}
.y1c0{bottom:551.538150px;}
.y18a{bottom:556.092750px;}
.y167{bottom:564.019200px;}
.y1bf{bottom:565.791900px;}
.y16f{bottom:569.710650px;}
.y2b{bottom:569.713050px;}
.y9d{bottom:569.715450px;}
.yb7{bottom:569.720250px;}
.y73{bottom:569.722650px;}
.y4b{bottom:569.725050px;}
.y117{bottom:569.729850px;}
.y189{bottom:574.599000px;}
.y1be{bottom:580.045650px;}
.y188{bottom:588.852750px;}
.yf2{bottom:589.960650px;}
.y16e{bottom:589.961400px;}
.y2a{bottom:589.963050px;}
.yb6{bottom:589.967850px;}
.y72{bottom:589.970250px;}
.y4a{bottom:589.972650px;}
.y116{bottom:589.977450px;}
.y131{bottom:589.979850px;}
.y1bd{bottom:594.299400px;}
.y130{bottom:604.225050px;}
.y187{bottom:607.359000px;}
.y1bc{bottom:608.553150px;}
.y16d{bottom:610.210650px;}
.yb5{bottom:610.215450px;}
.y71{bottom:610.217850px;}
.y49{bottom:610.220250px;}
.y9c{bottom:610.222650px;}
.y115{bottom:610.225050px;}
.y29{bottom:610.229850px;}
.y95{bottom:610.683450px;}
.y12f{bottom:618.470250px;}
.y186{bottom:621.612750px;}
.y1bb{bottom:622.806900px;}
.y94{bottom:624.928650px;}
.y1dd{bottom:630.460650px;}
.yb4{bottom:630.463050px;}
.y70{bottom:630.465450px;}
.y48{bottom:630.467850px;}
.y9b{bottom:630.470250px;}
.y114{bottom:630.472650px;}
.y12e{bottom:632.715450px;}
.y185{bottom:635.866500px;}
.y1ba{bottom:641.313150px;}
.y12d{bottom:646.960650px;}
.y184{bottom:650.120250px;}
.yb3{bottom:650.710650px;}
.y6f{bottom:650.713050px;}
.y47{bottom:650.715450px;}
.y9a{bottom:650.717850px;}
.y113{bottom:650.720250px;}
.y28{bottom:650.725050px;}
.y1b9{bottom:655.566900px;}
.y107{bottom:664.960650px;}
.y183{bottom:668.626500px;}
.y1b8{bottom:669.820650px;}
.y14d{bottom:670.960650px;}
.y46{bottom:670.963050px;}
.y99{bottom:670.965450px;}
.y6e{bottom:670.967850px;}
.y148{bottom:670.970250px;}
.y27{bottom:670.972650px;}
.y106{bottom:679.215450px;}
.y182{bottom:682.880250px;}
.y1b7{bottom:684.074400px;}
.y45{bottom:691.210650px;}
.y98{bottom:691.213050px;}
.y6d{bottom:691.215450px;}
.y147{bottom:691.217850px;}
.y26{bottom:691.220250px;}
.y105{bottom:693.460650px;}
.y16c{bottom:695.905950px;}
.y1b6{bottom:698.328150px;}
.y181{bottom:701.386500px;}
.yd8{bottom:711.460650px;}
.y6c{bottom:711.463050px;}
.y146{bottom:711.465450px;}
.y25{bottom:711.467850px;}
.yd7{bottom:711.491850px;}
.y1b5{bottom:712.581900px;}
.y1b4{bottom:731.088150px;}
.y138{bottom:731.710650px;}
.y145{bottom:731.713050px;}
.y24{bottom:731.715450px;}
.y6b{bottom:731.717850px;}
.y112{bottom:731.729850px;}
.yd6{bottom:731.739450px;}
.y180{bottom:732.639000px;}
.y1b3{bottom:745.341900px;}
.y17f{bottom:746.892750px;}
.y60{bottom:751.960650px;}
.y23{bottom:751.963050px;}
.y6a{bottom:751.965450px;}
.y5f{bottom:751.970250px;}
.y111{bottom:751.977450px;}
.yd5{bottom:751.987050px;}
.y1b2{bottom:759.595650px;}
.y17e{bottom:765.399000px;}
.y5e{bottom:766.215450px;}
.y22{bottom:772.210650px;}
.y69{bottom:772.213050px;}
.y16b{bottom:772.215450px;}
.ycd{bottom:772.225050px;}
.y137{bottom:772.229850px;}
.yd4{bottom:772.234650px;}
.y1b1{bottom:778.101900px;}
.y17d{bottom:779.652750px;}
.y5d{bottom:780.460650px;}
.ycc{bottom:786.470250px;}
.y1b0{bottom:792.355650px;}
.y68{bottom:792.460650px;}
.y16a{bottom:792.463050px;}
.y67{bottom:792.465450px;}
.y110{bottom:792.472650px;}
.y136{bottom:792.477450px;}
.yd3{bottom:792.482250px;}
.y17c{bottom:798.159000px;}
.ycb{bottom:800.715450px;}
.y5{bottom:804.463500px;}
.y1af{bottom:806.609400px;}
.y17b{bottom:812.412750px;}
.y169{bottom:812.710650px;}
.y66{bottom:812.713050px;}
.y21{bottom:812.717850px;}
.y10f{bottom:812.720250px;}
.y135{bottom:812.725050px;}
.y97{bottom:812.729850px;}
.yca{bottom:814.960650px;}
.y1ae{bottom:820.863150px;}
.y17a{bottom:830.919000px;}
.y4{bottom:832.960500px;}
.y65{bottom:832.960650px;}
.y20{bottom:832.965450px;}
.y10e{bottom:832.967850px;}
.y134{bottom:832.972650px;}
.y96{bottom:832.977450px;}
.y1ad{bottom:835.116900px;}
.y179{bottom:845.172750px;}
.y1dc{bottom:853.210650px;}
.y1f{bottom:853.213050px;}
.y10d{bottom:853.215450px;}
.y133{bottom:853.220250px;}
.y64{bottom:853.225050px;}
.y1ac{bottom:853.623150px;}
.y178{bottom:863.679000px;}
.y1ab{bottom:867.876900px;}
.y1db{bottom:873.460650px;}
.y1e{bottom:873.463050px;}
.y132{bottom:873.467850px;}
.y63{bottom:873.472650px;}
.y177{bottom:877.932750px;}
.y1aa{bottom:882.130650px;}
.y176{bottom:892.186500px;}
.y3{bottom:893.710500px;}
.y10c{bottom:893.710650px;}
.y1d{bottom:893.715450px;}
.y62{bottom:893.720250px;}
.y1a9{bottom:896.384400px;}
.y175{bottom:910.692750px;}
.y1da{bottom:913.960650px;}
.y1c{bottom:913.963050px;}
.y61{bottom:913.967850px;}
.y1a8{bottom:914.890650px;}
.y174{bottom:924.946500px;}
.y1a7{bottom:929.144400px;}
.y10b{bottom:934.210650px;}
.y1b{bottom:934.215450px;}
.y1a6{bottom:943.398150px;}
.y173{bottom:943.452750px;}
.y1a{bottom:954.463050px;}
.y2{bottom:974.710500px;}
.y19{bottom:974.710650px;}
.y1{bottom:1037.951850px;}
.y18{bottom:1037.952000px;}
.hf{height:27.916139px;}
.h9{height:31.276800px;}
.h7{height:35.415000px;}
.hc{height:38.775600px;}
.hb{height:38.776200px;}
.h8{height:38.793600px;}
.ha{height:38.804400px;}
.he{height:38.847600px;}
.h2{height:40.410000px;}
.h12{height:40.545000px;}
.h13{height:42.498000px;}
.h10{height:44.859000px;}
.h6{height:47.883600px;}
.h11{height:48.654000px;}
.h3{height:54.060000px;}
.hd{height:61.068000px;}
.h5{height:75.684000px;}
.h4{height:117.162000px;}
.h1{height:1105.500000px;}
.h0{height:1105.512000px;}
.w1{width:744.000000px;}
.w0{width:744.094500px;}
.x0{left:0.000000px;}
.x1{left:72.283500px;}
.x8{left:77.998650px;}
.x42{left:83.713950px;}
.x43{left:85.040212px;}
.x3e{left:88.214100px;}
.x2{left:89.291400px;}
.x3c{left:92.389650px;}
.x7{left:93.543300px;}
.x14{left:102.328350px;}
.x6{left:114.803100px;}
.x47{left:117.516300px;}
.x4{left:120.297600px;}
.x2a{left:121.500000px;}
.x2e{left:138.345750px;}
.x31{left:166.618950px;}
.x2f{left:174.042000px;}
.x35{left:178.085400px;}
.x12{left:179.240250px;}
.x11{left:207.210450px;}
.x33{left:209.212200px;}
.x32{left:213.573450px;}
.x30{left:219.194550px;}
.x36{left:226.241100px;}
.x34{left:256.626300px;}
.x45{left:263.970900px;}
.xd{left:268.033500px;}
.x13{left:279.250800px;}
.x2b{left:287.611050px;}
.x15{left:295.843950px;}
.x44{left:335.075850px;}
.x16{left:340.023300px;}
.x25{left:364.786350px;}
.x17{left:371.411250px;}
.x10{left:377.362200px;}
.x18{left:378.641850px;}
.x5{left:381.047250px;}
.x2c{left:389.578950px;}
.x46{left:393.273113px;}
.x27{left:396.166650px;}
.x37{left:404.208750px;}
.x28{left:411.127500px;}
.x19{left:422.881500px;}
.x9{left:449.875350px;}
.x1d{left:459.212550px;}
.xa{left:461.338650px;}
.x1a{left:462.929250px;}
.x3b{left:475.894500px;}
.x1e{left:488.673000px;}
.x1b{left:494.640900px;}
.x1c{left:501.871500px;}
.x39{left:506.922300px;}
.x48{left:517.047150px;}
.x22{left:524.764200px;}
.x2d{left:531.984300px;}
.x29{left:543.064200px;}
.x23{left:549.386100px;}
.xf{left:551.226450px;}
.xb{left:561.032550px;}
.x1f{left:568.761150px;}
.x38{left:574.583250px;}
.x3f{left:606.485850px;}
.x3a{left:608.890800px;}
.x3{left:616.318800px;}
.x26{left:618.837900px;}
.x20{left:624.058800px;}
.x21{left:628.070700px;}
.x3d{left:630.295050px;}
.xe{left:635.608650px;}
.x40{left:654.191250px;}
.xc{left:656.222100px;}
.x24{left:660.816450px;}
.x41{left:671.811000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.694400pt;}
.ls8{letter-spacing:-0.501333pt;}
.ls6{letter-spacing:-0.384000pt;}
.ls2{letter-spacing:-0.373333pt;}
.ls9{letter-spacing:-0.292277pt;}
.lse{letter-spacing:-0.250667pt;}
.ls7{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.153600pt;}
.lsf{letter-spacing:-0.146139pt;}
.ls1{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.153600pt;}
.ls4{letter-spacing:0.192000pt;}
.ls0{letter-spacing:0.384000pt;}
.ls3{letter-spacing:2.304000pt;}
.ls5{letter-spacing:5.034240pt;}
.lsa{letter-spacing:5.452800pt;}
.lsd{letter-spacing:29.499574pt;}
.ws31{word-spacing:-14.839467pt;}
.wsec{word-spacing:-14.588800pt;}
.wsed{word-spacing:-10.133333pt;}
.wsee{word-spacing:-9.600000pt;}
.ws7a{word-spacing:-8.651409pt;}
.ws1{word-spacing:-8.064000pt;}
.ws0{word-spacing:-8.000000pt;}
.ws50{word-spacing:-7.680000pt;}
.wsa4{word-spacing:-7.488000pt;}
.ws9d{word-spacing:-7.296000pt;}
.wscc{word-spacing:-2.957867pt;}
.wsa5{word-spacing:-2.907733pt;}
.ws83{word-spacing:-2.807467pt;}
.ws88{word-spacing:-2.764800pt;}
.ws8e{word-spacing:-2.707200pt;}
.ws1b{word-spacing:-2.657067pt;}
.ws82{word-spacing:-2.606933pt;}
.wse2{word-spacing:-2.556800pt;}
.ws65{word-spacing:-2.506667pt;}
.wsbf{word-spacing:-2.456533pt;}
.wsdd{word-spacing:-2.356267pt;}
.ws5b{word-spacing:-2.306133pt;}
.ws28{word-spacing:-2.256000pt;}
.ws86{word-spacing:-2.205867pt;}
.wsb5{word-spacing:-2.155733pt;}
.wsde{word-spacing:-2.105600pt;}
.wsc{word-spacing:-2.005333pt;}
.wsa3{word-spacing:-1.958400pt;}
.ws6{word-spacing:-1.905067pt;}
.ws60{word-spacing:-1.854933pt;}
.ws93{word-spacing:-1.804800pt;}
.wsd9{word-spacing:-1.754667pt;}
.wsab{word-spacing:-1.704533pt;}
.wsd2{word-spacing:-1.654400pt;}
.ws18{word-spacing:-1.604267pt;}
.ws2a{word-spacing:-1.554133pt;}
.ws92{word-spacing:-1.504000pt;}
.ws51{word-spacing:-1.453867pt;}
.ws3{word-spacing:-1.403733pt;}
.ws58{word-spacing:-1.353600pt;}
.wsb8{word-spacing:-1.303467pt;}
.wsf4{word-spacing:-1.296000pt;}
.ws2c{word-spacing:-1.267200pt;}
.ws20{word-spacing:-1.203200pt;}
.ws119{word-spacing:-1.200000pt;}
.ws67{word-spacing:-1.153067pt;}
.ws5d{word-spacing:-1.152000pt;}
.ws6e{word-spacing:-1.102933pt;}
.ws55{word-spacing:-1.052800pt;}
.wsfe{word-spacing:-1.040000pt;}
.ws90{word-spacing:-1.002667pt;}
.wsa{word-spacing:-0.952533pt;}
.ws42{word-spacing:-0.921600pt;}
.ws105{word-spacing:-0.920000pt;}
.ws3c{word-spacing:-0.902400pt;}
.wsd4{word-spacing:-0.852267pt;}
.ws3d{word-spacing:-0.802133pt;}
.wscb{word-spacing:-0.752000pt;}
.ws2d{word-spacing:-0.729600pt;}
.ws7c{word-spacing:-0.701867pt;}
.ws13e{word-spacing:-0.624000pt;}
.ws14{word-spacing:-0.601600pt;}
.wsc0{word-spacing:-0.576000pt;}
.ws111{word-spacing:-0.560000pt;}
.ws80{word-spacing:-0.501333pt;}
.ws8{word-spacing:-0.451200pt;}
.ws3a{word-spacing:-0.350933pt;}
.wsf9{word-spacing:-0.336000pt;}
.ws41{word-spacing:-0.307200pt;}
.ws21{word-spacing:-0.300800pt;}
.ws78{word-spacing:-0.268800pt;}
.ws118{word-spacing:-0.240000pt;}
.ws4f{word-spacing:-0.230400pt;}
.ws47{word-spacing:-0.200533pt;}
.ws12c{word-spacing:-0.200000pt;}
.ws133{word-spacing:-0.160000pt;}
.ws66{word-spacing:-0.150400pt;}
.ws6c{word-spacing:-0.100267pt;}
.ws32{word-spacing:-0.050133pt;}
.ws12{word-spacing:-0.038400pt;}
.ws11{word-spacing:-0.029228pt;}
.ws2{word-spacing:0.000000pt;}
.ws13d{word-spacing:0.048000pt;}
.ws49{word-spacing:0.050133pt;}
.ws26{word-spacing:0.100267pt;}
.wsc6{word-spacing:0.115200pt;}
.ws106{word-spacing:0.120000pt;}
.wsf1{word-spacing:0.146139pt;}
.ws7f{word-spacing:0.150400pt;}
.ws2f{word-spacing:0.153600pt;}
.wsaf{word-spacing:0.192000pt;}
.wse0{word-spacing:0.250667pt;}
.wsb9{word-spacing:0.292277pt;}
.ws54{word-spacing:0.300800pt;}
.ws115{word-spacing:0.320000pt;}
.wsbb{word-spacing:0.350933pt;}
.wsdc{word-spacing:0.384000pt;}
.ws1c{word-spacing:0.401067pt;}
.ws112{word-spacing:0.440000pt;}
.ws52{word-spacing:0.451200pt;}
.wsbe{word-spacing:0.501333pt;}
.ws120{word-spacing:0.520000pt;}
.wsef{word-spacing:0.551467pt;}
.wsa9{word-spacing:0.601600pt;}
.ws94{word-spacing:0.651733pt;}
.ws39{word-spacing:0.701867pt;}
.ws7{word-spacing:0.752000pt;}
.wsfc{word-spacing:0.760000pt;}
.wseb{word-spacing:0.802133pt;}
.ws13c{word-spacing:0.816000pt;}
.ws13a{word-spacing:0.840000pt;}
.ws104{word-spacing:0.880000pt;}
.wsca{word-spacing:0.902400pt;}
.ws126{word-spacing:0.920000pt;}
.ws5e{word-spacing:0.921600pt;}
.wsaa{word-spacing:0.952533pt;}
.ws75{word-spacing:1.002667pt;}
.ws45{word-spacing:1.052800pt;}
.ws17{word-spacing:1.102933pt;}
.ws4e{word-spacing:1.153067pt;}
.ws130{word-spacing:1.160000pt;}
.ws9c{word-spacing:1.253333pt;}
.ws30{word-spacing:1.267200pt;}
.ws97{word-spacing:1.303467pt;}
.wsb6{word-spacing:1.353600pt;}
.wsf6{word-spacing:1.392000pt;}
.ws3e{word-spacing:1.403733pt;}
.ws1a{word-spacing:1.453867pt;}
.ws13b{word-spacing:1.488000pt;}
.wsbd{word-spacing:1.504000pt;}
.ws2b{word-spacing:1.536000pt;}
.ws44{word-spacing:1.554133pt;}
.ws10f{word-spacing:1.600000pt;}
.ws5c{word-spacing:1.604267pt;}
.ws53{word-spacing:1.654400pt;}
.ws91{word-spacing:1.704533pt;}
.ws113{word-spacing:1.720000pt;}
.wsf2{word-spacing:1.728000pt;}
.ws72{word-spacing:1.754667pt;}
.ws69{word-spacing:1.804800pt;}
.ws11f{word-spacing:1.840000pt;}
.wsac{word-spacing:1.905067pt;}
.wsb0{word-spacing:1.958400pt;}
.wsc8{word-spacing:2.005333pt;}
.ws101{word-spacing:2.040000pt;}
.ws7d{word-spacing:2.055467pt;}
.wsd{word-spacing:2.105600pt;}
.ws3f{word-spacing:2.112000pt;}
.ws132{word-spacing:2.120000pt;}
.ws2e{word-spacing:2.150400pt;}
.wsb7{word-spacing:2.155733pt;}
.ws134{word-spacing:2.160000pt;}
.ws10a{word-spacing:2.200000pt;}
.ws6b{word-spacing:2.205867pt;}
.ws27{word-spacing:2.256000pt;}
.ws5f{word-spacing:2.304000pt;}
.wsb{word-spacing:2.356267pt;}
.ws11c{word-spacing:2.360000pt;}
.wsbc{word-spacing:2.406400pt;}
.ws4c{word-spacing:2.456533pt;}
.ws4a{word-spacing:2.506667pt;}
.ws61{word-spacing:2.556800pt;}
.ws10d{word-spacing:2.600000pt;}
.ws64{word-spacing:2.606933pt;}
.wsda{word-spacing:2.611200pt;}
.ws29{word-spacing:2.657067pt;}
.ws116{word-spacing:2.680000pt;}
.ws71{word-spacing:2.707200pt;}
.ws121{word-spacing:2.720000pt;}
.ws5a{word-spacing:2.757333pt;}
.wsc2{word-spacing:2.803200pt;}
.ws9b{word-spacing:2.807467pt;}
.ws33{word-spacing:2.857600pt;}
.ws4{word-spacing:2.957867pt;}
.ws24{word-spacing:3.008000pt;}
.wsdb{word-spacing:3.033600pt;}
.ws59{word-spacing:3.058133pt;}
.ws1f{word-spacing:3.108267pt;}
.wsb2{word-spacing:3.158400pt;}
.ws110{word-spacing:3.200000pt;}
.ws57{word-spacing:3.208533pt;}
.ws108{word-spacing:3.240000pt;}
.ws8f{word-spacing:3.258667pt;}
.wsa8{word-spacing:3.308800pt;}
.wsf8{word-spacing:3.312000pt;}
.ws1d{word-spacing:3.358933pt;}
.ws10c{word-spacing:3.360000pt;}
.ws79{word-spacing:3.379200pt;}
.ws4b{word-spacing:3.409067pt;}
.ws19{word-spacing:3.459200pt;}
.wsce{word-spacing:3.494400pt;}
.ws3b{word-spacing:3.509333pt;}
.wsfb{word-spacing:3.552000pt;}
.ws37{word-spacing:3.559467pt;}
.ws8b{word-spacing:3.571200pt;}
.ws12b{word-spacing:3.600000pt;}
.ws35{word-spacing:3.609600pt;}
.ws117{word-spacing:3.640000pt;}
.ws22{word-spacing:3.659733pt;}
.ws63{word-spacing:3.709867pt;}
.ws137{word-spacing:3.720000pt;}
.ws7e{word-spacing:3.760000pt;}
.ws76{word-spacing:3.763200pt;}
.ws34{word-spacing:3.810133pt;}
.wsfd{word-spacing:3.840000pt;}
.wsc3{word-spacing:3.955200pt;}
.ws12f{word-spacing:3.960000pt;}
.wsb1{word-spacing:3.960533pt;}
.wsf3{word-spacing:3.984000pt;}
.ws70{word-spacing:4.010667pt;}
.wsba{word-spacing:4.060800pt;}
.ws11d{word-spacing:4.080000pt;}
.ws25{word-spacing:4.110933pt;}
.ws9a{word-spacing:4.161067pt;}
.ws8d{word-spacing:4.211200pt;}
.ws84{word-spacing:4.261333pt;}
.wsd1{word-spacing:4.311467pt;}
.wsff{word-spacing:4.320000pt;}
.ws16{word-spacing:4.361600pt;}
.wsfa{word-spacing:4.416000pt;}
.wsf7{word-spacing:4.464000pt;}
.wsf5{word-spacing:4.512000pt;}
.ws38{word-spacing:4.562133pt;}
.ws87{word-spacing:4.608000pt;}
.ws140{word-spacing:4.704000pt;}
.ws62{word-spacing:4.712533pt;}
.ws131{word-spacing:4.760000pt;}
.ws6d{word-spacing:4.762667pt;}
.ws11b{word-spacing:4.800000pt;}
.wsb4{word-spacing:4.812800pt;}
.ws12a{word-spacing:4.880000pt;}
.wse9{word-spacing:4.913067pt;}
.ws77{word-spacing:4.915200pt;}
.wse{word-spacing:4.953600pt;}
.ws9{word-spacing:4.963200pt;}
.wsae{word-spacing:4.992000pt;}
.ws7b{word-spacing:5.013333pt;}
.wsa2{word-spacing:5.030400pt;}
.ws5{word-spacing:5.063467pt;}
.ws81{word-spacing:5.113600pt;}
.wse3{word-spacing:5.163733pt;}
.wse5{word-spacing:5.213867pt;}
.ws48{word-spacing:5.264000pt;}
.ws56{word-spacing:5.314133pt;}
.ws13{word-spacing:5.364267pt;}
.wsc1{word-spacing:5.376000pt;}
.wse6{word-spacing:5.414400pt;}
.ws89{word-spacing:5.452800pt;}
.ws95{word-spacing:5.464533pt;}
.ws40{word-spacing:5.491200pt;}
.ws8a{word-spacing:5.606400pt;}
.wsf0{word-spacing:5.614933pt;}
.ws12d{word-spacing:5.640000pt;}
.wsea{word-spacing:5.665067pt;}
.ws98{word-spacing:5.715200pt;}
.ws23{word-spacing:5.815467pt;}
.ws114{word-spacing:5.840000pt;}
.wsdf{word-spacing:5.865600pt;}
.ws125{word-spacing:6.000000pt;}
.ws4d{word-spacing:6.016000pt;}
.ws103{word-spacing:6.040000pt;}
.wsd5{word-spacing:6.066133pt;}
.ws9e{word-spacing:6.067200pt;}
.ws136{word-spacing:6.080000pt;}
.ws46{word-spacing:6.116267pt;}
.ws1e{word-spacing:6.166400pt;}
.wsd3{word-spacing:6.266667pt;}
.wscf{word-spacing:6.297600pt;}
.wsd0{word-spacing:6.316800pt;}
.ws11a{word-spacing:6.400000pt;}
.ws74{word-spacing:6.417067pt;}
.wsc7{word-spacing:6.617600pt;}
.ws138{word-spacing:6.680000pt;}
.wse1{word-spacing:6.717867pt;}
.ws15{word-spacing:6.768000pt;}
.ws6f{word-spacing:6.918400pt;}
.ws36{word-spacing:7.018667pt;}
.ws6a{word-spacing:7.068800pt;}
.ws100{word-spacing:7.200000pt;}
.ws99{word-spacing:7.369600pt;}
.wse4{word-spacing:7.419733pt;}
.ws96{word-spacing:7.469867pt;}
.ws102{word-spacing:7.480000pt;}
.ws73{word-spacing:7.520000pt;}
.ws43{word-spacing:7.564800pt;}
.wsb3{word-spacing:7.620267pt;}
.ws10{word-spacing:7.680000pt;}
.wsd8{word-spacing:7.720533pt;}
.ws68{word-spacing:7.770667pt;}
.wsc9{word-spacing:7.921067pt;}
.ws109{word-spacing:8.000000pt;}
.wse8{word-spacing:8.071467pt;}
.ws127{word-spacing:8.080000pt;}
.wsd6{word-spacing:8.121600pt;}
.wsa6{word-spacing:8.221867pt;}
.ws85{word-spacing:8.272000pt;}
.wsa7{word-spacing:8.322133pt;}
.ws107{word-spacing:8.720000pt;}
.wsd7{word-spacing:8.723200pt;}
.wsad{word-spacing:8.947200pt;}
.ws8c{word-spacing:8.973867pt;}
.ws13f{word-spacing:9.120000pt;}
.wsc4{word-spacing:9.369600pt;}
.ws128{word-spacing:9.720000pt;}
.wsa0{word-spacing:10.252800pt;}
.ws129{word-spacing:10.400000pt;}
.wse7{word-spacing:10.828800pt;}
.ws12e{word-spacing:11.000000pt;}
.ws10b{word-spacing:11.400000pt;}
.ws135{word-spacing:11.720000pt;}
.ws122{word-spacing:12.240000pt;}
.ws11e{word-spacing:13.120000pt;}
.wsc5{word-spacing:14.169600pt;}
.wsa1{word-spacing:14.208000pt;}
.ws139{word-spacing:14.320000pt;}
.wsf{word-spacing:15.091200pt;}
.ws124{word-spacing:16.560000pt;}
.ws10e{word-spacing:16.840000pt;}
.wscd{word-spacing:16.972800pt;}
.ws123{word-spacing:23.720000pt;}
.ws9f{word-spacing:28.569600pt;}
._2{margin-left:-11.285333pt;}
._e{margin-left:-8.874667pt;}
._d{margin-left:-6.869333pt;}
._7{margin-left:-5.680107pt;}
._6{margin-left:-4.612267pt;}
._4{margin-left:-3.351467pt;}
._3{margin-left:-2.208000pt;}
._5{margin-left:-0.902400pt;}
._1{width:1.701333pt;}
._a{width:2.667925pt;}
._10{width:3.714880pt;}
._11{width:5.137067pt;}
._13{width:6.078293pt;}
._c{width:22.501290pt;}
._f{width:24.229290pt;}
._12{width:25.381290pt;}
._8{width:26.456490pt;}
._b{width:27.992490pt;}
._9{width:29.836492pt;}
._0{width:1989.240000pt;}
.fs6{font-size:29.227733pt;}
.fs5{font-size:38.400000pt;}
.fs0{font-size:40.000000pt;}
.fs8{font-size:48.000000pt;}
.fs4{font-size:50.133333pt;}
.fs7{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs3{font-size:74.666667pt;}
.fs2{font-size:122.666667pt;}
.y0{bottom:0.000000pt;}
.y5c{bottom:92.403200pt;}
.y92{bottom:92.406533pt;}
.yf1{bottom:92.409467pt;}
.y85{bottom:92.409600pt;}
.y93{bottom:92.409733pt;}
.y15e{bottom:92.413467pt;}
.y166{bottom:92.413733pt;}
.yf0{bottom:92.416933pt;}
.y44{bottom:92.595333pt;}
.y12c{bottom:92.598400pt;}
.yd2{bottom:92.601733pt;}
.y12b{bottom:92.602667pt;}
.y13{bottom:92.828533pt;}
.y5b{bottom:103.606400pt;}
.y90{bottom:103.606533pt;}
.y172{bottom:103.609600pt;}
.y91{bottom:103.609733pt;}
.y43{bottom:103.798533pt;}
.y168{bottom:105.076133pt;}
.yef{bottom:105.079333pt;}
.yd1{bottom:105.264133pt;}
.y12a{bottom:105.265067pt;}
.y144{bottom:110.161467pt;}
.y84{bottom:110.173467pt;}
.y165{bottom:110.411600pt;}
.y5a{bottom:114.809600pt;}
.y8f{bottom:114.809733pt;}
.yee{bottom:117.741733pt;}
.y129{bottom:117.934933pt;}
.y42{bottom:121.566400pt;}
.y59{bottom:126.009600pt;}
.y143{bottom:127.921467pt;}
.y83{bottom:127.937467pt;}
.ye5{bottom:128.409467pt;}
.yc9{bottom:128.411600pt;}
.ye4{bottom:128.415867pt;}
.y128{bottom:130.597333pt;}
.yd0{bottom:130.598533pt;}
.ycf{bottom:130.602800pt;}
.y142{bottom:139.124667pt;}
.y41{bottom:139.326400pt;}
.yb2{bottom:142.376667pt;}
.yed{bottom:143.076133pt;}
.yec{bottom:143.080400pt;}
.yce{bottom:143.265200pt;}
.y58{bottom:143.773600pt;}
.y82{bottom:145.698133pt;}
.y14c{bottom:145.701333pt;}
.yc8{bottom:146.409467pt;}
.y12{bottom:146.411467pt;}
.ye3{bottom:146.413733pt;}
.y8e{bottom:146.420133pt;}
.y15d{bottom:146.422267pt;}
.y1a5{bottom:147.426133pt;}
.y141{bottom:150.327867pt;}
.y40{bottom:150.526400pt;}
.y1d9{bottom:151.042667pt;}
.yb1{bottom:153.579867pt;}
.yeb{bottom:155.742800pt;}
.yea{bottom:155.747067pt;}
.y127{bottom:155.931733pt;}
.y126{bottom:155.939200pt;}
.y81{bottom:156.901333pt;}
.y1a4{bottom:160.096133pt;}
.y140{bottom:161.531067pt;}
.y57{bottom:161.537467pt;}
.y1d8{bottom:163.712667pt;}
.y11{bottom:164.409333pt;}
.y164{bottom:164.409467pt;}
.ye2{bottom:164.411600pt;}
.yc7{bottom:164.413733pt;}
.y10{bottom:164.415733pt;}
.y8d{bottom:164.418000pt;}
.y15c{bottom:164.420133pt;}
.y104{bottom:164.441467pt;}
.yb0{bottom:164.783067pt;}
.y3f{bottom:168.290400pt;}
.ye9{bottom:168.409467pt;}
.ye8{bottom:168.413733pt;}
.y125{bottom:168.601600pt;}
.y13f{bottom:172.734267pt;}
.y1a3{bottom:172.766133pt;}
.y80{bottom:174.665333pt;}
.yaf{bottom:175.986267pt;}
.y56{bottom:179.305333pt;}
.y1d7{bottom:180.162667pt;}
.ye7{bottom:181.076133pt;}
.y124{bottom:181.264000pt;}
.yc6{bottom:182.411600pt;}
.yf{bottom:182.413600pt;}
.y14b{bottom:182.413733pt;}
.y8c{bottom:182.415867pt;}
.y15b{bottom:182.418000pt;}
.ye1{bottom:182.437200pt;}
.y103{bottom:182.439333pt;}
.y13e{bottom:183.937467pt;}
.y3e{bottom:186.054267pt;}
.y10a{bottom:186.368800pt;}
.y109{bottom:186.373067pt;}
.yae{bottom:187.189467pt;}
.y1a2{bottom:189.216133pt;}
.y7f{bottom:192.429200pt;}
.y1d6{bottom:192.616133pt;}
.ye6{bottom:193.742800pt;}
.y55{bottom:197.065333pt;}
.yad{bottom:198.392667pt;}
.y108{bottom:199.035467pt;}
.ye{bottom:200.411467pt;}
.yc5{bottom:200.411600pt;}
.y8b{bottom:200.413733pt;}
.y15a{bottom:200.415867pt;}
.ye0{bottom:200.435067pt;}
.y102{bottom:200.437200pt;}
.y13d{bottom:201.701333pt;}
.y1a1{bottom:201.886133pt;}
.y3d{bottom:203.815733pt;}
.y123{bottom:206.598400pt;}
.y122{bottom:206.606933pt;}
.y54{bottom:208.265333pt;}
.y1d5{bottom:209.066133pt;}
.y1a0{bottom:214.556133pt;}
.yac{bottom:216.156533pt;}
.yd{bottom:218.409333pt;}
.yc4{bottom:218.409467pt;}
.y8a{bottom:218.411600pt;}
.yc3{bottom:218.413733pt;}
.ydf{bottom:218.432933pt;}
.y101{bottom:218.435067pt;}
.y121{bottom:219.269333pt;}
.y3c{bottom:221.575733pt;}
.y1d4{bottom:221.736133pt;}
.y19f{bottom:231.006133pt;}
.y120{bottom:231.931733pt;}
.y3b{bottom:232.778933pt;}
.yab{bottom:233.914133pt;}
.y89{bottom:236.409467pt;}
.y7e{bottom:236.411600pt;}
.yc{bottom:236.422133pt;}
.y163{bottom:236.422267pt;}
.yde{bottom:236.430800pt;}
.y100{bottom:236.432933pt;}
.y1d3{bottom:238.186133pt;}
.y19e{bottom:243.676133pt;}
.y3a{bottom:243.982133pt;}
.yaa{bottom:245.117333pt;}
.y1d2{bottom:250.856133pt;}
.y7d{bottom:254.409467pt;}
.y13c{bottom:254.411600pt;}
.y53{bottom:254.415867pt;}
.y7c{bottom:254.418000pt;}
.yb{bottom:254.420000pt;}
.y11f{bottom:254.420133pt;}
.ydd{bottom:254.428667pt;}
.yff{bottom:254.430800pt;}
.y14a{bottom:254.432933pt;}
.y39{bottom:255.182133pt;}
.ya9{bottom:256.320533pt;}
.y19d{bottom:256.346133pt;}
.y1d1{bottom:263.526133pt;}
.y52{bottom:272.413733pt;}
.y7b{bottom:272.415867pt;}
.ya{bottom:272.417867pt;}
.y11e{bottom:272.418000pt;}
.y13b{bottom:272.420133pt;}
.ydc{bottom:272.426533pt;}
.yfe{bottom:272.428667pt;}
.y149{bottom:272.430800pt;}
.y19c{bottom:272.796133pt;}
.y38{bottom:272.946000pt;}
.ya8{bottom:274.084400pt;}
.y1d0{bottom:276.196133pt;}
.y19b{bottom:285.466133pt;}
.y1cf{bottom:288.866133pt;}
.y51{bottom:290.411600pt;}
.y7a{bottom:290.413733pt;}
.y9{bottom:290.415733pt;}
.y11d{bottom:290.415867pt;}
.y13a{bottom:290.418000pt;}
.ydb{bottom:290.424400pt;}
.yfd{bottom:290.426533pt;}
.yc2{bottom:290.428667pt;}
.y159{bottom:290.445733pt;}
.y37{bottom:290.709867pt;}
.y36{bottom:290.713867pt;}
.y19a{bottom:298.136133pt;}
.y1ce{bottom:301.536133pt;}
.y171{bottom:308.409467pt;}
.y50{bottom:308.411600pt;}
.y8{bottom:308.413600pt;}
.y11c{bottom:308.413733pt;}
.y139{bottom:308.415867pt;}
.yda{bottom:308.422267pt;}
.yfc{bottom:308.424400pt;}
.yc1{bottom:308.426533pt;}
.y158{bottom:308.443600pt;}
.y35{bottom:308.473867pt;}
.y1cd{bottom:314.206133pt;}
.y199{bottom:314.586133pt;}
.y34{bottom:319.673867pt;}
.y79{bottom:326.409467pt;}
.y7{bottom:326.411467pt;}
.y11b{bottom:326.411600pt;}
.y4f{bottom:326.413733pt;}
.ya7{bottom:326.420133pt;}
.yfb{bottom:326.422267pt;}
.yc0{bottom:326.424400pt;}
.y88{bottom:326.428667pt;}
.y157{bottom:326.441467pt;}
.y198{bottom:327.256133pt;}
.y1cc{bottom:330.656133pt;}
.y1cb{bottom:343.326133pt;}
.y196{bottom:343.702800pt;}
.y197{bottom:343.706133pt;}
.y6{bottom:344.409333pt;}
.y11a{bottom:344.409467pt;}
.y4e{bottom:344.411600pt;}
.y162{bottom:344.415867pt;}
.ya6{bottom:344.418000pt;}
.yfa{bottom:344.420133pt;}
.ybf{bottom:344.422267pt;}
.y87{bottom:344.426533pt;}
.y156{bottom:344.439333pt;}
.y1ca{bottom:355.996133pt;}
.y194{bottom:356.264667pt;}
.y195{bottom:356.372800pt;}
.y78{bottom:359.073467pt;}
.y170{bottom:362.409467pt;}
.y4d{bottom:362.411600pt;}
.y161{bottom:362.413733pt;}
.ya5{bottom:362.415867pt;}
.yf9{bottom:362.418000pt;}
.ybe{bottom:362.420133pt;}
.y33{bottom:362.424400pt;}
.y155{bottom:362.437200pt;}
.y1c9{bottom:368.666133pt;}
.y193{bottom:368.934667pt;}
.y77{bottom:380.409467pt;}
.y160{bottom:380.411600pt;}
.ya4{bottom:380.413733pt;}
.yf8{bottom:380.415867pt;}
.ybd{bottom:380.418000pt;}
.y32{bottom:380.422267pt;}
.y154{bottom:380.435067pt;}
.y1c8{bottom:381.336133pt;}
.y192{bottom:385.384667pt;}
.y1c7{bottom:394.006133pt;}
.y191{bottom:398.054667pt;}
.y15f{bottom:398.409467pt;}
.ya3{bottom:398.411600pt;}
.yf7{bottom:398.413733pt;}
.ybc{bottom:398.415867pt;}
.y31{bottom:398.420133pt;}
.y153{bottom:398.432933pt;}
.y1c6{bottom:406.676133pt;}
.y190{bottom:410.724667pt;}
.y16{bottom:410.961867pt;}
.yd9{bottom:416.409467pt;}
.yf6{bottom:416.411600pt;}
.ybb{bottom:416.413733pt;}
.y30{bottom:416.418000pt;}
.ya2{bottom:416.424400pt;}
.y152{bottom:416.430800pt;}
.y1c5{bottom:423.126133pt;}
.y18f{bottom:423.394667pt;}
.y15{bottom:423.628533pt;}
.y17{bottom:423.632800pt;}
.y119{bottom:434.409467pt;}
.yba{bottom:434.411600pt;}
.yf5{bottom:434.413733pt;}
.y2f{bottom:434.415867pt;}
.ya1{bottom:434.422267pt;}
.y151{bottom:434.428667pt;}
.y1c4{bottom:435.796133pt;}
.y14{bottom:436.295200pt;}
.y18e{bottom:439.844667pt;}
.y1c3{bottom:448.466133pt;}
.yb9{bottom:452.409467pt;}
.yf4{bottom:452.411600pt;}
.y2e{bottom:452.413733pt;}
.y76{bottom:452.415867pt;}
.ya0{bottom:452.420133pt;}
.y150{bottom:452.426533pt;}
.y18d{bottom:452.514667pt;}
.y1c2{bottom:461.136133pt;}
.y18c{bottom:465.184667pt;}
.yf3{bottom:470.409467pt;}
.y2d{bottom:470.411600pt;}
.y75{bottom:470.413733pt;}
.y9f{bottom:470.418000pt;}
.y14f{bottom:470.424400pt;}
.y1c1{bottom:473.806133pt;}
.y18b{bottom:481.634667pt;}
.y86{bottom:488.409467pt;}
.y74{bottom:488.411600pt;}
.y2c{bottom:488.413733pt;}
.y9e{bottom:488.415867pt;}
.yb8{bottom:488.420133pt;}
.y14e{bottom:488.422267pt;}
.y4c{bottom:488.424400pt;}
.y118{bottom:488.428667pt;}
.y1c0{bottom:490.256133pt;}
.y18a{bottom:494.304667pt;}
.y167{bottom:501.350400pt;}
.y1bf{bottom:502.926133pt;}
.y16f{bottom:506.409467pt;}
.y2b{bottom:506.411600pt;}
.y9d{bottom:506.413733pt;}
.yb7{bottom:506.418000pt;}
.y73{bottom:506.420133pt;}
.y4b{bottom:506.422267pt;}
.y117{bottom:506.426533pt;}
.y189{bottom:510.754667pt;}
.y1be{bottom:515.596133pt;}
.y188{bottom:523.424667pt;}
.yf2{bottom:524.409467pt;}
.y16e{bottom:524.410133pt;}
.y2a{bottom:524.411600pt;}
.yb6{bottom:524.415867pt;}
.y72{bottom:524.418000pt;}
.y4a{bottom:524.420133pt;}
.y116{bottom:524.424400pt;}
.y131{bottom:524.426533pt;}
.y1bd{bottom:528.266133pt;}
.y130{bottom:537.088933pt;}
.y187{bottom:539.874667pt;}
.y1bc{bottom:540.936133pt;}
.y16d{bottom:542.409467pt;}
.yb5{bottom:542.413733pt;}
.y71{bottom:542.415867pt;}
.y49{bottom:542.418000pt;}
.y9c{bottom:542.420133pt;}
.y115{bottom:542.422267pt;}
.y29{bottom:542.426533pt;}
.y95{bottom:542.829733pt;}
.y12f{bottom:549.751333pt;}
.y186{bottom:552.544667pt;}
.y1bb{bottom:553.606133pt;}
.y94{bottom:555.492133pt;}
.y1dd{bottom:560.409467pt;}
.yb4{bottom:560.411600pt;}
.y70{bottom:560.413733pt;}
.y48{bottom:560.415867pt;}
.y9b{bottom:560.418000pt;}
.y114{bottom:560.420133pt;}
.y12e{bottom:562.413733pt;}
.y185{bottom:565.214667pt;}
.y1ba{bottom:570.056133pt;}
.y12d{bottom:575.076133pt;}
.y184{bottom:577.884667pt;}
.yb3{bottom:578.409467pt;}
.y6f{bottom:578.411600pt;}
.y47{bottom:578.413733pt;}
.y9a{bottom:578.415867pt;}
.y113{bottom:578.418000pt;}
.y28{bottom:578.422267pt;}
.y1b9{bottom:582.726133pt;}
.y107{bottom:591.076133pt;}
.y183{bottom:594.334667pt;}
.y1b8{bottom:595.396133pt;}
.y14d{bottom:596.409467pt;}
.y46{bottom:596.411600pt;}
.y99{bottom:596.413733pt;}
.y6e{bottom:596.415867pt;}
.y148{bottom:596.418000pt;}
.y27{bottom:596.420133pt;}
.y106{bottom:603.747067pt;}
.y182{bottom:607.004667pt;}
.y1b7{bottom:608.066133pt;}
.y45{bottom:614.409467pt;}
.y98{bottom:614.411600pt;}
.y6d{bottom:614.413733pt;}
.y147{bottom:614.415867pt;}
.y26{bottom:614.418000pt;}
.y105{bottom:616.409467pt;}
.y16c{bottom:618.583067pt;}
.y1b6{bottom:620.736133pt;}
.y181{bottom:623.454667pt;}
.yd8{bottom:632.409467pt;}
.y6c{bottom:632.411600pt;}
.y146{bottom:632.413733pt;}
.y25{bottom:632.415867pt;}
.yd7{bottom:632.437200pt;}
.y1b5{bottom:633.406133pt;}
.y1b4{bottom:649.856133pt;}
.y138{bottom:650.409467pt;}
.y145{bottom:650.411600pt;}
.y24{bottom:650.413733pt;}
.y6b{bottom:650.415867pt;}
.y112{bottom:650.426533pt;}
.yd6{bottom:650.435067pt;}
.y180{bottom:651.234667pt;}
.y1b3{bottom:662.526133pt;}
.y17f{bottom:663.904667pt;}
.y60{bottom:668.409467pt;}
.y23{bottom:668.411600pt;}
.y6a{bottom:668.413733pt;}
.y5f{bottom:668.418000pt;}
.y111{bottom:668.424400pt;}
.yd5{bottom:668.432933pt;}
.y1b2{bottom:675.196133pt;}
.y17e{bottom:680.354667pt;}
.y5e{bottom:681.080400pt;}
.y22{bottom:686.409467pt;}
.y69{bottom:686.411600pt;}
.y16b{bottom:686.413733pt;}
.ycd{bottom:686.422267pt;}
.y137{bottom:686.426533pt;}
.yd4{bottom:686.430800pt;}
.y1b1{bottom:691.646133pt;}
.y17d{bottom:693.024667pt;}
.y5d{bottom:693.742800pt;}
.ycc{bottom:699.084667pt;}
.y1b0{bottom:704.316133pt;}
.y68{bottom:704.409467pt;}
.y16a{bottom:704.411600pt;}
.y67{bottom:704.413733pt;}
.y110{bottom:704.420133pt;}
.y136{bottom:704.424400pt;}
.yd3{bottom:704.428667pt;}
.y17c{bottom:709.474667pt;}
.ycb{bottom:711.747067pt;}
.y5{bottom:715.078667pt;}
.y1af{bottom:716.986133pt;}
.y17b{bottom:722.144667pt;}
.y169{bottom:722.409467pt;}
.y66{bottom:722.411600pt;}
.y21{bottom:722.415867pt;}
.y10f{bottom:722.418000pt;}
.y135{bottom:722.422267pt;}
.y97{bottom:722.426533pt;}
.yca{bottom:724.409467pt;}
.y1ae{bottom:729.656133pt;}
.y17a{bottom:738.594667pt;}
.y4{bottom:740.409333pt;}
.y65{bottom:740.409467pt;}
.y20{bottom:740.413733pt;}
.y10e{bottom:740.415867pt;}
.y134{bottom:740.420133pt;}
.y96{bottom:740.424400pt;}
.y1ad{bottom:742.326133pt;}
.y179{bottom:751.264667pt;}
.y1dc{bottom:758.409467pt;}
.y1f{bottom:758.411600pt;}
.y10d{bottom:758.413733pt;}
.y133{bottom:758.418000pt;}
.y64{bottom:758.422267pt;}
.y1ac{bottom:758.776133pt;}
.y178{bottom:767.714667pt;}
.y1ab{bottom:771.446133pt;}
.y1db{bottom:776.409467pt;}
.y1e{bottom:776.411600pt;}
.y132{bottom:776.415867pt;}
.y63{bottom:776.420133pt;}
.y177{bottom:780.384667pt;}
.y1aa{bottom:784.116133pt;}
.y176{bottom:793.054667pt;}
.y3{bottom:794.409333pt;}
.y10c{bottom:794.409467pt;}
.y1d{bottom:794.413733pt;}
.y62{bottom:794.418000pt;}
.y1a9{bottom:796.786133pt;}
.y175{bottom:809.504667pt;}
.y1da{bottom:812.409467pt;}
.y1c{bottom:812.411600pt;}
.y61{bottom:812.415867pt;}
.y1a8{bottom:813.236133pt;}
.y174{bottom:822.174667pt;}
.y1a7{bottom:825.906133pt;}
.y10b{bottom:830.409467pt;}
.y1b{bottom:830.413733pt;}
.y1a6{bottom:838.576133pt;}
.y173{bottom:838.624667pt;}
.y1a{bottom:848.411600pt;}
.y2{bottom:866.409333pt;}
.y19{bottom:866.409467pt;}
.y1{bottom:922.623867pt;}
.y18{bottom:922.624000pt;}
.hf{height:24.814346pt;}
.h9{height:27.801600pt;}
.h7{height:31.480000pt;}
.hc{height:34.467200pt;}
.hb{height:34.467733pt;}
.h8{height:34.483200pt;}
.ha{height:34.492800pt;}
.he{height:34.531200pt;}
.h2{height:35.920000pt;}
.h12{height:36.040000pt;}
.h13{height:37.776000pt;}
.h10{height:39.874667pt;}
.h6{height:42.563200pt;}
.h11{height:43.248000pt;}
.h3{height:48.053333pt;}
.hd{height:54.282667pt;}
.h5{height:67.274667pt;}
.h4{height:104.144000pt;}
.h1{height:982.666667pt;}
.h0{height:982.677333pt;}
.w1{width:661.333333pt;}
.w0{width:661.417333pt;}
.x0{left:0.000000pt;}
.x1{left:64.252000pt;}
.x8{left:69.332133pt;}
.x42{left:74.412400pt;}
.x43{left:75.591300pt;}
.x3e{left:78.412533pt;}
.x2{left:79.370133pt;}
.x3c{left:82.124133pt;}
.x7{left:83.149600pt;}
.x14{left:90.958533pt;}
.x6{left:102.047200pt;}
.x47{left:104.458933pt;}
.x4{left:106.931200pt;}
.x2a{left:108.000000pt;}
.x2e{left:122.974000pt;}
.x31{left:148.105733pt;}
.x2f{left:154.704000pt;}
.x35{left:158.298133pt;}
.x12{left:159.324667pt;}
.x11{left:184.187067pt;}
.x33{left:185.966400pt;}
.x32{left:189.843067pt;}
.x30{left:194.839600pt;}
.x36{left:201.103200pt;}
.x34{left:228.112267pt;}
.x45{left:234.640800pt;}
.xd{left:238.252000pt;}
.x13{left:248.222933pt;}
.x2b{left:255.654267pt;}
.x15{left:262.972400pt;}
.x44{left:297.845200pt;}
.x16{left:302.242933pt;}
.x25{left:324.254533pt;}
.x17{left:330.143333pt;}
.x10{left:335.433067pt;}
.x18{left:336.570533pt;}
.x5{left:338.708667pt;}
.x2c{left:346.292400pt;}
.x46{left:349.576100pt;}
.x27{left:352.148133pt;}
.x37{left:359.296667pt;}
.x28{left:365.446667pt;}
.x19{left:375.894667pt;}
.x9{left:399.889200pt;}
.x1d{left:408.188933pt;}
.xa{left:410.078800pt;}
.x1a{left:411.492667pt;}
.x3b{left:423.017333pt;}
.x1e{left:434.376000pt;}
.x1b{left:439.680800pt;}
.x1c{left:446.108000pt;}
.x39{left:450.597600pt;}
.x48{left:459.597467pt;}
.x22{left:466.457067pt;}
.x2d{left:472.874933pt;}
.x29{left:482.723733pt;}
.x23{left:488.343200pt;}
.xf{left:489.979067pt;}
.xb{left:498.695600pt;}
.x1f{left:505.565467pt;}
.x38{left:510.740667pt;}
.x3f{left:539.098533pt;}
.x3a{left:541.236267pt;}
.x3{left:547.838933pt;}
.x26{left:550.078133pt;}
.x20{left:554.718933pt;}
.x21{left:558.285067pt;}
.x3d{left:560.262267pt;}
.xe{left:564.985467pt;}
.x40{left:581.503333pt;}
.xc{left:583.308533pt;}
.x24{left:587.392400pt;}
.x41{left:597.165333pt;}
}




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