
    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_081114b24b083da2a3956c42.woff')format("woff");}.ff1{font-family:ff1;line-height:1.151000;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_eb912f7e644c893bb5053980.woff')format("woff");}.ff2{font-family:ff2;line-height:1.156000;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_4738ae440cae0a650d94e3b8.woff')format("woff");}.ff3{font-family:ff3;line-height:1.153000;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_e476a7df8ea04273651d4afb.woff')format("woff");}.ff4{font-family:ff4;line-height:1.187000;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_ec7853394fca71c575421fa5.woff')format("woff");}.ff5{font-family:ff5;line-height:1.129000;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_9bfced30c9c457aa329170d1.woff')format("woff");}.ff6{font-family:ff6;line-height:1.127000;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_9b57805272bb96bb0b011e62.woff')format("woff");}.ff7{font-family:ff7;line-height:1.121000;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_7b39c25d71ff385932f0a365.woff')format("woff");}.ff8{font-family:ff8;line-height:1.143000;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_4d6c63331ac1e80a1f7ac192.woff')format("woff");}.ff9{font-family:ff9;line-height:0.675293;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.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);}
.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);}
.v3{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:19.980000px;}
.v1{vertical-align:51.978000px;}
.lsf{letter-spacing:-1.380000px;}
.ls9{letter-spacing:-1.200000px;}
.ls4{letter-spacing:-1.050000px;}
.ls6{letter-spacing:-0.960000px;}
.lsd{letter-spacing:-0.780000px;}
.lsc{letter-spacing:-0.699600px;}
.ls7{letter-spacing:-0.600000px;}
.ls1{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.349800px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.003600px;}
.ls5{letter-spacing:0.787200px;}
.lsb{letter-spacing:0.816000px;}
.lsa{letter-spacing:1.104000px;}
.ls10{letter-spacing:1.230000px;}
.lse{letter-spacing:6.004800px;}
.ls2{letter-spacing:18.090000px;}
.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;}
}
.wsb4{word-spacing:-23.712000px;}
.wsb5{word-spacing:-20.880000px;}
.wsf{word-spacing:-17.400000px;}
.ws9d{word-spacing:-16.800000px;}
.wsc7{word-spacing:-16.440000px;}
.ws0{word-spacing:-16.200000px;}
.wsb6{word-spacing:-15.024000px;}
.ws61{word-spacing:-13.920000px;}
.wse{word-spacing:-10.144200px;}
.ws8b{word-spacing:-9.794400px;}
.wsb3{word-spacing:-9.444600px;}
.ws46{word-spacing:-4.860000px;}
.ws87{word-spacing:-4.620000px;}
.wsaa{word-spacing:-4.500000px;}
.wsce{word-spacing:-4.080000px;}
.ws42{word-spacing:-3.300000px;}
.ws77{word-spacing:-3.240000px;}
.ws58{word-spacing:-3.180000px;}
.wsc0{word-spacing:-3.060000px;}
.wsde{word-spacing:-3.000000px;}
.ws96{word-spacing:-2.880000px;}
.ws3f{word-spacing:-2.820000px;}
.ws50{word-spacing:-2.700000px;}
.ws3e{word-spacing:-2.640000px;}
.wse7{word-spacing:-2.580000px;}
.ws37{word-spacing:-2.544000px;}
.wsbb{word-spacing:-2.520000px;}
.ws81{word-spacing:-2.496000px;}
.ws6{word-spacing:-2.376000px;}
.ws60{word-spacing:-2.352000px;}
.wscf{word-spacing:-2.280000px;}
.ws44{word-spacing:-2.220000px;}
.wsbd{word-spacing:-2.160000px;}
.ws3d{word-spacing:-2.064000px;}
.wsd4{word-spacing:-2.040000px;}
.wsc2{word-spacing:-2.016000px;}
.ws29{word-spacing:-1.920000px;}
.ws8d{word-spacing:-1.860000px;}
.ws8a{word-spacing:-1.824000px;}
.ws13{word-spacing:-1.800000px;}
.wsdf{word-spacing:-1.740000px;}
.ws94{word-spacing:-1.680000px;}
.wsd1{word-spacing:-1.632000px;}
.ws38{word-spacing:-1.584000px;}
.wscd{word-spacing:-1.560000px;}
.ws89{word-spacing:-1.536000px;}
.wsd0{word-spacing:-1.500000px;}
.wsb0{word-spacing:-1.488000px;}
.wsda{word-spacing:-1.380000px;}
.wsaf{word-spacing:-1.296000px;}
.ws6c{word-spacing:-1.248000px;}
.ws30{word-spacing:-1.200000px;}
.ws1b{word-spacing:-1.152000px;}
.ws92{word-spacing:-1.080000px;}
.ws5c{word-spacing:-1.020000px;}
.ws36{word-spacing:-0.960000px;}
.ws2e{word-spacing:-0.912000px;}
.wsec{word-spacing:-0.900000px;}
.ws5e{word-spacing:-0.864000px;}
.wscb{word-spacing:-0.768000px;}
.ws57{word-spacing:-0.720000px;}
.ws2a{word-spacing:-0.624000px;}
.ws97{word-spacing:-0.600000px;}
.wsd6{word-spacing:-0.540000px;}
.ws31{word-spacing:-0.480000px;}
.ws7f{word-spacing:-0.384000px;}
.wsc8{word-spacing:-0.360000px;}
.ws79{word-spacing:-0.336000px;}
.ws74{word-spacing:-0.300000px;}
.ws6e{word-spacing:-0.288000px;}
.ws1a{word-spacing:-0.240000px;}
.ws25{word-spacing:-0.192000px;}
.wsd8{word-spacing:-0.180000px;}
.ws1{word-spacing:0.000000px;}
.wsdc{word-spacing:0.048000px;}
.ws75{word-spacing:0.060000px;}
.wse6{word-spacing:0.120000px;}
.ws83{word-spacing:0.180000px;}
.wsd2{word-spacing:0.288000px;}
.ws43{word-spacing:0.300000px;}
.ws78{word-spacing:0.336000px;}
.wse5{word-spacing:0.360000px;}
.wsa4{word-spacing:0.420000px;}
.wsa3{word-spacing:0.480000px;}
.ws2{word-spacing:0.540000px;}
.ws48{word-spacing:0.576000px;}
.ws8e{word-spacing:0.600000px;}
.ws4a{word-spacing:0.624000px;}
.wsa1{word-spacing:0.660000px;}
.wsd{word-spacing:0.672000px;}
.ws3{word-spacing:0.702000px;}
.ws15{word-spacing:0.720000px;}
.ws3b{word-spacing:0.768000px;}
.ws95{word-spacing:0.780000px;}
.ws72{word-spacing:0.816000px;}
.wsb7{word-spacing:0.840000px;}
.ws3c{word-spacing:0.864000px;}
.wsd9{word-spacing:0.900000px;}
.ws6a{word-spacing:0.960000px;}
.ws82{word-spacing:1.008000px;}
.ws86{word-spacing:1.020000px;}
.ws4e{word-spacing:1.080000px;}
.ws26{word-spacing:1.104000px;}
.ws51{word-spacing:1.140000px;}
.ws8{word-spacing:1.188000px;}
.ws4d{word-spacing:1.200000px;}
.ws7d{word-spacing:1.248000px;}
.wseb{word-spacing:1.260000px;}
.ws88{word-spacing:1.296000px;}
.ws19{word-spacing:1.320000px;}
.ws85{word-spacing:1.380000px;}
.ws3a{word-spacing:1.392000px;}
.ws27{word-spacing:1.440000px;}
.ws5f{word-spacing:1.488000px;}
.wsa6{word-spacing:1.500000px;}
.wsc{word-spacing:1.512000px;}
.ws34{word-spacing:1.536000px;}
.ws2b{word-spacing:1.560000px;}
.ws66{word-spacing:1.620000px;}
.ws6d{word-spacing:1.632000px;}
.ws4c{word-spacing:1.680000px;}
.ws9b{word-spacing:1.728000px;}
.ws84{word-spacing:1.740000px;}
.wsa8{word-spacing:1.800000px;}
.ws80{word-spacing:1.824000px;}
.wsea{word-spacing:1.860000px;}
.ws7b{word-spacing:1.872000px;}
.ws23{word-spacing:1.920000px;}
.ws32{word-spacing:1.968000px;}
.ws2d{word-spacing:1.980000px;}
.ws4f{word-spacing:2.100000px;}
.ws10{word-spacing:2.106000px;}
.ws64{word-spacing:2.160000px;}
.ws7e{word-spacing:2.208000px;}
.ws5d{word-spacing:2.256000px;}
.ws67{word-spacing:2.340000px;}
.wsed{word-spacing:2.520000px;}
.ws49{word-spacing:2.592000px;}
.ws6f{word-spacing:2.640000px;}
.ws33{word-spacing:2.688000px;}
.ws93{word-spacing:2.700000px;}
.wsb2{word-spacing:2.736000px;}
.ws40{word-spacing:2.760000px;}
.ws24{word-spacing:2.784000px;}
.ws4b{word-spacing:2.820000px;}
.ws7c{word-spacing:2.832000px;}
.ws52{word-spacing:2.880000px;}
.ws35{word-spacing:2.976000px;}
.ws14{word-spacing:3.000000px;}
.ws1f{word-spacing:3.060000px;}
.wsab{word-spacing:3.120000px;}
.ws2c{word-spacing:3.180000px;}
.wscc{word-spacing:3.312000px;}
.wsbc{word-spacing:3.360000px;}
.ws21{word-spacing:3.420000px;}
.wsa{word-spacing:3.456000px;}
.wsad{word-spacing:3.480000px;}
.ws28{word-spacing:3.600000px;}
.ws4{word-spacing:3.618000px;}
.ws17{word-spacing:3.660000px;}
.wsa9{word-spacing:3.696000px;}
.ws54{word-spacing:3.720000px;}
.wsb1{word-spacing:3.888000px;}
.ws2f{word-spacing:3.936000px;}
.ws70{word-spacing:3.984000px;}
.ws91{word-spacing:4.020000px;}
.wsba{word-spacing:4.140000px;}
.ws8c{word-spacing:4.260000px;}
.ws62{word-spacing:4.320000px;}
.wse8{word-spacing:4.380000px;}
.wsc5{word-spacing:4.416000px;}
.ws6b{word-spacing:4.464000px;}
.ws45{word-spacing:4.500000px;}
.ws12{word-spacing:4.620000px;}
.ws5b{word-spacing:4.740000px;}
.ws5{word-spacing:4.752000px;}
.wse3{word-spacing:4.800000px;}
.ws9a{word-spacing:4.848000px;}
.ws18{word-spacing:4.920000px;}
.ws53{word-spacing:4.980000px;}
.ws63{word-spacing:5.040000px;}
.ws71{word-spacing:5.184000px;}
.ws47{word-spacing:5.232000px;}
.wsc4{word-spacing:5.328000px;}
.wsee{word-spacing:5.340000px;}
.ws1d{word-spacing:5.400000px;}
.ws1c{word-spacing:5.460000px;}
.ws55{word-spacing:5.520000px;}
.wsc6{word-spacing:5.616000px;}
.wse4{word-spacing:5.640000px;}
.wsac{word-spacing:5.760000px;}
.wsa0{word-spacing:5.880000px;}
.wsc1{word-spacing:6.000000px;}
.wsb8{word-spacing:6.060000px;}
.wsa7{word-spacing:6.360000px;}
.ws90{word-spacing:6.600000px;}
.wsdd{word-spacing:6.624000px;}
.wse1{word-spacing:6.660000px;}
.wsa5{word-spacing:6.720000px;}
.wse2{word-spacing:6.780000px;}
.ws41{word-spacing:6.840000px;}
.ws9e{word-spacing:6.900000px;}
.wsd5{word-spacing:6.912000px;}
.wsae{word-spacing:6.960000px;}
.ws99{word-spacing:7.104000px;}
.ws68{word-spacing:7.140000px;}
.ws98{word-spacing:7.152000px;}
.wsdb{word-spacing:7.380000px;}
.ws59{word-spacing:7.440000px;}
.ws69{word-spacing:7.488000px;}
.ws8f{word-spacing:7.500000px;}
.ws9f{word-spacing:7.620000px;}
.ws39{word-spacing:7.680000px;}
.wsc3{word-spacing:7.728000px;}
.wsa2{word-spacing:7.800000px;}
.ws1e{word-spacing:7.920000px;}
.ws20{word-spacing:7.980000px;}
.ws56{word-spacing:8.160000px;}
.ws9c{word-spacing:8.208000px;}
.ws16{word-spacing:8.280000px;}
.wsc9{word-spacing:8.460000px;}
.wse0{word-spacing:8.580000px;}
.wsb9{word-spacing:8.700000px;}
.wsca{word-spacing:8.880000px;}
.ws9{word-spacing:9.018000px;}
.ws7{word-spacing:9.072000px;}
.ws76{word-spacing:9.240000px;}
.wsb{word-spacing:9.288000px;}
.ws73{word-spacing:10.020000px;}
.wse9{word-spacing:10.080000px;}
.ws22{word-spacing:10.620000px;}
.ws65{word-spacing:11.640000px;}
.wsd7{word-spacing:11.880000px;}
.wsbe{word-spacing:12.864000px;}
.ws5a{word-spacing:16.140000px;}
.ws11{word-spacing:18.090000px;}
.wsd3{word-spacing:18.900000px;}
.wsbf{word-spacing:20.688000px;}
.ws7a{word-spacing:55.008000px;}
._19{margin-left:-6.956400px;}
._2{margin-left:-5.952000px;}
._1{margin-left:-4.425600px;}
._11{margin-left:-3.364800px;}
._0{margin-left:-2.313600px;}
._3{margin-left:-1.301400px;}
._5{width:1.066200px;}
._6{width:2.386800px;}
._a{width:3.458400px;}
._9{width:4.596000px;}
._d{width:5.781600px;}
._c{width:7.672800px;}
._b{width:8.881200px;}
._7{width:9.981600px;}
._e{width:11.262000px;}
._18{width:12.702000px;}
._4{width:16.761600px;}
._13{width:18.444000px;}
._16{width:20.107200px;}
._17{width:21.249600px;}
._15{width:59.328000px;}
._14{width:64.560000px;}
._10{width:66.480000px;}
._12{width:68.064000px;}
._8{width:94.320000px;}
._f{width:96.240000px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:34.980000px;}
.fs2{font-size:38.478000px;}
.fs5{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs9{font-size:72.000000px;}
.fs8{font-size:78.000000px;}
.fs6{font-size:84.000000px;}
.fs1{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:54.779550px;}
.y192{bottom:106.279500px;}
.y4b{bottom:106.284000px;}
.y110{bottom:106.287000px;}
.ya5{bottom:106.291500px;}
.y7a{bottom:106.296000px;}
.y21{bottom:106.299450px;}
.y211{bottom:109.333500px;}
.y4a{bottom:121.284000px;}
.y10f{bottom:121.287000px;}
.ya4{bottom:121.291500px;}
.y79{bottom:121.296000px;}
.y20{bottom:121.299450px;}
.y210{bottom:127.333500px;}
.y191{bottom:127.543500px;}
.yc8{bottom:127.555500px;}
.y49{bottom:136.284000px;}
.y10e{bottom:136.287000px;}
.ya3{bottom:136.291500px;}
.y78{bottom:136.296000px;}
.y1f{bottom:136.299450px;}
.y190{bottom:142.543500px;}
.y124{bottom:142.551000px;}
.yc7{bottom:142.555500px;}
.y1d3{bottom:142.560000px;}
.y20f{bottom:145.333500px;}
.y48{bottom:151.284000px;}
.y10d{bottom:151.287000px;}
.ya2{bottom:151.291500px;}
.yed{bottom:151.296000px;}
.y18f{bottom:157.543500px;}
.y123{bottom:157.551000px;}
.yc6{bottom:157.555500px;}
.y77{bottom:157.560000px;}
.y20e{bottom:163.333500px;}
.yda{bottom:163.819500px;}
.y47{bottom:166.284000px;}
.y10c{bottom:166.287000px;}
.ya1{bottom:166.291500px;}
.yec{bottom:166.296000px;}
.y18e{bottom:172.543500px;}
.y122{bottom:172.551000px;}
.yc5{bottom:172.555500px;}
.y76{bottom:172.560000px;}
.yd9{bottom:178.819500px;}
.y46{bottom:181.284000px;}
.y10b{bottom:181.287000px;}
.ya0{bottom:181.291500px;}
.y20d{bottom:181.333500px;}
.y12e{bottom:187.548000px;}
.y121{bottom:187.551000px;}
.yc4{bottom:187.555500px;}
.y75{bottom:187.560000px;}
.y1e{bottom:193.086000px;}
.y18d{bottom:193.807500px;}
.yd8{bottom:193.819500px;}
.y10a{bottom:196.287000px;}
.y9f{bottom:196.291500px;}
.y45{bottom:202.548000px;}
.y120{bottom:202.551000px;}
.yc3{bottom:202.555500px;}
.y74{bottom:202.560000px;}
.y18c{bottom:208.807500px;}
.y1c3{bottom:208.815000px;}
.yd7{bottom:208.819500px;}
.y1d{bottom:209.583000px;}
.y109{bottom:211.287000px;}
.y22e{bottom:213.208500px;}
.y20c{bottom:216.343500px;}
.y44{bottom:217.548000px;}
.y9e{bottom:217.555500px;}
.y73{bottom:217.560000px;}
.y18b{bottom:223.807500px;}
.y11f{bottom:223.815000px;}
.yd6{bottom:223.819500px;}
.y1c{bottom:226.080000px;}
.y108{bottom:226.287000px;}
.y22d{bottom:231.208500px;}
.y43{bottom:232.548000px;}
.y9d{bottom:232.555500px;}
.y72{bottom:232.560000px;}
.y20b{bottom:234.343500px;}
.y18a{bottom:238.807500px;}
.y11e{bottom:238.815000px;}
.yd5{bottom:238.819500px;}
.y107{bottom:241.287000px;}
.y1c2{bottom:245.079000px;}
.y42{bottom:247.548000px;}
.y9c{bottom:247.555500px;}
.y71{bottom:247.560000px;}
.y22c{bottom:249.208500px;}
.y20a{bottom:252.343500px;}
.y1b{bottom:253.215000px;}
.y189{bottom:253.807500px;}
.y11d{bottom:253.815000px;}
.yc2{bottom:253.819500px;}
.y106{bottom:256.287000px;}
.y1c1{bottom:260.079000px;}
.y41{bottom:262.548000px;}
.y9b{bottom:262.555500px;}
.y70{bottom:262.560000px;}
.y1d2{bottom:262.872000px;}
.y153{bottom:266.545500px;}
.y22b{bottom:267.208500px;}
.y188{bottom:268.807500px;}
.y12d{bottom:268.812000px;}
.y11c{bottom:268.815000px;}
.yc1{bottom:268.819500px;}
.y1a{bottom:269.712000px;}
.y209{bottom:270.343500px;}
.y1c0{bottom:275.079000px;}
.y40{bottom:277.548000px;}
.y105{bottom:277.551000px;}
.y9a{bottom:277.555500px;}
.y6f{bottom:277.560000px;}
.y1d1{bottom:280.572000px;}
.y187{bottom:283.807500px;}
.yc0{bottom:283.819500px;}
.y152{bottom:284.545500px;}
.y19{bottom:286.209000px;}
.y12c{bottom:290.076000px;}
.y11b{bottom:290.079000px;}
.y3f{bottom:292.548000px;}
.y104{bottom:292.551000px;}
.y99{bottom:292.555500px;}
.y6e{bottom:292.560000px;}
.y22a{bottom:295.843500px;}
.y1ef{bottom:297.517500px;}
.y186{bottom:298.807500px;}
.ybf{bottom:298.819500px;}
.y151{bottom:302.545500px;}
.y18{bottom:302.706000px;}
.y1d0{bottom:304.647000px;}
.y12b{bottom:305.076000px;}
.y11a{bottom:305.079000px;}
.y208{bottom:305.353500px;}
.yeb{bottom:305.899500px;}
.y3e{bottom:307.548000px;}
.y98{bottom:307.555500px;}
.y6d{bottom:307.560000px;}
.y16b{bottom:308.521500px;}
.y185{bottom:313.807500px;}
.y103{bottom:313.815000px;}
.ybe{bottom:313.819500px;}
.y229{bottom:313.843500px;}
.y1ee{bottom:315.217500px;}
.y17{bottom:319.203000px;}
.y119{bottom:320.079000px;}
.y150{bottom:320.545500px;}
.y1cf{bottom:322.347000px;}
.y3d{bottom:322.548000px;}
.y97{bottom:322.555500px;}
.y6c{bottom:322.560000px;}
.y207{bottom:323.353500px;}
.yea{bottom:323.899500px;}
.y12a{bottom:326.340000px;}
.y16a{bottom:326.521500px;}
.y184{bottom:328.807500px;}
.y102{bottom:328.815000px;}
.ybd{bottom:328.819500px;}
.y228{bottom:331.843500px;}
.y1ed{bottom:332.917500px;}
.y118{bottom:335.079000px;}
.y96{bottom:337.555500px;}
.y6b{bottom:337.560000px;}
.y14f{bottom:338.545500px;}
.y1ce{bottom:340.047000px;}
.y129{bottom:341.340000px;}
.y206{bottom:341.353500px;}
.ye9{bottom:341.899500px;}
.y183{bottom:343.807500px;}
.y3c{bottom:343.812000px;}
.y101{bottom:343.815000px;}
.ybc{bottom:343.819500px;}
.y169{bottom:344.521500px;}
.y16{bottom:346.338000px;}
.y117{bottom:350.079000px;}
.yd4{bottom:350.167500px;}
.y1ec{bottom:350.617500px;}
.y95{bottom:352.555500px;}
.y6a{bottom:352.560000px;}
.y128{bottom:356.340000px;}
.y14e{bottom:356.545500px;}
.y1cd{bottom:357.750000px;}
.y3b{bottom:358.812000px;}
.y100{bottom:358.815000px;}
.ybb{bottom:358.819500px;}
.y205{bottom:359.053500px;}
.ye8{bottom:359.899500px;}
.y227{bottom:360.478500px;}
.y168{bottom:362.521500px;}
.y15{bottom:362.835000px;}
.y182{bottom:365.071500px;}
.y116{bottom:365.079000px;}
.y94{bottom:367.555500px;}
.y69{bottom:367.560000px;}
.yd3{bottom:368.167500px;}
.y127{bottom:371.340000px;}
.yff{bottom:373.815000px;}
.yba{bottom:373.819500px;}
.y14d{bottom:374.545500px;}
.ye7{bottom:377.899500px;}
.y226{bottom:378.478500px;}
.y14{bottom:379.332000px;}
.y181{bottom:380.071500px;}
.y3a{bottom:380.076000px;}
.y115{bottom:380.079000px;}
.y167{bottom:380.521500px;}
.y1eb{bottom:381.067500px;}
.y1bf{bottom:381.528000px;}
.y1cc{bottom:381.825000px;}
.y93{bottom:382.555500px;}
.y68{bottom:382.560000px;}
.yd2{bottom:386.167500px;}
.y126{bottom:386.340000px;}
.yfe{bottom:388.815000px;}
.yb9{bottom:388.819500px;}
.y14c{bottom:392.545500px;}
.y204{bottom:393.763500px;}
.y114{bottom:395.079000px;}
.ye6{bottom:395.899500px;}
.y225{bottom:396.478500px;}
.y92{bottom:397.555500px;}
.y67{bottom:397.560000px;}
.y166{bottom:398.521500px;}
.y1ea{bottom:398.767500px;}
.y1cb{bottom:399.525000px;}
.y1be{bottom:399.528000px;}
.y180{bottom:401.335500px;}
.y39{bottom:401.340000px;}
.yfd{bottom:403.815000px;}
.yb8{bottom:403.819500px;}
.yd1{bottom:404.167500px;}
.y13{bottom:406.467000px;}
.y113{bottom:410.079000px;}
.y14b{bottom:410.545500px;}
.y203{bottom:411.463500px;}
.y91{bottom:412.555500px;}
.y66{bottom:412.560000px;}
.ye5{bottom:413.899500px;}
.y17f{bottom:416.335500px;}
.y38{bottom:416.340000px;}
.y1e9{bottom:416.467500px;}
.y165{bottom:416.521500px;}
.y1ca{bottom:417.225000px;}
.y1bd{bottom:417.528000px;}
.y158{bottom:418.819500px;}
.yd0{bottom:422.167500px;}
.y12{bottom:422.964000px;}
.yfc{bottom:425.079000px;}
.y224{bottom:425.113500px;}
.y90{bottom:427.555500px;}
.y65{bottom:427.560000px;}
.y14a{bottom:428.545500px;}
.y202{bottom:429.163500px;}
.y17e{bottom:431.335500px;}
.y125{bottom:431.340000px;}
.ye4{bottom:431.899500px;}
.y157{bottom:433.819500px;}
.y1e8{bottom:434.167500px;}
.y164{bottom:434.521500px;}
.y1c9{bottom:434.925000px;}
.y1bc{bottom:435.528000px;}
.y11{bottom:439.461000px;}
.yfb{bottom:440.079000px;}
.ycf{bottom:440.167500px;}
.y8f{bottom:442.555500px;}
.y64{bottom:442.560000px;}
.y223{bottom:443.113500px;}
.y17d{bottom:446.335500px;}
.y149{bottom:446.545500px;}
.y156{bottom:448.819500px;}
.ye3{bottom:449.899500px;}
.y163{bottom:452.521500px;}
.y1c8{bottom:452.625000px;}
.y1bb{bottom:453.528000px;}
.yfa{bottom:455.079000px;}
.y10{bottom:455.958000px;}
.y8e{bottom:457.555500px;}
.y63{bottom:457.560000px;}
.yce{bottom:458.167500px;}
.yb7{bottom:458.170500px;}
.y222{bottom:461.113500px;}
.y155{bottom:463.819500px;}
.y201{bottom:463.873500px;}
.y148{bottom:464.545500px;}
.y1e7{bottom:464.617500px;}
.y17c{bottom:467.599500px;}
.ye2{bottom:467.899500px;}
.y112{bottom:470.079000px;}
.y1c7{bottom:470.325000px;}
.yf{bottom:472.455000px;}
.y8d{bottom:472.555500px;}
.y62{bottom:472.560000px;}
.y37{bottom:474.895500px;}
.ycd{bottom:476.167500px;}
.yb6{bottom:476.170500px;}
.y1ba{bottom:477.906000px;}
.y145{bottom:479.037000px;}
.y162{bottom:479.521500px;}
.y200{bottom:481.573500px;}
.y1e6{bottom:482.317500px;}
.y147{bottom:482.545500px;}
.y17b{bottom:482.599500px;}
.y111{bottom:485.079000px;}
.ye1{bottom:485.899500px;}
.y8c{bottom:487.555500px;}
.y61{bottom:487.560000px;}
.y1c6{bottom:488.025000px;}
.ye{bottom:488.952000px;}
.y221{bottom:489.748500px;}
.y36{bottom:492.895500px;}
.ycc{bottom:494.167500px;}
.yb5{bottom:494.170500px;}
.y1b9{bottom:495.906000px;}
.y144{bottom:497.037000px;}
.y161{bottom:497.521500px;}
.y17a{bottom:497.599500px;}
.y1ff{bottom:499.273500px;}
.y1e5{bottom:500.317500px;}
.y146{bottom:500.545500px;}
.yf9{bottom:500.548500px;}
.y8b{bottom:502.555500px;}
.ye0{bottom:503.899500px;}
.y220{bottom:507.748500px;}
.y35{bottom:510.895500px;}
.yd{bottom:511.834500px;}
.ycb{bottom:512.170500px;}
.y179{bottom:512.599500px;}
.y1b8{bottom:513.906000px;}
.y143{bottom:515.037000px;}
.y160{bottom:515.521500px;}
.y1a8{bottom:516.298500px;}
.y1fe{bottom:516.973500px;}
.y8a{bottom:517.555500px;}
.yb4{bottom:518.545500px;}
.yf8{bottom:518.548500px;}
.ydf{bottom:521.899500px;}
.y1c5{bottom:523.033500px;}
.y21f{bottom:525.748500px;}
.yc{bottom:528.331500px;}
.y34{bottom:528.895500px;}
.y60{bottom:530.170500px;}
.y1e4{bottom:531.067500px;}
.y1b7{bottom:531.906000px;}
.y89{bottom:532.555500px;}
.y142{bottom:533.037000px;}
.y15f{bottom:533.521500px;}
.y1a7{bottom:534.298500px;}
.yb3{bottom:536.545500px;}
.yf7{bottom:536.548500px;}
.yde{bottom:539.899500px;}
.yb{bottom:544.828500px;}
.y33{bottom:546.895500px;}
.y88{bottom:547.555500px;}
.y5f{bottom:548.170500px;}
.y1e3{bottom:549.067500px;}
.y1b6{bottom:549.906000px;}
.y141{bottom:551.037000px;}
.y15e{bottom:551.521500px;}
.y1fd{bottom:551.683500px;}
.y1a6{bottom:552.298500px;}
.y21e{bottom:554.383500px;}
.yb2{bottom:554.545500px;}
.y154{bottom:554.548500px;}
.ydd{bottom:557.899500px;}
.yf6{bottom:560.923500px;}
.ya{bottom:561.325500px;}
.y87{bottom:562.555500px;}
.y32{bottom:564.895500px;}
.y178{bottom:566.167500px;}
.y5e{bottom:566.170500px;}
.y1e2{bottom:567.067500px;}
.y1b5{bottom:567.906000px;}
.y140{bottom:569.037000px;}
.y1fc{bottom:569.383500px;}
.y15d{bottom:569.521500px;}
.y1a5{bottom:570.298500px;}
.y21d{bottom:572.383500px;}
.yb1{bottom:572.545500px;}
.y1c4{bottom:572.548500px;}
.ydc{bottom:575.899500px;}
.y9{bottom:577.822500px;}
.yf5{bottom:578.923500px;}
.y31{bottom:582.897000px;}
.y86{bottom:583.819500px;}
.y177{bottom:584.167500px;}
.y5d{bottom:584.170500px;}
.y1b4{bottom:585.906000px;}
.y13f{bottom:587.037000px;}
.y1fb{bottom:587.083500px;}
.y15c{bottom:587.521500px;}
.y21c{bottom:590.383500px;}
.yb0{bottom:590.545500px;}
.yca{bottom:590.548500px;}
.y1a4{bottom:594.673500px;}
.y1e1{bottom:595.702500px;}
.yf4{bottom:596.923500px;}
.y85{bottom:598.819500px;}
.y30{bottom:600.897000px;}
.y176{bottom:602.167500px;}
.y1b3{bottom:603.906000px;}
.y13e{bottom:605.037000px;}
.y5c{bottom:608.545500px;}
.yaf{bottom:608.548500px;}
.ydb{bottom:610.908000px;}
.y1a3{bottom:612.673500px;}
.y1e0{bottom:613.702500px;}
.y84{bottom:613.819500px;}
.yf3{bottom:614.923500px;}
.y21b{bottom:619.018500px;}
.y175{bottom:620.167500px;}
.y1fa{bottom:621.793500px;}
.y1b2{bottom:621.906000px;}
.y15b{bottom:623.022000px;}
.y13d{bottom:623.037000px;}
.y2f{bottom:625.272000px;}
.y5b{bottom:626.545500px;}
.yae{bottom:626.548500px;}
.y83{bottom:628.819500px;}
.y1a2{bottom:630.673500px;}
.y1df{bottom:631.702500px;}
.yf2{bottom:632.923500px;}
.y21a{bottom:637.018500px;}
.y174{bottom:638.167500px;}
.y1f9{bottom:639.493500px;}
.y1b1{bottom:639.906000px;}
.y13c{bottom:641.037000px;}
.y8{bottom:641.097000px;}
.y2e{bottom:643.272000px;}
.y82{bottom:643.819500px;}
.y5a{bottom:644.545500px;}
.yad{bottom:644.548500px;}
.y15a{bottom:645.525000px;}
.y1a1{bottom:648.673500px;}
.yf1{bottom:650.923500px;}
.y219{bottom:655.018500px;}
.y1de{bottom:656.077500px;}
.y173{bottom:656.167500px;}
.y1f8{bottom:657.193500px;}
.y7{bottom:657.594000px;}
.y1b0{bottom:657.906000px;}
.y81{bottom:658.819500px;}
.y13b{bottom:659.040000px;}
.y2d{bottom:661.272000px;}
.y59{bottom:662.545500px;}
.yac{bottom:662.548500px;}
.y1a0{bottom:666.673500px;}
.yf0{bottom:668.923500px;}
.y80{bottom:673.819500px;}
.y1dd{bottom:674.077500px;}
.y6{bottom:674.091000px;}
.y172{bottom:674.167500px;}
.y13a{bottom:677.040000px;}
.y2c{bottom:679.272000px;}
.y58{bottom:680.545500px;}
.yab{bottom:680.548500px;}
.y1af{bottom:682.281000px;}
.y218{bottom:683.653500px;}
.y19f{bottom:684.673500px;}
.yef{bottom:686.923500px;}
.y159{bottom:689.286000px;}
.y1f7{bottom:691.903500px;}
.y1dc{bottom:692.077500px;}
.y171{bottom:692.167500px;}
.y5{bottom:694.842000px;}
.y139{bottom:695.040000px;}
.y2b{bottom:697.272000px;}
.y57{bottom:698.545500px;}
.yaa{bottom:698.548500px;}
.y1ae{bottom:700.281000px;}
.y217{bottom:701.653500px;}
.y19e{bottom:702.673500px;}
.yee{bottom:704.923500px;}
.y1f6{bottom:709.603500px;}
.y170{bottom:710.170500px;}
.y138{bottom:713.040000px;}
.y2a{bottom:715.272000px;}
.y56{bottom:716.545500px;}
.y7f{bottom:716.548500px;}
.y1ad{bottom:718.281000px;}
.y216{bottom:719.653500px;}
.y19d{bottom:720.673500px;}
.yc9{bottom:722.923500px;}
.y1db{bottom:727.086000px;}
.y1f5{bottom:727.303500px;}
.y16f{bottom:728.170500px;}
.y137{bottom:731.040000px;}
.y29{bottom:733.272000px;}
.y55{bottom:734.545500px;}
.y7e{bottom:734.548500px;}
.y1ac{bottom:736.281000px;}
.y215{bottom:737.653500px;}
.y19c{bottom:738.673500px;}
.ya9{bottom:740.923500px;}
.y1f4{bottom:745.003500px;}
.y16e{bottom:752.545500px;}
.y54{bottom:752.548500px;}
.y1ab{bottom:754.281000px;}
.y136{bottom:755.415000px;}
.y4{bottom:755.859000px;}
.y19b{bottom:756.673500px;}
.ya8{bottom:758.923500px;}
.y1f3{bottom:762.703500px;}
.y214{bottom:766.288500px;}
.y28{bottom:768.277500px;}
.y16d{bottom:770.545500px;}
.y53{bottom:770.548500px;}
.y1aa{bottom:772.281000px;}
.y135{bottom:773.415000px;}
.y19a{bottom:774.673500px;}
.ya7{bottom:776.923500px;}
.y1da{bottom:778.723500px;}
.y3{bottom:782.859000px;}
.y213{bottom:784.288500px;}
.y16c{bottom:788.545500px;}
.y52{bottom:788.548500px;}
.y134{bottom:791.415000px;}
.y27{bottom:792.280500px;}
.y199{bottom:792.673500px;}
.ya6{bottom:794.923500px;}
.y1d9{bottom:796.723500px;}
.y1f2{bottom:797.413500px;}
.y212{bottom:802.288500px;}
.y1a9{bottom:803.037000px;}
.y7d{bottom:806.548500px;}
.y133{bottom:809.415000px;}
.y2{bottom:809.859000px;}
.y198{bottom:810.673500px;}
.y51{bottom:812.923500px;}
.y1d8{bottom:814.423500px;}
.y1f1{bottom:815.113500px;}
.y7c{bottom:824.548500px;}
.y132{bottom:827.415000px;}
.y197{bottom:828.673500px;}
.y50{bottom:830.923500px;}
.y1d7{bottom:832.123500px;}
.y1f0{bottom:832.813500px;}
.y7b{bottom:842.548500px;}
.y26{bottom:843.919500px;}
.y131{bottom:845.415000px;}
.y196{bottom:846.673500px;}
.y4f{bottom:848.923500px;}
.y1d6{bottom:849.823500px;}
.y25{bottom:860.416500px;}
.y130{bottom:863.415000px;}
.y195{bottom:864.673500px;}
.y4e{bottom:866.923500px;}
.y1d5{bottom:867.523500px;}
.y194{bottom:882.673500px;}
.y4d{bottom:884.923500px;}
.y1d4{bottom:885.223500px;}
.y24{bottom:887.551500px;}
.y12f{bottom:898.423500px;}
.y193{bottom:900.673500px;}
.y4c{bottom:902.923500px;}
.y23{bottom:904.048500px;}
.y22{bottom:961.573500px;}
.h8{height:38.682000px;}
.hd{height:39.018000px;}
.h7{height:44.208000px;}
.h2{height:44.592000px;}
.h5{height:49.734000px;}
.h6{height:50.166000px;}
.hb{height:55.260000px;}
.he{height:55.728000px;}
.hc{height:55.734000px;}
.ha{height:55.740000px;}
.h4{height:57.300000px;}
.h12{height:66.300000px;}
.h11{height:66.312000px;}
.h10{height:71.838000px;}
.hf{height:74.490000px;}
.h9{height:80.220000px;}
.h3{height:89.376000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835015px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xb{left:85.039350px;}
.xd{left:102.045150px;}
.xa{left:105.986100px;}
.xe{left:110.554350px;}
.xc{left:119.055150px;}
.x9{left:122.985000px;}
.x12{left:127.564350px;}
.x8{left:139.995000px;}
.x10{left:144.576750px;}
.x11{left:148.824150px;}
.x3{left:163.812000px;}
.x2{left:165.348000px;}
.xf{left:181.398000px;}
.x7{left:186.799500px;}
.x4{left:210.036000px;}
.x5{left:294.732000px;}
.x6{left:309.676500px;}
.x1{left:616.915500px;}
@media print{
.v3{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:17.760000pt;}
.v1{vertical-align:46.202667pt;}
.lsf{letter-spacing:-1.226667pt;}
.ls9{letter-spacing:-1.066667pt;}
.ls4{letter-spacing:-0.933333pt;}
.ls6{letter-spacing:-0.853333pt;}
.lsd{letter-spacing:-0.693333pt;}
.lsc{letter-spacing:-0.621867pt;}
.ls7{letter-spacing:-0.533333pt;}
.ls1{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.310933pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.003200pt;}
.ls5{letter-spacing:0.699733pt;}
.lsb{letter-spacing:0.725333pt;}
.lsa{letter-spacing:0.981333pt;}
.ls10{letter-spacing:1.093333pt;}
.lse{letter-spacing:5.337600pt;}
.ls2{letter-spacing:16.080000pt;}
.wsb4{word-spacing:-21.077333pt;}
.wsb5{word-spacing:-18.560000pt;}
.wsf{word-spacing:-15.466667pt;}
.ws9d{word-spacing:-14.933333pt;}
.wsc7{word-spacing:-14.613333pt;}
.ws0{word-spacing:-14.400000pt;}
.wsb6{word-spacing:-13.354667pt;}
.ws61{word-spacing:-12.373333pt;}
.wse{word-spacing:-9.017067pt;}
.ws8b{word-spacing:-8.706133pt;}
.wsb3{word-spacing:-8.395200pt;}
.ws46{word-spacing:-4.320000pt;}
.ws87{word-spacing:-4.106667pt;}
.wsaa{word-spacing:-4.000000pt;}
.wsce{word-spacing:-3.626667pt;}
.ws42{word-spacing:-2.933333pt;}
.ws77{word-spacing:-2.880000pt;}
.ws58{word-spacing:-2.826667pt;}
.wsc0{word-spacing:-2.720000pt;}
.wsde{word-spacing:-2.666667pt;}
.ws96{word-spacing:-2.560000pt;}
.ws3f{word-spacing:-2.506667pt;}
.ws50{word-spacing:-2.400000pt;}
.ws3e{word-spacing:-2.346667pt;}
.wse7{word-spacing:-2.293333pt;}
.ws37{word-spacing:-2.261333pt;}
.wsbb{word-spacing:-2.240000pt;}
.ws81{word-spacing:-2.218667pt;}
.ws6{word-spacing:-2.112000pt;}
.ws60{word-spacing:-2.090667pt;}
.wscf{word-spacing:-2.026667pt;}
.ws44{word-spacing:-1.973333pt;}
.wsbd{word-spacing:-1.920000pt;}
.ws3d{word-spacing:-1.834667pt;}
.wsd4{word-spacing:-1.813333pt;}
.wsc2{word-spacing:-1.792000pt;}
.ws29{word-spacing:-1.706667pt;}
.ws8d{word-spacing:-1.653333pt;}
.ws8a{word-spacing:-1.621333pt;}
.ws13{word-spacing:-1.600000pt;}
.wsdf{word-spacing:-1.546667pt;}
.ws94{word-spacing:-1.493333pt;}
.wsd1{word-spacing:-1.450667pt;}
.ws38{word-spacing:-1.408000pt;}
.wscd{word-spacing:-1.386667pt;}
.ws89{word-spacing:-1.365333pt;}
.wsd0{word-spacing:-1.333333pt;}
.wsb0{word-spacing:-1.322667pt;}
.wsda{word-spacing:-1.226667pt;}
.wsaf{word-spacing:-1.152000pt;}
.ws6c{word-spacing:-1.109333pt;}
.ws30{word-spacing:-1.066667pt;}
.ws1b{word-spacing:-1.024000pt;}
.ws92{word-spacing:-0.960000pt;}
.ws5c{word-spacing:-0.906667pt;}
.ws36{word-spacing:-0.853333pt;}
.ws2e{word-spacing:-0.810667pt;}
.wsec{word-spacing:-0.800000pt;}
.ws5e{word-spacing:-0.768000pt;}
.wscb{word-spacing:-0.682667pt;}
.ws57{word-spacing:-0.640000pt;}
.ws2a{word-spacing:-0.554667pt;}
.ws97{word-spacing:-0.533333pt;}
.wsd6{word-spacing:-0.480000pt;}
.ws31{word-spacing:-0.426667pt;}
.ws7f{word-spacing:-0.341333pt;}
.wsc8{word-spacing:-0.320000pt;}
.ws79{word-spacing:-0.298667pt;}
.ws74{word-spacing:-0.266667pt;}
.ws6e{word-spacing:-0.256000pt;}
.ws1a{word-spacing:-0.213333pt;}
.ws25{word-spacing:-0.170667pt;}
.wsd8{word-spacing:-0.160000pt;}
.ws1{word-spacing:0.000000pt;}
.wsdc{word-spacing:0.042667pt;}
.ws75{word-spacing:0.053333pt;}
.wse6{word-spacing:0.106667pt;}
.ws83{word-spacing:0.160000pt;}
.wsd2{word-spacing:0.256000pt;}
.ws43{word-spacing:0.266667pt;}
.ws78{word-spacing:0.298667pt;}
.wse5{word-spacing:0.320000pt;}
.wsa4{word-spacing:0.373333pt;}
.wsa3{word-spacing:0.426667pt;}
.ws2{word-spacing:0.480000pt;}
.ws48{word-spacing:0.512000pt;}
.ws8e{word-spacing:0.533333pt;}
.ws4a{word-spacing:0.554667pt;}
.wsa1{word-spacing:0.586667pt;}
.wsd{word-spacing:0.597333pt;}
.ws3{word-spacing:0.624000pt;}
.ws15{word-spacing:0.640000pt;}
.ws3b{word-spacing:0.682667pt;}
.ws95{word-spacing:0.693333pt;}
.ws72{word-spacing:0.725333pt;}
.wsb7{word-spacing:0.746667pt;}
.ws3c{word-spacing:0.768000pt;}
.wsd9{word-spacing:0.800000pt;}
.ws6a{word-spacing:0.853333pt;}
.ws82{word-spacing:0.896000pt;}
.ws86{word-spacing:0.906667pt;}
.ws4e{word-spacing:0.960000pt;}
.ws26{word-spacing:0.981333pt;}
.ws51{word-spacing:1.013333pt;}
.ws8{word-spacing:1.056000pt;}
.ws4d{word-spacing:1.066667pt;}
.ws7d{word-spacing:1.109333pt;}
.wseb{word-spacing:1.120000pt;}
.ws88{word-spacing:1.152000pt;}
.ws19{word-spacing:1.173333pt;}
.ws85{word-spacing:1.226667pt;}
.ws3a{word-spacing:1.237333pt;}
.ws27{word-spacing:1.280000pt;}
.ws5f{word-spacing:1.322667pt;}
.wsa6{word-spacing:1.333333pt;}
.wsc{word-spacing:1.344000pt;}
.ws34{word-spacing:1.365333pt;}
.ws2b{word-spacing:1.386667pt;}
.ws66{word-spacing:1.440000pt;}
.ws6d{word-spacing:1.450667pt;}
.ws4c{word-spacing:1.493333pt;}
.ws9b{word-spacing:1.536000pt;}
.ws84{word-spacing:1.546667pt;}
.wsa8{word-spacing:1.600000pt;}
.ws80{word-spacing:1.621333pt;}
.wsea{word-spacing:1.653333pt;}
.ws7b{word-spacing:1.664000pt;}
.ws23{word-spacing:1.706667pt;}
.ws32{word-spacing:1.749333pt;}
.ws2d{word-spacing:1.760000pt;}
.ws4f{word-spacing:1.866667pt;}
.ws10{word-spacing:1.872000pt;}
.ws64{word-spacing:1.920000pt;}
.ws7e{word-spacing:1.962667pt;}
.ws5d{word-spacing:2.005333pt;}
.ws67{word-spacing:2.080000pt;}
.wsed{word-spacing:2.240000pt;}
.ws49{word-spacing:2.304000pt;}
.ws6f{word-spacing:2.346667pt;}
.ws33{word-spacing:2.389333pt;}
.ws93{word-spacing:2.400000pt;}
.wsb2{word-spacing:2.432000pt;}
.ws40{word-spacing:2.453333pt;}
.ws24{word-spacing:2.474667pt;}
.ws4b{word-spacing:2.506667pt;}
.ws7c{word-spacing:2.517333pt;}
.ws52{word-spacing:2.560000pt;}
.ws35{word-spacing:2.645333pt;}
.ws14{word-spacing:2.666667pt;}
.ws1f{word-spacing:2.720000pt;}
.wsab{word-spacing:2.773333pt;}
.ws2c{word-spacing:2.826667pt;}
.wscc{word-spacing:2.944000pt;}
.wsbc{word-spacing:2.986667pt;}
.ws21{word-spacing:3.040000pt;}
.wsa{word-spacing:3.072000pt;}
.wsad{word-spacing:3.093333pt;}
.ws28{word-spacing:3.200000pt;}
.ws4{word-spacing:3.216000pt;}
.ws17{word-spacing:3.253333pt;}
.wsa9{word-spacing:3.285333pt;}
.ws54{word-spacing:3.306667pt;}
.wsb1{word-spacing:3.456000pt;}
.ws2f{word-spacing:3.498667pt;}
.ws70{word-spacing:3.541333pt;}
.ws91{word-spacing:3.573333pt;}
.wsba{word-spacing:3.680000pt;}
.ws8c{word-spacing:3.786667pt;}
.ws62{word-spacing:3.840000pt;}
.wse8{word-spacing:3.893333pt;}
.wsc5{word-spacing:3.925333pt;}
.ws6b{word-spacing:3.968000pt;}
.ws45{word-spacing:4.000000pt;}
.ws12{word-spacing:4.106667pt;}
.ws5b{word-spacing:4.213333pt;}
.ws5{word-spacing:4.224000pt;}
.wse3{word-spacing:4.266667pt;}
.ws9a{word-spacing:4.309333pt;}
.ws18{word-spacing:4.373333pt;}
.ws53{word-spacing:4.426667pt;}
.ws63{word-spacing:4.480000pt;}
.ws71{word-spacing:4.608000pt;}
.ws47{word-spacing:4.650667pt;}
.wsc4{word-spacing:4.736000pt;}
.wsee{word-spacing:4.746667pt;}
.ws1d{word-spacing:4.800000pt;}
.ws1c{word-spacing:4.853333pt;}
.ws55{word-spacing:4.906667pt;}
.wsc6{word-spacing:4.992000pt;}
.wse4{word-spacing:5.013333pt;}
.wsac{word-spacing:5.120000pt;}
.wsa0{word-spacing:5.226667pt;}
.wsc1{word-spacing:5.333333pt;}
.wsb8{word-spacing:5.386667pt;}
.wsa7{word-spacing:5.653333pt;}
.ws90{word-spacing:5.866667pt;}
.wsdd{word-spacing:5.888000pt;}
.wse1{word-spacing:5.920000pt;}
.wsa5{word-spacing:5.973333pt;}
.wse2{word-spacing:6.026667pt;}
.ws41{word-spacing:6.080000pt;}
.ws9e{word-spacing:6.133333pt;}
.wsd5{word-spacing:6.144000pt;}
.wsae{word-spacing:6.186667pt;}
.ws99{word-spacing:6.314667pt;}
.ws68{word-spacing:6.346667pt;}
.ws98{word-spacing:6.357333pt;}
.wsdb{word-spacing:6.560000pt;}
.ws59{word-spacing:6.613333pt;}
.ws69{word-spacing:6.656000pt;}
.ws8f{word-spacing:6.666667pt;}
.ws9f{word-spacing:6.773333pt;}
.ws39{word-spacing:6.826667pt;}
.wsc3{word-spacing:6.869333pt;}
.wsa2{word-spacing:6.933333pt;}
.ws1e{word-spacing:7.040000pt;}
.ws20{word-spacing:7.093333pt;}
.ws56{word-spacing:7.253333pt;}
.ws9c{word-spacing:7.296000pt;}
.ws16{word-spacing:7.360000pt;}
.wsc9{word-spacing:7.520000pt;}
.wse0{word-spacing:7.626667pt;}
.wsb9{word-spacing:7.733333pt;}
.wsca{word-spacing:7.893333pt;}
.ws9{word-spacing:8.016000pt;}
.ws7{word-spacing:8.064000pt;}
.ws76{word-spacing:8.213333pt;}
.wsb{word-spacing:8.256000pt;}
.ws73{word-spacing:8.906667pt;}
.wse9{word-spacing:8.960000pt;}
.ws22{word-spacing:9.440000pt;}
.ws65{word-spacing:10.346667pt;}
.wsd7{word-spacing:10.560000pt;}
.wsbe{word-spacing:11.434667pt;}
.ws5a{word-spacing:14.346667pt;}
.ws11{word-spacing:16.080000pt;}
.wsd3{word-spacing:16.800000pt;}
.wsbf{word-spacing:18.389333pt;}
.ws7a{word-spacing:48.896000pt;}
._19{margin-left:-6.183467pt;}
._2{margin-left:-5.290667pt;}
._1{margin-left:-3.933867pt;}
._11{margin-left:-2.990933pt;}
._0{margin-left:-2.056533pt;}
._3{margin-left:-1.156800pt;}
._5{width:0.947733pt;}
._6{width:2.121600pt;}
._a{width:3.074133pt;}
._9{width:4.085333pt;}
._d{width:5.139200pt;}
._c{width:6.820267pt;}
._b{width:7.894400pt;}
._7{width:8.872533pt;}
._e{width:10.010667pt;}
._18{width:11.290667pt;}
._4{width:14.899200pt;}
._13{width:16.394667pt;}
._16{width:17.873067pt;}
._17{width:18.888533pt;}
._15{width:52.736000pt;}
._14{width:57.386667pt;}
._10{width:59.093333pt;}
._12{width:60.501333pt;}
._8{width:83.840000pt;}
._f{width:85.546667pt;}
.fs7{font-size:31.093333pt;}
.fs2{font-size:34.202667pt;}
.fs5{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs9{font-size:64.000000pt;}
.fs8{font-size:69.333333pt;}
.fs6{font-size:74.666667pt;}
.fs1{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:48.692933pt;}
.y192{bottom:94.470667pt;}
.y4b{bottom:94.474667pt;}
.y110{bottom:94.477333pt;}
.ya5{bottom:94.481333pt;}
.y7a{bottom:94.485333pt;}
.y21{bottom:94.488400pt;}
.y211{bottom:97.185333pt;}
.y4a{bottom:107.808000pt;}
.y10f{bottom:107.810667pt;}
.ya4{bottom:107.814667pt;}
.y79{bottom:107.818667pt;}
.y20{bottom:107.821733pt;}
.y210{bottom:113.185333pt;}
.y191{bottom:113.372000pt;}
.yc8{bottom:113.382667pt;}
.y49{bottom:121.141333pt;}
.y10e{bottom:121.144000pt;}
.ya3{bottom:121.148000pt;}
.y78{bottom:121.152000pt;}
.y1f{bottom:121.155067pt;}
.y190{bottom:126.705333pt;}
.y124{bottom:126.712000pt;}
.yc7{bottom:126.716000pt;}
.y1d3{bottom:126.720000pt;}
.y20f{bottom:129.185333pt;}
.y48{bottom:134.474667pt;}
.y10d{bottom:134.477333pt;}
.ya2{bottom:134.481333pt;}
.yed{bottom:134.485333pt;}
.y18f{bottom:140.038667pt;}
.y123{bottom:140.045333pt;}
.yc6{bottom:140.049333pt;}
.y77{bottom:140.053333pt;}
.y20e{bottom:145.185333pt;}
.yda{bottom:145.617333pt;}
.y47{bottom:147.808000pt;}
.y10c{bottom:147.810667pt;}
.ya1{bottom:147.814667pt;}
.yec{bottom:147.818667pt;}
.y18e{bottom:153.372000pt;}
.y122{bottom:153.378667pt;}
.yc5{bottom:153.382667pt;}
.y76{bottom:153.386667pt;}
.yd9{bottom:158.950667pt;}
.y46{bottom:161.141333pt;}
.y10b{bottom:161.144000pt;}
.ya0{bottom:161.148000pt;}
.y20d{bottom:161.185333pt;}
.y12e{bottom:166.709333pt;}
.y121{bottom:166.712000pt;}
.yc4{bottom:166.716000pt;}
.y75{bottom:166.720000pt;}
.y1e{bottom:171.632000pt;}
.y18d{bottom:172.273333pt;}
.yd8{bottom:172.284000pt;}
.y10a{bottom:174.477333pt;}
.y9f{bottom:174.481333pt;}
.y45{bottom:180.042667pt;}
.y120{bottom:180.045333pt;}
.yc3{bottom:180.049333pt;}
.y74{bottom:180.053333pt;}
.y18c{bottom:185.606667pt;}
.y1c3{bottom:185.613333pt;}
.yd7{bottom:185.617333pt;}
.y1d{bottom:186.296000pt;}
.y109{bottom:187.810667pt;}
.y22e{bottom:189.518667pt;}
.y20c{bottom:192.305333pt;}
.y44{bottom:193.376000pt;}
.y9e{bottom:193.382667pt;}
.y73{bottom:193.386667pt;}
.y18b{bottom:198.940000pt;}
.y11f{bottom:198.946667pt;}
.yd6{bottom:198.950667pt;}
.y1c{bottom:200.960000pt;}
.y108{bottom:201.144000pt;}
.y22d{bottom:205.518667pt;}
.y43{bottom:206.709333pt;}
.y9d{bottom:206.716000pt;}
.y72{bottom:206.720000pt;}
.y20b{bottom:208.305333pt;}
.y18a{bottom:212.273333pt;}
.y11e{bottom:212.280000pt;}
.yd5{bottom:212.284000pt;}
.y107{bottom:214.477333pt;}
.y1c2{bottom:217.848000pt;}
.y42{bottom:220.042667pt;}
.y9c{bottom:220.049333pt;}
.y71{bottom:220.053333pt;}
.y22c{bottom:221.518667pt;}
.y20a{bottom:224.305333pt;}
.y1b{bottom:225.080000pt;}
.y189{bottom:225.606667pt;}
.y11d{bottom:225.613333pt;}
.yc2{bottom:225.617333pt;}
.y106{bottom:227.810667pt;}
.y1c1{bottom:231.181333pt;}
.y41{bottom:233.376000pt;}
.y9b{bottom:233.382667pt;}
.y70{bottom:233.386667pt;}
.y1d2{bottom:233.664000pt;}
.y153{bottom:236.929333pt;}
.y22b{bottom:237.518667pt;}
.y188{bottom:238.940000pt;}
.y12d{bottom:238.944000pt;}
.y11c{bottom:238.946667pt;}
.yc1{bottom:238.950667pt;}
.y1a{bottom:239.744000pt;}
.y209{bottom:240.305333pt;}
.y1c0{bottom:244.514667pt;}
.y40{bottom:246.709333pt;}
.y105{bottom:246.712000pt;}
.y9a{bottom:246.716000pt;}
.y6f{bottom:246.720000pt;}
.y1d1{bottom:249.397333pt;}
.y187{bottom:252.273333pt;}
.yc0{bottom:252.284000pt;}
.y152{bottom:252.929333pt;}
.y19{bottom:254.408000pt;}
.y12c{bottom:257.845333pt;}
.y11b{bottom:257.848000pt;}
.y3f{bottom:260.042667pt;}
.y104{bottom:260.045333pt;}
.y99{bottom:260.049333pt;}
.y6e{bottom:260.053333pt;}
.y22a{bottom:262.972000pt;}
.y1ef{bottom:264.460000pt;}
.y186{bottom:265.606667pt;}
.ybf{bottom:265.617333pt;}
.y151{bottom:268.929333pt;}
.y18{bottom:269.072000pt;}
.y1d0{bottom:270.797333pt;}
.y12b{bottom:271.178667pt;}
.y11a{bottom:271.181333pt;}
.y208{bottom:271.425333pt;}
.yeb{bottom:271.910667pt;}
.y3e{bottom:273.376000pt;}
.y98{bottom:273.382667pt;}
.y6d{bottom:273.386667pt;}
.y16b{bottom:274.241333pt;}
.y185{bottom:278.940000pt;}
.y103{bottom:278.946667pt;}
.ybe{bottom:278.950667pt;}
.y229{bottom:278.972000pt;}
.y1ee{bottom:280.193333pt;}
.y17{bottom:283.736000pt;}
.y119{bottom:284.514667pt;}
.y150{bottom:284.929333pt;}
.y1cf{bottom:286.530667pt;}
.y3d{bottom:286.709333pt;}
.y97{bottom:286.716000pt;}
.y6c{bottom:286.720000pt;}
.y207{bottom:287.425333pt;}
.yea{bottom:287.910667pt;}
.y12a{bottom:290.080000pt;}
.y16a{bottom:290.241333pt;}
.y184{bottom:292.273333pt;}
.y102{bottom:292.280000pt;}
.ybd{bottom:292.284000pt;}
.y228{bottom:294.972000pt;}
.y1ed{bottom:295.926667pt;}
.y118{bottom:297.848000pt;}
.y96{bottom:300.049333pt;}
.y6b{bottom:300.053333pt;}
.y14f{bottom:300.929333pt;}
.y1ce{bottom:302.264000pt;}
.y129{bottom:303.413333pt;}
.y206{bottom:303.425333pt;}
.ye9{bottom:303.910667pt;}
.y183{bottom:305.606667pt;}
.y3c{bottom:305.610667pt;}
.y101{bottom:305.613333pt;}
.ybc{bottom:305.617333pt;}
.y169{bottom:306.241333pt;}
.y16{bottom:307.856000pt;}
.y117{bottom:311.181333pt;}
.yd4{bottom:311.260000pt;}
.y1ec{bottom:311.660000pt;}
.y95{bottom:313.382667pt;}
.y6a{bottom:313.386667pt;}
.y128{bottom:316.746667pt;}
.y14e{bottom:316.929333pt;}
.y1cd{bottom:318.000000pt;}
.y3b{bottom:318.944000pt;}
.y100{bottom:318.946667pt;}
.ybb{bottom:318.950667pt;}
.y205{bottom:319.158667pt;}
.ye8{bottom:319.910667pt;}
.y227{bottom:320.425333pt;}
.y168{bottom:322.241333pt;}
.y15{bottom:322.520000pt;}
.y182{bottom:324.508000pt;}
.y116{bottom:324.514667pt;}
.y94{bottom:326.716000pt;}
.y69{bottom:326.720000pt;}
.yd3{bottom:327.260000pt;}
.y127{bottom:330.080000pt;}
.yff{bottom:332.280000pt;}
.yba{bottom:332.284000pt;}
.y14d{bottom:332.929333pt;}
.ye7{bottom:335.910667pt;}
.y226{bottom:336.425333pt;}
.y14{bottom:337.184000pt;}
.y181{bottom:337.841333pt;}
.y3a{bottom:337.845333pt;}
.y115{bottom:337.848000pt;}
.y167{bottom:338.241333pt;}
.y1eb{bottom:338.726667pt;}
.y1bf{bottom:339.136000pt;}
.y1cc{bottom:339.400000pt;}
.y93{bottom:340.049333pt;}
.y68{bottom:340.053333pt;}
.yd2{bottom:343.260000pt;}
.y126{bottom:343.413333pt;}
.yfe{bottom:345.613333pt;}
.yb9{bottom:345.617333pt;}
.y14c{bottom:348.929333pt;}
.y204{bottom:350.012000pt;}
.y114{bottom:351.181333pt;}
.ye6{bottom:351.910667pt;}
.y225{bottom:352.425333pt;}
.y92{bottom:353.382667pt;}
.y67{bottom:353.386667pt;}
.y166{bottom:354.241333pt;}
.y1ea{bottom:354.460000pt;}
.y1cb{bottom:355.133333pt;}
.y1be{bottom:355.136000pt;}
.y180{bottom:356.742667pt;}
.y39{bottom:356.746667pt;}
.yfd{bottom:358.946667pt;}
.yb8{bottom:358.950667pt;}
.yd1{bottom:359.260000pt;}
.y13{bottom:361.304000pt;}
.y113{bottom:364.514667pt;}
.y14b{bottom:364.929333pt;}
.y203{bottom:365.745333pt;}
.y91{bottom:366.716000pt;}
.y66{bottom:366.720000pt;}
.ye5{bottom:367.910667pt;}
.y17f{bottom:370.076000pt;}
.y38{bottom:370.080000pt;}
.y1e9{bottom:370.193333pt;}
.y165{bottom:370.241333pt;}
.y1ca{bottom:370.866667pt;}
.y1bd{bottom:371.136000pt;}
.y158{bottom:372.284000pt;}
.yd0{bottom:375.260000pt;}
.y12{bottom:375.968000pt;}
.yfc{bottom:377.848000pt;}
.y224{bottom:377.878667pt;}
.y90{bottom:380.049333pt;}
.y65{bottom:380.053333pt;}
.y14a{bottom:380.929333pt;}
.y202{bottom:381.478667pt;}
.y17e{bottom:383.409333pt;}
.y125{bottom:383.413333pt;}
.ye4{bottom:383.910667pt;}
.y157{bottom:385.617333pt;}
.y1e8{bottom:385.926667pt;}
.y164{bottom:386.241333pt;}
.y1c9{bottom:386.600000pt;}
.y1bc{bottom:387.136000pt;}
.y11{bottom:390.632000pt;}
.yfb{bottom:391.181333pt;}
.ycf{bottom:391.260000pt;}
.y8f{bottom:393.382667pt;}
.y64{bottom:393.386667pt;}
.y223{bottom:393.878667pt;}
.y17d{bottom:396.742667pt;}
.y149{bottom:396.929333pt;}
.y156{bottom:398.950667pt;}
.ye3{bottom:399.910667pt;}
.y163{bottom:402.241333pt;}
.y1c8{bottom:402.333333pt;}
.y1bb{bottom:403.136000pt;}
.yfa{bottom:404.514667pt;}
.y10{bottom:405.296000pt;}
.y8e{bottom:406.716000pt;}
.y63{bottom:406.720000pt;}
.yce{bottom:407.260000pt;}
.yb7{bottom:407.262667pt;}
.y222{bottom:409.878667pt;}
.y155{bottom:412.284000pt;}
.y201{bottom:412.332000pt;}
.y148{bottom:412.929333pt;}
.y1e7{bottom:412.993333pt;}
.y17c{bottom:415.644000pt;}
.ye2{bottom:415.910667pt;}
.y112{bottom:417.848000pt;}
.y1c7{bottom:418.066667pt;}
.yf{bottom:419.960000pt;}
.y8d{bottom:420.049333pt;}
.y62{bottom:420.053333pt;}
.y37{bottom:422.129333pt;}
.ycd{bottom:423.260000pt;}
.yb6{bottom:423.262667pt;}
.y1ba{bottom:424.805333pt;}
.y145{bottom:425.810667pt;}
.y162{bottom:426.241333pt;}
.y200{bottom:428.065333pt;}
.y1e6{bottom:428.726667pt;}
.y147{bottom:428.929333pt;}
.y17b{bottom:428.977333pt;}
.y111{bottom:431.181333pt;}
.ye1{bottom:431.910667pt;}
.y8c{bottom:433.382667pt;}
.y61{bottom:433.386667pt;}
.y1c6{bottom:433.800000pt;}
.ye{bottom:434.624000pt;}
.y221{bottom:435.332000pt;}
.y36{bottom:438.129333pt;}
.ycc{bottom:439.260000pt;}
.yb5{bottom:439.262667pt;}
.y1b9{bottom:440.805333pt;}
.y144{bottom:441.810667pt;}
.y161{bottom:442.241333pt;}
.y17a{bottom:442.310667pt;}
.y1ff{bottom:443.798667pt;}
.y1e5{bottom:444.726667pt;}
.y146{bottom:444.929333pt;}
.yf9{bottom:444.932000pt;}
.y8b{bottom:446.716000pt;}
.ye0{bottom:447.910667pt;}
.y220{bottom:451.332000pt;}
.y35{bottom:454.129333pt;}
.yd{bottom:454.964000pt;}
.ycb{bottom:455.262667pt;}
.y179{bottom:455.644000pt;}
.y1b8{bottom:456.805333pt;}
.y143{bottom:457.810667pt;}
.y160{bottom:458.241333pt;}
.y1a8{bottom:458.932000pt;}
.y1fe{bottom:459.532000pt;}
.y8a{bottom:460.049333pt;}
.yb4{bottom:460.929333pt;}
.yf8{bottom:460.932000pt;}
.ydf{bottom:463.910667pt;}
.y1c5{bottom:464.918667pt;}
.y21f{bottom:467.332000pt;}
.yc{bottom:469.628000pt;}
.y34{bottom:470.129333pt;}
.y60{bottom:471.262667pt;}
.y1e4{bottom:472.060000pt;}
.y1b7{bottom:472.805333pt;}
.y89{bottom:473.382667pt;}
.y142{bottom:473.810667pt;}
.y15f{bottom:474.241333pt;}
.y1a7{bottom:474.932000pt;}
.yb3{bottom:476.929333pt;}
.yf7{bottom:476.932000pt;}
.yde{bottom:479.910667pt;}
.yb{bottom:484.292000pt;}
.y33{bottom:486.129333pt;}
.y88{bottom:486.716000pt;}
.y5f{bottom:487.262667pt;}
.y1e3{bottom:488.060000pt;}
.y1b6{bottom:488.805333pt;}
.y141{bottom:489.810667pt;}
.y15e{bottom:490.241333pt;}
.y1fd{bottom:490.385333pt;}
.y1a6{bottom:490.932000pt;}
.y21e{bottom:492.785333pt;}
.yb2{bottom:492.929333pt;}
.y154{bottom:492.932000pt;}
.ydd{bottom:495.910667pt;}
.yf6{bottom:498.598667pt;}
.ya{bottom:498.956000pt;}
.y87{bottom:500.049333pt;}
.y32{bottom:502.129333pt;}
.y178{bottom:503.260000pt;}
.y5e{bottom:503.262667pt;}
.y1e2{bottom:504.060000pt;}
.y1b5{bottom:504.805333pt;}
.y140{bottom:505.810667pt;}
.y1fc{bottom:506.118667pt;}
.y15d{bottom:506.241333pt;}
.y1a5{bottom:506.932000pt;}
.y21d{bottom:508.785333pt;}
.yb1{bottom:508.929333pt;}
.y1c4{bottom:508.932000pt;}
.ydc{bottom:511.910667pt;}
.y9{bottom:513.620000pt;}
.yf5{bottom:514.598667pt;}
.y31{bottom:518.130667pt;}
.y86{bottom:518.950667pt;}
.y177{bottom:519.260000pt;}
.y5d{bottom:519.262667pt;}
.y1b4{bottom:520.805333pt;}
.y13f{bottom:521.810667pt;}
.y1fb{bottom:521.852000pt;}
.y15c{bottom:522.241333pt;}
.y21c{bottom:524.785333pt;}
.yb0{bottom:524.929333pt;}
.yca{bottom:524.932000pt;}
.y1a4{bottom:528.598667pt;}
.y1e1{bottom:529.513333pt;}
.yf4{bottom:530.598667pt;}
.y85{bottom:532.284000pt;}
.y30{bottom:534.130667pt;}
.y176{bottom:535.260000pt;}
.y1b3{bottom:536.805333pt;}
.y13e{bottom:537.810667pt;}
.y5c{bottom:540.929333pt;}
.yaf{bottom:540.932000pt;}
.ydb{bottom:543.029333pt;}
.y1a3{bottom:544.598667pt;}
.y1e0{bottom:545.513333pt;}
.y84{bottom:545.617333pt;}
.yf3{bottom:546.598667pt;}
.y21b{bottom:550.238667pt;}
.y175{bottom:551.260000pt;}
.y1fa{bottom:552.705333pt;}
.y1b2{bottom:552.805333pt;}
.y15b{bottom:553.797333pt;}
.y13d{bottom:553.810667pt;}
.y2f{bottom:555.797333pt;}
.y5b{bottom:556.929333pt;}
.yae{bottom:556.932000pt;}
.y83{bottom:558.950667pt;}
.y1a2{bottom:560.598667pt;}
.y1df{bottom:561.513333pt;}
.yf2{bottom:562.598667pt;}
.y21a{bottom:566.238667pt;}
.y174{bottom:567.260000pt;}
.y1f9{bottom:568.438667pt;}
.y1b1{bottom:568.805333pt;}
.y13c{bottom:569.810667pt;}
.y8{bottom:569.864000pt;}
.y2e{bottom:571.797333pt;}
.y82{bottom:572.284000pt;}
.y5a{bottom:572.929333pt;}
.yad{bottom:572.932000pt;}
.y15a{bottom:573.800000pt;}
.y1a1{bottom:576.598667pt;}
.yf1{bottom:578.598667pt;}
.y219{bottom:582.238667pt;}
.y1de{bottom:583.180000pt;}
.y173{bottom:583.260000pt;}
.y1f8{bottom:584.172000pt;}
.y7{bottom:584.528000pt;}
.y1b0{bottom:584.805333pt;}
.y81{bottom:585.617333pt;}
.y13b{bottom:585.813333pt;}
.y2d{bottom:587.797333pt;}
.y59{bottom:588.929333pt;}
.yac{bottom:588.932000pt;}
.y1a0{bottom:592.598667pt;}
.yf0{bottom:594.598667pt;}
.y80{bottom:598.950667pt;}
.y1dd{bottom:599.180000pt;}
.y6{bottom:599.192000pt;}
.y172{bottom:599.260000pt;}
.y13a{bottom:601.813333pt;}
.y2c{bottom:603.797333pt;}
.y58{bottom:604.929333pt;}
.yab{bottom:604.932000pt;}
.y1af{bottom:606.472000pt;}
.y218{bottom:607.692000pt;}
.y19f{bottom:608.598667pt;}
.yef{bottom:610.598667pt;}
.y159{bottom:612.698667pt;}
.y1f7{bottom:615.025333pt;}
.y1dc{bottom:615.180000pt;}
.y171{bottom:615.260000pt;}
.y5{bottom:617.637333pt;}
.y139{bottom:617.813333pt;}
.y2b{bottom:619.797333pt;}
.y57{bottom:620.929333pt;}
.yaa{bottom:620.932000pt;}
.y1ae{bottom:622.472000pt;}
.y217{bottom:623.692000pt;}
.y19e{bottom:624.598667pt;}
.yee{bottom:626.598667pt;}
.y1f6{bottom:630.758667pt;}
.y170{bottom:631.262667pt;}
.y138{bottom:633.813333pt;}
.y2a{bottom:635.797333pt;}
.y56{bottom:636.929333pt;}
.y7f{bottom:636.932000pt;}
.y1ad{bottom:638.472000pt;}
.y216{bottom:639.692000pt;}
.y19d{bottom:640.598667pt;}
.yc9{bottom:642.598667pt;}
.y1db{bottom:646.298667pt;}
.y1f5{bottom:646.492000pt;}
.y16f{bottom:647.262667pt;}
.y137{bottom:649.813333pt;}
.y29{bottom:651.797333pt;}
.y55{bottom:652.929333pt;}
.y7e{bottom:652.932000pt;}
.y1ac{bottom:654.472000pt;}
.y215{bottom:655.692000pt;}
.y19c{bottom:656.598667pt;}
.ya9{bottom:658.598667pt;}
.y1f4{bottom:662.225333pt;}
.y16e{bottom:668.929333pt;}
.y54{bottom:668.932000pt;}
.y1ab{bottom:670.472000pt;}
.y136{bottom:671.480000pt;}
.y4{bottom:671.874667pt;}
.y19b{bottom:672.598667pt;}
.ya8{bottom:674.598667pt;}
.y1f3{bottom:677.958667pt;}
.y214{bottom:681.145333pt;}
.y28{bottom:682.913333pt;}
.y16d{bottom:684.929333pt;}
.y53{bottom:684.932000pt;}
.y1aa{bottom:686.472000pt;}
.y135{bottom:687.480000pt;}
.y19a{bottom:688.598667pt;}
.ya7{bottom:690.598667pt;}
.y1da{bottom:692.198667pt;}
.y3{bottom:695.874667pt;}
.y213{bottom:697.145333pt;}
.y16c{bottom:700.929333pt;}
.y52{bottom:700.932000pt;}
.y134{bottom:703.480000pt;}
.y27{bottom:704.249333pt;}
.y199{bottom:704.598667pt;}
.ya6{bottom:706.598667pt;}
.y1d9{bottom:708.198667pt;}
.y1f2{bottom:708.812000pt;}
.y212{bottom:713.145333pt;}
.y1a9{bottom:713.810667pt;}
.y7d{bottom:716.932000pt;}
.y133{bottom:719.480000pt;}
.y2{bottom:719.874667pt;}
.y198{bottom:720.598667pt;}
.y51{bottom:722.598667pt;}
.y1d8{bottom:723.932000pt;}
.y1f1{bottom:724.545333pt;}
.y7c{bottom:732.932000pt;}
.y132{bottom:735.480000pt;}
.y197{bottom:736.598667pt;}
.y50{bottom:738.598667pt;}
.y1d7{bottom:739.665333pt;}
.y1f0{bottom:740.278667pt;}
.y7b{bottom:748.932000pt;}
.y26{bottom:750.150667pt;}
.y131{bottom:751.480000pt;}
.y196{bottom:752.598667pt;}
.y4f{bottom:754.598667pt;}
.y1d6{bottom:755.398667pt;}
.y25{bottom:764.814667pt;}
.y130{bottom:767.480000pt;}
.y195{bottom:768.598667pt;}
.y4e{bottom:770.598667pt;}
.y1d5{bottom:771.132000pt;}
.y194{bottom:784.598667pt;}
.y4d{bottom:786.598667pt;}
.y1d4{bottom:786.865333pt;}
.y24{bottom:788.934667pt;}
.y12f{bottom:798.598667pt;}
.y193{bottom:800.598667pt;}
.y4c{bottom:802.598667pt;}
.y23{bottom:803.598667pt;}
.y22{bottom:854.732000pt;}
.h8{height:34.384000pt;}
.hd{height:34.682667pt;}
.h7{height:39.296000pt;}
.h2{height:39.637333pt;}
.h5{height:44.208000pt;}
.h6{height:44.592000pt;}
.hb{height:49.120000pt;}
.he{height:49.536000pt;}
.hc{height:49.541333pt;}
.ha{height:49.546667pt;}
.h4{height:50.933333pt;}
.h12{height:58.933333pt;}
.h11{height:58.944000pt;}
.h10{height:63.856000pt;}
.hf{height:66.213333pt;}
.h9{height:71.306667pt;}
.h3{height:79.445333pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520013pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xb{left:75.590533pt;}
.xd{left:90.706800pt;}
.xa{left:94.209867pt;}
.xe{left:98.270533pt;}
.xc{left:105.826800pt;}
.x9{left:109.320000pt;}
.x12{left:113.390533pt;}
.x8{left:124.440000pt;}
.x10{left:128.512667pt;}
.x11{left:132.288133pt;}
.x3{left:145.610667pt;}
.x2{left:146.976000pt;}
.xf{left:161.242667pt;}
.x7{left:166.044000pt;}
.x4{left:186.698667pt;}
.x5{left:261.984000pt;}
.x6{left:275.268000pt;}
.x1{left:548.369333pt;}
}




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